@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

iframe {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: middle;
  transition: ease-in-out, 0.3s;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.3243243243vw;
  }
}
@media (max-width: 370px) {
  html {
    font-size: 4.3243243243vw;
  }
}

body {
  position: relative;
  height: 100svh;
  background: #142832;
  color: #faf5eb;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/fixed_bg.webp) center/cover no-repeat, #220a04;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body::before {
    content: none;
  }
}

.js-body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .js-body.is-active::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    z-index: 9997;
    animation: fadeIn 0.3s ease-in-out;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main {
  background: #142832;
}

button {
  color: #faf5eb;
}

.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.l-container {
  display: flex;
  width: 100%;
  height: 100svh;
}

.l-inner {
  width: 100%;
  max-width: 66.25rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    max-width: 41.875rem;
    padding-inline: 2.1875rem;
  }
}

.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 42%;
  height: 100svh;
}
@media screen and (max-width: 768px) {
  .l-nav {
    width: 100%;
    opacity: 0;
    transition: ease-in-out, 0.3s;
    z-index: 9998;
    overflow-y: auto;
    visibility: hidden;
  }
}

@media screen and (max-width: 768px) {
  .is-active .l-nav {
    opacity: 1;
    visibility: visible;
  }
}

.l-wrapper {
  width: 48.6%;
  max-width: 42.5rem;
  margin-left: 42%;
  background: #142832;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .is-active .l-wrapper main {
    filter: blur(6px);
    transition: filter 0.3s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  .is-active .l-wrapper footer {
    filter: blur(6px);
    transition: filter 0.3s ease-in-out;
  }
}

.c-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.1875rem;
  width: 100%;
  max-width: 18.75rem;
  margin-inline: auto;
  padding-block: 1.625rem;
  border-radius: 100vh;
  border: 1px solid #b8bec1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.07em;
  transition: ease-in-out, 0.3s;
}

.c-button--arrow {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.375rem;
  height: 0.375rem;
  border-top: solid 0.0625rem #ffffff;
  border-right: solid 0.0625rem #ffffff;
  transition: ease-in-out, 0.3s;
}

.c-button--white {
  color: #faf5eb;
}

@media (any-hover: hover) {
  .c-button--white:hover {
    background: #ffffff;
    color: #142832;
    border: 1px solid #ffffff;
  }
}
.c-button--white .c-button::before {
  background-color: #faf5eb;
}

.c-button--bluegreen {
  color: #142832;
}

.c-button--bluegreen .c-button::before {
  background-color: #374851;
}

.c-button--light-red {
  border: none;
}

.p-about-company {
  background: url(../images/about/bg_pc.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about-company {
    background: url(../images/about/bg_sp.webp) center/cover no-repeat;
  }
}

.p-about-company__inner {
  padding-top: 6.5rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-about-company__inner {
    padding-top: 4.0625rem;
    padding-bottom: 4.625rem;
  }
}

.p-about-company .p-under__body {
  margin-top: 2.875rem;
}
@media screen and (max-width: 768px) {
  .p-about-company .p-under__body {
    margin-top: 1.625rem;
  }
}

.p-about-company__table {
  max-width: 25.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about-company__table {
    max-width: 100%;
  }
}

.p-about-company__th,
.p-about-company__td {
  padding-block: 0.625rem;
}

.p-about-company__th {
  font-weight: 500;
  line-height: 1.8;
  white-space: nowrap;
}

.p-about-company__td {
  padding-left: 2.625rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-about-company__td {
    padding-left: 1rem;
  }
}

.p-about-intro__inner {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about-intro__inner {
    padding-top: 3.125rem;
    padding-bottom: 4.375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-about-intro .p-under__body {
    margin-top: 2.25rem;
  }
}

.p-about-intro__text {
  line-height: 1.8;
}
.p-about-members {
  position: relative;
}

.p-about-members::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33.75rem;
  height: 0.0625rem;
  background: #142832;
}
@media screen and (max-width: 768px) {
  .p-about-members::before {
    width: 18.75rem;
  }
}

.p-about-members__inner {
  padding-top: 5rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-about-members__inner {
    padding-top: 3.875rem;
    padding-bottom: 5.25rem;
  }
}

.p-about-members__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-members__list {
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 2.8125rem;
  }
}

.p-about-members__item {
  width: calc((100% - 4rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-about-members__item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-about-members__item-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
}

.p-about-members__item-image {
  flex-shrink: 0;
  border-radius: 0.375rem;
  overflow: clip;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .p-about-members__item-image {
    width: 8.75rem;
  }
}

.p-about-members__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-members__item-meta {
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-about-members__item-meta {
    padding-top: 0.3125rem;
    margin-top: 0;
  }
}

.p-about-members__item-category {
  display: block;
  max-width: 10rem;
  margin-inline: auto;
  padding-block: 0.625rem;
  background: #374851;
  border-radius: 100vh;
  color: #faf5eb;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about-members__item-category {
    margin-top: 0;
    max-width: 7.5rem;
  }
}

.p-about-members__item-ja {
  display: block;
  margin-top: 1.5rem;
  color: #142832;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.p-about-members__item-en {
  display: block;
  margin-top: 0.9375rem;
  font-family: "Inter", sans-serif;
  color: #142832;
  text-align: center;
  line-height: 1;
}

.p-about-members__item-text {
  margin-top: 1.875rem;
  letter-spacing: -0.15em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-about-members__item-text {
    margin-top: 1.375rem;
    letter-spacing: -0.15em;
  }
}

.p-about-message__inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about-message__inner {
    padding-top: 4.6875rem;
  }
}

.p-about-message__inner::before {
  content: "";
  position: absolute;
  top: 5.25rem;
  right: 30px;
  width: 13.125rem;
  height: 30.4375rem;
  background: url(../images/about/daihyou_pc.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about-message__inner::before {
    top: 0.5625rem;
    right: 1.5rem;
    width: 7rem;
    height: 16.25rem;
    background: url(../images/about/daihyou_sp.webp) center/contain no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-about-message .p-under__body {
    margin-top: 2.1875rem;
  }
}

.p-about-message__container {
  max-width: 21.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-message__container {
    max-width: 100%;
  }
}

.p-about-message__text.u-font-ls005 {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-about-message__text.u-font-ls005 {
    letter-spacing: -0.07em;
  }
}

.p-about-message__name {
  margin-top: 1.25rem;
  font-weight: 700;
  text-align: right;
}

.p-about-philosophy {
  background: url(../images/about/philosophy_bg_pc.webp) center/cover no-repeat;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy {
    background: url(../images/about/philosophy_bg_sp.webp) center/cover no-repeat;
  }
}

.p-about-philosophy__inner {
  padding-top: 5.3125rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__inner {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
}

.p-about-philosophy__conatiner {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__conatiner {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-about-philosophy .p-under__title {
    text-align: center;
  }
}

.p-about-philosophy__copy {
  position: absolute;
  top: 6.25rem;
  left: 7.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__copy {
    top: 11.875rem;
    left: 8.25rem;
    order: 2;
  }
}

.p-about-philosophy__content {
  flex-shrink: 0;
  max-width: 19.375rem;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__content {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .p-about-philosophy .p-under__body {
    order: 2;
    margin-top: 22.6875rem;
  }
}

.p-about-philosophy__text.u-font-ls005 {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-about-philosophy__text.u-font-ls005 {
    letter-spacing: -0.07em;
  }
}

.p-about-restaurant__inner {
  position: relative;
  padding-top: 5.375rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__inner {
    padding-top: 4.375rem;
    padding-bottom: 5rem;
    overflow: clip;
  }
}

.p-about-restaurant__inner::before {
  content: "";
  position: absolute;
  top: -0.125rem;
  right: 1.25rem;
  width: 21.6875rem;
  height: 12.75rem;
  background: url(../images/about/restaulants_deco.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__inner::before {
    top: 1.8125rem;
    right: -2.875rem;
    width: 14rem;
    height: 8.25rem;
  }
}

.p-about-restaurant .p-under__title {
  padding-right: 16.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant .p-under__title {
    padding-right: 8.4375rem;
  }
}

.p-about-restaurant .p-under__title-ja {
  letter-spacing: 0.3em;
}

.p-about-restaurant .p-under__body {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant .p-under__body {
    margin-top: 4.375rem;
  }
}

.p-about-restaurant__item {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item {
    align-items: center;
    flex-direction: column;
  }
}

.p-about-restaurant__item:not(:first-child) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item:not(:first-child) {
    margin-top: 4.1875rem;
  }
}

.p-about-restaurant__item-logo {
  position: absolute;
  top: -0.125rem;
  left: 13.3125rem;
  width: 5.375rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item-logo {
    top: -1.6875rem;
  }
}

.p-about-restaurant__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about-restaurant__item-content {
  position: relative;
}

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

.p-about-restaurant__item-name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item-name {
    padding-left: 0.4375rem;
    letter-spacing: -0.01em;
  }
}

.p-about-restaurant__item-address {
  margin-top: 1.5625rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item-address {
    margin-top: 1.75rem;
    padding-left: 0.4375rem;
  }
}

.p-about-restaurant__item-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item-buttons {
    margin-top: 2.25rem;
  }
}

.p-about-restaurant__item-button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.125rem;
  border-radius: 100vh;
  border: 1px solid #b8bec1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1;
  transition: ease-in-out, 0.3s;
}

.p-about-restaurant__item-button--instagram a {
  width: 9.375rem;
  padding-left: 1.25rem;
  padding-bottom: 0.1875rem;
}

.p-about-restaurant__item-button--instagram a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.625rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  -webkit-mask-image: url(../images/common/logo_instagram.svg);
          mask-image: url(../images/common/logo_instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}

.p-about-restaurant__item-button--gnavi a {
  width: 8.75rem;
  color: transparent;
}

.p-about-restaurant__item-button--gnavi a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 1.125rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-mask-image: url(../images/common/logo_gnavi.svg);
          mask-image: url(../images/common/logo_gnavi.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}

.p-about-restaurant__item-map {
  flex-shrink: 0;
  width: 13.75rem;
  aspect-ratio: 1;
  border-radius: 0.375rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-about-restaurant__item-map {
    width: 100%;
    aspect-ratio: 300/220;
  }
}

.p-about-restaurant__item-map iframe {
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .p-about-restaurant__item-button--instagram a:hover {
    background: #ffffff;
    color: #142832;
    border: 1px solid #142832;
  }
  .p-about-restaurant__item-button--instagram a:hover::before {
    background: #142832;
  }
  .p-about-restaurant__item-button--gnavi a:hover {
    background: #ffffff;
    color: #142832;
    border: 1px solid #142832;
  }
  .p-about-restaurant__item-button--gnavi a:hover::before {
    background: #142832;
    background: rgba(20, 40, 50, 0.8);
  }
}
.p-about__bg {
  background: url(../images/about/bg_pc.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about__bg {
    background: url(../images/about/bg_sp.webp) center/cover no-repeat;
  }
}

.p-contact-info {
  position: relative;
}

.p-contact-info__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-contact-info__wave--top {
  top: -5rem;
  z-index: 10;
}

.p-contact-info__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-contact-info__wave {
    height: 3rem;
  }
  .p-contact-info__wave--top {
    top: -3rem;
  }
}

.p-contact-footer__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-contact-footer__wave--top {
  top: -5rem;
  z-index: 10;
}

.p-contact-footer__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-contact-footer__wave {
    height: 3rem;
  }
  .p-contact-footer__wave--top {
    top: -3rem;
  }
}

.p-contact-info__inner {
  position: relative;
  padding-top: 2.1875rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-contact-info__inner {
    padding-top: 2.8125rem;
  }
}

.p-contact-info__inner-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-contact-info__inner-wave--bottom {
  bottom: -5rem;
  z-index: 10;
}

.p-contact-info__inner-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-contact-info__inner-wave {
    height: 3rem;
  }
  .p-contact-info__inner-wave--bottom {
    bottom: -3rem;
  }
}

.p-contact-info__body {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-contact-info__body {
    margin-top: 1.5625rem;
  }
}

.p-contact-info__text {
  letter-spacing: -0.05em;
  line-height: 1.8;
}

.p-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-cta {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1000;
  }
  .p-cta a {
    position: relative;
    padding: 0.75rem 1.25rem 0.5rem 4.1875rem;
    letter-spacing: -0.05em;
    border-radius: 2.3125rem 0 0 0;
    background: #142832;
    border: 1px solid #faf5eb;
    border-bottom: none;
    line-height: 1.3;
    text-align: center;
    transition: opacity 0.3s;
  }
  .p-cta a::before {
    content: "";
    position: absolute;
    top: 57%;
    left: 1.3125rem;
    transform: translateY(-50%);
    background: url(../images/common/icon_mari02.svg) center/contain no-repeat;
    width: 2.5625rem;
    height: 2rem;
  }
  .p-cta a:hover {
    opacity: 0.8;
  }
}
.p-footer {
  position: relative;
  background: #142832;
}
@media screen and (max-width: 768px) {
  .p-footer {
    background: none;
  }
}

.p-footer__inner {
  position: relative;
  padding-top: 5.625rem;
  padding-inline: 2.1875rem;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-top: 3.125rem;
    padding-bottom: 7rem;
  }
}

.p-footer__buttons {
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__buttons {
    flex-direction: column;
    justify-content: center;
  }
}

.p-footer__button {
  position: relative;
}

.p-footer__button--about {
  background-color: #374851;
}

.p-footer__button--contact {
  background-color: #dc5a46;
}

.p-footer__button--entry {
  background: #faf5eb;
}

.p-footer__button--recruit {
  background: #d9cab1;
}

.p-footer__button--entry .p-footer__button-label,
.p-footer__button--entry .p-footer__button-text,
.p-footer__button--recruit .p-footer__button-label,
.p-footer__button--recruit .p-footer__button-text {
  color: #142832;
}
.p-footer__button--entry .c-button--arrow,
.p-footer__button--recruit .c-button--arrow {
  border-color: #142832;
}

.p-footer__button--recruit::before,
.p-footer__button--entry::before,
.p-footer__button--about::before,
.p-footer__button--contact::before {
  content: "";
  position: absolute;
  z-index: 1;
}

.p-footer__button--about::before {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 6rem;
  background: url(../images/common/icon_umbrella.svg) center/contain no-repeat;
}

.p-footer__button--contact::before {
  top: 50%;
  left: 1.4375rem;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 3.0625rem;
  background: url(../images/common/icon_mari01.svg) center/contain no-repeat;
}

.p-footer__button--recruit::before {
  top: 55%;
  left: 1.4375rem;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 3.0625rem;
  background: url(../images/common/icon_fish.svg) center/contain no-repeat;
}

.p-footer__button--entry::before {
  top: 40%;
  right: 4.375rem;
  transform: translateY(-50%);
  width: 3.125rem;
  height: 2.5rem;
  background: url(../images/common/icon_bird.svg) center/contain no-repeat;
}

.p-footer__button--entry::after {
  content: "";
  position: absolute;
  top: 57%;
  left: 2.375rem;
  transform: translateY(-50%);
  width: 3.4375rem;
  height: 3.125rem;
  background: url(../images/common/icon_kame.svg) center/contain no-repeat;
}

.p-footer__button-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-footer__button-label {
  font-family: "Lobster", sans-serif;
  font-size: 0.875rem;
  color: #faf5eb;
  letter-spacing: 0.01em;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-footer__button-label {
    font-size: 1rem;
  }
}

.p-footer__button-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #faf5eb;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-footer__button-text {
    font-size: 1.25rem;
  }
}

.p-footer__logo {
  margin-top: 8.4375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    margin-top: 4.875rem;
  }
}

.p-footer__logo a {
  max-width: 13.75rem;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-footer__logo a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__logo img {
    max-width: 10rem;
  }
}

.p-footer__nav {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    margin-top: 4.0625rem;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 25.625rem;
  margin-inline: auto;
  line-height: 1;
}
.p-footer__nav-item a {
  position: relative;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item a {
    font-size: 1rem;
  }
}

.p-footer__nav-item a::before {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
  opacity: 0;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover::before {
    opacity: 1;
  }
}
.p-footer__copyright-wrapper {
  text-align: center;
  margin-top: 4.6875rem;
}

.p-footer__copyright {
  font-size: 0.875rem;
  font-weight: 500;
}
.p-contact + .p-footer .p-footer__inner {
  padding-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-contact + .p-footer .p-footer__inner {
    padding-top: 5rem;
  }
}
.p-contact + .p-footer .p-footer__logo {
  margin-top: 0;
}

@media (any-hover: hover) {
  .p-footer__button--about:hover {
    background: #ffffff;
    color: #374851;
    border: 1px solid #ffffff;
  }
  .p-footer__button--about:hover .p-footer__button-label {
    color: #374851;
  }
  .p-footer__button--about:hover .p-footer__button-text {
    color: #374851;
  }
  .p-footer__button--about:hover .c-button--arrow {
    border-color: #142832;
  }
  .p-footer__button--contact:hover {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    color: #dc5a46;
    border: 1px solid #ffffff;
    border: 1px solid #dc5a46;
  }
  .p-footer__button--contact:hover .p-footer__button-label {
    color: #dc5a46;
  }
  .p-footer__button--contact:hover .p-footer__button-text {
    color: #dc5a46;
  }
  .p-footer__button--contact:hover .c-button--arrow {
    border-color: #dc5a46;
  }
  .p-footer__button--recruit:hover {
    background: #142832;
    border-color: #d9cab1;
  }
  .p-footer__button--recruit:hover .p-footer__button-label {
    color: #d9cab1;
  }
  .p-footer__button--recruit:hover .p-footer__button-text {
    color: #d9cab1;
  }
  .p-footer__button--recruit:hover .c-button--arrow {
    border-color: #d9cab1;
  }
  .p-footer__button--entry:hover {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #142832;
    border: 1px solid #ffffff;
  }
  .p-footer__button--entry:hover .c-button--arrow {
    border-color: #142832;
  }
}
.p-form {
  background: url(../images/contact/bg.webp) center/cover no-repeat;
}

.p-form__inner {
  padding-top: 7rem;
  padding-left: 4.5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .p-form__inner {
    max-width: 100%;
    padding-top: 2.6875rem;
    padding-left: 2.1875rem;
  }
}

.p-form__row + .p-form__row {
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-form__row + .p-form__row {
    margin-top: 1.5625rem;
  }
}

.p-form__row {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-form__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-form__row--address,
.p-form__row--textarea {
  align-items: flex-start;
}

.p-form__row-header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.625rem;
}

.p-form__label {
  font-weight: 700;
  color: #142832;
  line-height: 1.8;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  flex-basis: 6.75rem;
}
@media screen and (max-width: 768px) {
  .p-form__label {
    flex-basis: auto;
  }
}

.p-form__tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: 0.375rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-form__tag {
    text-orientation: mixed;
    flex-direction: row;
    padding: 0.25rem 0.25rem;
    margin-left: 0;
  }
}

.p-form__tag--required {
  background-color: #142832;
}

.p-form__tag--optional {
  background-color: #899398;
}

.p-form__input-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.p-form__row--name .p-form__input-wrapper,
.p-form__row--furigana .p-form__input-wrapper {
  min-width: 12.5rem;
}
.p-form__row--address .p-form__input-wrapper,
.p-form__row--textarea .p-form__input-wrapper {
  align-items: flex-start;
}

.p-form__row--address .p-form__input--zipcode {
  max-width: 8.125rem;
}

.p-form__row--tel .p-form__input--zipcode {
  max-width: 12.5rem;
}

.p-form__input,
.p-form__textarea {
  width: 100%;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border: 1px solid #d0d0d0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #142832;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #ffffff;
  transition: border-color 0.3s;
}

.p-form__input::-moz-placeholder, .p-form__textarea::-moz-placeholder {
  color: #727e84;
  font-size: 0.875rem;
}

.p-form__input::placeholder,
.p-form__textarea::placeholder {
  color: #727e84;
  font-size: 0.875rem;
}

.p-form__input:focus,
.p-form__textarea:focus {
  outline: none;
  border-color: #142832;
}

.p-form__input {
  min-height: 2.125rem;
  letter-spacing: -0.05em;
}

.p-form__row--name .p-form__input,
.p-form__row--furigana .p-form__input {
  max-width: 12.5rem;
}

.p-form__textarea {
  resize: vertical;
  min-height: 10rem;
}

.p-form__address-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__address-group {
    width: 100%;
  }
}

.p-form__radio-group {
  display: flex;
  gap: 2.375rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-form__radio-group {
    gap: 1rem;
  }
}

.p-form__radio {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  cursor: pointer;
}

.p-form__radio-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #142832;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  margin: 0;
}

.p-form__radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  background-color: #142832;
  border-radius: 50%;
}

.p-form__radio-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #142832;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__privacy {
  max-height: 11.25rem;
  margin-top: 1.875rem;
  padding: 1.125rem;
  background-color: #eff0f1;
  border-radius: 0.5rem;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .p-form__privacy {
    padding: 1rem;
  }
}

.p-form__privacy-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #142832;
  line-height: 1.8;
}

.p-form__privacy-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  cursor: pointer;
}

.p-form__checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #142832;
  border-radius: 0.25rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-form__checkbox-input {
    width: 1rem;
    height: 1rem;
  }
}

.p-form__checkbox-input:checked {
  background-color: #142832;
}

.p-form__checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.375rem;
  width: 0.3125rem;
  height: 0.625rem;
  border-right: 0.125rem solid #ffffff;
  border-bottom: 0.125rem solid #ffffff;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-form__checkbox-input:checked::after {
    top: 0;
    left: 0.25rem;
  }
}

.p-form__checkbox-input:hover {
  border-color: #31627b;
}

.p-form__checkbox-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #142832;
  cursor: pointer;
}

.p-form__submit {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__submit {
    margin-top: 2.8125rem;
  }
}

.p-form__submit .c-button {
  background-color: #142832;
  color: #ffffff;
  border: 1px solid #142832;
  cursor: pointer;
}

@media (any-hover: hover) {
  .p-form__submit .c-button:hover {
    background-color: #ffffff;
    color: #142832;
    border: 1px solid #142832;
  }
}
.p-hamburger {
  display: none;
  width: 1.875rem;
  height: 1.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    display: block;
    position: absolute;
    top: 1.1875rem;
    right: 0.875rem;
    z-index: 9999;
  }
}

.p-hamburger__bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.125rem;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.p-hamburger__bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.p-hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-hamburger__bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.js-hamburger.is-active .p-hamburger__bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js-hamburger.is-active .p-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-active .p-hamburger__bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .p-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
}

.p-header__logo {
  position: absolute;
  top: 0.875rem;
  left: 1.25rem;
  max-width: 7.5rem;
  aspect-ratio: 140/70;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    top: 2rem;
    left: 1.875rem;
    max-width: 4.75rem;
    aspect-ratio: 76/38;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-about {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-home-about {
    padding-top: 3.75rem;
    overflow-x: clip;
  }
}

.p-home-about__inner {
  padding-inline: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__inner {
    padding-inline: 1.5625rem;
  }
}

.p-home-about__title.p-home__title {
  text-align: left;
}

.p-home-about__body {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__body {
    margin-top: 1.875rem;
  }
}

.p-home-about__content {
  position: relative;
  max-width: 16.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__content {
    max-width: 100%;
  }
}

.p-home-about__text {
  margin-top: 2.125rem;
  line-height: 1.8;
}

.p-home-about__image {
  position: absolute;
  top: 1.25rem;
  right: -8.125rem;
  width: 25.5rem;
  height: 17.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__image {
    top: -4.0625rem;
    right: -2.25rem;
    width: 11.9375rem;
    height: 8.1875rem;
  }
}

.p-home-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-about__button {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__button {
    margin-top: 2.625rem;
  }
}

.p-home-brands__inner.l-inner {
  padding-top: 5rem;
  padding-inline: 0;
}
@media screen and (max-width: 768px) {
  .p-home-brands__inner.l-inner {
    padding-top: 4.8125rem;
  }
}

.p-home-brands__body {
  position: relative;
}

.p-home-brands__list {
  margin-top: 1.6875rem;
}
@media (min-width: 769px) {
  .p-home-brands__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.875rem;
    max-width: calc(8.75rem * 3 + 1.875rem * 2);
    margin-inline: auto;
  }
}

.p-home-brands__item {
  max-width: 8.75rem;
}

.p-home-brands__item a {
  max-width: 8.75rem;
  aspect-ratio: 1;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-home-brands__item a:hover {
    scale: 1.08;
  }
}
.p-home-brands__button {
  margin-top: 2.5rem;
}

.p-home-brands__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-brands__arrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-home-brands__arrow {
    display: block;
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #374851;
    cursor: pointer;
    transition: ease-in-out, 0.3s;
    z-index: 10;
  }
}

.p-home-brands__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-left: solid 0.125rem #faf5eb;
  border-bottom: solid 0.125rem #faf5eb;
}
@media screen and (max-width: 768px) {
  .p-home-brands__arrow::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-home-brands__arrow.p-home-brands__arrow--prev::before {
  right: 10%;
}

.p-home-brands__arrow.p-home-brands__arrow--next::before {
  left: 30%;
}

@media (any-hover: hover) {
  .p-home-brands__arrow:hover {
    opacity: 0.8;
    scale: 1.1;
  }
}
.p-home-brands__arrow--prev {
  left: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-brands__arrow--prev {
    left: -1.875rem;
  }
}

.p-home-brands__arrow--next {
  right: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-brands__arrow--next {
    right: -1.875rem;
  }
}

.p-home-brands__arrow--next::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

.p-home-fv {
  position: relative;
  height: 62.5rem;
  overflow: hidden;
  --fv-scale: 1;
}
.p-home-fv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/top/fv_pc.webp) center/cover no-repeat;
  transform: scale(var(--fv-scale));
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .p-home-fv {
    height: 41.3125rem;
  }
  .p-home-fv::before {
    background: url(../images/top/fv_sp.webp) center/cover no-repeat;
  }
}

.p-home-fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-home-fv__tile {
  position: absolute;
  top: 10rem;
  right: 9.375rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-home-fv__tile {
    top: 6.6875rem;
    right: 3.0625rem;
    font-size: 1rem;
  }
}

.p-home-fv__tile span {
  position: absolute;
  top: var(--top);
  left: var(--left);
  transform: rotate(var(--rotate));
}

.p-home-fv__text {
  position: absolute;
  top: 12.5rem;
  left: 6.875rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 2.125;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-home-fv__text {
    top: 7rem;
    left: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-home-fv__logo {
  position: absolute;
  bottom: 5.3125rem;
  left: 51%;
  transform: translateX(-50%);
  aspect-ratio: 193/50;
  max-width: 12.0625rem;
}
@media screen and (max-width: 768px) {
  .p-home-fv__logo {
    max-width: 9.625rem;
    bottom: 3.625rem;
    left: 50%;
    aspect-ratio: 154/40;
  }
}

.p-home-fv__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-recruit {
  position: relative;
  color: #ffffff;
  padding-top: 8rem;
  padding-bottom: 9.25rem;
  background: url(../images/top/recruit_bg_pc.webp) top/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-home-recruit {
    padding-top: 6.8125rem;
    padding-bottom: 7rem;
    background: url(../images/top/recruit_bg_sp.webp) top/cover no-repeat;
  }
}

/* 波SVGコンテナ（共通） */
.p-home-recruit__wave,
.p-home-brands__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-home-recruit__wave--top {
  top: 0;
}

.p-home-brands__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-home-recruit__wave--bottom,
.p-home-brands__wave--bottom {
  bottom: 0;
}

.p-home-recruit__wave svg,
.p-home-brands__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-home-recruit__wave,
  .p-home-brands__wave {
    height: 3rem;
  }
  .p-home-brands__wave--top {
    top: calc(-3rem + 1px);
  }
}

/* Brandsセクション波用 */
.p-home-brands {
  position: relative;
}

/* Staffセクション波用（SPのみ） */
.p-home-staff__layout {
  position: relative;
}

.p-home-staff__wave {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-home-staff__wave {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3rem;
    z-index: 1;
    overflow: visible;
  }
  .p-home-staff__wave--top {
    top: calc(-3rem + 1px);
  }
  .p-home-staff__wave svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}

/* About Introセクション波用 */
.p-about-intro {
  position: relative;
}

.p-about-intro__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-about-intro__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-about-intro__wave--bottom {
  bottom: calc(-5rem + 1px);
  z-index: 10;
}

.p-about-intro__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-about-intro__wave {
    height: 3rem;
  }
  .p-about-intro__wave--top {
    top: calc(-3rem + 1px);
  }
  .p-about-intro__wave--bottom {
    bottom: calc(-3rem + 1px);
  }
}

/* About Messageセクション波用 */
.p-about-message {
  position: relative;
}

.p-about-message__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-about-message__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-about-message__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-about-message__wave {
    height: 3rem;
  }
  .p-about-message__wave--top {
    top: calc(-3rem + 1px);
  }
}

/* About Restaurantセクション波用 */
.p-about-restaurant {
  position: relative;
}

.p-about-restaurant__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-about-restaurant__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-about-restaurant__wave--bottom {
  bottom: calc(-5rem + 1px);
  z-index: 10;
}

.p-about-restaurant__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-about-restaurant__wave {
    height: 3rem;
  }
  .p-about-restaurant__wave--top {
    top: calc(-3rem + 1px);
  }
  .p-about-restaurant__wave--bottom {
    bottom: calc(-3rem + 1px);
  }
}

/* Footerセクション波用 */
.p-footer {
  position: relative;
}

.p-footer__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-footer__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-footer__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-footer__wave {
    height: 3rem;
  }
  .p-footer__wave--top {
    top: calc(-3rem + 1px);
  }
}

.p-home-recruit__inner {
  max-width: 71.25rem;
  margin-inline: auto;
  padding-inline: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__inner {
    padding-inline: 1.5625rem;
  }
}

.p-home-recruit__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__body {
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
  }
}

.p-home-recruit__content {
  max-width: 15.625rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__content {
    max-width: 100%;
  }
}

.p-home-recruit__title.p-home__title {
  color: #ffffff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__title.p-home__title {
    text-align: center;
  }
}

.p-home-recruit__copy {
  margin-top: 2.1875rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.1em;
}
.p-home-recruit__text {
  margin-top: 2.1875rem;
  line-height: 1.8;
}
.p-home-recruit__image {
  flex-shrink: 0;
  width: 16.25rem;
  height: 25.625rem;
  border-radius: 0.375rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
  }
}

.p-home-recruit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-recruit__button {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__button {
    margin-top: 2rem;
  }
}

.p-home-recruit__button .c-button {
  max-width: 15rem;
  background: #bb5b6b;
  margin-inline: 0;
}
@media screen and (max-width: 768px) {
  .p-home-recruit__button .c-button {
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

@media (any-hover: hover) {
  .p-home-recruit__button .c-button:hover {
    background: #ffffff;
    color: #bb5b6b;
    border: 1px solid #ffffff;
  }
}
.p-home-staff__layout {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff__layout {
    margin-top: 3.75rem;
  }
}

.p-home-staff___inner {
  padding-inline: 3.125rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff___inner {
    padding-inline: 0;
    padding-bottom: 0;
  }
}

.p-home-staff__container {
  padding-top: 4rem;
  padding-bottom: 3.125rem;
  background: #faf5eb;
  border-radius: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff__container {
    padding-bottom: 2.75rem;
    border-radius: 0;
  }
}

.p-home-staff___title.p-home__title {
  color: #142832;
}

.p-home-staff___text {
  margin-top: 1.875rem;
  padding-inline: 3.75rem;
  line-height: 1.8;
  color: #142832;
}
@media screen and (max-width: 768px) {
  .p-home-staff___text {
    margin-top: 2.3125rem;
    padding-inline: 1.5625rem;
  }
}

.p-home-staff__slider {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff__slider {
    margin-top: 2.3125rem;
  }
}

.p-home-staff__arrow {
  position: absolute;
  top: 37%;
  top: 22%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #374851;
  transition: ease-in-out, 0.3s;
  cursor: pointer;
  z-index: 10;
}

.p-home-staff__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-left: solid 0.125rem #faf5eb;
  border-bottom: solid 0.125rem #faf5eb;
}
@media screen and (max-width: 768px) {
  .p-home-staff__arrow::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-home-staff__arrow.p-home-staff__arrow--prev::before {
  right: 10%;
}

.p-home-staff__arrow.p-home-staff__arrow--next::before {
  left: 30%;
}

@media (any-hover: hover) {
  .p-home-staff__arrow:hover {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.1);
  }
}
.p-home-staff__arrow--prev {
  left: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff__arrow--prev {
    left: -1.875rem;
  }
}

.p-home-staff__arrow--next {
  right: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff__arrow--next {
    right: -1.875rem;
  }
}

.p-home-staff__arrow--next::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

.p-home-staff__button {
  margin-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .p-home-staff__button {
    margin-top: 2.5rem;
  }
}

.p-home-staff__button .c-button {
  color: #ffffff;
  background: #142832;
}

@media (any-hover: hover) {
  .p-home-staff__button .c-button:hover {
    background: #ffffff;
    color: #142832;
    border: 1px solid #142832;
  }
}
.p-home__title {
  font-family: "Lobster", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #faf5eb;
  text-align: center;
  letter-spacing: 0.03em;
}

.p-nav {
  display: flex;
  justify-content: flex-end;
  padding-right: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-nav {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    justify-content: center;
    overflow-y: scroll;
  }
}

.p-nav__inner {
  padding-top: 7.625rem;
  padding-top: 5svh;
  max-width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .p-nav__inner {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    max-width: 100%;
  }
}

.p-nav__logo {
  max-width: 10.625rem;
  margin-inline: auto;
  aspect-ratio: 140/70;
}
@media screen and (max-width: 768px) {
  .p-nav__logo {
    display: none;
  }
}

.p-nav__logo a {
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-nav__logo a:hover {
    opacity: 0.7;
  }
}
.p-nav__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.p-nav__section-title {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-nav__section-title {
    margin-bottom: 0.9375rem;
    font-size: 1rem;
  }
}

.p-nav__section-title::before,
.p-nav__section-title::after {
  content: "";
  flex: 1;
  height: 0.0625rem;
  background-color: #ffffff;
}

.p-nav__list {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}

.p-nav__list--2col {
  gap: 1.875rem;
}

.p-nav__list--3col {
  gap: 1.25rem;
}

.p-nav__slider {
  position: relative;
  margin-top: 1.25rem;
}

.p-nav__slider-viewport {
  overflow: hidden;
  width: 100%;
}

.p-nav__slider .p-nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  margin-top: 0;
  transition: transform 0.6s ease;
}

.p-nav__slider .p-nav__item {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
}

.p-nav__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
  z-index: 2;
}

.p-nav__slider-arrow--prev {
  left: -0.75rem;
}

.p-nav__slider-arrow--next {
  right: -0.75rem;
}

.p-nav__slider-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.7);
}


.p-nav__item {
  flex-shrink: 0;
}

.p-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  color: #ffffff;
  text-decoration: none;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-nav__item a:hover {
    scale: 1.08;
  }
}
.p-nav__item-image {
  border-radius: 100vh;
  aspect-ratio: 1;
  width: 6.25rem;
}

.p-nav__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vh;
}

.p-nav__item-icon {
  width: 5.375rem;
  border-radius: 100vh;
  aspect-ratio: 1;
}

.p-nav__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-nav__item-title {
  font-weight: 500;
  text-align: center;
}

.p-nav__button {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}

.p-nav__button .c-button {
  position: relative;
  background: #374851;
}

.p-nav__button .c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  width: 2.375rem;
  height: 1.875rem;
  background: url(../images/common/icon_mari02.svg) center/contain no-repeat;
  z-index: 1;
}

@media (any-hover: hover) {
  .p-nav__button .c-button:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #374851;
    border: 1px solid #374851;
  }
  .p-nav__button .c-button:hover .c-button--arrow {
    border-color: #374851;
  }
}
.p-pagination {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-pagination {
    margin-top: 3.75rem;
  }
}

.p-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-pagination__list {
    gap: 0.5rem;
  }
}

.p-pagination__item:first-child {
  margin-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-pagination__item:first-child {
    margin-right: 0;
  }
}

.p-pagination__item:last-child {
  margin-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-pagination__item:last-child {
    margin-left: 0;
  }
}

.p-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #faf5eb;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  border-radius: 100vh;
  transition: ease-in-out, 0.3s;
}

.p-pagination__link--current {
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.p-pagination__link--prev,
.p-pagination__link--next {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid #faf5eb;
}

@media (any-hover: hover) {
  .p-pagination__link:hover:not(.p-pagination__link--current) {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
  }
}
.p-pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #faf5eb;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-pagination__ellipsis {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}

.p-pagination__arrow {
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-pagination__arrow {
    font-size: 1.125rem;
  }
}

/* Recruit Attractiveness 波エフェクト */
.p-recruit-attractiveness {
  position: relative;
}

.p-recruit-attractiveness__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-recruit-attractiveness__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-recruit-attractiveness__wave--bottom {
  bottom: calc(-5rem + 1px);
  z-index: 10;
}

.p-recruit-attractiveness__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__wave {
    height: 3rem;
  }
  .p-recruit-attractiveness__wave--top {
    top: calc(-3rem + 1px);
  }
  .p-recruit-attractiveness__wave--bottom {
    bottom: calc(-3rem + 1px);
  }
}

.p-recruit-attractiveness__inner {
  padding-top: 4.0625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__inner {
    padding-top: 3.75rem;
    padding-top: 5.3125rem;
    padding-bottom: 12.8125rem;
  }
}

.p-recruit-attractiveness__body {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__body {
    margin-top: 1.375rem;
  }
}

.p-recruit-attractiveness__intro-text {
  line-height: 1.8;
}

.p-recruit-attractiveness__list {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__list {
    margin-top: 2.1875rem;
  }
}

.p-recruit-attractiveness__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 2.0625rem;
    overflow-x: clip;
  }
}

.p-recruit-attractiveness__item:nth-of-type(2) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__item:nth-of-type(2) {
    margin-top: 2.125rem;
  }
}

.p-recruit-attractiveness__text-wrapper {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__text-wrapper {
    gap: 1.125rem;
    padding-inline: 2.1875rem;
  }
}

.p-recruit-attractiveness__text {
  max-width: 13.4375rem;
  padding-top: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__text {
    max-width: 100%;
    padding-top: 1.25rem;
  }
}

.p-recruit-attractiveness__title {
  font-size: 1.5rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__title {
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}

.p-recruit-attractiveness__image {
  flex-shrink: 0;
  max-width: 16.875rem;
  padding-top: 1.5625rem;
  aspect-ratio: 270/250;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__image {
    padding-top: 0;
    max-width: 20.9375rem;
    aspect-ratio: 335/250;
  }
}

.p-recruit-attractiveness__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-attractiveness__item:nth-of-type(3) {
  display: block;
  margin-top: 5.625rem;
  padding-left: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__item:nth-of-type(3) {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.3125rem;
    padding-left: 0;
  }
}
.p-recruit-attractiveness__item:nth-of-type(3) .p-recruit-attractiveness__text {
  padding-top: 0;
}
.p-recruit-attractiveness__item:nth-of-type(3) .p-recruit-attractiveness__image {
  position: absolute;
  top: -1.875rem;
  right: -6.25rem;
  max-width: 100%;
  width: 26.3125rem;
  height: 17.75rem;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__item:nth-of-type(3) .p-recruit-attractiveness__image {
    top: auto;
    bottom: -11.75rem;
    right: 1rem;
    width: 18.4375rem;
    height: 12.4375rem;
  }
}

.p-recruit-attractiveness__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-recruit-attractiveness__item--reverse {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-recruit-attractiveness__item--reverse .p-recruit-attractiveness__text-wrapper {
  flex-direction: row-reverse;
}

/* Recruit Benefits 波エフェクト */
.p-recruit-benefits {
  position: relative;
}

.p-recruit-benefits__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-recruit-benefits__wave--top {
  top: -1px;
  z-index: 10;
}

.p-recruit-benefits__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-recruit-benefits__wave__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-recruit-benefits__wave {
    height: 3rem;
  }
  .p-recruit-benefits__wave--top {
    top: -1px;
  }
}

.p-recruit-benefits__inner {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: url(../images/recruit/benefits_bg.webp) center/cover no-repeat;
}

.p-recruit-benefits__catchphrase {
  margin-top: 2.8125rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__catchphrase {
    margin-top: 1.6875rem;
    line-height: 1.7;
  }
}

.p-recruit-benefits__description {
  margin-top: 1.875rem;
}
.p-recruit-benefits__text {
  line-height: 1.8;
}

.p-recruit-benefits__list {
  margin-top: 2.1875rem;
  margin-inline: auto;
  max-width: 33.75rem;
  display: flex;
  justify-content: center;
  gap: 3.125rem 1.125rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__list {
    gap: 2.5rem 1.25rem;
    margin-top: 2.8125rem;
  }
}

.p-recruit-benefits__item {
  letter-spacing: -0.05em;
}

.p-recruit-benefits__item-icon {
  max-width: 7.5rem;
  aspect-ratio: 1;
}

.p-recruit-benefits__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-recruit-benefits__item-labelimg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-recruit-benefits__item-label {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item-label {
    margin-top: 1.125rem;
  }
}

.p-recruit-benefits__item-label--sub {
  display: block;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item-label--sub {
    line-height: 1.5;
  }
}

.p-recruit-benefits__button {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__button {
    margin-top: 2.8125rem;
  }
}

.p-recruit-benefits__button .c-button {
  background: #bb5b6b;
  pointer-events: none;
}

.p-recruit-description {
  position: relative;
  /* background: url(../images/recruit/description_bg.webp) center/cover no-repeat; */
  color: #142832;
  background-color: #faf5eb;
}

.p-recruit-description__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-recruit-description__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-recruit-description__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-recruit-description__wave {
    height: 3rem;
  }
  .p-recruit-description__wave--top {
    top: calc(-3rem + 1px);
  }
}

.p-recruit-description__inner {
  padding-top: 4.6875rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-description__inner {
    padding-top: 2.8125rem;
    padding-bottom: 4.0625rem;
  }
}

.p-recruit-description__body {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-description__body {
    margin-top: 1.875rem;
  }
}

.p-recruit-description__list {
  max-width: 34.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit-description__list {
    max-width: 100%;
  }
}

.p-recruit-description__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-recruit-description__item {
    gap: 0.5rem;
    flex-direction: column;
  }
}

.p-recruit-description__item + .p-recruit-description__item {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-description__item + .p-recruit-description__item {
    margin-top: 2rem;
  }
}

.p-recruit-description__label {
  width: 100%;
  max-width: 7.75rem;
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-recruit-description__label {
    max-width: 100%;
    letter-spacing: -0.09em;
  }
}

.p-recruit-description__text {
  color: #142832;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.8;
}

.p-recruit-description__text-mark {
  display: inline-block;
  margin-right: 0.2em;
  font-size: 0.8em;
  vertical-align: text-top;
  color: #727e84;
}

.p-recruit-environment {
  background: url(../images/recruit/environment_bg_pc.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment {
    background: url(../images/recruit/environment_bg_sp.webp) center/cover no-repeat;
  }
}

.p-recruit-environment__inner {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__inner {
    padding-top: 4.0625rem;
    padding-bottom: 4.375rem;
  }
}

.p-recruit-environment__body {
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__body {
    margin-top: 1.8125rem;
  }
}

.p-recruit-environment__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  max-width: 33.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__cards {
    max-width: 100%;
  }
}

.p-recruit-environment__card {
  width: calc((100% - 1.25rem) / 3);
  padding-inline: 0.375rem;
  padding-top: 0.6875rem;
  border-radius: 0.375rem;
  background: #faf5eb;
  aspect-ratio: 173/161;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__card {
    width: calc((100% - 0.625rem) / 2);
    padding-top: 0.625rem;
  }
}

.p-recruit-environment__card-title {
  position: relative;
  border-radius: 100vh;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  z-index: 10;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__card-title {
    font-size: 0.8125rem;
  }
}

.p-recruit-environment__card-title::before {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__card-title::before {
    width: 0.625rem;
    height: 0.625rem;
    bottom: -0.25rem;
  }
}

.p-recruit-environment__card--navy .p-recruit-environment__card-title {
  background: #142832;
  color: #faf5eb;
}

.p-recruit-environment__card--navy .p-recruit-environment__card-title::before {
  background: #142832;
}

.p-recruit-environment__card--orange .p-recruit-environment__card-title {
  background: #dc5a46;
  color: #faf5eb;
}

.p-recruit-environment__card--orange .p-recruit-environment__card-title::before {
  background: #dc5a46;
}

.p-recruit-environment__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 2.25rem);
  position: relative;
}

.p-recruit-environment__number-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  min-height: 5.625rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__number-wrapper {
    padding-top: 0.625rem;
  }
}

.p-recruit-environment__number {
  font-family: "Zen Old Mincho", serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
  color: #374851;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__number {
    font-size: 4.6875rem;
  }
}

.p-recruit-environment__number--decimal::after {
  content: ".";
  position: absolute;
  top: 0.75rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #374851;
  margin-left: -0.125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__number--decimal::after {
    top: 1.25rem;
    font-size: 1.875rem;
  }
}

.p-recruit-environment__decimal {
  padding-top: 0.8125rem;
  margin-left: 0.25rem;
  color: #374851;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__decimal {
    font-size: 2rem;
  }
}

.p-recruit-environment__unit {
  position: absolute;
  bottom: 0.4375rem;
  right: 0.8125rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #142832;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__unit {
    bottom: 0.875rem;
    font-size: 0.9375rem;
  }
}

.p-recruit-environment__card:nth-of-type(5) .p-recruit-environment__unit {
  right: 0;
}

.p-recruit-environment__card:nth-child(3) .p-recruit-environment__unit,
.p-recruit-environment__card:nth-child(10) .p-recruit-environment__unit,
.p-recruit-environment__card:nth-child(11) .p-recruit-environment__unit {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__card:nth-child(3) .p-recruit-environment__unit,
  .p-recruit-environment__card:nth-child(10) .p-recruit-environment__unit,
  .p-recruit-environment__card:nth-child(11) .p-recruit-environment__unit {
    font-size: 1.25rem;
  }
}

.p-recruit-environment__card--orange .p-recruit-environment__number,
.p-recruit-environment__card--orange .p-recruit-environment__decimal,
.p-recruit-environment__card--orange .p-recruit-environment__unit {
  color: #dc5a46;
}
.p-recruit-environment__card--orange .p-recruit-environment__number--decimal::after {
  color: #dc5a46;
}

.p-recruit-environment__card--navy .p-recruit-environment__decimal {
  color: #374851;
}
.p-recruit-environment__card--navy .p-recruit-environment__number--decimal::after {
  color: #374851;
}

.p-recruit-environment__number--small {
  font-size: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__number--small {
    font-size: 3.75rem;
  }
}

.p-recruit-environment__card--white .p-recruit-environment__card-title {
  background: #142832;
}
.p-recruit-environment__card--white .p-recruit-environment__card-title::before {
  background: #142832;
}

.p-recruit-environment__card:nth-child(2) .p-recruit-environment__card-content,
.p-recruit-environment__card:nth-child(7) .p-recruit-environment__card-content {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__card:nth-child(2) .p-recruit-environment__card-content,
  .p-recruit-environment__card:nth-child(7) .p-recruit-environment__card-content {
    padding-top: 1.25rem;
  }
}

.p-recruit-environment__ratio-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1875rem;
  min-height: 4.375rem;
  position: relative;
}

.p-recruit-environment__ratio-number {
  font-family: "Zen Old Mincho", serif;
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__ratio-number {
    font-size: 3.625rem;
  }
}

.p-recruit-environment__ratio-number--left {
  color: #374851;
}

.p-recruit-environment__ratio-number--right {
  color: #dc5a46;
}

.p-recruit-environment__ratio-number--left::after {
  content: ":";
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-size: 4.375rem;
  font-weight: 700;
  color: #142832;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__ratio-number--left::after {
    top: 43%;
    font-size: 3.125rem;
  }
}

.p-recruit-environment__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.625rem;
  border-radius: 100vh;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
}

.p-recruit-environment__badge--left,
.p-recruit-environment__badge--right {
  top: 0.875rem;
  font-size: 0.625rem;
  padding-block: 0.0625rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__badge--left,
  .p-recruit-environment__badge--right {
    top: 0.625rem;
    font-size: 0.5rem;
  }
}

.p-recruit-environment__badge--left {
  background: #374851;
  left: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__badge--left {
    left: 0.625rem;
  }
}

.p-recruit-environment__badge--right {
  background: #dc5a46;
  right: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__badge--right {
    right: 0.625rem;
  }
}

.p-recruit-environment__badge--top-left,
.p-recruit-environment__badge--top-right,
.p-recruit-environment__badge--middle-left,
.p-recruit-environment__badge--middle-right,
.p-recruit-environment__badge--bottom-left,
.p-recruit-environment__badge--bottom-right {
  font-size: 0.75rem;
  line-height: 1;
  padding-block: 0.125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__badge--top-left,
  .p-recruit-environment__badge--top-right,
  .p-recruit-environment__badge--middle-left,
  .p-recruit-environment__badge--middle-right,
  .p-recruit-environment__badge--bottom-left,
  .p-recruit-environment__badge--bottom-right {
    font-size: 0.625rem;
  }
}

.p-recruit-environment__badge--top-left {
  top: -0.375rem;
  left: -0.6875rem;
  background: #374851;
}

.p-recruit-environment__badge--top-right {
  top: -0.375rem;
  right: -0.6875rem;
  background: #dc5a46;
}

.p-recruit-environment__badge--middle-left {
  top: 46%;
  left: -1.4375rem;
  transform: translateY(-50%);
  background: #dc5a46;
}

.p-recruit-environment__badge--middle-right {
  top: 46%;
  right: -1.1875rem;
  transform: translateY(-50%);
  background: #374851;
}

.p-recruit-environment__badge--bottom-left {
  bottom: 0;
  left: -0.625rem;
  background: #374851;
}

.p-recruit-environment__badge--bottom-right {
  bottom: 0;
  right: -0.625rem;
  background: #dc5a46;
}

.p-recruit-environment__badge--top,
.p-recruit-environment__badge--middle,
.p-recruit-environment__badge--bottom {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  font-size: 0.75rem;
  line-height: 1;
  background: #374851;
  letter-spacing: -0.05em;
}

.p-recruit-environment__badge--top {
  top: 0.625rem;
  right: -1.25rem;
}

.p-recruit-environment__badge--middle {
  top: 1.0625rem;
  left: -1rem;
}

.p-recruit-environment__badge--bottom {
  bottom: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-recruit-environment__card--chart .p-recruit-environment__card-content {
  position: relative;
  width: 5.4375rem;
  height: auto;
  aspect-ratio: 1;
  margin-top: 0.9375rem;
  margin-inline: auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-recruit-environment__card--chart .p-recruit-environment__card-content {
    width: 4.5625rem;
    margin-top: 0.8125rem;
  }
}

.p-recruit-environment__card-content--age {
  background-image: url("../images/recruit/environment_age.svg");
}

.p-recruit-environment__card-content--academic {
  background-image: url("../images/recruit/environment_academic.svg");
}

/* Recruit Info 波エフェクト */
.p-recruit-info {
  position: relative;
}

.p-recruit-info__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-recruit-info__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-recruit-info__wave--bottom {
  bottom: calc(-5rem + 1px);
  z-index: 10;
}

.p-recruit-info__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-recruit-info__wave {
    height: 3rem;
  }
  .p-recruit-info__wave--top {
    top: calc(-3rem + 1px);
  }
  .p-recruit-info__wave--bottom {
    bottom: calc(-3rem + 1px);
  }
}

.p-recruit-info__inner {
  padding-top: 2.375rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-info__inner {
    padding-top: 3.125rem;
  }
}

.p-recruit-info__body {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-info__body {
    margin-top: 1.5625rem;
  }
}

.p-recruit-info__text {
  line-height: 1.8;
}

.p-recruit-info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-info__list {
    margin-top: 2.1875rem;
  }
}

.p-recruit-info__item {
  width: calc((100% - 1.25rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-recruit-info__item {
    width: calc((100% - 0.625rem) / 2);
  }
}

.p-recruit-info__item a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1rem;
  border-radius: 0.375rem;
  border: 2px solid #b8bec1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-info__item a {
    justify-content: flex-start;
    padding-left: 0.625rem;
  }
}

.p-recruit-info__item a::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 0.9375rem;
  transform: translateY(-50%) rotate(135deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 0.0625rem #ffffff;
  border-right: solid 0.0625rem #ffffff;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-recruit-info__item a::before {
    right: 0.8125rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit-info__item:first-child a,
  .p-recruit-info__item:nth-of-type(4) a {
    font-size: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .p-recruit-info__item a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #142832;
  }
  .p-recruit-info__item a:hover::before {
    top: 52%;
    border-top: solid 0.0625rem #142832;
    border-right: solid 0.0625rem #142832;
  }
}
.p-recruit-info__item--entry a {
  background: #374851;
}

.p-recruit-info__item--entry a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 0.0625rem #ffffff;
  border-right: solid 0.0625rem #ffffff;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-recruit-info__item--entry a::before {
    right: 0.8125rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

@media (any-hover: hover) {
  .p-recruit-info__item--entry a:hover {
    background: #ffffff;
    color: #374851;
  }
  .p-recruit-info__item--entry a:hover::before {
    top: 50%;
    right: 0.625rem;
    border-top: solid 0.0625rem #374851;
    border-right: solid 0.0625rem #374851;
  }
}
.p-recruit-mission {
  background: url(../images/recruit/mission_pc.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-recruit-mission {
    background: url(../images/recruit/mission_sp.webp) center/cover no-repeat;
  }
}

.p-recruit-mission_inner {
  padding-top: 6.875rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-mission_inner {
    padding-top: 3.5625rem;
    padding-bottom: 3.125rem;
  }
}

.p-recruit-mission__body {
  max-width: 20rem;
  margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-mission__body {
    max-width: 100%;
  }
}

.p-recruit-mission__text {
  padding-bottom: 1.875rem;
  line-height: 1.8;
}

.p-recruit-mission__list {
  padding-top: 1rem;
  border-top: 0.0625rem dotted #faf5eb;
}

.p-recruit-mission__item {
  line-height: 1.8;
}

.p-recruit-recuitment {
  position: relative;
}

.p-recruit-recuitment__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
  overflow: visible;
}

.p-recruit-recuitment__wave--top {
  top: calc(-5rem + 1px);
  z-index: 10;
}

.p-recruit-recuitment__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-recruit-recuitment__wave {
    height: 3rem;
  }
  .p-recruit-recuitment__wave--top {
    top: calc(-3rem + 1px);
  }
}

.p-recruit-recuitment__inner {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__inner {
    padding-top: 5.8125rem;
    padding-bottom: 2.1875rem;
  }
}

.p-recruit-recuitment__body {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__body {
    margin-top: 2.125rem;
  }
}

.p-recruit-recuitment__list {
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__list {
    padding-left: 0;
  }
}

.p-recruit-recuitment__item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__item {
    position: relative;
  }
}

.p-recruit-recuitment__item + .p-recruit-recuitment__item {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__item + .p-recruit-recuitment__item {
    margin-top: 3.125rem;
  }
}

.p-recruit-recuitment__item-logo {
  flex-shrink: 0;
  max-width: 5.375rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__item-logo {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.p-recruit-recuitment__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-recruit-recuitment__item-content {
  padding-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-recuitment__item-content {
    padding-top: 0;
  }
}

.p-recruit-recuitment__item-name {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-recruit-recuitment__item-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 1.5rem;
}

.p-recruit-recuitment__item-tag.p-recruit-recuitment__tag--light,
.p-recruit-recuitment__item-tag a {
  max-height: 2.5rem;
  padding-block: 0.625rem;
  padding-inline: 0.875rem;
  border-radius: 100vh;
  border: 1px solid #faf5eb;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-recruit-recuitment__item-tag a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #142832;
  }
}
.p-recruit-recuitment__tag--light {
  color: #5a686f;
}

.p-staff-detail {
  background: #faf5eb;
}
.p-staff-detail .p-under__title-en,
.p-staff-detail .p-under__title-ja {
  color: #aa3246;
}

.p-staff-detail__inner.l-inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  max-width: 40rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__inner.l-inner {
    padding-inline: 1.875rem;
  }
}

.p-staff-detail__contents {
  position: relative;
}

/* p-staff-detail 波エフェクト */
.p-staff-detail__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.p-staff-detail__wave--top {
  top: calc(-5rem + 1px);
}
@media screen and (max-width: 768px) {
  .p-staff-detail__wave--top {
    top: calc(-3rem + 1px);
  }
}
.p-staff-detail__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__wave {
    height: 3rem;
  }
}

.p-staff-detail__header {
  display: flex;
  gap: 3.125rem;
  justify-content: flex-end;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__header {
    flex-direction: column-reverse;
    gap: 1.875rem;
    margin-top: 3.75rem;
  }
}

.p-staff-detail__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 10rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__content {
    max-width: 100%;
  }
}

.p-staff-detail__logo {
  aspect-ratio: 1;
  max-width: 6.25rem;
}

.p-staff-detail__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-staff-detail__category {
  display: block;
  max-width: 10rem;
  width: 100%;
  margin-top: 0.625rem;
  padding-block: 0.625rem;
  background: #bb5b6b;
  border-radius: 100vh;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #faf5eb;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__category {
    margin-top: 0.6875rem;
    padding-block: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-staff-detail__name {
  display: block;
  margin-top: 1.5rem;
  color: #142832;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.p-staff-detail__name-en {
  display: block;
  margin-top: 0.9375rem;
  font-family: "Inter", sans-serif;
  color: #142832;
  text-align: center;
  line-height: 1;
}

.p-staff-detail__image {
  width: 100%;
  max-width: 18.75rem;
  aspect-ratio: 300/240;
  border-radius: 0.375rem;
  overflow: clip;
}

.p-staff-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff-detail__comment {
  margin-top: 2.5rem;
  padding-block: 1.75rem;
  padding-inline: 3.125rem;
  background: #aa3246;
  border-radius: 0.375rem;
  line-height: 1.8;
  letter-spacing: -0.05em;
  background: url(../images/recruit/benefits_bg.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__comment {
    margin-top: 2.9375rem;
    letter-spacing: -0.07em;
    padding-block: 1.4375rem;
    padding-inline: 1.875rem;
  }
}

.p-staff-detail__qa {
  max-width: 33.75rem;
  margin-top: 3.3125rem;
  margin-inline: auto;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__qa {
    margin-top: 2.5rem;
  }
}

.p-staff-detail__qa-block + .p-staff-detail__qa-block {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__qa-block + .p-staff-detail__qa-block {
    margin-top: 1.4375rem;
  }
}

.p-staff-detail__qa-image {
  max-width: 5rem;
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 100vh;
  text-align: center;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__qa-image {
    max-width: 3.75rem;
  }
}

.p-staff-detail__qa-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff-detail__qa-content {
  margin-top: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__qa-content {
    margin-top: 2.125rem;
  }
}

.p-staff-detail__qa-title {
  position: relative;
  color: #aa3246;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__qa-title {
    letter-spacing: -0.07em;
  }
}

.p-staff-detail__qa-title::before {
  content: "Q";
  position: absolute;
  top: -0.3125rem;
  left: -2.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Lobster", sans-serif;
  color: #aa3246;
}

.p-staff-detail__qa-text {
  margin-top: 0.625rem;
  color: #142832;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.8;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__qa-text {
    letter-spacing: -0.07em;
  }
}

.p-staff-detail__message.u-font-center {
  border-top: 0.0625rem solid #d498a2;
  padding-top: 5rem;
  color: #aa3246;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__message.u-font-center {
    padding-top: 1.875rem;
    text-align: left;
    letter-spacing: -0.1em;
  }
}

.p-staff-detail__button {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-staff-detail__button {
    margin-top: 2.1875rem;
  }
}

.p-staff-detail__button .c-button {
  background: #aa3246;
}

.p-staff-other__inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 7rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-staff-other__inner {
    padding-top: 1.25rem;
    padding-bottom: 5.625rem;
  }
}

.p-staff-other__title {
  color: #aa3246;
  font-family: "Lobster", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.p-staff-other .p-staff__list {
  position: relative;
  margin-top: 2.5rem;
}

.p-staff-other .p-staff__item {
  width: 100%;
  max-width: 15rem;
  flex-shrink: 0;
}

.p-staff-other .p-staff__item a {
  position: relative;
}

.p-staff-other .p-staff__item-category {
  background: #bb5b6b;
}

@media screen and (max-width: 768px) {
  .p-staff-other .p-staff__item-logo {
    max-width: 3.75rem;
  }
}

.p-staff-other__arrow {
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #aa3246;
  cursor: pointer;
  transition: ease-in-out, 0.3s;
  z-index: 10;
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .p-staff-other__arrow {
    top: 29%;
  }
}

.p-staff-other__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-left: solid 0.125rem #faf5eb;
  border-bottom: solid 0.125rem #faf5eb;
}
@media screen and (max-width: 768px) {
  .p-staff-other__arrow::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-staff-other__arrow.p-staff-other__arrow--prev::before {
  right: 10%;
}

.p-staff-other__arrow.p-staff-other__arrow--next::before {
  left: 30%;
}

@media (any-hover: hover) {
  .p-staff-other__arrow:hover {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.1);
  }
}
.p-staff-other__arrow--prev {
  left: -2.5rem;
}

.p-staff-other__arrow--next {
  right: -2.5rem;
}

.p-staff-other__arrow--next::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

.p-staff__inner {
  padding-top: 2.5rem;
  padding-bottom: 7rem;
}

.p-staff__body {
  margin-top: 2.8125rem;
}

.p-staff .p-staff__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
}

.p-staff__item {
  width: 100%;
  max-width: 15rem;
}

.p-staff__item-image {
  position: relative;
  transition: ease-in-out, 0.3s;
  transform-origin: center;
}

.p-staff__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  border-radius: 100vh;
}

.p-staff__item__body {
  margin-top: 1.875rem;
}

.p-staff__item-category {
  display: block;
  max-width: 10rem;
  margin-inline: auto;
  padding-block: 0.625rem;
  background: #374851;
  border-radius: 100vh;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.p-staff__item-ja {
  display: block;
  margin-top: 1.5rem;
  color: #142832;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.p-staff__item-en {
  display: block;
  margin-top: 1.25rem;
  font-family: "Inter", sans-serif;
  color: #142832;
  text-align: center;
  line-height: 1;
}

.p-staff__item-text {
  margin-top: 1.875rem;
  color: #142832;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.6;
}

.p-staff__item-button {
  position: relative;
  display: block;
  margin-top: 1.875rem;
  padding-right: 1.25rem;
  color: #142832;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-staff__item-button {
    letter-spacing: -0.08em;
  }
}

@media (any-hover: hover) {
  .p-staff__item a:hover .p-staff__item-image {
    scale: 1.04;
  }
  .p-staff__item a:hover .p-staff__item-button {
    transform: translateX(0.1875rem);
  }
}
.p-staff__item-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 0.0625rem #899398;
  border-right: solid 0.0625rem #899398;
  transition: ease-in-out, 0.1s;
}

@media (any-hover: hover) {
  .p-staff__item a:hover .p-staff__item-button::before {
    border-top: solid 0.0625rem #142832;
    border-right: solid 0.0625rem #142832;
  }
  .p-staff .p-staff__item a:hover .p-staff__item-button::before {
    border-top: solid 0.0625rem #ffffff;
    border-right: solid 0.0625rem #ffffff;
  }
}
.p-staff {
  position: relative;
  background: url(../images/staff/bg.webp) center/cover no-repeat;
}

/* p-staff 波エフェクト */
.p-staff__wave-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.p-staff__wave-mask--bottom {
  bottom: 0;
}
.p-staff__wave-mask--top {
  top: 0;
}
.p-staff__wave-mask svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-staff__wave-mask {
    height: 3rem;
  }
}
.p-staff .p-staff__list {
  margin-top: 5rem;
  flex-wrap: wrap;
  gap: 5rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-staff .p-staff__list {
    gap: 2.5rem 1.25rem;
  }
}
.p-staff .p-staff__item {
  width: calc((100% - 3.75rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-staff .p-staff__item {
    width: calc((100% - 1.25rem) / 2);
  }
}
.p-staff .p-staff__item a {
  position: relative;
}
.p-staff .p-staff__item-category {
  background: #bb5b6b;
}
@media screen and (max-width: 768px) {
  .p-staff .p-staff__item-category {
    padding-block: 0.5rem;
  }
}
.p-staff .p-staff__item-text,
.p-staff .p-staff__item-ja,
.p-staff .p-staff__item-en,
.p-staff .p-staff__item-button {
  color: #faf5eb;
}
@media screen and (max-width: 768px) {
  .p-staff .p-staff__item-text,
  .p-staff .p-staff__item-ja,
  .p-staff .p-staff__item-en,
  .p-staff .p-staff__item-button {
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 768px) {
  .p-staff .p-staff__item-ja {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-staff .p-staff__item-category {
    font-size: 0.875rem;
  }
}
.p-staff .p-staff__item-button::before {
  border-color: #d498a2;
}

.p-staff__text {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .p-staff__text.u-font-center {
    text-align: left;
  }
}

.p-staff__item-logo {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  max-width: 3.75rem;
  z-index: 1;
  background: #faf5eb;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  .p-staff__item-logo {
    max-width: 2.5rem;
  }
}

.p-staff__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-staff .p-footer__inner {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-staff .p-footer__inner {
    padding-top: 3.3125rem;
  }
}

.p-under__fv {
  aspect-ratio: 680/370;
}
@media screen and (max-width: 768px) {
  .p-under__fv {
    aspect-ratio: 370/361;
  }
}

.p-under__fv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-under__title-en {
  font-family: "Lobster", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
.p-under__title-ja {
  margin-top: 0.9375rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.p-under__body {
  margin-top: 3.75rem;
}
.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-df {
  display: flex;
}

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

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

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

@media screen and (max-width: 768px) {
  .u-ai-c-md-max {
    align-items: center;
  }
}

.u-fd-c {
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .u-fd-c-md-max {
    flex-direction: column;
  }
}

.is-hidden {
  display: none;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-bold {
  font-weight: 700;
}

.u-font-center {
  text-align: center;
}

.u-font-ls005 {
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .u-font-ls005 {
    letter-spacing: -0.07em;
  }
}

.u-font-bluegreen1 {
  color: #142832;
}

.u-font-lh18 {
  line-height: 1.8;
}

.u-font-justify {
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.u-po-rel {
  position: relative;
}

.u-po-abs {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .u-po-sta-md-max {
    position: static;
  }
}

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

/* ===================================
   Animation Styles
   =================================== */

/* パフォーマンス最適化 */
.p-home-fv__tile span,
.p-staff__item-image img,
.p-home-brands__item img,
.p-home-about__image img,
.p-home-recruit__image img {
  will-change: transform, opacity;
}

/* ホバー時の画像オーバーフロー対策 */
.p-home-brands__item,
.p-staff__item-image,
.p-home-recruit__image,
.p-about-members__item-image {
  overflow: visible;
}

/* reduced-motion対応 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*# sourceMappingURL=style.css.map */
