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

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 393px) {
  html {
    font-size: 4.0712468193vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

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

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.8;
  }
}
/* キーボード操作時のフォーカス装飾（hoverと同等の視覚効果） */
a:focus-visible {
  opacity: 0.8;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 5.3125rem;
  }
}

body {
  background: #FAF6F4;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

.l-drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  z-index: 1100;
}
@media screen and (min-width: 901px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer[aria-hidden=false] {
  transform: translateX(0);
}

.l-footer {
  margin-top: 0;
}

.l-header {
  bottom: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s ease;
  width: 100%;
  z-index: 1000;
}

.l-header.is-fixed {
  position: fixed;
}

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

.c-btn01 {
  align-items: center;
  background-color: #7D1522;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
  display: flex;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
  padding: 16px 31px 16px 32px;
  padding: 1rem 1.9375rem 1rem 2rem;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    gap: 14px;
    gap: 0.875rem;
    padding: 15px 5px 15px;
    padding: 0.9375rem 0.3125rem 0.9375rem;
    width: auto;
  }
}

.c-btn01__text {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4478571429;
}

.c-btn01__icon {
  display: block;
  flex-shrink: 0;
  height: 5px;
  height: 0.3125rem;
  width: 22px;
  width: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-btn01__icon {
    transition: transform 0.3s ease;
  }
}

.c-btn01__icon img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.c-btn01__icon-img {
  display: block;
  height: 100%;
  width: 100%;
}

.c-btn01__icon-img--hover {
  display: none;
}

@media screen and (min-width: 768px) {
  a:hover .c-btn01__icon,
  a:focus-visible .c-btn01__icon {
    transform: translateX(0.625rem);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .c-btn01:hover {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .c-btn01:hover .c-btn01__text {
    color: #7D1522;
  }
  .c-btn01:hover .c-btn01__icon-img--default {
    display: none;
  }
  .c-btn01:hover .c-btn01__icon-img--hover {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-btn01:focus-visible {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .c-btn01:focus-visible .c-btn01__text {
    color: #7D1522;
  }
  .c-btn01:focus-visible .c-btn01__icon-img--default {
    display: none;
  }
  .c-btn01:focus-visible .c-btn01__icon-img--hover {
    display: block;
  }
}
.c-menu-button {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
  height: 24px;
  height: 1.5rem;
  justify-content: center;
  width: 24px;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-menu-button {
    gap: 5px;
  }
}

.c-menu-button__line {
  background-color: #fff;
  display: block;
  height: 2px;
  height: 0.125rem;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-menu-button__line {
    height: 2px;
    width: 20px;
  }
}

.c-menu-button[aria-expanded=true] .c-menu-button__line:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.c-menu-button[aria-expanded=true] .c-menu-button__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.c-menu-button[aria-expanded=true] .c-menu-button__line:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.c-page-top {
  align-items: center;
  aspect-ratio: 30/30;
  background-color: #FAF6F4;
  border: 1px solid #7D1522;
  border-radius: 0.3125rem;
  bottom: 20px;
  bottom: 1.25rem;
  cursor: pointer;
  display: flex;
  height: auto;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 10px;
  right: 0.625rem;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  width: 30px;
  width: 1.875rem;
  z-index: 900;
}
@media screen and (min-width: 768px) {
  .c-page-top {
    bottom: 40px;
    bottom: 2.5rem;
    right: 45px;
    right: 2.8125rem;
    width: 45px;
    width: 2.8125rem;
  }
}

.c-page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

.c-page-top__icon {
  aspect-ratio: 4/16;
  display: block;
  flex-shrink: 0;
  height: 16px;
  height: 1rem;
  width: 4px;
  width: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-page-top__icon {
    aspect-ratio: 5/21;
    height: 21px;
    height: 1.3125rem;
    width: 5px;
    width: 0.3125rem;
  }
}

.c-page-top__icon-img {
  display: block;
  width: 100%;
}

.c-page-top__icon-img img {
  -o-object-fit: contain;
  aspect-ratio: 4/16;
  display: block;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-page-top__icon-img img {
    aspect-ratio: 5/21;
  }
}

.c-page-top__icon-img--hover {
  display: none;
}

@media (hover: hover) {
  .c-page-top:hover {
    background-color: #7D1522;
    opacity: 1;
  }
  .c-page-top:hover .c-page-top__icon-img--default {
    display: none;
  }
  .c-page-top:hover .c-page-top__icon-img--hover {
    display: block;
  }
}
.c-page-top:focus-visible {
  background-color: #7D1522;
  opacity: 1;
}

.c-page-top:focus-visible .c-page-top__icon-img--default {
  display: none;
}

.c-page-top:focus-visible .c-page-top__icon-img--hover {
  display: block;
}

.c-title01 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.c-title01__sub {
  color: #7D1522;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title01__sub {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.c-title01--wht,
.c-title01--wht .c-title01__sub,
.c-title01--wht .c-title01__main {
  color: #fff;
}

.c-title01__main {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title01__main {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-drawer {
  background-color: #333333;
  color: #fff;
}

.p-drawer__inner {
  min-height: 100%;
  padding: 20px 20px 133px;
  padding: 1.25rem 1.25rem 8.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-drawer__inner {
    padding: 38px 40px 133px;
    padding: 2.375rem 2.5rem 8.3125rem;
  }
}

.p-drawer__close {
  background-color: transparent;
  display: block;
  height: 24px;
  height: 1.5rem;
  padding: 0;
  position: absolute;
  right: 21px;
  right: 1.3125rem;
  top: 21px;
  top: 1.3125rem;
  width: 24px;
  width: 1.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-drawer__close {
    height: 24px;
    right: 40px;
    right: 2.5rem;
    top: 40px;
    top: 2.5rem;
    width: 24px;
  }
}

.p-drawer__close img {
  display: block;
  height: auto;
  width: 100%;
}

.p-drawer__brand {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-drawer__logo {
  display: block;
  flex-shrink: 0;
  width: 118px;
  width: 7.375rem;
}
@media screen and (min-width: 768px) {
  .p-drawer__logo {
    width: 183px;
    width: 11.4375rem;
  }
}

.p-drawer__logo img {
  -o-object-fit: contain;
  aspect-ratio: 118/25;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-drawer__badge {
  border: 1px solid #fff;
  border-radius: 3.125rem;
  flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
}

.p-drawer__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
  margin-top: 110px;
  margin-top: 6.875rem;
}

.p-drawer__nav-items {
  display: flex;
  flex-direction: column;
  gap: 23px;
  gap: 1.4375rem;
}

.p-drawer__nav-item + .p-drawer__nav-item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-drawer__nav-link {
  align-items: center;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  justify-content: space-between;
  width: 100%;
}

.p-drawer__nav-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.p-drawer__nav-icon {
  display: block;
  flex-shrink: 0;
  height: 4px;
  height: 0.25rem;
  width: 20px;
  width: 1.25rem;
}

.p-drawer__nav-icon img {
  display: block;
  height: auto;
  width: 100%;
}

.p-drawer__entry {
  align-items: center;
  background-color: #fff;
  border-radius: 0.3125rem;
  color: #000;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1.45;
  padding: 16px 32px;
  padding: 1rem 2rem;
  width: 100%;
}

.p-drawer__entry-icon {
  display: block;
  flex-shrink: 0;
  height: 4px;
  height: 0.25rem;
  width: 20px;
  width: 1.25rem;
}

.p-drawer__entry-icon img {
  display: block;
  height: auto;
  width: 100%;
}

@media (hover: hover) {
  .p-drawer__nav-link:hover {
    opacity: 0.8;
  }
  .p-drawer__entry:hover {
    opacity: 0.8;
  }
}
.p-drawer__nav-link:focus-visible,
.p-drawer__entry:focus-visible {
  opacity: 0.8;
}

@media (hover: none) {
  .p-drawer__nav-link:active {
    opacity: 0.8;
  }
  .p-drawer__entry:active {
    opacity: 0.8;
  }
}
.p-entry-btn01 {
  background-color: #7D1522;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
  display: block;
  min-height: 64px;
  min-height: 4rem;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry-btn01 {
    border-radius: 0;
    min-height: 204px;
    min-height: 12.75rem;
  }
}

.p-entry-btn01__bg {
  display: block;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-entry-btn01__bg {
    margin-top: 0;
  }
}

.p-entry-btn01__bg-img--hover {
  display: none;
}

.p-entry-btn01__bg img {
  -o-object-fit: cover;
  aspect-ratio: 353/58;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry-btn01__bg img {
    aspect-ratio: 1200/204;
  }
}

.p-entry-btn01__label {
  align-items: center;
  align-self: center;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
  justify-content: center;
  justify-self: center;
  left: 0;
  min-height: 64px;
  min-height: 4rem;
  place-self: center;
  position: relative;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn01__label {
    gap: 16px;
    gap: 1rem;
    min-height: 204px;
    min-height: 12.75rem;
  }
}

.p-entry-btn01__label-en {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn01__label-en {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.p-entry-btn01__label-ja {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn01__label-ja {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  .p-entry-btn01:hover {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .p-entry-btn01:hover .p-entry-btn01__bg-img--default {
    display: none;
  }
  .p-entry-btn01:hover .p-entry-btn01__bg-img--hover {
    display: block;
  }
  .p-entry-btn01:hover .p-entry-btn01__label {
    color: #7D1522;
  }
}
@media screen and (min-width: 768px) {
  .p-entry-btn01:focus-visible {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .p-entry-btn01:focus-visible .p-entry-btn01__bg-img--default {
    display: none;
  }
  .p-entry-btn01:focus-visible .p-entry-btn01__bg-img--hover {
    display: block;
  }
  .p-entry-btn01:focus-visible .p-entry-btn01__label {
    color: #7D1522;
  }
}
.p-entry-btn02 {
  background-color: #7D1522;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
  display: block;
  min-height: 64px;
  min-height: 4rem;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02 {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 98px;
    min-height: 6.125rem;
  }
}

.p-entry-btn02__bg {
  display: block;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__bg {
    margin-top: 0;
    width: 48%;
  }
}

.p-entry-btn02__bg-img {
  display: block;
}

.p-entry-btn02__bg-img--hover {
  display: none;
}

.p-entry-btn02__bg-img img {
  -o-object-fit: cover;
  aspect-ratio: 353/58;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__bg-img img {
    aspect-ratio: 576/98;
  }
}

.p-entry-btn02__body {
  align-self: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  justify-self: center;
  left: 0;
  place-self: center;
  position: absolute;
  right: 0;
  top: 0;
  top: -6px;
  top: -0.375rem;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__body {
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4px;
    padding-bottom: 0.25rem;
    padding-right: 30px;
    padding-right: 1.875rem;
    position: static;
    width: 31.6666666667%;
  }
}

.p-entry-btn02__label {
  align-items: flex-start;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  gap: 0.125rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__label {
    gap: 8px;
    gap: 0.5rem;
    position: static;
  }
}

.p-entry-btn02__label-en {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__label-en {
    font-size: 32px;
    font-size: 2rem;
  }
}

.p-entry-btn02__label-ja {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__label-ja {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
  }
}

.p-entry-btn02__icon {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 51%;
  transform: translate(0, -50%);
  width: 18px;
  width: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__icon {
    -webkit-transform: translate(0, 0);
    position: static;
    transform: translate(0, 0);
    transition: 0.3s ease;
    width: 56px;
    width: 3.5rem;
  }
}

.p-entry-btn02__icon img {
  -o-object-fit: cover;
  aspect-ratio: 18/4;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry-btn02__icon img {
    aspect-ratio: 58/11;
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  .p-entry-btn02:hover {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .p-entry-btn02:hover .p-entry-btn02__bg-img--default {
    display: none;
  }
  .p-entry-btn02:hover .p-entry-btn02__bg-img--hover {
    display: block;
  }
  .p-entry-btn02:hover .p-entry-btn02__label {
    color: #7D1522;
  }
  .p-entry-btn02:hover .p-entry-btn02__icon {
    -webkit-transform: translate(0.625rem, 0);
    transform: translate(0.625rem, 0);
  }
  .p-entry-btn02:hover .p-entry-btn02__icon img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(68%) saturate(4000%) hue-rotate(330deg) brightness(89%) contrast(101%);
  }
}
@media screen and (min-width: 768px) {
  .p-entry-btn02:focus-visible {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .p-entry-btn02:focus-visible .p-entry-btn02__bg-img--default {
    display: none;
  }
  .p-entry-btn02:focus-visible .p-entry-btn02__bg-img--hover {
    display: block;
  }
  .p-entry-btn02:focus-visible .p-entry-btn02__label {
    color: #7D1522;
  }
  .p-entry-btn02:focus-visible .p-entry-btn02__icon {
    -webkit-transform: translate(0.625rem, 0);
    transform: translate(0.625rem, 0);
  }
  .p-entry-btn02:focus-visible .p-entry-btn02__icon img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(68%) saturate(4000%) hue-rotate(330deg) brightness(89%) contrast(101%);
  }
}
.p-faq-accordion {
  grid-gap: 24px;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-faq-accordion {
    gap: 24px;
    gap: 1.5rem;
  }
}

.p-faq-accordion__details {
  background-color: #EAEAEA;
  border-radius: 0.3125rem;
  padding: 17px 56px 17px 24px;
  padding: 1.0625rem 3.5rem 1.0625rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__details {
    padding: 16px 72px 18px 24px;
    padding: 1rem 4.5rem 1.125rem 1.5rem;
  }
}

.p-faq-accordion__summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__summary {
    gap: 32px;
    gap: 2rem;
  }
}

.p-faq-accordion__summary::-webkit-details-marker {
  display: none;
}

.p-faq-accordion__question {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 18px;
  gap: 1.125rem;
}

.p-faq-accordion__label {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: 2px;
  top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__label {
    top: 0;
  }
}

.p-faq-accordion__question-text {
  display: block;
  flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__question-text {
    margin-top: -4px;
    margin-top: -0.25rem;
  }
}

.p-faq-accordion__icon {
  display: block;
  flex-shrink: 0;
  height: 14px;
  height: 0.875rem;
  position: absolute;
  right: -31px;
  right: -1.9375rem;
  top: 0;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  width: 14px;
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__icon {
    height: 16px;
    height: 1rem;
    right: -48px;
    right: -3rem;
    top: -2px;
    top: -0.125rem;
    width: 16px;
    width: 1rem;
  }
}

.p-faq-accordion__icon img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-faq-accordion__details.is-opened .p-faq-accordion__icon {
  transform: rotate(0deg);
}

.p-faq-accordion__body {
  overflow: hidden;
}

.p-faq-accordion__line {
  border-top: 1px solid rgba(51, 51, 51, 0.5);
  margin-top: 16px;
  margin-top: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__line {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.p-faq-accordion__answer {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  gap: 1.125rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq-accordion__answer {
    align-items: center;
    gap: 16px;
    gap: 1rem;
    padding-top: 15px;
    padding-top: 0.9375rem;
  }
}

.p-faq-accordion__answer-text {
  flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.5;
}

.p-footer {
  background-color: #333333;
  color: #fff;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-bottom: 127px;
    padding-bottom: 7.9375rem;
    padding-top: 128px;
    padding-top: 8rem;
  }
}

.p-footer__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
    grid-row-gap: 60px;
    align-items: start;
         column-gap: 2rem;
    display: grid;
    grid-template-areas: "brand nav" "address copyright";
    grid-template-rows: auto auto;
    max-width: 1370px;
    max-width: 85.625rem;
    row-gap: 60px;
    row-gap: 3.75rem;
  }
}

.p-footer__brand {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__brand {
    grid-area: brand;
    justify-content: flex-start;
  }
}

.p-footer__logo {
  display: block;
  flex-shrink: 0;
  width: 213px;
  width: 13.3125rem;
}

.p-footer__logo img {
  -o-object-fit: contain;
  aspect-ratio: 213/45;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-footer__badge {
  border: 1px solid #fff;
  border-radius: 3.125rem;
  flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
}

.p-footer__nav {
  margin-top: 58px;
  margin-top: 3.625rem;
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    grid-area: nav;
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-footer__nav-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 25px;
    gap: 1.875rem 1.5625rem;
    justify-content: space-between;
  }
}

.p-footer__nav-link {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.2;
  position: relative;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-link:hover,
  .p-footer__nav-link:focus-visible {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-link::after {
    background-color: #fff;
    bottom: -3px;
    bottom: -0.1875rem;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-link:hover::after,
  .p-footer__nav-link:focus-visible::after {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.p-footer__address {
  font-family: "Inter", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-style: normal;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    grid-area: address;
    margin-top: 0;
  }
}

.p-footer__address a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.21;
  margin-top: 65px;
  margin-top: 4.0625rem;
  order: 4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    align-self: end;
    grid-area: copyright;
    justify-self: end;
    margin-right: 4px;
    margin-right: 0.25rem;
    margin-top: 0;
    text-align: right;
  }
}

.p-footer__copyright small {
  font-size: inherit;
}

.p-header {
  color: #fff;
  height: 65px;
  height: 4.0625rem;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 92px;
    height: 5.75rem;
  }
}

.p-header.is-fixed {
  background-color: #323232;
  height: 45px;
  height: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed {
    height: 92px;
    height: 5.75rem;
  }
}

.p-header__inner {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
  height: 100%;
  justify-content: space-between;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 20px 40px 0;
    padding: 1.25rem 2.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-header.is-fixed .p-header__inner {
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
  }
}

.p-header__brand {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-header__brand {
    width: 23.6764705882%;
  }
}

.p-header__logo {
  display: block;
  flex-shrink: 0;
  width: 118px;
  width: 7.375rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 66.149068323%;
  }
}

.p-header__logo img {
  -o-object-fit: contain;
  aspect-ratio: 118/25;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    aspect-ratio: 213/45;
  }
}

.p-header__badge {
  border: 1px solid #fff;
  border-radius: 3.125rem;
  flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 5px 15.5px;
  padding: 0.3125rem 0.96875rem;
}
@media screen and (min-width: 768px) {
  .p-header__badge {
    padding: 6px 16px;
    padding: 0.375rem 1rem;
  }
}

.p-header__menu-button {
  flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  margin-left: auto;
  width: 24px;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__menu-button {
    height: 24px;
    width: 24px;
  }
}
@media screen and (min-width: 768px) and (min-width: 901px) {
  .p-header__menu-button {
    display: none;
  }
}

.p-header__nav-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav-wrap {
    align-items: center;
    gap: 10px;
    gap: 0.625rem;
    justify-content: space-between;
    margin-left: auto;
    max-width: 990px;
    max-width: 61.875rem;
    width: 72.7941176471%;
  }
}
@media screen and (min-width: 901px) {
  .p-header__nav-wrap {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    width: 758px;
    width: 47.375rem;
  }
}

.p-header__nav-items {
  align-items: center;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__nav-items {
    gap: 10px;
    gap: 0.625rem;
    justify-content: space-between;
  }
}

.p-header__nav-link {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  position: relative;
  transition: 0.3s ease;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-header__nav-link:hover,
  .p-header__nav-link:focus-visible {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-link::after {
    background-color: #fff;
    bottom: -3px;
    bottom: -0.1875rem;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-link:hover::after,
  .p-header__nav-link:focus-visible::after {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.p-header__entry {
  align-items: center;
  background-color: #7D1522;
  border-radius: 0.3125rem;
  color: #fff;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1.45;
  padding: 16px 32px;
  padding: 1rem 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__entry {
    padding: 16px 5px;
    padding: 1rem 0.3125rem;
    width: 20.3235591507%;
    width: 201px;
    width: 12.5625rem;
  }
}

.p-header__entry-icon {
  display: block;
  flex-shrink: 0;
  height: 4px;
  height: 0.25rem;
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__entry-icon {
    transition: transform 0.3s ease;
  }
}

.p-header__entry-icon-img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-header__entry-icon-img img {
  display: block;
  height: auto;
  width: 100%;
}

.p-header__entry-icon-img--hover {
  display: none;
}

@media screen and (min-width: 768px) and (hover: hover) {
  .p-header__entry:hover {
    background-color: #fff;
    color: #7D1522;
    opacity: 1;
  }
  .p-header__entry:hover .p-header__entry-icon-img--default {
    display: none;
  }
  .p-header__entry:hover .p-header__entry-icon-img--hover {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-header__entry:focus-visible {
    background-color: #fff;
    color: #7D1522;
    opacity: 1;
  }
  .p-header__entry:focus-visible .p-header__entry-icon-img--default {
    display: none;
  }
  .p-header__entry:focus-visible .p-header__entry-icon-img--hover {
    display: block;
  }
  .p-header__entry:hover .p-header__entry-icon,
  .p-header__entry:focus-visible .p-header__entry-icon {
    transform: translateX(0.625rem);
  }
}
.p-modal-card {
  -webkit-appearance: none;
     -moz-appearance: none;
  align-items: center;
          appearance: none;
  background-color: #FAF6F4;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  gap: 10px;
  gap: 0.625rem;
  height: 100%;
  justify-content: space-between;
  min-height: 86px;
  min-height: 5.375rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  text-align: left;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}

.p-modal-card--sm {
  min-height: 74px;
  min-height: 4.625rem;
  padding: 16px 23px 14px;
  padding: 1rem 1.4375rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal-card--sm {
    padding: 15px 24px;
    padding: 0.9375rem 1.5rem;
  }
}

.p-modal-card__text {
  display: block;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.p-modal-card__icon {
  display: block;
  flex-shrink: 0;
  height: 15px;
  height: 0.9375rem;
  width: 15px;
  width: 0.9375rem;
}

.p-modal-card__icon-img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-modal-card__icon-img--hover {
  display: none;
}

@media screen and (min-width: 768px) and (hover: hover) {
  .p-modal-card:hover {
    background-color: #000;
    color: #fff;
  }
  .p-modal-card:hover .p-modal-card__icon-img--default {
    display: none;
  }
  .p-modal-card:hover .p-modal-card__icon-img--hover {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-modal-card:focus-visible {
    background-color: #000;
    color: #fff;
  }
  .p-modal-card:focus-visible .p-modal-card__icon-img--default {
    display: none;
  }
  .p-modal-card:focus-visible .p-modal-card__icon-img--hover {
    display: block;
  }
}
.p-modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 20px;
  padding: 1.25rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  visibility: hidden;
  z-index: 8887;
}

.p-modal.is-show {
  opacity: 1;
  visibility: visible;
}

.p-modal__content {
  align-items: center;
  background-color: #fff;
  border: 1px solid #7D1522;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  max-width: 600px;
  max-width: 37.5rem;
  padding: 24px 20px 24px;
  padding: 1.5rem 1.25rem 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-modal__content {
    padding: 38px 40px;
    padding: 2.375rem 2.5rem;
  }
}

.p-modal__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
}

.p-modal__title {
  color: #7D1522;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.p-modal__line {
  background-color: #7D1522;
  height: 1px;
  width: 100%;
}

.p-modal__text {
  color: #7D1522;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-modal__close {
  align-items: center;
  background-color: transparent;
  border: 1px solid #7D1522;
  border-radius: 0.3125rem;
  color: #7D1522;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 7px 64px 9px;
  padding: 0.4375rem 4rem 0.5625rem;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  .p-modal__close:hover,
  .p-modal__close:focus-visible {
    background-color: #7D1522;
    color: #fff;
  }
}

body.is-modalActive {
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  width: 100%;
}

/* ================
   MV 本体
   参考: ikedamohando.co.jp/recruit .top-mv の height 設定と同じ値
   ================ */
.p-mv {
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100svh;
    max-height: 55.555555vw;
    min-height: 28.6458333333vw;
  }
}

.p-mv__img {
  display: block;
  height: 100%;
  overflow: hidden;
}

.p-mv__img picture {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mv__img picture {
    height: 100%;
  }
}

.p-mv__img img {
  -o-object-fit: cover;
  -o-object-position: center;
  aspect-ratio: 393/393;
  display: block;
  height: auto;
     object-fit: cover;
     object-position: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    aspect-ratio: auto;
    aspect-ratio: 1440/800;
    height: 100%;
  }
}

.p-mv__read {
  display: block;
  position: absolute;
  right: 15.5%;
  top: 18.5%;
  width: 25px;
  width: 1.5625rem;
  width: 6.3613231552%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__read {
    right: 90px;
    right: 5.625rem;
    top: 146px;
    top: 9.125rem;
    width: 70px;
    width: 4.375rem;
  }
}

.p-mv__read img {
  display: block;
  height: auto;
  width: 100%;
}

/* ================
   「全員が主役。」テキスト（MV下部）
   ================ */
.p-mv__catch {
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 104%;
}

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

/* 参考: buysell .home-copy-mask-path の xPercent: -100 → 0 と同等 */
.p-mv-catch-mask-path {
  transform: translateX(-100%);
  transform-box: fill-box;
}

.p-recruit-modal {
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  visibility: hidden;
  z-index: 8887;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal {
    padding: 80px 20px;
    padding: 5rem 1.25rem;
  }
}

.p-recruit-modal.is-show {
  opacity: 1;
  visibility: visible;
}

.p-recruit-modal__content {
  align-items: center;
  background-color: #F2F1E9;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin: auto;
  max-width: 353px;
  max-width: 22.0625rem;
  padding: 16px;
  padding: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__content {
    gap: 32px;
    gap: 2rem;
    max-width: 1200px;
    max-width: 75rem;
    padding: 64px;
    padding: 4rem;
  }
}

.p-recruit-modal__header {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__header {
    gap: 32px;
    gap: 2rem;
  }
}

.p-recruit-modal__title-wrap {
  align-items: center;
  display: flex;
  gap: 11px;
  gap: 0.6875rem;
}

.p-recruit-modal__dot {
  background-color: #7D1522;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
}

.p-recruit-modal__title {
  color: #000;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-recruit-modal__close-icon {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  padding: 0;
  width: 24px;
  width: 1.5rem;
}

.p-recruit-modal__close-icon img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-recruit-modal__main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__main {
    align-items: flex-start;
    flex-direction: row;
    gap: 64px;
    gap: 4rem;
  }
}

.p-recruit-modal__image {
  flex-shrink: 0;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__image {
    width: 400px;
    width: 25rem;
  }
}

.p-recruit-modal__image img {
  -o-object-fit: cover;
  aspect-ratio: 321/214;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__image img {
    aspect-ratio: 400/267;
  }
}

.p-recruit-modal__image--placeholder {
  aspect-ratio: 321/214;
  background-color: #C4C4C4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__image--placeholder {
    aspect-ratio: 400/267;
    width: 400px;
    width: 25rem;
  }
}

.p-recruit-modal__sections {
  border-bottom: 1px solid rgba(125, 21, 34, 0.25);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__sections {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

.p-recruit-modal__section {
  display: flex;
  flex-direction: column;
}

.p-recruit-modal__line {
  background-color: rgba(125, 21, 34, 0.25);
  height: 1px;
  width: 100%;
}

.p-recruit-modal__section-title {
  color: #7D1522;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.8;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__section-title {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-recruit-modal__section-text {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.8;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__section-text {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

.p-recruit-modal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
  align-items: center;
          appearance: none;
  background-color: #7D1522;
  border: 1px solid #7D1522;
  border-radius: 0.3125rem;
  color: #F2F1E9;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 6px 32px 8px;
  padding: 0.375rem 2rem 0.5rem;
  transition: 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-modal__close {
    padding: 6px 128px 8px;
    padding: 0.375rem 8rem 0.5rem;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-modal__close:hover,
  .p-recruit-modal__close:focus-visible {
    background-color: #fff;
    color: #7D1522;
    opacity: 1;
  }
}

.p-top-about {
  background-color: #333333;
  overflow-x: clip;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-top-about__wrap {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    max-width: 80rem;
    padding-bottom: 144px;
    padding-bottom: 9rem;
    padding-top: 108px;
    padding-top: 6.75rem;
    width: 100%;
  }
}

.p-top-about__inner {
  padding-left: 9px;
  padding-left: 0.5625rem;
  padding-right: 9px;
  padding-right: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__inner {
    padding-left: 40px;
    padding-left: 2.5rem;
    padding-right: 40px;
    padding-right: 2.5rem;
  }
}

.p-top-about__body {
  margin-top: 64px;
  margin-top: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-about__body {
    margin-top: 63px;
    margin-top: 3.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__body::before {
    background: rgba(255, 255, 255, 0.25);
    bottom: 0;
    content: "";
    height: 1px;
    justify-self: center;
    left: 0;
    margin: 0 calc(50% - 50vw);
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__body::after {
    background: rgba(255, 255, 255, 0.25);
    bottom: 0;
    content: "";
    height: 1px;
    justify-self: center;
    margin: 0 calc(50% - 50vw);
    position: absolute;
    width: 100vw;
  }
}

.p-top-about__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__list {
    grid-gap: 39px;
    display: grid;
    gap: 39px;
    gap: 2.4375rem;
    grid-template-columns: repeat(4, minmax(0, 16.875rem));
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }
}

.p-top-about__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-about__item {
    align-items: flex-start;
    margin-top: -30px;
    margin-top: -1.875rem;
  }
}

.p-top-about__item::before {
  background: rgba(255, 255, 255, 0.25);
  content: "";
  height: 1px;
  justify-self: center;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 30px;
  top: 1.875rem;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-top-about__item::before {
    display: none;
  }
}

.p-top-about__num {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  text-align: center;
  width: 100%;
}

.p-top-about__image {
  margin-top: 16px;
  margin-top: 1rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-about__image {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-top-about__image img {
  -o-object-fit: cover;
  aspect-ratio: 353/235;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-about__image img {
    aspect-ratio: 270/180;
  }
}

.p-top-about__text {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

.p-top-btn {
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-btn {
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.p-top-btn__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-btn__list {
    flex-direction: row;
    gap: 0;
  }
}

.p-top-btn__item {
  align-items: center;
  border-radius: 0.3125rem;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  min-height: 4.375rem;
  padding: 11px 24px;
  padding: 0.6875rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-btn__item {
    border-radius: 0;
    justify-content: center;
    min-height: 98px;
    min-height: 6.125rem;
    padding: 0;
    width: 50%;
  }
}

.p-top-btn__item--recruit {
  border: 1px solid #000;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-top-btn__item--recruit {
    border-radius: 0.3125rem 0 0 0.3125rem;
  }
}

.p-top-btn__item--entry {
  background-color: #7D1522;
  border: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-top-btn__item--entry {
    border-radius: 0 0.3125rem 0.3125rem 0;
  }
}

.p-top-btn__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-btn__label {
    gap: 12px;
    gap: 0.75rem;
  }
}

.p-top-btn__label-en {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top-btn__label-en {
    font-size: 32px;
    font-size: 2rem;
  }
}

.p-top-btn__item--entry .p-top-btn__label-en {
  color: #fff;
}

.p-top-btn__label-ja {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top-btn__label-ja {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
  }
}

.p-top-btn__item--entry .p-top-btn__label-ja {
  color: #fff;
}

.p-top-btn__icon {
  display: block;
  flex-shrink: 0;
}

.p-top-btn__icon img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-btn__icon-img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-top-btn__icon-img--hover {
  display: none;
}

.p-top-btn__icon--down {
  height: 14px;
  height: 0.875rem;
  width: 3px;
  width: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-top-btn__icon--down {
    height: 28px;
    height: 1.75rem;
    transition: 0.3s ease;
    width: 5px;
    width: 0.3125rem;
  }
}

@media screen and (min-width: 768px) {
  a:hover .p-top-btn__icon--down,
  a:focus-visible .p-top-btn__icon--down {
    transform: translateY(-0.625rem);
  }
}

.p-top-btn__icon--right {
  -webkit-transform: translate(0, -50%);
  height: 3px;
  height: 0.1875rem;
  position: absolute;
  right: 18px;
  right: 1.125rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 14px;
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-btn__icon--right {
    -webkit-transform: translate(0, 0);
    height: 5px;
    height: 0.3125rem;
    position: static;
    transform: translate(0, 0);
    transition: 0.3s ease;
    width: 28px;
    width: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  a:hover .p-top-btn__icon--right,
  a:focus-visible .p-top-btn__icon--right {
    -webkit-transform: translate(0.625rem, -50%);
    top: 50%;
    transform: translate(0.625rem, -50%);
  }
}

@media screen and (min-width: 768px) {
  .p-top-btn__item--recruit .p-top-btn__icon {
    height: 28px;
    height: 1.75rem;
    position: absolute;
    right: 44px;
    right: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .p-top-btn__item--entry .p-top-btn__icon {
    position: absolute;
    right: 32px;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  .p-top-btn__item--recruit:hover {
    background-color: #000;
    border-color: #000;
    opacity: 1;
  }
  .p-top-btn__item--recruit:hover .p-top-btn__label-en,
  .p-top-btn__item--recruit:hover .p-top-btn__label-ja {
    color: #fff;
  }
  .p-top-btn__item--recruit:hover .p-top-btn__icon-img--default {
    display: none;
  }
  .p-top-btn__item--recruit:hover .p-top-btn__icon-img--hover {
    display: block;
  }
  .p-top-btn__item--entry:hover {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .p-top-btn__item--entry:hover .p-top-btn__label-en,
  .p-top-btn__item--entry:hover .p-top-btn__label-ja {
    color: #7D1522;
  }
  .p-top-btn__item--entry:hover .p-top-btn__icon-img--default {
    display: none;
  }
  .p-top-btn__item--entry:hover .p-top-btn__icon-img--hover {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-top-btn__item--recruit:focus-visible {
    background-color: #000;
    border-color: #000;
    opacity: 1;
  }
  .p-top-btn__item--recruit:focus-visible .p-top-btn__label-en,
  .p-top-btn__item--recruit:focus-visible .p-top-btn__label-ja {
    color: #fff;
  }
  .p-top-btn__item--recruit:focus-visible .p-top-btn__icon-img--default {
    display: none;
  }
  .p-top-btn__item--recruit:focus-visible .p-top-btn__icon-img--hover {
    display: block;
  }
  .p-top-btn__item--entry:focus-visible {
    background-color: #fff;
    border-color: #7D1522;
    opacity: 1;
  }
  .p-top-btn__item--entry:focus-visible .p-top-btn__label-en,
  .p-top-btn__item--entry:focus-visible .p-top-btn__label-ja {
    color: #7D1522;
  }
  .p-top-btn__item--entry:focus-visible .p-top-btn__icon-img--default {
    display: none;
  }
  .p-top-btn__item--entry:focus-visible .p-top-btn__icon-img--hover {
    display: block;
  }
}
.p-top-business {
  background-color: rgba(51, 51, 51, 0.1);
  padding-bottom: 0;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-business {
    padding-top: 128px;
    padding-top: 8rem;
  }
}

.p-top-business__inner {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__inner {
    padding-bottom: 128px;
    padding-bottom: 8rem;
  }
}

.p-top-business__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    justify-content: space-between;
  }
}

.p-top-business__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-business__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 39px;
    margin-top: 2.4375rem;
    max-width: 800px;
    max-width: 50rem;
  }
}

.p-top-business__list {
  grid-gap: 40px;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__list {
    gap: 40px 41px;
    gap: 2.5rem 2.5625rem;
    grid-template-columns: repeat(3, minmax(0, 23.3125rem));
    justify-content: center;
    margin-top: 57px;
    margin-top: 3.5625rem;
  }
}

.p-top-business__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-top-business__card-head {
  align-items: center;
  background-color: #333333;
  border-left: 1px solid #333333;
  border-right: 1px solid #333333;
  border-top: 1px solid #333333;
  color: #fff;
  display: flex;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  min-height: 59px;
  min-height: 3.6875rem;
  padding: 15.5px 10px;
  padding: 0.96875rem 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-business__card-head {
    font-size: 24px;
    font-size: 1.5rem;
    min-height: 92px;
    min-height: 5.75rem;
    padding: 10px;
    padding: 0.625rem;
  }
}

.p-top-business__card-body {
  align-items: center;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  display: flex;
  flex: 1;
  padding: 23px 23px 24px;
  padding: 1.4375rem 1.4375rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__card-body {
    align-items: flex-start;
    padding: 34px 31px 32px;
    padding: 2.125rem 1.9375rem 2rem;
  }
}

.p-top-business__card-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-business__card-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-top-business__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-top-business__image {
  overflow: hidden;
}

.p-top-business__image img {
  -o-object-fit: cover;
  aspect-ratio: 131/64;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-business__image img {
    aspect-ratio: 480/240;
  }
}

.p-top-date {
  background-color: rgba(51, 51, 51, 0.1);
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 82px;
  padding-top: 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-date {
    padding-bottom: 164px;
    padding-bottom: 10.25rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}

.p-top-date__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-date__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    justify-content: space-between;
  }
}

.p-top-date__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-date__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 41px;
    margin-top: 2.5625rem;
    max-width: 800px;
    max-width: 50rem;
  }
}

.p-top-date__list {
  grid-gap: 40px;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-date__list {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(4, minmax(0, 16.875rem));
    margin-top: 64px;
    margin-top: 4rem;
  }
}

.p-top-date__item {
  aspect-ratio: 1/1;
  background-color: #fff;
  position: relative;
}

.p-top-date__figure {
  display: block;
}

.p-top-date__figure img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  display: block;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-top-date__label {
  -webkit-transform: translate(-50%, 0);
  bottom: 27px;
  bottom: 1.6875rem;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  left: 50%;
  line-height: 1.3125;
  position: absolute;
  transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-date__label {
    bottom: 17px;
    bottom: 1.0625rem;
  }
}

.p-top-date__text {
  -webkit-transform: translate(-50%, 0);
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  left: 50%;
  line-height: 1.3125;
  position: absolute;
  top: 9.4%;
  transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-date__text {
    top: 25px;
    top: 1.5625rem;
  }
}

.p-top-date__text-number {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3125;
}

.p-top-date__btn {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  margin-top: 88px;
  margin-top: 5.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-date__btn {
    margin-bottom: 0;
    margin-top: 128px;
    margin-top: 8rem;
    max-width: 1200px;
    max-width: 75rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-top-entry {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-entry {
    padding-bottom: 128px;
    padding-bottom: 8rem;
  }
}

.p-top-faq {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-top-faq {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 68px;
    padding-top: 4.25rem;
  }
}

.p-top-faq__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-faq__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 285px;
    gap: 17.8125rem;
  }
}

.p-top-faq__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-faq__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 73px;
    margin-top: 4.5625rem;
    max-width: 607px;
    max-width: 37.9375rem;
  }
}

.p-top-faq__list {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-faq__list {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-top-message {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 78px;
  padding-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-message {
    padding-bottom: 277px;
    padding-bottom: 17.3125rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.p-top-message__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-message__inner {
    max-width: 1342px;
    max-width: 83.875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.p-top-message__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
  gap: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-message__wrap {
    align-items: flex-start;
    flex-direction: row;
    gap: 141px;
    gap: 8.8125rem;
    gap: 0;
  }
}

.p-top-message__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__body {
    flex-shrink: 0;
    gap: 64px;
    gap: 4rem;
    margin-left: 46px;
    margin-left: 2.875rem;
    width: 650px;
    width: 40.625rem;
  }
}

.p-top-message__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__content {
    gap: 40px;
    gap: 2.5rem;
  }
}

.p-top-message__catch {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.p-top-message__catch-line {
  align-items: center;
  background-color: #333333;
  color: #fff;
  display: inline-flex;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 9px 14px 14px 16px;
  padding: 0.5625rem 0.875rem 0.875rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__catch-line {
    font-size: 60px;
    font-size: 3.75rem;
    padding: 4px 16px 12px;
    padding: 0.25rem 1rem 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-message__catch-line--wide {
    align-self: stretch;
  }
}

.p-top-message__detail {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  padding-right: 0.625rem;
  row-gap: 24px;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__detail {
    padding-right: 0;
    row-gap: 30px;
    row-gap: 1.875rem;
  }
}

.p-top-message__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 1.8em;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-message__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-top-message__btn {
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__btn {
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    width: 201px;
    width: 12.5625rem;
  }
}

.p-top-message__images {
  padding-right: 10px;
  padding-right: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-message__images {
    padding-right: 0;
    width: 596px;
    width: 37.25rem;
  }
}

.p-top-message__image {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-message__image {
    position: absolute;
  }
}

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

.p-top-message__image--01 {
  aspect-ratio: 208/277;
  margin-left: 20.6798866856%;
  margin-right: auto;
  width: 58.9235127479%;
}
@media screen and (min-width: 768px) {
  .p-top-message__image--01 {
    aspect-ratio: 416/555;
    margin-left: auto;
    margin-right: 7.7181208054%;
    position: static;
    width: 416px;
    width: 26rem;
  }
}

.p-top-message__image--02 {
  aspect-ratio: 150/98;
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: 47%;
  width: 41.3223140496%;
}
@media screen and (min-width: 768px) {
  .p-top-message__image--02 {
    aspect-ratio: 300/195;
    right: 0;
    top: 515px;
    top: 32.1875rem;
    width: 300px;
    width: 18.75rem;
    width: 50.3355704698%;
  }
}

.p-top-message__image--03 {
  aspect-ratio: 225/146;
  margin-top: 82px;
  margin-top: 5.125rem;
  width: 63.7393767705%;
}
@media screen and (min-width: 768px) {
  .p-top-message__image--03 {
    aspect-ratio: 450/292;
    margin-top: 0;
    right: 33.0536912752%;
    top: 750px;
    top: 46.875rem;
    width: 450px;
    width: 28.125rem;
    width: 75.5033557047%;
  }
}

.p-top-personality {
  background-color: #333333;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-personality {
    padding-bottom: 129px;
    padding-bottom: 8.0625rem;
    padding-top: 128px;
    padding-top: 8rem;
  }
}

.p-top-personality__lead {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-personality__lead {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 1200px;
    max-width: 75rem;
  }
}

.p-top-personality__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-personality__list {
    grid-column-gap: 2.5625rem;
    -moz-column-gap: 2.5625rem;
    grid-row-gap: 0;
         column-gap: 2.5625rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 23.3125rem));
    row-gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-top-personality__item {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}

.p-top-personality__card {
  background-color: #fff;
  padding: 23px 24px 24px;
  padding: 1.4375rem 1.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-personality__card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    padding: 32px;
    padding: 2rem;
  }
}

.p-top-personality__card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-personality__card-inner {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
}

.p-top-personality__num {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top-personality__num {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.p-top-personality__line {
  border-top: 1px solid #000;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-personality__line {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-top-personality__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-personality__content {
    display: contents;
  }
}

.p-top-personality__heading {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-personality__heading {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-top-personality__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-personality__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.p-top-president {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 88px;
  padding-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-president {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    max-width: 90rem;
    padding-bottom: 128px;
    padding-bottom: 8rem;
    padding-top: 0;
  }
}

.p-top-president__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-president__inner {
    gap: 128px;
    gap: 8rem;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    width: 91.7361111111%;
  }
}

.p-top-president__main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-president__main {
    align-items: flex-start;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}

.p-top-president__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-president__body {
    flex-shrink: 0;
    gap: 64px;
    gap: 4rem;
    padding-top: 128px;
    padding-top: 8rem;
    width: 40.8781226344%;
  }
}

.p-top-president__texts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-president__texts {
    gap: 30px;
    gap: 1.875rem;
  }
}

.p-top-president__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-president__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-top-president__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-top-president__image {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-president__image {
    flex-shrink: 0;
    width: 54.5041635125%;
  }
}

.p-top-president__image img {
  -o-object-fit: cover;
  aspect-ratio: 353/353;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-president__image img {
    aspect-ratio: 720/800;
  }
}

.p-top-president__btn {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-president__btn {
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    width: 90.8402725208%;
  }
}

.p-top-recruit {
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit {
    padding-bottom: 70px;
    padding-bottom: 4.375rem;
    padding-top: 126px;
    padding-top: 7.875rem;
  }
}

.p-top-recruit__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    justify-content: space-between;
  }
}

.p-top-recruit__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 13px;
    margin-top: 0.8125rem;
    max-width: 801px;
    max-width: 50.0625rem;
  }
}

.p-top-recruit__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 62px;
  margin-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__list {
    grid-gap: 38px 40px;
    display: grid;
    gap: 38px 40px;
    gap: 2.375rem 2.5rem;
    grid-template-columns: repeat(4, minmax(0, 16.875rem));
    margin-top: 56px;
    margin-top: 3.5rem;
  }
}

/* ================
   スプラッシュスクリーン
   参考: ikedamohando.co.jp/recruit .top-splash
================ */
.p-top-splash {
  align-items: center;
  background-color: #7D1522;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
}

.p-top-splash.is-hide {
  animation: splashHide 600ms 200ms both;
  pointer-events: none;
}

@keyframes splashHide {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
}
.p-top-splash__logo {
  position: relative;
}

.p-top-splash__svg {
  display: block;
  height: auto;
  width: 44.44vw;
}
@media (max-width: 900px) {
  .p-top-splash__svg {
    width: 85vw;
  }
}

.p-top-step {
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-top-step {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 78px;
    padding-top: 4.875rem;
  }
}

.p-top-step__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-step__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 248px;
    gap: 15.5rem;
  }
}

.p-top-step .c-title01__main {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}
.p-top-step__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-step__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 34px;
    margin-top: 2.125rem;
    max-width: 527px;
    max-width: 32.9375rem;
  }
}

.p-top-step__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  gap: 4rem;
  margin-top: 51px;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .p-top-step__list {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    margin-top: 64px;
    margin-top: 4rem;
  }
}

.p-top-step__item {
  align-items: center;
  display: flex;
  gap: 18px;
  gap: 1.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-step__item {
    flex: 1;
    flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
    max-width: 270px;
    max-width: 16.875rem;
  }
}

.p-top-step__item:not(:last-child)::after {
  background: transparent url(../images/common/arrow-step_sp.png) no-repeat center center/100%;
  background: transparent url(../images/common/arrow-step_sp.webp) no-repeat center center/100%;
  content: "";
  height: 60px;
  height: 3.75rem;
  left: 19px;
  left: 1.1875rem;
  position: absolute;
  top: 46px;
  top: 2.875rem;
  width: 6px;
  width: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-step__item:not(:last-child)::after {
    background: transparent url(../images/common/arrow-step.png) no-repeat center center/100%;
    background: transparent url(../images/common/arrow-step.webp) no-repeat center center/100%;
    border-left: none;
    height: 6px;
    height: 0.375rem;
    left: 56%;
    margin-left: 19px;
    margin-left: 1.1875rem;
    top: 13px;
    top: 0.8125rem;
    width: 240px;
    width: 15rem;
  }
}

.p-top-step__num {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: 44px;
  width: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-step__num {
    width: auto;
  }
}

.p-top-step__box {
  background-color: #333333;
  color: #fff;
  flex: 1;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  padding: 10px;
  padding: 0.625rem;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-step__box {
    flex: none;
    width: 100%;
  }
}

.p-top-style {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-style {
    padding-bottom: 128px;
    padding-bottom: 8rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}

.p-top-style__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    justify-content: space-between;
  }
}

.p-top-style__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-style__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 11px;
    margin-top: 0.6875rem;
    max-width: 800px;
    max-width: 50rem;
  }
}

.p-top-style__subheading {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-style__subheading {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-top-style__vacation {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__vacation {
    margin-top: 57px;
    margin-top: 3.5625rem;
  }
}

.p-top-style__vacation-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  gap: 1.0625rem;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__vacation-list {
    align-items: center;
    flex-direction: row;
    gap: 120px;
    gap: 7.5rem;
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-top-style__vacation-item {
  position: relative;
}

.p-top-style__vacation-item:not(:last-child) {
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__vacation-item:not(:last-child) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.p-top-style__vacation-item:not(:last-child)::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-style__vacation-item:not(:last-child)::after {
    background-color: #000;
    content: "";
    display: block;
    height: 45px;
    height: 2.8125rem;
    position: absolute;
    right: -62px;
    right: -3.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
}

.p-top-style__vacation-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-style__vacation-text {
    line-height: 1.4;
  }
}

.p-top-style__vacation-text::before {
  content: "·";
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  left: 0;
  line-height: 1.3;
  position: relative;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-top-style__vacation-text::before {
    line-height: 1.4;
  }
}

.p-top-style__vacation-attention {
  display: inline-block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 1.5;
}

.p-top-style__service {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__service {
    margin-top: 64px;
    margin-top: 4rem;
  }
}

.p-top-style__service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__service-list {
    grid-gap: 24px 40px;
    display: grid;
    gap: 24px 40px;
    gap: 1.5rem 2.5rem;
    grid-template-columns: repeat(4, minmax(0, 16.875rem));
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-top-style__service-item .p-modal-card__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
}

.p-top-style__gallery {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__gallery {
    margin-top: 64px;
    margin-top: 4rem;
  }
}

.p-top-style__slider {
  margin-top: 24px;
  margin-top: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-style__slider {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-top-style__slider-track {
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-top-style__slider-track {
    gap: 30px;
    gap: 1.875rem;
  }
}

.p-top-style__slider-list {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-style__slider-list {
    gap: 30px;
    gap: 1.875rem;
  }
}

.p-top-style__slider-item {
  flex-shrink: 0;
  width: 300px;
  width: 18.75rem;
}

.p-top-style__slider-figure {
  display: block;
}

.p-top-style__slider-figure img {
  -o-object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-top-work {
  padding-bottom: 98px;
  padding-bottom: 6.125rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-work {
    padding-bottom: 176px;
    padding-bottom: 11rem;
    padding-top: 128px;
    padding-top: 8rem;
  }
}

.p-top-work__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-work__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    justify-content: space-between;
  }
}

.p-top-work__lead {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-work__lead {
    flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 33px;
    margin-top: 2.0625rem;
    max-width: 800px;
    max-width: 50rem;
  }
}

.p-top-work__list {
  grid-gap: 40px;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-work__list {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    grid-template-columns: repeat(2, minmax(0, 35.5rem));
    justify-content: center;
    row-gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-top-work__item {
    display: grid;
    grid-row: span 7;
    grid-template-rows: subgrid;
  }
  .p-top-work__item::after {
    content: "";
    display: block;
    height: 64px;
    height: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-work__item:nth-last-child(-n+2)::after {
    height: 0;
  }
}

.p-work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-card {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    height: auto;
  }
}

.p-work-card__category {
  align-items: center;
  background-color: #333333;
  color: #fff;
  display: flex;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 64px;
  min-height: 4rem;
  padding: 16px 10px;
  padding: 1rem 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-work-card__category {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
    min-height: 64px;
    min-height: 4rem;
    padding: 10px;
    padding: 0.625rem;
  }
}

.p-work-card__image {
  margin-top: 0;
  overflow: hidden;
}

.p-work-card__image img {
  -o-object-fit: cover;
  aspect-ratio: 353/235;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-card__image img {
    aspect-ratio: 568/379;
  }
}

.p-work-card__image--placeholder {
  aspect-ratio: 353/235;
  background-color: #C4C4C4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-card__image--placeholder {
    aspect-ratio: 568/379;
  }
}

.p-work-card__body {
  background-color: #FAF6F4;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 24px 23px 24px;
  padding: 1.5rem 1.4375rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-card__body {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    padding: 32px 31px;
    padding: 2rem 1.9375rem;
  }
}

.p-work-card__role {
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}

.p-work-card__role-dot {
  background-color: #000;
  border-radius: 50%;
  flex-shrink: 0;
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .p-work-card__role-dot {
    margin-top: 2px;
    margin-top: 0.125rem;
  }
}

.p-work-card__role-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-work-card__role-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-work-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-card__content {
    display: contents;
  }
}

.p-work-card__heading {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-work-card__heading {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-work-card__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-work-card__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-work-card__link {
  -webkit-appearance: none;
     -moz-appearance: none;
  align-items: center;
          appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
  margin-top: 22px;
  margin-top: 1.375rem;
  padding: 16px 32px;
  padding: 1rem 2rem;
  text-align: left;
  transition: 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-card__link {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-work-card__link-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.p-work-card__link-icon {
  display: block;
  flex-shrink: 0;
  height: 15px;
  height: 0.9375rem;
  width: 15px;
  width: 0.9375rem;
}

.p-work-card__link-icon-img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-work-card__link-icon-img--hover {
  display: none;
}

@media screen and (min-width: 768px) and (hover: hover) {
  .p-work-card__link:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
  }
  .p-work-card__link:hover .p-work-card__link-icon-img--default {
    display: none;
  }
  .p-work-card__link:hover .p-work-card__link-icon-img--hover {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-work-card__link:focus-visible {
    background-color: #000;
    color: #fff;
    opacity: 1;
  }
  .p-work-card__link:focus-visible .p-work-card__link-icon-img--default {
    display: none;
  }
  .p-work-card__link:focus-visible .p-work-card__link-icon-img--hover {
    display: block;
  }
}
.p-work-modal {
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  visibility: hidden;
  z-index: 8887;
}
@media screen and (min-width: 768px) {
  .p-work-modal {
    padding: 80px 20px;
    padding: 5rem 1.25rem;
  }
}

.p-work-modal.is-show {
  opacity: 1;
  visibility: visible;
}

.p-work-modal__content {
  align-items: center;
  background-color: #7D1522;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin: auto;
  max-width: 353px;
  max-width: 22.0625rem;
  padding: 16px;
  padding: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__content {
    gap: 64px;
    gap: 4rem;
    max-width: 1200px;
    max-width: 75rem;
    padding: 64px;
    padding: 4rem;
  }
}

.p-work-modal__header {
  align-items: center;
  display: flex;
  gap: 32px;
  gap: 2rem;
  justify-content: space-between;
  width: 100%;
}

.p-work-modal__title {
  color: #fff;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-work-modal__title {
    font-size: 32px;
    font-size: 2rem;
  }
}

.p-work-modal__close-icon {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  padding: 0;
  width: 24px;
  width: 1.5rem;
}

.p-work-modal__close-icon img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-work-modal__main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  gap: 4rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__main {
    gap: 80px;
    gap: 5rem;
  }
}

.p-work-modal__hero {
  overflow: hidden;
  width: 100%;
}

.p-work-modal__hero img {
  -o-object-fit: cover;
  aspect-ratio: 321/214;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__hero img {
    aspect-ratio: 1072/450;
  }
}

.p-work-modal__hero--placeholder {
  aspect-ratio: 321/214;
  background-color: #C4C4C4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__hero--placeholder {
    aspect-ratio: 1072/450;
  }
}

.p-work-modal__profile {
  display: flex;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__profile {
    align-items: center;
    flex-direction: row;
    gap: 64px;
    gap: 4rem;
  }
}

.p-work-modal__profile-image {
  flex-shrink: 0;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__profile-image {
    width: 504px;
    width: 31.5rem;
  }
}

.p-work-modal__profile-image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-work-modal__profile-image--placeholder {
  aspect-ratio: 321/321;
  background-color: #C4C4C4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__profile-image--placeholder {
    aspect-ratio: 1/1;
    width: 504px;
    width: 31.5rem;
  }
}

.p-work-modal__profile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
}

.p-work-modal__profile-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-work-modal__profile-heading {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-work-modal__profile-text {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.8;
}

.p-work-modal__interview {
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-work-modal__interview {
    padding: 24px;
    padding: 1.5rem;
  }
}

.p-work-modal__interview-title {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}

.p-work-modal__interview-text {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.8;
}

.p-work-modal__section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__section {
    align-items: flex-start;
    flex-direction: row;
    gap: 64px;
    gap: 4rem;
  }
}

.p-work-modal__section--features .p-work-modal__section-image {
  order: -1;
}
@media screen and (min-width: 768px) {
  .p-work-modal__section--features .p-work-modal__section-image {
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .p-work-modal__section--features .p-work-modal__section-body {
    order: 1;
  }
}

.p-work-modal__section-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
  width: 100%;
}

.p-work-modal__section-image {
  flex-shrink: 0;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__section-image {
    width: 504px;
    width: 31.5rem;
  }
}

.p-work-modal__section-image img {
  -o-object-fit: cover;
  aspect-ratio: 321/214;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__section-image img {
    aspect-ratio: 504/336;
  }
}

.p-work-modal__section-image--placeholder {
  aspect-ratio: 321/214;
  background-color: #C4C4C4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__section-image--placeholder {
    aspect-ratio: 504/336;
    width: 504px;
    width: 31.5rem;
  }
}

.p-work-modal__section-title {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-work-modal__section-lead {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}

.p-work-modal__section-line {
  background-color: #fff;
  height: 1px;
  width: 100%;
}

.p-work-modal__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-work-modal__block-title {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}

.p-work-modal__block-text {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.8;
}

.p-work-modal__schedule {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
  width: 100%;
}

.p-work-modal__schedule-table {
  overflow-x: auto;
  width: 100%;
}

.p-work-modal__schedule-row {
  align-items: stretch;
  display: flex;
  min-width: 1072px;
  min-width: 67rem;
}

.p-work-modal__schedule-row--head .p-work-modal__schedule-cell {
  align-items: center;
  background-color: #fff;
  color: #7D1522;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  min-height: 60px;
  min-height: 3.75rem;
  padding: 10px;
  padding: 0.625rem;
}

.p-work-modal__schedule-cell {
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  min-height: 80px;
  min-height: 5rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-work-modal__schedule-cell {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 10px 8px;
    padding: 0.625rem 0.5rem;
  }
}

.p-work-modal__schedule-cell--time {
  flex-shrink: 0;
  justify-content: center;
  width: 180px;
  width: 11.25rem;
}

.p-work-modal__schedule-cell--content {
  flex-shrink: 0;
  justify-content: center;
  text-align: center;
  width: 180px;
  width: 11.25rem;
}

.p-work-modal__schedule-cell--detail {
  flex: 1;
  font-weight: 400;
  line-height: 1.5;
  padding: 15px 24px;
  padding: 0.9375rem 1.5rem;
  width: 712px;
  width: 44.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-modal__schedule-cell--detail {
    padding: 15px 24px;
    padding: 0.9375rem 1.5rem;
  }
}

.p-work-modal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
  align-items: center;
          appearance: none;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0.3125rem;
  color: #7D1522;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 6px 32px 8px;
  padding: 0.375rem 2rem 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-modal__close {
    padding: 6px 128px 8px;
    padding: 0.375rem 8rem 0.5rem;
    transition: 0.3s ease;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-work-modal__close:hover,
  .p-work-modal__close:focus-visible {
    background-color: #7D1522;
    color: #fff;
    opacity: 1;
  }
}

.js-fade-in {
  opacity: 0;
  transform: translateY(30px); /* デフォルトは下 → 上 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* 上から */
.js-fade-in--up {
  transform: translateY(30px);
}

/* 右から */
.js-fade-in--right {
  transform: translateX(30px);
}

/* 左から */
.js-fade-in--left {
  transform: translateX(-30px);
}

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

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

.visually-hidden {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/*# sourceMappingURL=style.css.map */
