@charset "UTF-8";
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #000;
}

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

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

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/* base */
/* px → rem */
/* ==========================
  Responsive Clamp Function
  （固定＋特例custom）
========================== */
/* --------------------------
  Project Default Viewport
-------------------------- */
/* --------------------------
  通常版：基本はこれだけ使う
  rclamp(16, 24)
-------------------------- */
/* --------------------------
  特例版：ここだけviewport変えたい時用
  rclamp-custom(24, 64, 600, 1600)
-------------------------- */
/* Safari対策 */
* {
  min-height: 0;
}

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

.inner {
  max-width: 1240px;
  width: 90%;
  margin-inline: auto;
}

.inner-s {
  max-width: 880px;
  width: 90%;
  margin-inline: auto;
}

.inner__lg {
  max-width: 1440px;
  width: 90%;
  margin-inline: auto;
}

.inner__gallery {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner__gallery {
    width: 90%;
  }
}

.header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    padding-inline: 20px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__inner {
    width: 100%;
  }
}

.header__logo {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .header__logo {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }
}

.header__logo-link {
  display: block;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .header__logo-link {
    flex: 0 1 auto;
  }
}

.header__logo-image {
  width: 296px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo-image {
    width: clamp(180px, 53vw, 199px);
  }
}

.header__logo-sub {
  padding-bottom: 4px;
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__logo-sub {
    flex: 0 0 auto;
    padding-bottom: 0;
    font-size: 15px;
  }
}

.header__actions {
  display: flex;
  align-self: stretch;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__actions {
    display: none;
  }
}

.header__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 100%;
  background: #b92020;
  color: #fff;
}

.header__entry-text {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.header__overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: 66px;
  }
}
.drawer-trigger {
  position: relative;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.drawer-trigger__bars {
  position: relative;
  display: block;
  width: 36px;
  height: 11px;
  margin-top: 7px;
}

.drawer-trigger__bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: #fff;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.drawer-trigger__bar:nth-child(1) {
  top: 0;
}
.drawer-trigger__bar:nth-child(2) {
  top: 10px;
}

.drawer-trigger.js-show .drawer-trigger__bar:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.drawer-trigger.js-show .drawer-trigger__bar:nth-child(2) {
  top: 5px;
  transform: rotate(-45deg);
}

.drawer-trigger__text {
  margin-top: 15px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .drawer-trigger__text {
    font-size: 12px;
  }
}

.header-drawer {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #fcfcfc;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.header-drawer.js-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .header-drawer {
    display: none;
  }
}

.header-drawer__image {
  flex: 0 0 42%;
  overflow: hidden;
  background: #f2f2f2;
}
.header-drawer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.header-drawer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 58%;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
  background: #fcfcfc;
}

.header-drawer__top {
  display: flex;
  flex: 0 0 80px;
  justify-content: flex-end;
}

.header-drawer__entry {
  display: grid;
  place-items: center;
  width: 160px;
  height: 80px;
  background: #b92020;
  color: #fff;
  transition: background-color 0.3s ease;
}
.header-drawer__entry:hover, .header-drawer__entry:focus-visible {
  background: #9f1b1b;
}

.header-drawer__entry-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.header-drawer__menu {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
}

.header-drawer__body {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  gap: clamp(3.75rem, 0.9008172363rem + 5.9435364042vw, 6.25rem);
  padding-block: 80px;
  padding-inline: clamp(1.25rem, -3.2938388626rem + 9.4786729858vw, 5rem);
}

.header-drawer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
}

.header-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  border-bottom: 1px solid #cecece;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.8575408618rem + 0.2971768202vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}
.header-drawer__link:hover, .header-drawer__link:focus-visible {
  color: #b92020;
}
.header-drawer__link:hover .header-drawer__link-icon, .header-drawer__link:focus-visible .header-drawer__link-icon {
  background: #b92020;
  transform: translateX(4px);
}
.header-drawer__link:hover .header-drawer__link-icon::before, .header-drawer__link:focus-visible .header-drawer__link-icon::before {
  border-color: #fff;
}

.header-drawer__link-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.header-drawer__link-icon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: translateX(-1px) rotate(45deg);
  transition: border-color 0.3s ease;
}

.header-drawer__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.header-drawer__external-link {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.5900817236rem + 0.5943536404vw, 1.125rem);
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-drawer__external-link img {
  flex: 0 0 auto;
  width: auto;
}
.header-drawer__external-link:hover, .header-drawer__external-link:focus-visible {
  color: #1a1a1a;
}

.header-drawer__external-link--instagram img:first-child {
  width: 29px;
  height: 29px;
}

.drawer-trigger:focus-visible,
.header-drawer__entry:focus-visible,
.header-drawer__link:focus-visible,
.header-drawer__external-link:focus-visible {
  outline: 2px solid #b92020;
  outline-offset: 3px;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .header-drawer__footer {
    gap: 24px;
  }
}
.sp-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-drawer {
    position: fixed;
    z-index: 180;
    inset: 0;
    display: block;
    overflow-y: auto;
    background: #fcfcfc;
    top: 60px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }
}

@media screen and (max-width: 767px) {
  .sp-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.sp-drawer__panel {
  min-height: 100dvh;
  padding-bottom: 90px;
  position: relative;
  padding-inline: 20px;
}

.sp-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid #d9d9d9;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.sp-drawer__link-icon,
.sp-drawer__entry-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2f2f2;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.sp-drawer__link-icon::before,
.sp-drawer__entry-icon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: translateX(-1px) rotate(45deg);
  transition: border-color 0.3s ease;
}

.sp-drawer__link:hover,
.sp-drawer__link:focus-visible {
  color: #b92020;
}

.sp-drawer__link:hover .sp-drawer__link-icon,
.sp-drawer__link:focus-visible .sp-drawer__link-icon {
  transform: translateX(3px);
}

.sp-drawer__entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin: 40px 36px 0;
  padding: 15px 20px 15px 24px;
  border-radius: 4px;
  background: #c81d1d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: background-color 0.3s ease;
}

.sp-drawer__entry:hover,
.sp-drawer__entry:focus-visible {
  background: #b92020;
}

.sp-drawer__entry-icon {
  background: #fff;
}

.sp-drawer__entry-icon::before {
  border-color: #c81d1d;
}

.sp-drawer__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.sp-drawer__external-link {
  display: flex;
  align-items: center;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #777;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.sp-drawer__external-link--instagram {
  gap: 6px;
}

.sp-drawer__external-link img {
  flex: 0 0 auto;
  width: auto;
}

.sp-drawer__external-link:hover,
.sp-drawer__external-link:focus-visible {
  color: #1a1a1a;
}

.sp-drawer__close {
  flex: 0 0 auto;
  margin-top: 20px;
  margin-left: auto;
  width: 54px;
  height: 54px;
  gap: 0;
  background: #222020;
  color: #fff;
}

.sp-drawer__close .drawer-trigger__bars {
  width: 27px;
  height: 8px;
  margin-top: 6px;
}

.sp-drawer__close .drawer-trigger__bar:nth-child(1),
.sp-drawer__close .drawer-trigger__bar:nth-child(2) {
  top: 4px;
}

.sp-drawer__close .drawer-trigger__text {
  margin-top: 6px;
  font-size: 0.8125rem;
  letter-spacing: -0.03em;
}

.sp-drawer__close:hover,
.sp-drawer__close:focus-visible {
  background: #000;
}

.drawer-trigger:focus-visible,
.sp-drawer__link:focus-visible,
.sp-drawer__entry:focus-visible,
.sp-drawer__external-link:focus-visible {
  outline: 2px solid #b92020;
  outline-offset: 3px;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 300px;
  max-width: 100%;
  min-height: 72px;
  padding: 15px 15px 15px 24px;
  color: #fff;
  background: #B92020;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    max-width: 400px;
  }
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #D52A2A;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
@media (any-hover: hover) {
  .btn:hover {
    color: #fff;
  }
  .btn:hover::before {
    transform: scaleX(1);
  }
  .btn:hover .btn__icon {
    color: #D52A2A;
  }
}
.btn:focus-visible {
  outline: 2px solid #D52A2A;
  outline-offset: 3px;
}

.btn__text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4; /* 25.2px */
}
@media screen and (max-width: 767px) {
  .btn__text {
    letter-spacing: -0.48px;
  }
}

.btn__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #D52A2A;
  background: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.btn--outline {
  color: #B92020;
  background: #fff;
  border: 1px solid #B92020;
}
.btn--outline .btn__icon {
  color: #fff;
  background: #B92020;
}
@media (any-hover: hover) {
  .btn--outline:hover .btn__icon {
    background: #fff;
  }
}

.btn--white {
  color: #1a1a1a;
  background: #fff;
}
.btn--white::before {
  background: #D52A2A;
}
.btn--white .btn__icon {
  color: #1a1a1a;
  background: #f2f2f2;
}
@media (any-hover: hover) {
  .btn--white:hover {
    color: #fff;
  }
  .btn--white:hover .btn__icon {
    color: #D52A2A;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .btn--white {
    min-width: 0;
  }
}

.btn--gray {
  width: auto;
  min-width: 300px;
  color: #1a1a1a;
  background: #f2f2f2;
}
.btn--gray::before {
  background: #D52A2A;
}
.btn--gray .btn__icon {
  color: #1a1a1a;
  background: #fff;
}
@media (any-hover: hover) {
  .btn--gray:hover {
    color: #fff;
  }
  .btn--gray:hover .btn__icon {
    color: #D52A2A;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .btn--gray {
    min-width: 0;
  }
}

.btn-back-area {
  max-width: 1440px;
  margin: 40px auto 0;
  padding-inline: 80px;
}
@media screen and (max-width: 767px) {
  .btn-back-area {
    width: 90%;
    margin-top: 32px;
    padding-inline: 0;
  }
}

.btn-back {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  width: 300px;
  max-width: 100%;
  min-height: 72px;
  padding: 19px 44px 19px 40px;
  border-radius: 4px;
  color: #1a1a1a;
  background: #f2f2f2;
  transition: color 0.3s ease;
}
.btn-back::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #D52A2A;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
@media (any-hover: hover) {
  .btn-back:hover {
    color: #fff;
  }
  .btn-back:hover::before {
    transform: scaleX(1);
  }
  .btn-back:hover .btn-back__icon {
    color: #D52A2A;
    background: #fff;
  }
}
.btn-back:focus-visible {
  outline: 2px solid #D52A2A;
  outline-offset: 3px;
}
@media screen and (max-width: 767px) {
  .btn-back {
    width: 100%;
    max-width: 300px;
  }
}

.btn-back__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #1a1a1a;
  background: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-back__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateX(1px) rotate(45deg);
}

.btn-back__text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.section-title {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 14px;
  --section-title-deco: #fcfcfc;
}
.section-title::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -22px;
  z-index: -1;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--section-title-deco);
}
@media screen and (max-width: 767px) {
  .section-title::before {
    width: 32px;
    height: 32px;
    top: -15px;
    left: -14px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #b92020;
}

.section-title > * {
  position: relative;
  z-index: 1;
}

.section-title--gray {
  --section-title-deco: #f2f2f2;
}

.section-title--white {
  --section-title-deco: #fcfcfc;
}

.section-title__sub {
  color: var(--_, #b92020);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1; /* 14px */
}

.section-title__main {
  color: var(--, #1a1a1a);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2rem, 1.735915493rem + 1.1267605634vw, 2.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 61.6px */
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .section-title__main {
    text-wrap: wrap;
  }
}

.section-title__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .section-title__center {
    align-items: flex-start;
  }
}

.section-title__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
  align-items: end;
}
@media screen and (max-width: 767px) {
  .section-title__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.section-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .section-head {
    grid-template-columns: 1fr;
  }
}

.section-head__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .section-head__center {
    align-items: flex-start;
  }
}

.breadcrumb {
  color: #777;
  font-size: clamp(0.8125rem, 0.7024647887rem + 0.4694835681vw, 1.125rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  padding-block: 16px;
}
.breadcrumb a {
  color: #777;
  margin-inline: 3px;
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.6;
}
.breadcrumb span {
  margin-inline: 3px;
}
.breadcrumb .current-item,
.breadcrumb .breadcrumb_last {
  color: rgba(119, 119, 119, 0.6);
}

.nav-link {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  position: relative;
  padding-left: 12px;
  color: #777;
  letter-spacing: 0.48px;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b92020;
}

.nav-link--green:hover {
  color: #53b920;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em; /* ← ココを調整 */
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.nav-link--green::before {
  background: #53b920;
}

.nav-link:hover {
  opacity: 0.7;
}

.sitemap__list .nav-link {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  position: relative;
  margin-top: 0;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .sitemap__list .nav-link {
    letter-spacing: 0.36px;
  }
}
.sitemap__list .nav-link__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.sitemap__list .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em; /* ← ココを調整 */
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}
.sitemap__list .nav-link--green::before {
  background: #53b920;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 60px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .more-link {
    justify-content: flex-start;
    width: 100%;
    font-size: 16px;
  }
}

.more-link__icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .more-link__icon {
    width: 28px;
    height: 28px;
  }
}

.more-link__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: translate(-60%, -50%) rotate(45deg);
  transition: border-top-color 0.3s ease, border-right-color 0.3s ease;
}

@media (any-hover: hover) {
  .more-link:hover {
    color: #b92020;
  }
  .more-link:hover .more-link__icon {
    background: #b92020;
  }
  .more-link:hover .more-link__icon::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}
.page-fv {
  height: 225px;
}
@media screen and (max-width: 767px) {
  .page-fv {
    height: auto;
  }
}

.page-fv__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
}
@media screen and (max-width: 767px) {
  .page-fv__inner {
    width: 90%;
    padding-inline: 0;
  }
}

.page-section-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
}
.page-section-title::before {
  content: "";
  position: absolute;
  top: -105px;
  left: -100px;
  z-index: -1;
  width: 214px;
  aspect-ratio: 1;
  background: url("../img/common/deco_page-fv.svg") center center/contain no-repeat;
}

.page-section-title__sub,
.page-section-title__main {
  position: relative;
  z-index: 1;
}

.page-section-title__sub {
  color: var(--_, #b92020);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9375rem, 0.8714788732rem + 0.2816901408vw, 1.125rem);
  font-weight: 600;
  line-height: 1; /* 18px */
}

.page-section-title__main {
  font-size: clamp(2.25rem, 1.8538732394rem + 1.6901408451vw, 3.375rem);
  font-weight: 700;
  line-height: 1.4; /* 75.6px */
}

.page-fv__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .page-fv__wrapper {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  overflow: hidden;
}

.page-hero__image {
  display: block;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .page-hero__image {
    height: 240px;
  }
}

.page-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-intro {
  background: #f2f2f2;
}

.page-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin-inline: auto;
  padding: 120px 80px;
}
@media screen and (max-width: 767px) {
  .page-intro__inner {
    width: 90%;
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .page-intro--benefits .page-intro__inner {
    gap: 80px;
  }
}
.page-intro__head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .page-intro__head {
    min-height: 92px;
  }
}

.page-intro__label {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page-intro__label {
    font-size: clamp(3.5rem, 3.1478873239rem + 1.5023474178vw, 4.5rem);
  }
}

.page-intro__title {
  position: absolute;
  left: 50%;
  top: 75px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page-intro__title {
    top: 50px;
    font-size: 1.125rem;
  }
}

.page-intro__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.page-intro__text {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-intro--entry .page-intro__text {
    text-align: left;
  }
}
.photo-gallery {
  position: relative;
  overflow: hidden;
  background: #f6f6f6;
  isolation: isolate;
}

.photo-gallery__deco-circle {
  position: absolute;
  top: 80px;
  right: -160px;
  z-index: -1;
  width: clamp(14.25rem, 6.173415493rem + 34.4600938967vw, 37.1875rem);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .photo-gallery__deco-circle {
    top: 60px;
    right: -56px;
  }
}
.photo-gallery__deco-circle img {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-gallery__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .photo-gallery__inner {
    width: 90%;
  }
}

.photo-gallery__viewport {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .photo-gallery__viewport {
    margin-top: 40px;
  }
}

.photo-gallery__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .photo-gallery__track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: photo-gallery-scroll 40s linear infinite;
    will-change: transform;
  }
}

.photo-gallery__item {
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 4px;
}
.photo-gallery__item:nth-child(n+7) {
  display: none;
}
@media screen and (max-width: 767px) {
  .photo-gallery__item {
    display: block;
    width: 260px;
    flex: 0 0 auto;
  }
  .photo-gallery__item:nth-child(n+7) {
    display: block;
  }
}

.photo-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes photo-gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.media-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .media-card__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.media-card__grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .media-card__grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .media-card__grid--3col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.media-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.media-card__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 620/316;
  height: auto;
  border-radius: 4px;
}
.media-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .media-card__image {
    height: auto;
    aspect-ratio: 335/230;
  }
}

.media-card__title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  padding: 8px 10px;
  color: #1a1a1a;
  background: #fcfcfc;
}

.media-card__body {
  padding-top: 20px;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .media-card__body {
    padding-top: 16px;
  }
}

.flow--entry {
  background: #fcfcfc;
}

.flow--benefits {
  background: #f2f2f2;
}

.flow--entry .flow-card__body {
  background: #f2f2f2;
}

.flow--benefits .flow-card__body {
  background: #fcfcfc;
}

.flow__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .flow__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.flow__lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 1030px) {
  .flow__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .flow__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
  }
}

.flow-card {
  position: relative;
  min-width: 0;
  padding-top: 30px;
}

.flow-card__number {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  background: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 0.735915493rem + 1.1267605634vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow-card__number {
    top: 10px;
    left: 10%;
  }
}

.flow-card:nth-child(5) .flow-card__number {
  background: #b92020;
}

.flow-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-height: 219px;
  padding: 32px 20px 20px;
}
@media screen and (max-width: 767px) {
  .flow-card__body {
    min-height: auto;
  }
}

.flow-card:nth-child(4) .flow-card__body {
  background: #d9d9d9;
}

.flow-card:nth-child(5) .flow-card__body {
  background: #f5dede;
}

.flow-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 95px;
}

.flow-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow-card__text {
  width: 128px;
  max-width: 100%;
  text-align: center;
}

.flow-card__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}

.flow-card:nth-child(5) .flow-card__title {
  color: #b92020;
}

.flow-card__description {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.footer {
  background: #1a1a1a;
  color: #fff;
}

.footer__content {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding-block: 80px 40px;
}
@media screen and (max-width: 767px) {
  .footer__content {
    flex-direction: column-reverse;
    gap: 48px;
    padding-block: 56px 32px;
  }
}

.footer__right {
  flex: 0 0 292px;
  padding-right: 40px;
  border-right: 1px solid #777;
}
@media screen and (max-width: 767px) {
  .footer__right {
    flex-basis: auto;
    padding-right: 0;
    padding-bottom: 40px;
    border-right: none;
    border-bottom: 1px solid #777;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: block;
  width: 252px;
  max-width: 100%;
}

.footer__address {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.footer__Instagram {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4px;
  color: #777;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .footer__Instagram {
    font-size: 1rem;
  }
}

.icon_Instagram {
  width: 29px;
  height: 29px;
}

.footer .icon_Instagram {
  filter: brightness(0) invert(1);
}

.icon_link-share {
  width: 14px;
  height: 14px;
}

.footer__entry {
  width: 100%;
  min-height: 72px;
  margin-top: 12px;
  padding: 18px 20px 18px 24px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .footer__entry {
    max-width: 400px;
    min-height: 64px;
  }
}

.footer__left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
}
@media screen and (max-width: 399px) {
  .footer__nav {
    grid-template-columns: 1fr;
  }
}

.footer__nav-col {
  min-width: 0;
}

.footer__block-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

.footer__nav-col .nav-link {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-top: 0;
  color: #777;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.footer__nav-col li + li {
  margin-top: 8px;
}

.footer__offices {
  margin-top: 24px;
}

.footer__office-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 245px));
  justify-content: space-between;
  gap: 8px 32px;
}
@media screen and (max-width: 1000px) {
  .footer__office-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 399px) {
  .footer__office-list {
    grid-template-columns: 1fr;
  }
}

.footer__office {
  min-width: 0;
}

.footer__office-name {
  position: relative;
  padding-left: 11px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer__office-name::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.footer__office-address,
.footer__office-tel {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}

.footer__copyright {
  padding: 0 80px 24px;
  color: #777;
  background: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .footer__copyright {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-inline: 20px;
  }
}
.footer__copyright .inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__copyright .inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.footer__copyright-nav {
  display: flex;
  gap: 20px;
}

.fv {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 100lvh;
    min-height: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .fv::before,
  .fv::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  .fv::before {
    top: 0;
    left: -40px;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, transparent 0 6px, #f6f6f6 7px 10px, transparent 11px 15px);
  }
}

@media screen and (max-width: 767px) {
  .fv::after {
    top: 96px;
    left: 75.47%;
    z-index: 2;
    width: 184px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fcfcfc;
  }
}

.fv__inner {
  display: flex;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    position: relative;
    display: block;
    height: calc(100lvh - 66px);
    min-height: 0;
  }
}

.fv__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 0 0 49%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 80px 64px;
}
@media screen and (max-width: 767px) {
  .fv__content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}

.fv__catch {
  position: absolute;
  top: 19%;
  left: 64px;
  z-index: 5;
  width: calc(100% - 64px);
  text-shadow: 0 0 20px #fcfcfc;
  font-size: 4.4375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.fv__catch .fv__catch-accent {
  color: #b92020;
}
.fv__catch .fv__catch-quote {
  color: #b92020;
  font-family: Arial, sans-serif;
}
@media screen and (max-width: 1440px) {
  .fv__catch {
    font-size: clamp(3.125rem, 1.9107142857rem + 2.5297619048vw, 4.1875rem);
  }
}
@media screen and (max-width: 767px) {
  .fv__catch {
    top: 66px;
    left: 20px;
    width: calc(100% - 40px);
    font-size: clamp(28px, min(9.066vw, 4.03lvh), 34px);
  }
}

.fv__text {
  font-weight: 700;
  line-height: 1.8; /* 32.4px */
  position: absolute;
  top: 46%;
  left: 64px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 1440px) {
  .fv__text {
    font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  }
}
@media screen and (max-width: 767px) {
  .fv__text {
    width: calc(100% - 40px);
    line-height: 1.6;
    top: clamp(252px, 31.04lvh, 292px);
    bottom: auto;
    left: 20px;
  }
}

.fv__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .fv__buttons {
    position: absolute;
    z-index: 5;
    bottom: clamp(32px, 7.1lvh, 60px);
    left: 50%;
    display: flex;
    width: min(303px, 100% - 72px);
    margin-top: 0;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .fv__buttons .btn--red {
    display: none;
  }
  .fv__button {
    width: 100%;
    min-height: 58px;
    padding: 12px 20px 12px 24px;
    border-radius: 4px;
  }
  .fv__button .btn__text {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
  .fv__button .btn__icon {
    width: 28px;
    height: 28px;
  }
}
.fv__visual {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  height: calc(100vh + 80px);
  margin-bottom: -80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv__visual {
    position: absolute;
    top: clamp(320px, 40.28lvh, 360px);
    left: 0;
    width: 100%;
    height: max(0px, 100% - clamp(320px, 40.28lvh, 360px) - 138px);
    max-height: 300px;
    margin-bottom: 0;
  }
}

.fv__swiper {
  width: 100%;
  height: 100%;
}

.fv__swiper .swiper-wrapper,
.fv__swiper .swiper-slide {
  height: 100%;
}

.fv__slide {
  overflow: hidden;
}

.fv__slide picture,
.fv__slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fv__door {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #b92020;
  transform: translateX(100%);
  pointer-events: none;
}

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

.sp-fixed-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-fixed-nav {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 66px;
    padding: 0 20px 12px;
  }
}

.sp-fixed-nav__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  height: 54px;
  background: #b92020;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.48px;
}

.sp-nav-menu {
  flex: 0 0 54px;
}
@media screen and (max-width: 767px) {
  .sp-nav-menu {
    width: 54px;
    height: 54px;
    gap: 0px;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav-menu .drawer-trigger__bars {
    margin-top: 10px;
    width: 27px;
    height: 8px;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav-menu .drawer-trigger__bar:nth-child(2) {
    top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav-menu.drawer-trigger.js-show .drawer-trigger__bar:nth-child(1), .sp-nav-menu.drawer-trigger.js-show .drawer-trigger__bar:nth-child(2) {
    top: 4px;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav-menu .drawer-trigger__text {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: -0.39px;
  }
}

.about {
  position: relative;
  min-height: 632px;
  overflow: hidden;
  color: #fff;
  background: url("../img/top/bg_about.webp") center bottom/cover no-repeat;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(65, 65, 65, 0.8);
}
@media screen and (max-width: 767px) {
  .about {
    min-height: 760px;
    background-image: url("../img/top/bg_about-sp.webp");
  }
}

.about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  min-height: inherit;
  padding: 120px 280px 120px 80px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .about__inner {
    padding-right: 80px;
  }
}
@media screen and (max-width: 767px) {
  .about__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding-block: 80px;
    padding-inline: 0;
    width: 90%;
  }
}

.about__label {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
  height: 62px;
}

.about__label-line {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.about__label-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 600;
  line-height: 1;
}

.about__content {
  display: flex;
  flex: 0 1 880px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 880px;
}
@media screen and (max-width: 767px) {
  .about__content {
    flex-basis: auto;
    width: 100%;
    max-width: none;
  }
}

.about__title {
  font-size: clamp(2.25rem, 2.073943662rem + 0.7511737089vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.about__text {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .about__text {
    width: 100%;
  }
}

.about__text p {
  margin: 0;
}

.about__link {
  color: #fff;
}

.more-link__icon {
  background: #fff;
}

.about__link .more-link__icon::before {
  border-top-color: #777;
  border-right-color: #777;
}

.numbers {
  position: relative;
  overflow-x: hidden;
}

.numbers__deco-circle01 {
  position: absolute;
  left: -138px;
  bottom: 327px;
  width: 336px;
  height: 336px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f6f6f6;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .numbers__deco-circle01 {
    display: none;
  }
}

.numbers__deco-circle02 {
  position: absolute;
  z-index: -1;
  right: -43px;
  bottom: 137px;
  width: 237px;
  height: 237px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 6px solid #f6f6f6;
}
@media screen and (max-width: 767px) {
  .numbers__deco-circle02 {
    display: none;
  }
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .numbers__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.numbers__subgrid {
  display: grid;
  grid-column: span 2;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .numbers__subgrid {
    grid-column: auto;
    grid-template-rows: none;
  }
}

.numbers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: span 2;
  min-width: 0;
  min-height: 310px;
  padding: 16px;
  border-radius: 4px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .numbers-card {
    grid-column: auto;
    min-height: auto;
  }
}

.numbers-card--map {
  position: relative;
  grid-column: span 4;
  min-height: 540px;
}
@media screen and (max-width: 767px) {
  .numbers-card--map {
    grid-column: auto;
    min-height: auto;
  }
}

.numbers-card--wide {
  grid-column: span 3;
  min-height: 160px;
}
@media screen and (max-width: 767px) {
  .numbers-card--wide {
    grid-column: auto;
  }
}

.numbers__subgrid .numbers-card {
  grid-column: auto;
  min-height: 260px;
}
@media screen and (max-width: 767px) {
  .numbers__subgrid .numbers-card {
    min-height: auto;
  }
}

.numbers-card .u-text-md {
  width: 100%;
  text-align: center;
}

.numbers-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 118px;
  margin-top: auto;
}
.numbers-card__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon {
    width: 150px;
    height: 100px;
    min-height: initial;
    align-items: center;
  }
  .numbers-card__icon img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.numbers-card__icon--01 img {
  width: 152px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--01 img {
    width: auto;
  }
}

.numbers-card__icon--02 img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--02 img {
    width: auto;
  }
}

.numbers-card__icon--03 img {
  width: 96px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--03 img {
    width: auto;
  }
}

.numbers-card__icon--04 img {
  width: 371px;
}

.numbers-card__icon--05 img {
  width: 64px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--05 img {
    width: auto;
  }
}

.numbers-card__icon--06 img {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--06 img {
    width: auto;
  }
}

.numbers-card__icon--07 img {
  width: 108px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--07 img {
    width: auto;
  }
}

.numbers-card__icon--08 img {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .numbers-card__icon--08 img {
    width: auto;
  }
}

.numbers-map--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .numbers-map--pc {
    display: none;
  }
  .numbers-map--sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .numbers-card__sp-media {
    display: flex;
  }
  .numbers-card__sp-media .numbers-card__icon {
    min-height: auto;
    margin-top: 0;
  }
}

.numbers-card__number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  white-space: nowrap;
}

.numbers-card__value {
  color: #b92020;
  font-family: "Poppins", sans-serif;
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .numbers-card__value {
    font-size: 3rem;
  }
}

.numbers-card__unit {
  padding-bottom: 17px;
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .numbers-card__unit {
    padding-bottom: 13px;
    font-size: 1.375rem;
  }
}

.numbers-card__unit--overtime {
  line-height: 1.2;
}

.numbers-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-block: auto;
}
.numbers-card__media .numbers-card__icon {
  flex: 0 0 auto;
  width: auto;
  min-height: auto;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .numbers-card__media .numbers-card__icon {
    width: 150px;
    height: 100px;
    min-height: initial;
  }
}

@media screen and (max-width: 767px) {
  .numbers-card__sp-media,
  .numbers-card__media {
    align-items: end;
    justify-content: center;
    gap: 0px;
    width: 100%;
    margin-block: 10px;
  }
}
.numbers-card--compact .numbers-card__number,
.numbers-card--wide .numbers-card__number {
  justify-content: flex-start;
  margin-top: 0;
}

.numbers-card--wide .numbers-card__media {
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .numbers-card--wide .numbers-card__media {
    gap: 0;
  }
}

.numbers-card--map .numbers-card__icon {
  min-height: 440px;
  margin-top: 0;
}
.numbers-card--map .numbers-card__number {
  position: absolute;
  top: 73px;
  left: 16%;
  z-index: 1;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .numbers-card--map .numbers-card__icon {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .numbers-card--map .numbers-card__number {
    top: 66px;
    left: 16px;
  }
  .numbers-card--map .numbers-map {
    width: 100%;
    max-width: 371px;
    margin-top: 12px;
  }
  .numbers-card--map .numbers-map__svg {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.numbers-card__map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.numbers-map {
  width: min(100%, 371px);
  margin: 23px auto 0;
}

.numbers-map__svg {
  display: block;
  width: 100%;
  height: auto;
}

.numbers-map--sp g[clip-path] {
  clip-path: none;
}

.numbers-card__value {
  display: inline-block;
  transform: scale(0.3);
  opacity: 0;
  will-change: transform, opacity;
}
.numbers-card__value.is-animated {
  animation: numbersPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes numbersPop {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.numbers-map__pin {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .values__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.values__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.values-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.values-card__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 316px;
  border-radius: 4px;
}
.values-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .values-card__image {
    height: auto;
    aspect-ratio: 540/316;
  }
}

.values-card__catch {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  padding: 8px 10px;
  color: #1a1a1a;
  background: #fcfcfc;
}

.values-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .values-card__body {
    gap: 12px;
  }
}

.interview {
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 1000px) {
  .interview {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .interview {
    padding-left: clamp(1rem, -0.4349489796rem + 6.1224489796vw, 2.5rem);
  }
}
.interview::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 508px;
  left: 477px;
  width: 221px;
  height: 221px;
  background: url("../img/top/deco_interview.webp") center/contain no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-block: 80px 60px;
  }
  .interview::before {
    top: 20px;
    right: -63px;
    left: auto;
    width: 148px;
    height: 148px;
  }
}

.interview__inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-left: clamp(1.25rem, -3.0237741456rem + 8.9153046062vw, 5rem);
}

.interview__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(470px, 1fr);
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .interview__hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .interview__intro {
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .interview__lead {
    margin-top: 60px;
  }
}

.interview-message {
  position: relative;
  aspect-ratio: 690/636;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .interview-message {
    max-width: 620px;
    aspect-ratio: 355/409;
    margin-left: auto;
  }
}

.interview-message__bg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.interview-message__copy-pc {
  position: absolute;
  top: 10%;
  right: clamp(11rem, 12.4245913819rem + -2.9717682021vw, 9.75rem);
  color: #fff;
  font-size: clamp(1.25rem, 0.6801634473rem + 1.1887072808vw, 1.75rem);
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.interview-message__copy-sp {
  position: absolute;
  top: 150px;
  right: clamp(5.625rem, 0.8418367347rem + 20.4081632653vw, 10.625rem);
  color: #fff;
  font-size: clamp(1.125rem, 0.5271045918rem + 2.5510204082vw, 1.75rem);
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.interview-message__labels {
  position: absolute;
  top: 13%;
  right: clamp(6rem, 8.2081166419rem + -4.6062407132vw, 4.0625rem);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .interview-message__labels {
    top: clamp(2.5rem, 0.5269451531rem + 8.4183673469vw, 4.5625rem);
    right: clamp(1.25rem, -0.7828443878rem + 8.6734693878vw, 3.375rem);
  }
}

.interview-message__labels p {
  display: inline-flex;
  padding: 8px 4px;
  color: #b92020;
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.08;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .interview-message__labels p {
    padding: 7px 3px;
    font-size: clamp(0.875rem, 0.0977359694rem + 3.3163265306vw, 1.6875rem);
  }
}

.interview__body {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  margin-right: calc(50% - 50vw);
  min-width: 0;
}

.interview__swiper-container {
  position: relative;
  min-width: 0;
}

.interview__swiper {
  position: relative;
  z-index: 5;
  overflow: visible;
  clip-path: inset(0% -50vw 0% 0%);
}

.interview__swiper .swiper-slide {
  width: 330px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .interview__swiper .swiper-slide {
    width: 280px;
  }
}

.interview .interview-card {
  display: block;
  width: 100%;
  color: inherit;
}

.interview .interview-card__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 330/375;
  border-radius: 4px;
  background: #fcfcfc;
}

.interview .interview-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: transform 0.3s ease;
  will-change: transform;
}

.interview .interview-card:hover .interview-card__image img {
  transform: scale(1.05);
}

.interview .interview-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  font-weight: 700;
}

.interview .interview-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: 100%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .interview .interview-card__meta {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.interview .interview-card__name {
  min-width: 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .interview .interview-card__name {
    font-size: 1rem;
  }
}

.interview .interview-card__title {
  width: min(100%, 286px);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .interview .interview-card__title {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.interview__controls {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .interview__controls {
    gap: 32px;
    margin-top: 20px;
    padding-right: 15%;
  }
}

.interview__pager-row {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .interview__pager-row {
    justify-content: space-between;
    width: 100%;
  }
}

.interview__pagination {
  display: flex;
  gap: 20px;
  color: #777;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .interview__pagination {
    gap: 15px;
    font-size: 0.75rem;
  }
}

.interview__pagination li {
  cursor: pointer;
}

.interview__pagination .is-active {
  color: #1a1a1a;
}

.interview__arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .interview__arrows {
    gap: 16px;
  }
}

.interview__arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #777;
  border-radius: 50%;
  color: #777;
  background: transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .interview__arrow {
    width: 28px;
    height: 28px;
  }
}
@media (any-hover: hover) {
  .interview__arrow:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
  }
}

.interview__arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.interview__arrow span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-65%, -50%) rotate(45deg);
}

.interview__arrow--prev span::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

@media screen and (max-width: 767px) {
  .interview__btn {
    margin-inline: auto;
  }
}

.work__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 640px);
  align-items: center;
  gap: clamp(1.875rem, -0.2678571429rem + 4.4642857143vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .work__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.work__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .work__content {
    gap: 32px;
  }
}

.work__lead {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .work__lead {
    gap: 0;
  }
}

.work__lead .u-text-base {
  max-width: 504px;
}
@media screen and (max-width: 767px) {
  .work__lead .u-text-base {
    margin-top: 40px;
  }
}

.work__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .work__list {
    gap: 32px;
  }
}

.work-card {
  display: block;
  padding-block: 20px;
  border-bottom: 1px solid #cecece;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .work-card {
    padding-block: 0;
    border-bottom: 0;
  }
}

.work-card:first-child {
  padding-top: 0;
}

.work-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .work-card__head {
    margin-top: 20px;
  }
}

.work-card__icon {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #1a1a1a;
  background: #f2f2f2;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.work-card__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.work-card__title {
  transition: color 0.3s ease;
}

.work-card__text {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .work-card__text {
    margin-top: 12px;
  }
}

.work-card__image {
  display: none;
}
@media screen and (max-width: 767px) {
  .work-card__image {
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
}

.work-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__images {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: 100%;
  max-width: 633px;
  aspect-ratio: 1/1;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .work__images {
    display: none;
  }
}

.work__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work__image--sales {
  opacity: 1;
}

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

.work__btn {
  margin-top: 40px;
}

.work__btn--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .work__btn {
    margin-top: 0;
  }
  .work__btn--pc {
    display: none;
  }
  .work__btn--sp {
    display: inline-flex;
    width: 100%;
    min-height: 58px;
    margin-top: 20px;
    padding: 12px 20px 12px 24px;
    background: #f2f2f2;
  }
  .work__btn--sp .btn__icon {
    width: 28px;
    height: 28px;
    color: #1a1a1a;
    background: #fff;
  }
  .work__btn--sp:hover {
    color: #1a1a1a;
  }
  .work__btn--sp:hover::before {
    transform: scaleX(0);
  }
  .work__btn--sp:hover .btn__icon {
    color: #1a1a1a;
    background: #fff;
  }
}
@media (any-hover: hover) and (min-width: 768px) {
  .work-card:hover .work-card__title {
    color: #b92020;
  }
  .work-card:hover .work-card__icon {
    color: #fff;
    background: #b92020;
  }
  .work:has(.work-card--material:hover) .work__image {
    opacity: 0;
  }
  .work:has(.work-card--material:hover) .work__image--material {
    opacity: 1;
  }
  .work:has(.work-card--field:hover) .work__image {
    opacity: 0;
  }
  .work:has(.work-card--field:hover) .work__image--field {
    opacity: 1;
  }
}
.benefits {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .benefits {
    padding-block: 60px;
  }
}

.benefits__contents {
  padding-block: 100px 80px;
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
}
@media screen and (max-width: 767px) {
  .benefits__contents {
    padding-block: 60px;
  }
}

.benefits__lead {
  align-self: end;
}
@media screen and (max-width: 767px) {
  .benefits__lead {
    align-self: auto;
  }
}

.benefits__body {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .benefits__body {
    margin-top: 40px;
  }
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.benefits-card {
  min-width: 0;
}

.benefits-card__image {
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .benefits-card__image {
    aspect-ratio: 303/160;
  }
}

.benefits-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits-card__body {
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .benefits-card__body {
    padding-top: 16px;
  }
}

.benefits-card__title {
  white-space: nowrap;
}

.benefits__btn {
  display: flex;
  max-width: 354px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .benefits__btn {
    margin-top: 32px;
  }
}

.benefit-requirements {
  background: #f2f2f2;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements {
    padding-bottom: 80px;
  }
}

.benefit-requirements__title {
  width: 100%;
}

.benefit-requirements__tabs {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__tabs {
    margin-top: 40px;
  }
}

.benefit-requirements__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.benefit-requirements__tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-bottom: 4px solid #b92020;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__tab-list {
    gap: 2px;
    border-bottom-width: 2px;
  }
}

.benefit-requirements__tab {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 80px;
  color: #777;
  background: #d9d9d9;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__tab {
    flex-direction: column;
    gap: 4px;
    min-height: 80px;
    padding: 8px 4px;
    text-align: center;
  }
}

#benefit-requirements-tab-01:focus-visible ~ .benefit-requirements__tab-list [for=benefit-requirements-tab-01],
#benefit-requirements-tab-02:focus-visible ~ .benefit-requirements__tab-list [for=benefit-requirements-tab-02],
#benefit-requirements-tab-03:focus-visible ~ .benefit-requirements__tab-list [for=benefit-requirements-tab-03] {
  outline: 2px solid #b92020;
  outline-offset: 3px;
}

#benefit-requirements-tab-01:checked ~ .benefit-requirements__tab-list [for=benefit-requirements-tab-01],
#benefit-requirements-tab-02:checked ~ .benefit-requirements__tab-list [for=benefit-requirements-tab-02],
#benefit-requirements-tab-03:checked ~ .benefit-requirements__tab-list [for=benefit-requirements-tab-03] {
  color: #fff;
  background: #b92020;
}

.benefit-requirements__tab-number {
  flex: 0 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__tab-number {
    font-size: 1.125rem;
  }
}

.benefit-requirements__tab-name {
  display: flex;
  gap: 0;
  min-width: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__tab-name {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
  }
}

.benefit-requirements__tab-name span {
  display: inline;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__tab-name span {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
  }
}

.benefit-requirements__panels {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__panels {
    margin-top: 60px;
  }
}

.benefit-requirements__panel {
  display: none;
}

#benefit-requirements-tab-01:checked ~ .benefit-requirements__panels #benefit-requirements-panel-01,
#benefit-requirements-tab-02:checked ~ .benefit-requirements__panels #benefit-requirements-panel-02,
#benefit-requirements-tab-03:checked ~ .benefit-requirements__panels #benefit-requirements-panel-03 {
  display: block;
}

.benefit-requirements__block + .benefit-requirements__block {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__block + .benefit-requirements__block {
    margin-top: 32px;
  }
}

.benefit-requirements__heading {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 53px;
  padding: 4px 20px 4px 26px;
  color: #1a1a1a;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}
.benefit-requirements__heading::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background-color: #b92020;
  content: "";
}
@media screen and (max-width: 767px) {
  .benefit-requirements__heading {
    min-height: 42px;
    padding-left: 20px;
  }
}

.benefit-requirements__table-box {
  margin-top: 20px;
  padding: 40px 30px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table-box {
    margin-top: 16px;
    padding: 20px 16px;
  }
}

.benefit-requirements__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.benefit-requirements__table th {
  font-weight: 700;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table th {
    line-height: 1.6;
  }
}

.benefit-requirements__price {
  font-size: 1.375rem;
  font-weight: 700;
}
.benefit-requirements__price span {
  font-size: 1rem;
}

.benefit-requirements__table strong {
  font-weight: 700;
}

.benefit-requirements__table span {
  font-size: 0.75rem;
}

.benefit-requirements__table--employment th,
.benefit-requirements__table--employment td {
  height: 80px;
  padding-block: 24px;
  border-top: 1px solid #d9d9d9;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table--employment th,
  .benefit-requirements__table--employment td {
    display: block;
    width: 100%;
    height: auto;
    padding-block: 0;
  }
}

.benefit-requirements__table--employment tr:first-child th,
.benefit-requirements__table--employment tr:first-child td {
  border-top-color: #1a1a1a;
}

.benefit-requirements__table--employment tr:last-child th,
.benefit-requirements__table--employment tr:last-child td {
  border-bottom: 1px solid #1a1a1a;
}

.benefit-requirements__table--employment th {
  padding-left: 20px;
  border-top-color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table--employment th {
    padding-block: 8px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #d9d9d9;
  }
}

.benefit-requirements__table--employment td {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table--employment td {
    padding-block: 8px;
    border-top: 0;
  }
}

.benefit-requirements__scroll {
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__scroll {
    margin-top: 16px;
    width: calc(100% + 20px);
  }
}

.benefit-requirements__table--location,
.benefit-requirements__table--location-type2 {
  table-layout: fixed;
  background: #fcfcfc;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .benefit-requirements__table--location {
    width: 800px;
    min-width: 800px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .benefit-requirements__table--location-type2 {
    width: 800px;
    min-width: 800px;
    font-size: 1rem;
  }
}

.benefit-requirements__table--location thead th,
.benefit-requirements__table--location-type2 thead th {
  height: 80px;
  padding: 18px 20px;
  border-right: 1px solid #d9d9d9;
  color: #fff;
  background: #777;
  font-size: 1.125rem;
  line-height: 1.6;
  vertical-align: middle;
  white-space: nowrap;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table--location thead th,
  .benefit-requirements__table--location-type2 thead th {
    height: 64px;
    padding: 12px 16px;
    font-size: 1rem;
  }
}

.benefit-requirements__table--location thead th:last-child,
.benefit-requirements__table--location-type2 thead th:last-child {
  border-right: 0;
}

.benefit-requirements__table--location tbody th,
.benefit-requirements__table--location tbody td,
.benefit-requirements__table--location-type2 tbody th,
.benefit-requirements__table--location-type2 tbody td {
  height: 121px;
  padding: 20px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fcfcfc;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table--location tbody th,
  .benefit-requirements__table--location tbody td,
  .benefit-requirements__table--location-type2 tbody th,
  .benefit-requirements__table--location-type2 tbody td {
    height: 119px;
    padding: 15px;
  }
}

.benefit-requirements__table--location-type2 tbody th,
.benefit-requirements__table--location-type2 tbody td {
  height: 112px;
}

.benefit-requirements__table--location-type2 tbody tr:last-child th,
.benefit-requirements__table--location-type2 tbody tr:last-child td {
  height: 80px;
}

.benefit-requirements__table--location tbody th,
.benefit-requirements__table--location-type2 tbody th {
  font-size: 1.125rem;
  padding-inline: 26px;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__table--location tbody th,
  .benefit-requirements__table--location-type2 tbody th {
    padding-inline: 15px;
  }
}

.benefit-requirements__table--location tbody th span,
.benefit-requirements__table--location-type2 tbody th span {
  display: block;
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.6;
}

.benefit-requirements__table--location tbody td:last-child,
.benefit-requirements__table--location-type2 tbody td:last-child {
  border-right: 0;
}

.benefit-requirements__location-name {
  width: 200px;
}

.benefit-requirements__location-address {
  width: 300px;
}

.benefit-requirements__location-time {
  width: 120px;
}

.benefit-requirements__location-break,
.benefit-requirements__location-transfer {
  width: 76px;
}

.benefit-requirements__location-note {
  width: 308px;
}

.benefit-requirements__location-type2-name {
  width: 200px;
}

.benefit-requirements__location-type2-address {
  width: 460px;
}

.benefit-requirements__location-type2-time,
.benefit-requirements__location-type2-break,
.benefit-requirements__location-type2-transfer {
  width: 153.333px;
}

@media screen and (max-width: 767px) {
  .benefit-requirements__location-name {
    width: 140px;
  }
  .benefit-requirements__location-address {
    width: 215px;
  }
  .benefit-requirements__location-time {
    width: 115px;
  }
  .benefit-requirements__location-break,
  .benefit-requirements__location-transfer {
    width: 64px;
  }
  .benefit-requirements__location-note {
    width: 202px;
  }
  .benefit-requirements__location-type2-name {
    width: 140px;
  }
  .benefit-requirements__location-type2-address {
    width: 330px;
  }
  .benefit-requirements__location-type2-time {
    width: 110px;
  }
  .benefit-requirements__location-type2-break,
  .benefit-requirements__location-type2-transfer {
    width: 110px;
  }
}
.benefit-requirements__note {
  margin-top: 16px;
  color: #777;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .benefit-requirements__note {
    margin-top: 12px;
  }
}

.benefits-about {
  background: #f2f2f2;
  padding-bottom: 60px;
}

.benefits-about__inner {
  padding-block: 100px 80px;
  padding-inline: clamp(1.25rem, -0.0704225352rem + 5.6338028169vw, 5rem);
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .benefits-about__inner {
    padding-block: 60px;
  }
}

.benefits-about__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .benefits-about__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.benefits-about__lead {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.benefits-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .benefits-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .benefits-about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
}

.benefits-about-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.benefits-about-card__image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 250/160;
  background: #f2f2f2;
}

.benefits-about-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits-about-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.benefits-about-card__title {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .benefits-about-card__title {
    font-size: 1.25rem;
  }
}

.benefits-about-card__text {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.benefits-voice {
  overflow: hidden;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .benefits-voice {
    padding-bottom: 80px;
  }
}

.benefits-voice__inner {
  max-width: 960px;
  width: 90%;
  margin-inline: auto;
}

.benefits-voice__title {
  font-size: clamp(1.3125rem, 1.1584507042rem + 0.6572769953vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.benefits-voice__content {
  position: relative;
  align-items: center;
  overflow: hidden;
  margin-top: 20px;
  padding-block: 60px;
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .benefits-voice__content {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 20px;
  }
}

.benefits-voice__content::before,
.benefits-voice__content::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.benefits-voice__content::before {
  top: -150px;
  left: -150px;
  width: 294px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .benefits-voice__content::before {
    left: -60px;
    top: -50px;
    width: 184px;
  }
}

.benefits-voice__content::after {
  right: -168px;
  bottom: -210px;
  width: 336px;
  height: auto;
  aspect-ratio: 1;
  background: url("../img/common/deco_page-fv.svg") center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .benefits-voice__content::after {
    right: -80px;
    bottom: -40px;
    width: 160px;
  }
}

.benefits-voice__image {
  position: relative;
  z-index: 1;
  flex: 0 0 149px;
  overflow: hidden;
  width: 149px;
  height: 148px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .benefits-voice__image {
    flex-basis: auto;
    margin-inline: auto;
  }
}

.benefits-voice__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits-voice__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .benefits-voice__body {
    padding-right: 0;
  }
}

.benefits-voice__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.benefits-voice__meta {
  font-size: clamp(0.8125rem, 0.7904929577rem + 0.0938967136vw, 0.875rem);
  font-weight: 500;
  line-height: 1.6;
}

.gallery {
  position: relative;
  overflow: hidden;
  height: 900px;
  background: #fcfcfc;
}
@media screen and (max-width: 1200px) {
  .gallery {
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .gallery {
    height: 610px;
  }
}

.gallery .inner__gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 720px);
  gap: 40px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .gallery .inner__gallery {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

.gallery__head {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: 100%;
  max-width: 600px;
  padding-top: 120px;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .gallery__head {
    width: auto;
    max-width: none;
    padding: 80px 20px 0;
  }
}

.gallery__lanes {
  z-index: 1;
  grid-column: 2;
  justify-self: end;
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  height: 1086px;
}
@media screen and (max-width: 767px) {
  .gallery__lanes {
    display: none;
  }
}

.gallery__lane {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}

.gallery__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.gallery__lanes .gallery__track {
  flex-direction: column;
  width: 100%;
}

.gallery__lane--up .gallery__track {
  animation: gallery-scroll-y-up 32s linear infinite;
}

.gallery__lane--down .gallery__track {
  animation: gallery-scroll-y-down 32s linear infinite;
}

.gallery__group {
  display: flex;
  flex: 0 0 auto;
}

.gallery__lanes .gallery__group {
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-bottom: 12px;
}

.gallery__item {
  flex: 0 0 auto;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
}

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

.gallery__slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .gallery__slider {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 330px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .gallery__slider .gallery__track {
    animation: gallery-scroll-x 48s linear infinite;
  }
}

@media screen and (max-width: 767px) {
  .gallery__slider .gallery__group {
    gap: 12px;
    padding-right: 12px;
  }
}

@media screen and (max-width: 767px) {
  .gallery__slider .gallery__item {
    width: 330px;
    height: 330px;
  }
}

.gallery__deco {
  position: absolute;
  z-index: 0;
  top: 602px;
  left: 172px;
  width: 595px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .gallery__deco {
    top: 60px;
    right: -114px;
    left: auto;
    width: 228px;
  }
}

.gallery__deco img {
  width: 100%;
  height: auto;
}

@keyframes gallery-scroll-y-up {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes gallery-scroll-y-down {
  0% {
    transform: translate3d(0, -50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes gallery-scroll-x {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.faq__section-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .faq__section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.faq__lead {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.faq__head {
  align-items: center;
  text-align: center;
}

.faq__head.section-title::before {
  display: none;
}

.faq__head::after {
  left: 50%;
  transform: translateX(-50%);
}

.faq__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 100px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .faq__content {
    align-items: stretch;
    gap: 56px;
    margin-top: 40px;
  }
}

.faq__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: 100%;
  border-bottom: 4px solid #b92020;
}

.faq__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 4px 4px 0 0;
  color: #777;
  background: #d9d9d9;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__tab {
    min-height: 68px;
    font-size: 1rem;
  }
}

.faq__tab.is-active {
  color: #fff;
  background: #b92020;
}

.faq__panels {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.faq__panel {
  display: none;
}

.faq__panel.is-active {
  display: block;
}

.faq.is-all-active .faq__panel + .faq__panel.is-active {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .faq.is-all-active .faq__panel + .faq__panel.is-active {
    margin-top: 56px;
  }
}

.faq__category-title {
  margin: 0 0 20px;
  padding: 4px 20px 4px 26px;
  border-left: 6px solid #b92020;
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .faq__category-title {
    padding-left: 18px;
    font-size: 1.3125rem;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq__item {
  overflow: hidden;
  border-radius: 4px;
  background: #fcfcfc;
}

.faq__item[open] {
  background: #fcfcfc;
}

.faq__summary {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 79px;
  padding: 20px 30px;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .faq__summary {
    gap: 8px;
    min-height: 71px;
    padding: 16px;
  }
}

.faq__item.is-opened .faq__summary {
  border-bottom: 1px solid #cacaca;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__question {
  display: flex;
  flex: 1 1 auto;
  gap: 12px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .faq__question {
    gap: 8px;
  }
}

.faq__label {
  flex: 0 0 33px;
  width: 33px;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}

.faq__label--answer {
  color: #b92020;
}

.faq__text {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .faq__text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-top: 4px;
  border-radius: 50%;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 28px;
    height: 28px;
    margin-top: 3px;
  }
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-opened .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid #d9d9d9;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.faq__item.is-opened .faq__answer {
  opacity: 1;
}

.faq__answer-inner {
  display: flex;
  gap: 12px;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .faq__answer-inner {
    gap: 8px;
    padding: 16px;
  }
}

.faq__answer-text {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.faq-contact {
  position: relative;
  overflow: hidden;
  background: var(--_, #F2F2F2);
  padding-bottom: 120px;
}

.faq-contact__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  padding: 60px 80px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .faq-contact__wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
  }
}

.faq-contact__title {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .faq-contact__title {
    text-align: center;
  }
}

.faq-contact__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .faq-contact__body {
    gap: 24px;
  }
}

.faq-contact__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.faq-contact__btn {
  width: 354px;
}
@media screen and (max-width: 767px) {
  .faq-contact__btn {
    width: 100%;
  }
}

.cta-contact {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .cta-contact {
    padding-bottom: 80px;
  }
}

.cta-contact__content {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 382px;
  overflow: hidden;
  padding-block: 100px;
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  border-radius: 4px;
  background: url("../img/common/cta-contact.webp") center bottom/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .cta-contact__content {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-block: 140px 60px;
    background: url("../img/common/cta-contact-sp.webp") center top/cover no-repeat;
  }
}

.cta-contact__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.cta-contact__lead {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  color: #fff;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta-contact__lead {
    line-height: 1.6;
  }
}

.cta-contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .cta-contact__buttons {
    width: 100%;
    margin-top: 40px;
    align-items: center;
  }
}

.cta-contact__btn {
  width: clamp(16.5625rem, 14.0694650817rem + 5.2005943536vw, 18.75rem);
  min-height: 72px;
  border-radius: 4px;
  padding: 15px 40px 15px 44px;
}
@media screen and (max-width: 767px) {
  .cta-contact__btn {
    width: 100%;
    min-height: 58px;
    padding: 12px 20px 12px 24px;
  }
}

.cta-contact__btn .btn__text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .cta-contact__btn .btn__text {
    font-size: 16px;
  }
}

.cta-contact__btn .btn__icon {
  color: #fff;
  background: #b92020;
}
@media screen and (max-width: 767px) {
  .cta-contact__btn .btn__icon {
    width: 28px;
    height: 28px;
  }
}

/* エントリーする */
.cta-contact__btn--entry {
  color: #b92020;
  background: #fff;
}

.cta-contact__btn--entry::before {
  background: #1a1a1a;
}

/* 三和実業を知る */
.cta-contact__btn--about {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.cta-contact__btn--about::before {
  background: #1a1a1a;
}

.cta-contact__btn--about .btn__icon {
  color: #b92020;
  background: #fff;
}

/* hover共通 */
@media (any-hover: hover) {
  .cta-contact__btn:hover {
    color: #fff;
  }
  .cta-contact__btn:hover .btn__icon {
    color: #1a1a1a;
    background: #fff;
  }
}
@media (any-hover: hover) {
  .cta-contact__btn--about:hover {
    border-color: #1a1a1a;
  }
}
.entry-form {
  background: #fcfcfc;
}

.entry-form__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .entry-form__head {
    grid-template-columns: 1fr;
  }
}

.entry-form__lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.entry-form__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .entry-form__content {
    gap: 40px;
    margin-top: 40px;
  }
}

.entry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 62px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry-form__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.entry-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.entry-form__field--full {
  grid-column: 1/-1;
}

.entry-form__label {
  display: flex;
  gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.entry-form__label-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .entry-form__label-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.entry-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 2px;
  color: #fff;
  background: #b92020;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .entry-form__required {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

.entry-form__required--optional {
  background: #777;
}

.entry-form__inputs {
  display: grid;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry-form__inputs {
    gap: 8px;
  }
}

.entry-form__inputs--2col {
  grid-template-columns: repeat(2, 1fr);
}

.entry-form__inputs--3col {
  grid-template-columns: repeat(3, 1fr);
}

.entry-form__input,
.entry-form__select,
.entry-form__textarea,
.entry-form__file {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: #1a1a1a;
  background-color: #f2f2f2;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.entry-form__input,
.entry-form__select {
  height: 48px;
  padding: 0 20px;
}

.entry-form__input::-moz-placeholder, .entry-form__textarea::-moz-placeholder {
  color: #d9d9d9;
  opacity: 1;
}

.entry-form__input::placeholder,
.entry-form__textarea::placeholder {
  color: #d9d9d9;
  opacity: 1;
}

.entry-form__select-wrap {
  position: relative;
  display: block;
}

.entry-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #777;
  pointer-events: none;
  transform: translateY(-50%);
}

.entry-form__select {
  padding-right: 44px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.entry-form__textarea {
  min-height: 140px;
  padding: 12px 20px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .entry-form__textarea {
    padding: 16px;
  }
}

.entry-form__file {
  padding: 11px 20px;
  border-style: dashed;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .entry-form__file {
    padding: 15px 16px;
  }
}

.entry-form__file::file-selector-button {
  margin-right: 16px;
  padding: 4px 12px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #777;
  font: inherit;
  cursor: pointer;
}

.entry-form__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry-form__footer {
    align-items: stretch;
  }
}

.entry-form__privacy {
  display: flex;
  gap: 17px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .entry-form__privacy {
    width: 100%;
  }
}

.entry-form__checkbox {
  flex: 0 0 auto;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #cacaca;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  cursor: pointer;
}

.entry-form__checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #b92020;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.entry-form__privacy-text {
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .entry-form__privacy-text {
    font-size: 0.8125rem;
  }
}

.entry-form__privacy-link {
  color: #b92020;
}

.entry-form__submit {
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 15px 40px 15px 50px;
}

.entry-form__submit-text {
  text-align: left;
}

.entry-form__submit-icon {
  pointer-events: none;
}

.entry-form__note {
  margin: 0;
  color: #777;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry-form__note {
    font-size: 0.8125rem;
    text-align: left;
  }
}

.privacy {
  padding-block: 120px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding-block: 80px;
  }
}

.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}

.privacy__block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.privacy__title,
.privacy__text,
.privacy__list {
  margin: 0;
}

.privacy__title {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.privacy__list {
  padding: 0;
  list-style: none;
}

.privacy__item {
  position: relative;
  padding-left: 1em;
}

.privacy__item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.privacy__text--contact {
  color: #fa11f2;
}

.about-message {
  overflow: hidden;
  padding-block: 120px 100px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .about-message {
    padding-block: 80px;
  }
}

.about-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-left: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
}
@media screen and (max-width: 767px) {
  .about-message__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "image" "body";
    gap: 0;
  }
}

.about-message__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .about-message__content {
    display: contents;
  }
}

.about-message__header {
  grid-area: header;
}

.about-message__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .about-message__body {
    margin-top: 40px;
    padding-right: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  }
}

.about-message__image {
  grid-area: image;
}

.about-message__name {
  display: flex;
  flex-direction: column;
  color: #1a1a1a;
  line-height: 1.8;
}

.about-message__position {
  font-size: 16px;
  font-weight: 500;
}

.about-message__person {
  font-size: 18px;
  font-weight: 700;
}

.about-message__picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.about-message__picture img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .about-message__button {
    margin-right: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  }
}

.about-philosophy__inner {
  padding-block: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  background: #fcfcfc;
}

.about-philosophy__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .about-philosophy__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
}

.about-philosophy__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-philosophy__lead span {
  display: block;
}

.about-philosophy__image {
  overflow: hidden;
  border-radius: 4px;
}

.about-philosophy__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-info__list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .about-info__list {
    margin-top: 40px;
  }
}

.about-info__row {
  display: grid;
  grid-template-columns: 260px 1fr;
}
@media screen and (max-width: 767px) {
  .about-info__row {
    grid-template-columns: 1fr;
  }
}

.about-info__row + .about-info__row {
  margin-top: -1px;
}

.about-info__term,
.about-info__description {
  margin: 0;
  padding: 24px 20px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  color: #1a1a1a;
  line-height: 1.8;
}

.about-info__term {
  display: flex;
  align-items: center;
  border-color: #1a1a1a;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .about-info__term {
    display: block;
    padding: 8px;
    border-bottom: 1px solid var(--_, #d9d9d9);
    font-size: 1rem;
  }
}

.about-info__description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .about-info__description {
    padding: 8px;
    border-top: 0;
  }
}

.about-info__description span {
  display: block;
}

.about-access__content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .about-access__content {
    margin-top: 40px;
  }
}

.about-access__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .about-access__main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
  }
}

.about-access__office {
  min-width: 0;
}

.about-access__map {
  min-width: 0;
  height: 290px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about-access__map {
    height: auto;
    aspect-ratio: 600/450;
  }
}

.about-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.about-access__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .about-access__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.about-access__item {
  min-width: 0;
}

.about-access__name {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .about-access__name {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.about-access__address {
  margin-top: 12px;
}

.about-access__address span {
  display: block;
}

.about-access__address,
.about-access__tel {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.about-access__tel {
  font-weight: 500;
}

.job {
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .job {
    scroll-margin-top: 90px;
  }
}

.job__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
  align-items: end;
}
@media screen and (max-width: 767px) {
  .job__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.job__title {
  font-size: clamp(2rem, 1.735915493rem + 1.1267605634vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.job__title-main {
  display: block;
}

.job__title-main::after {
  content: "⁠——";
  display: inline;
  margin-left: 0.12em;
  color: #1a1a1a;
  font-weight: 400;
}

.job__title span {
  display: block;
}

.job__title span:last-child {
  color: #b92020;
}

.job__lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.job__tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 60px;
  border-bottom: 4px solid #b92020;
}
@media screen and (max-width: 767px) {
  .job__tab-list {
    gap: 2px;
    margin-top: 40px;
    overflow-x: auto;
  }
}

.job__tab {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border-radius: 4px 4px 0 0;
  color: #777;
  background: #d9d9d9;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .job__tab {
    flex-direction: column;
    gap: 4px;
    min-height: 64px;
  }
}

.job__tab.is-active {
  color: #fff;
  background: #b92020;
}

.job__tab-number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
}

.job__tab-name {
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4; /* 25.2px */
  letter-spacing: -0.54px;
}
@media screen and (max-width: 767px) {
  .job__tab-name {
    letter-spacing: -0.48px;
  }
  .job__tab-name span {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

.job__panels {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .job__panels {
    margin-top: 56px;
  }
}

.job__panel {
  display: none;
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .job__panel {
    scroll-margin-top: 90px;
  }
}

.job__panel.is-active {
  display: block;
}

.job__hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
  padding-inline: clamp(1.25rem, -3.0237741456rem + 8.9153046062vw, 5rem);
}
@media screen and (max-width: 767px) {
  .job__hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-inline: 0;
  }
}

.job__hero-title {
  margin: 0;
  font-size: clamp(1.3125rem, 1.1584507042rem + 0.6572769953vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
}

.job__hero-lead {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .job__hero-lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.job__hero-text {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .job__hero-text {
    margin-top: 12px;
  }
}

.job__hero-image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 520/340;
}

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

.job__panel-detail {
  margin-top: 60px;
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  padding-block: 80px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .job__panel-detail {
    padding-block: 60px;
  }
}

.job__business {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.job__section-title {
  padding: 4px 20px 4px 26px;
  border-left: 6px solid #b92020;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}

.job__business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .job__business-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.job__business-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 540/275;
}

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

.job__business-title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px 10px;
  background: #fcfcfc;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job__business-title {
    line-height: 1.6;
  }
}

.job__business-text {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .job__business-text {
    margin-top: 12px;
  }
}

.job__timeline {
  margin-top: 40px;
  padding: 40px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .job__timeline {
    padding: 28px 20px;
  }
}

.job__timeline-title {
  padding-bottom: 14px;
  border-bottom: 1px solid #d9d9d9;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job__timeline-title {
    line-height: 1.6;
  }
}

.job__timeline-list {
  display: flex;
  gap: clamp(1.875rem, -1.6864784547rem + 7.4294205052vw, 5rem);
  align-items: flex-start;
  max-width: 880px;
  margin: 26px auto 0;
}
@media screen and (max-width: 767px) {
  .job__timeline-list {
    position: relative;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .job__timeline-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    width: 16px;
    height: 100%;
    border-radius: 999px;
    background: #f2f2f2;
  }
}
.job__timeline-column {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .job__timeline-column {
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .job__timeline-column + .job__timeline-column {
    margin-top: 12px;
  }
}
.job__timeline-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 82px;
  width: 16px;
  height: 100%;
  border-radius: 999px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .job__timeline-column::before {
    display: none;
  }
}

.job__timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .job__timeline-item {
    gap: 0;
    min-height: 0;
  }
}

.job__timeline-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 85px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b92020;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .job__timeline-item::after {
    left: 63px;
  }
}

.job__timeline-time {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job__timeline-time {
    line-height: 1.6;
    font-size: 1.125rem;
  }
}

.job__timeline-text {
  position: relative;
  z-index: 1;
  padding-left: 36px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.job__timeline-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .job__timeline-link {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.job__timeline-link .more-link__icon {
  background: rgba(242, 242, 242, 0.9882352941);
}

.job__personality {
  margin-top: 40px;
}

.job__personality-title {
  margin: 0;
  padding: 10px 20px;
  color: #fff;
  background: #dc8f8f;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job__personality-title {
    font-size: 1.125rem;
  }
}

.job__personality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  justify-content: center;
  padding: 20px;
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .job__personality-list {
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  .job__personality-list {
    flex-direction: column;
    align-items: center;
  }
}

.job__personality-item:not(:last-child)::after {
  content: "/";
  margin-left: 20px;
}
@media (max-width: 540px) {
  .job__personality-item:not(:last-child)::after {
    margin-left: 5px;
  }
}

.job-interview {
  padding-block: 120px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .job-interview {
    padding-block: 80px;
  }
}

.job-interview__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.job-interview__sub {
  margin: 0;
  color: #b92020;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.job-interview__title {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job-interview__title {
    font-size: 2rem;
  }
}

.job-interview__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding-block: 60px;
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .job-interview__content {
    margin-top: 40px;
  }
}

.job-interview__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .job-interview__list {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.job-interview__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.job-interview__card:hover .job-interview__image img {
  transform: scale(1.05);
}

.job-interview__image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 330/375;
  background: #f2f2f2;
}
.job-interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

.job-interview__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.job-interview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
}

.job-interview__name {
  font-size: clamp(0.875rem, 0.5900817236rem + 0.5943536404vw, 1.125rem);
}
@media screen and (max-width: 767px) {
  .job-interview__name {
    font-size: 1rem;
  }
}

.job-interview__position {
  font-size: clamp(0.875rem, 0.7325408618rem + 0.2971768202vw, 1rem);
}
@media screen and (max-width: 767px) {
  .job-interview__position {
    font-size: 1rem;
  }
}

.job-interview__card-title {
  font-size: clamp(1.125rem, 0.8400817236rem + 0.5943536404vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job-interview__card-title {
    font-size: 1.125rem;
  }
}

.schedule-daily {
  background: #fcfcfc;
}

.schedule-daily__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .schedule-daily__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.schedule-daily__lead {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.schedule-daily__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .schedule-daily__content {
    gap: 40px;
    margin-top: 40px;
  }
}

.schedule-daily__tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  border-bottom: 4px solid #b92020;
}

.schedule-daily__tab {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 4px 4px 0 0;
  color: #777;
  background: #d9d9d9;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .schedule-daily__tab {
    flex-direction: column;
    gap: 4px;
    min-height: 64px;
  }
}

.schedule-daily__tab.is-active {
  color: #fff;
  background: #b92020;
}

.schedule-daily__tab-number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  font-weight: 600;
  line-height: 1; /* 20px */
}

.schedule-daily__tab-name {
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4; /* 25.2px */
  letter-spacing: -0.54px;
}
@media screen and (max-width: 767px) {
  .schedule-daily__tab-name {
    letter-spacing: -0.48px;
  }
  .schedule-daily__tab-name span {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

.schedule-daily__panels {
  width: 100%;
}

.schedule-daily__panel {
  display: none;
}

.schedule-daily__panel.is-active {
  display: block;
}

.schedule-daily__timeline {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .schedule-daily__timeline {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .schedule-daily__timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    width: 16px;
    border-radius: 999px;
    background: #f2f2f2;
    transform: translateX(-50%);
  }
}

.schedule-daily__item {
  display: grid;
  grid-template-columns: 68px 32px 1fr;
  gap: 20px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .schedule-daily__item {
    grid-template-columns: 16px 1fr;
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 0;
  }
}

.schedule-daily__time {
  padding-top: 40px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .schedule-daily__time {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.schedule-daily__marker {
  position: relative;
  display: block;
  width: 32px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .schedule-daily__marker {
    grid-column: 1;
    grid-row: 1/span 2;
    width: 16px;
    background: transparent;
  }
}

.schedule-daily__item:first-child .schedule-daily__marker {
  border-radius: 40px 40px 0 0;
}

.schedule-daily__item:last-child .schedule-daily__marker {
  border-radius: 0 0 40px 40px;
}

.schedule-daily__marker::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b92020;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .schedule-daily__marker::before {
    top: 9px;
    width: 9px;
    height: 9px;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .schedule-daily__marker::after {
    content: none;
  }
}

.schedule-daily__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding-block: 40px 20px;
}
@media screen and (max-width: 767px) {
  .schedule-daily__body {
    grid-column: 2;
    grid-row: 2;
    gap: 12px;
    padding-block: 0 20px;
  }
}

.schedule-daily__item-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .schedule-daily__item-title {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.schedule-daily__item-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .schedule-daily__item-content {
    flex-direction: column;
    gap: 12px;
  }
}

.schedule-daily__image {
  flex: 0 0 290px;
  width: 290px;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 290/190;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .schedule-daily__image {
    flex-basis: auto;
    width: 100%;
  }
}

.schedule-daily__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.schedule-daily__text {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.schedule-interview {
  padding-block: 80px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .schedule-interview {
    padding-block: 60px;
  }
}

.schedule-interview__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .schedule-interview__head {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.schedule-interview__lead {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.schedule-interview__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .schedule-interview__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.schedule-interview__card {
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 0;
  color: #1a1a1a;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .schedule-interview__card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid #d9d9d9;
  }
}

.schedule-interview__card:first-child {
  padding-right: 30px;
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .schedule-interview__card:first-child {
    padding: 12px;
    border-right: 1px solid #d9d9d9;
  }
}

.schedule-interview__card:nth-child(2) {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .schedule-interview__card:nth-child(2) {
    padding: 12px;
  }
}

@media (any-hover: hover) {
  .schedule-interview__card:hover {
    opacity: 0.85;
  }
}
.schedule-interview__image {
  flex: 0 0 149px;
  width: 149px;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 149/148;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .schedule-interview__image {
    grid-column: 1;
    grid-row: 1;
    flex-basis: auto;
    width: 120px;
    height: 120px;
    aspect-ratio: 1/1;
  }
}

.schedule-interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.schedule-interview__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .schedule-interview__body {
    display: contents;
  }
}

.schedule-interview__card-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .schedule-interview__card-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.schedule-interview__text-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .schedule-interview__text-wrap {
    grid-column: 1/-1;
    grid-row: 2;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
  }
}

.schedule-interview__text {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .schedule-interview__text {
    font-size: 1rem;
  }
}

.schedule-interview__icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: auto;
  border-radius: 50%;
  background: #f2f2f2;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .schedule-interview__icon {
    align-self: flex-end;
    margin-top: 0;
  }
}

.schedule-interview__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: translateX(-1px) rotate(45deg);
}

@media (any-hover: hover) {
  .schedule-interview__card:hover .schedule-interview__icon {
    background: #b92020;
    transform: translateX(4px);
  }
  .schedule-interview__card:hover .schedule-interview__icon::before {
    border-color: #fff;
  }
}
.interview-archive {
  background: #fcfcfc;
}

.interview-archive__tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-bottom: 4px solid #b92020;
}
@media screen and (max-width: 767px) {
  .interview-archive__tab-list {
    gap: 2px;
    overflow-x: auto;
  }
}

.interview-archive__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 4px 4px 0 0;
  color: #777;
  background: #d9d9d9;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-wrap: balance;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .interview-archive__tab {
    min-height: 60px;
    font-size: 1rem;
  }
}

.interview-archive__tab.is-active {
  color: #fff;
  background: #b92020;
}

.interview-archive__panels {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .interview-archive__panels {
    margin-top: 48px;
  }
}

.interview-archive__panel {
  display: none;
}

.interview-archive__panel.is-active {
  display: block;
}

.interview-archive__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.interview-archive__empty {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.interview-archive .interview-card {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 40px;
  width: min(100%, 880px);
  min-height: 264px;
  padding-right: 20px;
  background: #f2f2f2;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card {
    grid-template-columns: 120px 1fr;
    gap: 16px;
    min-height: 0;
    padding-right: 14px;
  }
}
@media (max-width: 540px) {
  .interview-archive .interview-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 0;
  }
}

.interview-archive .interview-card:hover {
  background: #ececec;
}

.interview-archive .interview-card__image {
  align-self: end;
  border-radius: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__image {
    align-self: stretch;
    height: auto;
    min-height: 180px;
  }
}
@media (max-width: 540px) {
  .interview-archive .interview-card__image {
    aspect-ratio: 330/240;
    min-height: 0;
  }
}

.interview-archive .interview-card__image img {
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}

.interview-archive .interview-card:hover .interview-card__image img {
  transform: scale(1.05);
}

.interview-archive .interview-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-width: 0;
  padding: 20px 54px 20px 0;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__body {
    gap: 8px;
    padding: 16px 38px 16px 0;
  }
}
@media (max-width: 540px) {
  .interview-archive .interview-card__body {
    padding: 20px 52px 20px 18px;
  }
}

.interview-archive .interview-card__category {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 2px 12px;
  border-radius: 2px;
  color: #fff;
  background: #777;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__category {
    padding-inline: 10px;
    font-size: 0.875rem;
  }
}

.interview-archive .interview-card__meta {
  display: flex;
  gap: 4px 8px;
  align-items: center;
}

.interview-archive .interview-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__name {
    font-size: 0.9375rem;
  }
}

.interview-archive .interview-card__department {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__department {
    font-size: 0.8125rem;
  }
}

.interview-archive .interview-card__title {
  width: 100%;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__title {
    font-size: 1rem;
  }
}

.interview-archive .interview-card__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__text {
    font-size: 0.8125rem;
  }
}

.interview-archive .interview-card__icon {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .interview-archive .interview-card__icon {
    right: 0;
    bottom: 16px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 540px) {
  .interview-archive .interview-card__icon {
    right: 18px;
    bottom: 20px;
  }
}

.interview-archive .interview-card__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: translateX(-1px) rotate(45deg);
}

.interview-archive .interview-card:hover .interview-card__icon {
  background: #b92020;
  transform: translateX(4px);
}

.interview-archive .interview-card:hover .interview-card__icon::before {
  border-color: #fff;
}

.interview-about {
  padding-block: 120px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .interview-about {
    padding-block: 80px;
  }
}

.interview-about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding-block: 60px;
  padding-inline: clamp(1rem, -0.4084507042rem + 6.0093896714vw, 5rem);
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .interview-about__content {
    gap: 32px;
    margin-top: 40px;
  }
}

.interview-about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview-about__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.interview-about__card {
  min-width: 0;
}

.interview-about__card:hover .interview-about__image img {
  transform: scale(1.03);
}

.interview-about__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 330/375;
  border-radius: 4px;
  background: #f2f2f2;
}

.interview-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: transform 0.3s ease;
}

.interview-about__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.4;
}

.interview-about__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .interview-about__meta {
    flex-wrap: wrap;
    white-space: normal;
  }
}

.interview-about__name {
  flex: 0 0 auto;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .interview-about__name {
    font-size: 1rem;
  }
}

.interview-about__department {
  min-width: 0;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .interview-about__department {
    font-size: 0.9375rem;
  }
}

.interview-about__title {
  width: min(100%, 286px);
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .interview-about__title {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.interview-about__button {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .interview-about__button {
    width: 100%;
  }
}

.voice-fv {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .voice-fv {
    padding-block: 80px;
  }
}

.voice-fv::before {
  content: "";
  position: absolute;
  top: 176px;
  left: -85px;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("../img/common/deco_page-fv.svg") center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .voice-fv::before {
    top: 34%;
    left: auto;
    right: -96px;
    width: clamp(11.25rem, 4.6731505102rem + 28.0612244898vw, 18.125rem);
  }
}

.voice-fv::after {
  content: "";
  position: absolute;
  right: calc(50% - 215px);
  bottom: 0px;
  width: 336px;
  height: 336px;
  border-radius: 50%;
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .voice-fv::after {
    display: none;
  }
}

.voice-fv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: 40px;
  align-items: start;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .voice-fv__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 90%;
    padding-inline: 0;
  }
}

.voice-fv__body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .voice-fv__body {
    gap: 32px;
  }
}

.voice-fv__category {
  position: relative;
  color: #b92020;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .voice-fv__category {
    line-height: 1.6;
  }
}

.voice-fv__category::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -25px;
  left: -25px;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .voice-fv__category::before {
    width: 32px;
    top: -17px;
    left: -14px;
  }
}

.voice-fv--ceo .voice-fv__category {
  width: -moz-fit-content;
  width: fit-content;
}

.voice-fv__title {
  position: relative;
  z-index: 1;
  margin: -60px 0 0;
  font-size: clamp(2rem, 1.735915493rem + 1.1267605634vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .voice-fv__title {
    margin-top: -32px;
    font-size: 1.875rem;
  }
}

.voice-fv--ceo .voice-fv__title {
  max-width: none;
  margin-top: -60px;
}
@media screen and (max-width: 767px) {
  .voice-fv--ceo .voice-fv__title {
    margin-top: -32px;
  }
}

.voice-fv__meta {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.8;
}

.voice-fv__position {
  font-size: 1rem;
  line-height: 1.8;
}

.voice-fv__name {
  font-size: 1.125rem;
}

.voice-fv__name {
  font-size: 1.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .voice-fv__name {
    font-size: 1.5rem;
  }
}

.voice-fv__department {
  margin: 0;
  font-size: 1rem;
}

.voice-fv__image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 410/532;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .voice-fv__image {
    width: min(100%, 410px);
    margin-inline: auto;
  }
}

.voice-fv__image {
  background: #f2f2f2;
}

.voice-fv__image img {
  -o-object-position: center top;
     object-position: center top;
}

.voice-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-detail {
  background: #fcfcfc;
  padding-block: 100px 120px;
}
@media screen and (max-width: 767px) {
  .voice-detail {
    padding-block: 60px;
  }
}

.voice-detail__content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.voice-detail__content .wp-block-group:not(.profile-box) {
  padding-block: 80px;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .wp-block-group:not(.profile-box) {
    padding-block: 40px;
  }
}

.voice-detail__content .wp-block-group:not(.profile-box):first-child {
  padding-top: 0;
  border-top: none;
}

.voice-detail__content h2 {
  position: relative;
  margin: 0 0 28px;
  padding-left: 22px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .voice-detail__content h2 {
    margin-bottom: 22px;
    font-size: 1.3125rem;
  }
}

.voice-detail__content h2::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 16px;
  height: 2px;
  background: #b92020;
}
@media screen and (max-width: 767px) {
  .voice-detail__content h2::before {
    top: 0.7em;
  }
}

.voice-detail__content h3 {
  position: relative;
  margin: 38px 0 0;
  padding: 40px 40px 40px 85px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .voice-detail__content h3 {
    margin-top: 30px;
    padding: 16px 16px 16px 60px;
    font-size: 1rem;
  }
}

.voice-detail__content h3::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 34px;
  width: 38px;
  height: 28px;
  background: url("../img/icon/icon_conma.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .voice-detail__content h3::before {
    top: 22px;
    left: 20px;
    width: 28px;
    height: 18px;
    aspect-ratio: 14/9;
  }
}

.voice-detail__content h3.last-message {
  background: #dc8f8f;
  color: #fff;
}

.voice-detail__content h3.last-message::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 34px;
  width: 38px;
  height: 28px;
  background: #cc6f74;
  -webkit-mask: url("../img/icon/icon_conma.svg") center/contain no-repeat;
  mask: url("../img/icon/icon_conma.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .voice-detail__content h3.last-message::before {
    top: 22px;
    left: 20px;
    width: 28px;
    height: 18px;
    aspect-ratio: 14/9;
  }
}

.voice-detail__content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
}

.voice-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.voice-detail__content figure {
  margin: 0;
}

.voice-detail__content > figure {
  margin-block: 34px;
}

.voice-detail__content > figure img {
  width: 100%;
}

.voice-detail__content .wp-block-media-text {
  display: flex;
  grid-template-columns: none;
  gap: 36px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .wp-block-media-text {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

.voice-detail__content .wp-block-media-text.has-media-on-the-right {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .wp-block-media-text.has-media-on-the-right {
    flex-direction: column;
  }
}

.voice-detail__content .wp-block-media-text .wp-block-media-text__content {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.voice-detail__content .wp-block-media-text .wp-block-media-text__media {
  flex: 0 0 290px;
  width: 290px;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .wp-block-media-text .wp-block-media-text__media {
    flex-basis: auto;
    width: 100%;
  }
}

.voice-detail__content .wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
}

.voice-detail__content .wp-block-columns {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-block: 28px;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .wp-block-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

.voice-detail__content .wp-block-column {
  flex: 1;
  min-width: 0;
}

.voice-detail__content .wp-block-column:has(.wp-block-image) {
  flex: 0 0 290px;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .wp-block-column:has(.wp-block-image) {
    flex-basis: auto;
    width: 100%;
  }
}

.voice-detail__content .wp-block-column:has(.wp-block-image) img {
  width: 100%;
}

.profile-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 40px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .profile-box {
    padding: 16px;
    gap: 16px;
  }
}

.profile-box h2 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0;
}

.voice-detail__content .profile-box h2::before {
  display: none;
}

.voice-detail__content .profile-box p {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .voice-detail__content .profile-box p {
    margin-top: 12px;
  }
}

.voice-detail__content .profile-box p strong {
  font-weight: 700;
}

.career-intro {
  overflow: hidden;
  padding-top: 120px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .career-intro {
    padding-top: 60px;
  }
}

.career-intro__inner {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  width: 90%;
  margin-inline: auto;
  padding-block: 80px;
  padding-inline: 16px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .career-intro__inner {
    padding-block: 60px;
  }
}

.career-intro__deco-circle01 {
  position: absolute;
  top: -28px;
  left: -58px;
  width: 214px;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .career-intro__deco-circle01 {
    top: -42px;
    left: -64px;
    width: 160px;
    height: auto;
  }
}

.career-intro__deco-circle02 {
  position: absolute;
  right: -117px;
  bottom: -79px;
  width: 336px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .career-intro__deco-circle02 {
    right: -80x;
    bottom: -30px;
    width: 184px;
    height: auto;
  }
}

.career-intro__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.career-intro__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.career-intro__label {
  color: #b92020;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 600;
  line-height: 1;
}

.career-intro__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}

.career-intro__title-line {
  font-size: clamp(1.3125rem, 1.1584507042rem + 0.6572769953vw, 1.75rem);
  line-height: 1.6;
}

.career-intro__title-emphasis {
  font-size: clamp(2rem, 1.735915493rem + 1.1267605634vw, 2.75rem);
  line-height: 1.4;
}

.career-intro__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.career-intro__lead {
  color: #777;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .career-intro__lead {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.career-intro__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .career-intro__text {
    text-align: left;
  }
}

.career-flow {
  background: #f2f2f2;
}

.career-flow__inner {
  max-width: 1280px;
  width: 90%;
  margin-inline: auto;
}

.career-flow__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .career-flow__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.career-flow__lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .career-flow__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .career-flow__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
}

.career-flow-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 182px;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  .career-flow-card {
    min-height: auto;
  }
}

.career-flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 1;
  width: 20px;
  height: 33px;
  background: #fcfcfc;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .career-flow-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    width: 33px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateX(-50%);
  }
}

.career-flow-card__image {
  display: none;
}

.career-flow-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 20px 18px;
}

.career-flow-card__title {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #b92020;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .career-flow-card__title {
    font-size: 1rem;
    line-height: 1.6; /* 25.6px */
  }
}

.career-flow-card__number {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .career-flow-card__number {
    font-size: 1.125rem;
  }
}

.career-flow-card__text {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-flow-card__period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto 0 0;
  padding: 2px 12px;
  border-radius: 2px;
  color: #fff;
  background: #dc8f8f;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .career-flow-card__period {
    font-size: 1rem;
    line-height: 1.6; /* 25.6px */
  }
}

.career-path {
  background: #fcfcfc;
}

.career-path__inner {
  max-width: 1280px;
  width: 90%;
  margin-inline: auto;
}

.career-path__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .career-path__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.career-path__lead {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-path__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .career-path__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .career-path__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
}

.career-path-card {
  display: flex;
  min-width: 0;
  border: 1px solid #777;
}

.career-path-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
}

.career-path-card__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border-radius: 2px;
  color: #fff;
  background: #b92020;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
}

.career-path-card__year--gray {
  color: #777;
  background: #d9d9d9;
}

.career-path-card__year--light-red {
  background: #e9baba;
}

.career-path-card__year--medium-red {
  background: #d57979;
}

.career-path-card__year--red {
  background: #b92020;
}

.career-path-card__title {
  margin: 4px 0 0;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .career-path-card__title {
    line-height: 1.6;
  }
}

.career-path-card__text {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-path-card__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.career-path-card__item {
  position: relative;
  min-width: 0;
  padding-left: 28px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-path-card__item::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../img/icon/icon_career-path-check.svg") center center/contain no-repeat;
}

.career-support {
  background: #fcfcfc;
}

.career-support__head {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.career-support__lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-support__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
  align-items: start;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .career-support__content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
}

.career-support__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-support__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}

.career-support__text {
  min-width: 0;
}

.career-support__item-title {
  position: relative;
  padding-left: 58px;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .career-support__item-title {
    padding-left: 52px;
  }
}

.career-support__item-title::before {
  content: "";
  position: absolute;
  top: -0.2em;
  left: 0;
  width: 46px;
  height: 46px;
  background: center center/contain no-repeat;
}

.career-support__item:nth-child(1) .career-support__item-title::before {
  background-image: url("../img/career/icon_career-support01.svg");
}

.career-support__item:nth-child(2) .career-support__item-title::before {
  background-image: url("../img/career/icon_career-support02.svg");
}

.career-support__item:nth-child(3) .career-support__item-title::before {
  background-image: url("../img/career/icon_career-support03.svg");
}

.career-support__item:nth-child(4) .career-support__item-title::before {
  background-image: url("../img/career/icon_career-support04.svg");
}

.career-support__item-text {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.career-support__image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 610/543;
}

.career-support__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

.u-hidden-500 {
  display: none;
}
@media (max-width: 500px) {
  .u-hidden-500 {
    display: block;
  }
}

.u-hover-op {
  transition: opacity 0.3s ease;
}
.u-hover-op:hover {
  opacity: 0.9;
}

.u-hover-scale {
  display: block;
  overflow: hidden;
}

.u-hover-scale img {
  transition: transform 0.4s ease;
}

.u-hover-scale:hover img {
  transform: scale(1.05);
}

.service__link:hover .u-hover-scale img {
  transform: scale(1.05);
}

.u-section-p {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .u-section-p {
    padding-block: 80px;
  }
}

.u-section-p-s {
  padding-block: 120px 100px;
}
@media screen and (max-width: 767px) {
  .u-section-p-s {
    padding-block: 80px;
  }
}

.u-section-p-sm {
  padding-block: 120px 100px;
}
@media screen and (max-width: 767px) {
  .u-section-p-sm {
    padding-block: 80px 60px;
  }
}

.u-section-p-b {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .u-section-p-b {
    padding-bottom: 80px;
  }
}

.u-mt-header {
  margin-top: 80px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt40_20 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .u-mt40_20 {
    margin-top: 20px;
  }
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-w50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .u-w50 {
    width: 100%;
  }
}

.u-text-base {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 25.2px */
}

.u-text-md {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .u-text-md {
    line-height: 1.6;
  }
}

.u-text-lg {
  font-size: clamp(1.3125rem, 1.1584507042rem + 0.6572769953vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
}

.u-text-xl {
  font-size: clamp(2rem, 1.735915493rem + 1.1267605634vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.u-bc--gray {
  background: var(---, #F2F2F2);
}

.u-bc--white {
  background: #FCFCFC;
}

.u-bc--black {
  background: var(---, #222020);
}

.u-color--red {
  color: var(--_, #B92020);
}

.u-color--white {
  color: var(--_, #FFFFFF);
}