@charset "UTF-8";
/************************************************
    Reset
*************************************************/
* {
  min-height: 0;
  min-width: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, figure, figcaption, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  padding: 0;
  border: 0;
  margin: 0;
}

i {
  font-style: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 1.4rem;
}

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

table, caption, th, td {
  font-weight: normal;
  text-align: left;
  empty-cells: show;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}

a img, iframe {
  border: none;
}

a {
  color: inherit;
}

ol, ul, li {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  margin: 0;
}

input[type=text],
textarea {
  width: 100%;
}

address {
  font-style: normal;
}

img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

br {
  opacity: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/************************************************
    共通設定
*************************************************/
* {
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html {
  font-size: 62.5%;
  display: block;
  background-color: #1a1a1a;
}

body {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  position: relative;
  font-weight: 500;
  display: block;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/*
@font-face {
    font-family: '';
    src: url('.eot');
    src: local('Neue Haas Grotesk Display Pro 96 Black Italic'), local('NeueHaasDisplay-BlackItalic'),
    url('.eot?#iefix') format('embedded-opentype'),
    url('.woff') format('woff'),
    url('.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}
*/
@font-face {
  font-family: "DIN Condensed";
  src: url("/assets/fonts/din-condensed-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* -- l-header -- */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

/* -- l-footer -- */
.l-footer {
  position: relative;
  width: 100%;
}

/* -- l-header -- */
.l-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* -- l-wrap -- */
.l-wrap {
  position: relative;
  width: 100%;
}
/* -- l-row -- */
.l-row-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(40px, 5.55vw, 80px) clamp(20px, 2.777vw, 40px);
}
.l-row-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - clamp(20px, 2.777vw, 40px)) / 2);
          flex: 0 0 calc((100% - clamp(20px, 2.777vw, 40px)) / 2);
}
@media screen and (max-width: 768px) {
  .l-row-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

/* -- c-btn -- */
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.c-btn--outline {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0);
  color: #fff;
}
.c-btn--outline:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

.c-btn--gray {
  background-color: #b2b2b2;
  color: #000;
}
.c-btn--gray:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

.c-btn--red {
  background-color: #b71c22;
  color: #fff;
}
.c-btn--red:hover {
  background: #fff;
  color: #b71c22;
  opacity: 1;
}

.c-btn--lg {
  height: 60px;
}

/* -- c-hamburger -- */
.c-hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  z-index: 110;
}
.c-hamburger span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 2px;
  background: #fff;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.c-hamburger span:nth-child(1) {
  top: 13px;
}
.c-hamburger span:nth-child(2) {
  top: 21px;
}
.c-hamburger span:nth-child(3) {
  top: 29px;
}
.c-hamburger.is-active span:nth-child(1) {
  top: 21px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-child(3) {
  top: 21px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-hamburger {
    display: block;
  }
}

.c-card01 {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 45px;
  border-bottom: solid 1px #ffffff;
  gap: 25px;
}
.c-card01::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #b71c22;
  bottom: -1px;
  left: 0;
}
.c-card01__img {
  position: relative;
  width: 100%;
  height: auto;
}
.c-card01__img img {
  position: relative;
  width: 100%;
  height: auto;
}
.c-card01__body {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-card01__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  padding-bottom: 10px;
}
.c-card01__title-en {
  color: #b2b2b2;
  position: relative;
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
}
.c-card01__title-ja {
  position: relative;
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-card01 {
    gap: 15px;
    padding-bottom: 20px;
  }
}

.c-card02 {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 3.636vw, 40px);
}
.c-card02__img {
  position: relative;
  width: 100%;
  height: auto;
}
.c-card02__img img {
  position: relative;
  width: 100%;
  height: auto;
}
.c-card02__body {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-card02__title {
  position: relative;
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
  color: #fff;
  font-weight: 500;
}
.c-card02__description {
  margin-top: clamp(10px, 1.818vw, 20px);
  text-align: justify;
  line-height: 2;
  width: 87%;
  margin-right: auto;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .c-card02 {
    gap: 15px;
    padding-bottom: 20px;
  }
}

.c-btn02 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 150px;
  height: 40px;
  border-radius: 6px;
  font-weight: 500;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0);
  color: #fff;
}
.c-btn02::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn02:hover {
  background: #fff;
  color: #606060;
  opacity: 1;
}
.c-btn02:hover::after {
  background-color: #606060;
}

.c-map-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #b2b2b2;
}
.c-map-link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url("../img/map-arw.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  padding-bottom: 10px;
  white-space: nowrap;
}
.c-heading-sub {
  color: #b2b2b2;
  position: relative;
}
.c-heading-main {
  position: relative;
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
  color: #fff;
  font-weight: 500;
}
.c-heading-main--lg {
  font-size: clamp(2.4rem, 3.273vw, 3.6rem);
}

.c-table {
  position: relative;
  display: table;
  line-height: 1.75;
}
.c-table__row {
  border-bottom: solid 1px #989898;
}
.c-table__head {
  vertical-align: top;
  padding-top: clamp(15px, 2.273vw, 25px);
  padding-bottom: clamp(15px, 3.182vw, 35px);
}
.c-table__data {
  vertical-align: top;
  padding-top: clamp(15px, 2.273vw, 25px);
  padding-bottom: clamp(15px, 3.182vw, 35px);
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-table {
    display: block;
  }
  .c-table__body {
    display: block;
  }
  .c-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-table__head {
    padding-bottom: 0;
  }
  .c-table__head, .c-table__data {
    width: 100% !important;
  }
}

.c-label-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.c-label-grid--3col {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .c-label-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.c-label-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 16px;
  background-color: #000;
}

.c-label-grid__text {
  margin: 0;
  color: #fff;
  text-align: center;
}

.c-section-intro-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.c-section-intro-heading .c-heading-main {
  margin-top: clamp(10px, 1.818vw, 20px);
  font-size: clamp(2rem, 3.273vw, 3.6rem);
}
.c-section-intro__body {
  margin-top: clamp(20px, 3.636vw, 40px);
}
.c-section-intro__text {
  line-height: 2;
  text-align: justify;
}
.c-section-intro .c-label-grid,
.c-section-intro .c-process-flow {
  margin-top: clamp(25px, 4.545vw, 50px);
}
.c-section-intro:not(:last-of-type) {
  margin-bottom: clamp(60px, 10.909vw, 120px);
  padding-bottom: clamp(35px, 6.363vw, 70px);
  border-bottom: solid 1px #989898;
}

.c-process-flow {
  position: relative;
  color: #fff;
}
.c-process-flow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.c-process-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-process-flow__item {
  position: relative;
  margin-top: 14px;
}
.c-process-flow__item:first-child {
  margin-top: 0;
}
.c-process-flow__dot {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-process-flow__content {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 235px 20px 1fr;
  grid-template-columns: 235px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 14px 20px 14px 45px;
  background-color: #000;
}
.c-process-flow__title {
  margin: 0;
  line-height: 2;
}
.c-process-flow__text {
  margin: 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-process-flow {
    padding-left: 18px;
  }
  .c-process-flow::before {
    left: 10px;
  }
  .c-process-flow__item {
    margin-top: 16px;
  }
  .c-process-flow__dot {
    left: 10px;
    width: 8px;
    height: 8px;
  }
  .c-process-flow__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 10px;
    min-height: auto;
    padding: 18px 16px 18px 28px;
  }
  .c-process-flow__title {
    font-size: 16px;
    line-height: 1.5;
  }
  .c-process-flow__text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* -- p-header -- */
.p-header {
  background: transparent;
  border-bottom: solid 1px #b2b2b2;
  z-index: 100;
  -webkit-transition: 0.4s ease background-color;
  transition: 0.4s ease background-color;
}
.p-header.is-scrolled {
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}
.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  height: 86px;
}
.p-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  width: 58px;
}
.p-header__logo img {
  position: relative;
  width: 100%;
  height: auto;
}
.p-header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-header__cta .c-btn {
  width: clamp(120px, 10.41vw, 150px);
}
.p-header__cta__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  color: #fff;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .p-header__inner {
    gap: 20px;
  }
  .p-header__cta {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    height: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-header__logo {
    width: 74px;
  }
  .p-header__cta {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .p-header__cta__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
  }
  .p-header__cta__link {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 0;
    min-height: 0;
  }
  .p-header__cta .c-btn {
    width: 100%;
  }
}

/* -- p-global-nav -- */
.p-global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  gap: 32px;
}
.p-global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-global-nav__item {
  position: relative;
}
.p-global-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  color: #fff;
}
.p-global-nav__sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-global-nav__sub-item a {
  display: block;
  padding: 12px 18px;
  line-height: 1.5;
  white-space: nowrap;
  color: #fff;
}
.p-global-nav__sub-item a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.p-global-nav__item--has-children > .p-global-nav__link::after {
  content: "";
  width: 13px;
  height: 7px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background-position: center center;
  background-image: url("../img/nav-arw.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-global-nav__item--has-children {
  /* PC hover */
}
@media (hover: hover) and (pointer: fine) {
  .p-global-nav__item--has-children:hover > .p-global-nav__sub-list {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1200px) {
  .p-global-nav {
    gap: 20px;
  }
  .p-global-nav__list {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .p-global-nav {
    position: absolute;
    height: calc(100vh - 60px);
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    display: block;
    padding: 0 20px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .p-global-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-global-nav__list {
    display: block;
    padding-top: 8px;
  }
  .p-global-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .p-global-nav__link {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 0;
    min-height: 0;
  }
  .p-global-nav__item--has-children > .p-global-nav__link::after {
    width: 10px;
    height: 10px;
    margin-right: 4px;
  }
  .p-global-nav__item--has-children.is-open > .p-global-nav__link::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .p-global-nav__sub-list {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease;
    transition: max-height 0.35s ease;
  }
  .p-global-nav__item--has-children.is-open > .p-global-nav__sub-list {
    max-height: 500px;
  }
  .p-global-nav__sub-item a {
    padding: 0 0 14px 16px;
    font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
    white-space: normal;
    color: rgba(255, 255, 255, 0.85);
  }
  .p-global-nav__sub-item:first-child a {
    padding-top: 2px;
  }
}

/* -- p-footer -- */
.p-footer {
  background-color: #000;
  padding-top: 9.6666666667vw;
}
.p-footer__copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.p-footer__copy-image {
  position: relative;
  width: 100%;
  height: auto;
}
.p-footer__logo {
  position: relative;
  width: 96px;
  height: auto;
}
.p-footer__logo img {
  position: relative;
  width: 100%;
  height: auto;
}
.p-footer__company {
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
  line-height: 2.5em;
  position: relative;
  width: auto;
  color: #fff;
  margin-top: 40px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-footer-nav {
  position: relative;
}
.p-footer-nav__list {
  position: relative;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-footer-nav__list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 2.5;
}
.p-footer-nav__list li::before {
  content: "-";
  display: inline;
  margin-right: 0.5rem;
}
.p-footer__cta {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-footer-top {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}
.p-footer-top__inner {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
}
.p-footer-top__block01 {
  position: relative;
  width: 570px;
}
.p-footer-top__block02 {
  position: relative;
  width: 240px;
}
.p-footer-top__block03 {
  position: relative;
  width: 210px;
}
.p-footer-bottom {
  position: relative;
  width: 100%;
  border-top: solid 1px #606060;
  padding-top: 24px;
  padding-bottom: 30px;
  color: #fff;
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
}
.p-footer-bottom__inner {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
}
.p-footer-bottom__copy {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-footer-bottom-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 18px;
}
.p-footer .c-btn {
  width: 210px;
}
@media screen and (max-width: 480px) {
  .p-footer-bottom__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-footer-bottom__copy {
    text-align: center;
  }
  .p-footer-bottom-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* -- p-page-header -- */
.p-page-header {
  position: relative;
  width: 100%;
  background-color: #000;
  color: #fff;
}
.p-page-header--bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-page-header--philosophy {
  background-image: url("../img/heading-bg_company-philosophy@3x.jpg");
}
.p-page-header--information {
  background-image: url("../img/heading-bg_company-information@3x.jpg");
}
.p-page-header--service01 {
  background-image: url("../img/heading-bg_business-service01@3x.jpg");
}
.p-page-header--service02 {
  background-image: url("../img/heading-bg_business-service02@3x.jpg");
}
.p-page-header--strength {
  background-image: url("../img/heading-bg_strength@3x.jpg");
}
.p-page-header--recruitment {
  background-image: url("../img/heading-bg_recruitment@3x.jpg");
}
.p-page-header--requirement {
  background-image: url("../img/heading-bg_recruitment-requirement@3x.jpg");
}
.p-page-header--contact {
  background-image: url("../img/heading-bg_contact@3x.jpg");
}
.p-page-header--request {
  background-image: url("../img/heading-bg_request-information@3x.jpg");
}
.p-page-header__head {
  position: relative;
  max-width: 330px;
}
.p-page-header__head--large {
  max-width: none;
}
.p-page-header__title {
  position: relative;
  font-family: "DIN Condensed";
  font-weight: bold;
  font-size: clamp(2.4rem, 3.82vw, 4.2rem);
  margin-bottom: 16px;
}
.p-page-header__inner {
  padding-top: clamp(100px, 16.82vw, 185px);
  padding-bottom: clamp(55px, 10vw, 110px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-page-header__inner--bg-img {
  padding-top: clamp(105px, 19.09vw, 210px);
  padding-bottom: clamp(95px, 17.273vw, 190px);
}
.p-page-header__img {
  position: relative;
  width: 100%;
  height: clamp(100px, 46.18vw, 508px);
}
.p-page-header__img img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-page-header__body {
  position: relative;
  width: 100%;
  max-width: 652px;
}
.p-page-header__lead {
  line-height: 2;
  text-align: justify;
}

/* -- p-breadcrumb -- */
.p-breadcrumb {
  position: relative;
}
.p-breadcrumb__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  font-size: clamp(1.3rem, 1.18vw, 1.5rem);
}
.p-breadcrumb__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.p-breadcrumb__item:not(:last-of-type)::after {
  content: "";
  display: block;
  height: 1px;
  width: 10px;
  background-color: #fff;
  position: relative;
}

.p-main {
  position: relative;
  width: 100%;
  border-radius: clamp(20px, 4.545vw, 50px) clamp(20px, 4.545vw, 50px) 0 0;
  background-color: #1a1a1a;
  margin-top: calc(clamp(20px, 4.545vw, 50px) * -1);
  padding-top: clamp(55px, 10vw, 110px);
  padding-bottom: clamp(50px, 9.09vw, 100px);
}

.p-main {
  position: relative;
  width: 100%;
  border-radius: clamp(20px, 4.545vw, 50px) clamp(20px, 4.545vw, 50px) 0 0;
  background-color: #1a1a1a;
  margin-top: calc(clamp(20px, 4.545vw, 50px) * -1);
  padding-top: clamp(55px, 10vw, 110px);
  padding-bottom: clamp(50px, 9.09vw, 100px);
}

.p-404 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-404__box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: clamp(28px, 5.091vw, 56px) clamp(16px, 2.909vw, 32px);
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.p-404__code {
  margin: 0;
  font-size: clamp(3.5rem, 6.364vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #b7282e;
}
.p-404__title {
  margin: clamp(12px, 2.182vw, 24px) 0 0;
  font-size: clamp(1.6rem, 1.818vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
.p-404__text {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
  line-height: 2;
  color: #555;
}
.p-404__text span {
  display: inline-block;
}
.p-404__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 16px;
  margin-top: 36px;
}

.p-top-kv {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 920px;
}
.p-top-kv__img {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100%;
  max-height: 920px;
}
.p-top-kv__img img {
  position: relative;
  width: 100vw;
  max-height: 920px;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-kv__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  width: clamp(300px, 54.54vw, 600px);
  height: auto;
}
.p-top-kv__copy img {
  position: relative;
  width: 100%;
  height: auto;
}

.p-top {
  position: relative;
  width: 100%;
  border-radius: clamp(20px, 4.545vw, 50px) clamp(20px, 4.545vw, 50px) 0 0;
  background-color: #1a1a1a;
  margin-top: calc(clamp(20px, 4.545vw, 50px) * -1);
  padding-top: clamp(55px, 10vw, 110px);
  padding-bottom: clamp(50px, 9.09vw, 100px);
}

.p-top-concept {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-bottom: clamp(15px, 2.73vw, 30px);
}
.p-top-concept__exclamation {
  position: relative;
  width: 27px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-top-concept__exclamation img {
  position: relative;
  width: 100%;
  height: auto;
}
.p-top-concept__catch {
  position: relative;
  margin-top: clamp(30px, 4.545vw, 50px);
  font-size: clamp(2.4rem, 3.636vw, 4rem);
  font-weight: 500;
}
.p-top-concept__descriptions {
  position: relative;
  line-height: 2em;
  margin-top: clamp(30px, 4.545vw, 50px);
}
.p-top-concept__descriptions p + p {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-concept {
    margin-bottom: 30px;
  }
  .p-top-concept__descriptions {
    text-align: justify;
  }
  .p-top-concept__descriptions br:not([class=keep-break]) {
    display: none;
  }
}

.p-top-service {
  position: relative;
  padding-top: clamp(15px, 2.723vw, 30px);
  padding-bottom: clamp(50px, 9.09vw, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 3.63vw, 40px);
}

.p-top-news {
  position: relative;
  padding-top: clamp(40px, 7.27vw, 80px);
  padding-bottom: clamp(50px, 4.54vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(35px, 6.36vw, 70px);
}

.p-top-cta {
  position: relative;
  padding-top: clamp(25px, 4.545vw, 50px);
  padding-bottom: clamp(25px, 4.545vw, 50px);
}
.p-top-cta .p-top-cta-card {
  position: relative;
  width: 100%;
  background-color: #000;
  padding-top: clamp(15px, 2.72vw, 30px);
  padding-left: clamp(20px, 3.63vw, 40px);
  padding-right: clamp(25px, 4.09vw, 45px);
  padding-bottom: clamp(20px, 3.63vw, 40px);
}
.p-top-cta .p-top-cta-card__description {
  color: #fff;
  position: relative;
  margin-top: 15px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
}
.p-top-cta .p-top-cta-card .c-heading::after {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  border-radius: 6px;
  border: solid 1px #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: 9.6px 9.6px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/cta-arw.svg");
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
}
.p-top-cta .p-top-cta-card:hover .c-heading::after {
  right: -4px;
}

.p-philosophy-block {
  position: relative;
  width: 100%;
  color: #fff;
  padding-top: clamp(25px, 4.545vw, 50px);
  padding-bottom: clamp(85px, 15.455vw, 170px);
}
.p-philosophy-block--greeting {
  padding-top: clamp(65px, 11.818vw, 130px);
}
.p-philosophy-block--greeting::before {
  content: "";
  display: block;
  background-color: #000;
  height: 100%;
  width: calc(1100px + (100vw - 1100px) / 2);
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
}
.p-philosophy-block__body {
  margin-top: clamp(15px, 1.818vw, 20px);
  position: relative;
}
.p-philosophy-block__copy {
  position: relative;
  width: clamp(240px, 44.73vw, 492px);
  margin-bottom: clamp(20px, 2.73vw, 30px);
}
.p-philosophy-block__copy img {
  width: 100%;
  height: auto;
}
.p-philosophy-block__descriptions {
  position: relative;
  line-height: 2;
  text-align: justify;
}
.p-philosophy-block__descriptions p:not(:first-of-type) {
  margin-top: clamp(10px, 1.818vw, 20px);
}
.p-philosophy-block__rep {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(10px, 1.818vw, 20px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(40px, 7.272vw, 80px);
}
.p-philosophy-block__rep-role {
  position: relative;
}
.p-philosophy-block__rep-name {
  width: clamp(80px, 13.91vw, 153px);
}
.p-philosophy-block__inner {
  position: relative;
  padding-left: clamp(135px, 24.545vw, 270px);
  z-index: 1;
}

.p-information-block {
  position: relative;
  width: 100%;
  color: #fff;
  padding-top: clamp(25px, 4.545vw, 50px);
  padding-bottom: clamp(85px, 15.455vw, 170px);
}
.p-information-block--information {
  padding-bottom: clamp(45px, 8.636vw, 95px);
}
.p-information-block--office {
  padding-top: clamp(65px, 11.818vw, 130px);
  padding-bottom: clamp(35px, 6.364vw, 70px);
}
.p-information-block--office::before {
  content: "";
  display: block;
  background-color: #000;
  height: 100%;
  width: calc(1100px + (100vw - 1100px) / 2);
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
}
.p-information-block--office .c-map-link {
  margin-top: 35px;
}
.p-information-block--history {
  padding-bottom: clamp(40px, 7.272vw, 80px);
}
.p-information-block__body {
  margin-top: clamp(15px, 1.818vw, 20px);
  position: relative;
}
.p-information-block__inner {
  position: relative;
  padding-left: clamp(135px, 24.545vw, 270px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-information-block__inner {
    padding-left: 0;
  }
}

.p-information-table {
  position: relative;
}
.p-information-table .c-table__head {
  width: 190px;
}
.p-information-table .c-table__data {
  width: calc(100% - 190px);
}

.p-service {
  color: #fff;
}
.p-service-heading {
  margin-bottom: clamp(40px, 7.272vw, 80px);
}
.p-service-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.p-service-heading .c-heading-main {
  margin-top: clamp(12px, 2.272vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}

.p-strength {
  color: #fff;
}
.p-strength-heading {
  margin-bottom: clamp(40px, 7.272vw, 80px);
}
.p-strength-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.p-strength-heading .c-heading-main {
  margin-top: clamp(12px, 2.272vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}

.p-requirement {
  color: #fff;
}
.p-requirement-heading {
  margin-bottom: clamp(40px, 7.272vw, 80px);
}
.p-requirement-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.p-requirement-heading .c-heading-main {
  margin-top: clamp(12px, 2.272vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}
.p-requirement__table .c-table__head {
  position: relative;
  width: 165px;
  padding-top: clamp(12px, 1.818vw, 20px);
  padding-bottom: clamp(12px, 1.818vw, 20px);
  line-height: 2;
}
.p-requirement__table .c-table__data {
  position: relative;
  width: calc(100% - 165px);
  padding-top: clamp(12px, 1.818vw, 20px);
  padding-bottom: clamp(12px, 1.818vw, 20px);
  padding-left: 20px;
  line-height: 2;
}
.p-requirement__table .c-table__data ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-requirement__table .c-table__data ul li::before {
  content: "・";
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-requirement__table .c-table__head {
    padding-bottom: 0;
  }
  .p-requirement__table .c-table__head,
  .p-requirement__table .c-table__data {
    width: 100% !important;
  }
}

.p-recruitment {
  color: #fff;
}
.p-recruitment-heading {
  margin-bottom: clamp(40px, 7.272vw, 80px);
}
.p-recruitment-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.p-recruitment-heading .c-heading-main {
  margin-top: clamp(12px, 2.272vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}
.p-recruitment-intro .c-heading-main {
  margin-top: clamp(10px, 1.818vw, 20px);
}

.p-introduction {
  padding-bottom: clamp(80px, 14.455vw, 160px);
}

.p-recruitment-cta {
  position: relative;
  width: 100%;
  background-image: url("../img/cta-recruit_bg@3x.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: clamp(45px, 8.182vw, 90px);
  padding-bottom: clamp(45px, 8.182vw, 90px);
  text-align: center;
}
.p-recruitment-cta__en {
  position: relative;
  font-family: "DIN Condensed";
  font-size: clamp(2.4rem, 3.818vw, 4.2rem);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-recruitment-cta__ja {
  position: relative;
  margin-top: clamp(15px, 2.273vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}
.p-recruitment-cta__row {
  margin-top: clamp(20px, 2.73vw, 30px);
}
@media screen and (max-width: 768px) {
  .p-recruitment-cta__row {
    gap: clamp(20px, 2.777vw, 40px);
  }
}

.p-recruitment-reason {
  background-color: #000000;
  padding-top: clamp(70px, 12.73vw, 140px);
  padding-bottom: clamp(80px, 14.455vw, 160px);
}

.p-recruitment-works {
  padding-top: clamp(70px, 12.73vw, 140px);
  padding-bottom: clamp(40px, 7.273vw, 80px);
}
.p-recruitment-works__row {
  position: relative;
}
.p-recruitment-works__row .c-section-intro {
  bottom: clamp(30px, 5.45vw, 60px);
  margin-bottom: 0;
}
.p-recruitment-works__row .c-section-intro:last-of-type {
  border-bottom: solid 1px #989898;
}

.p-interview-card {
  position: relative;
  padding-bottom: clamp(50px, 9.091vw, 100px);
  border-bottom: solid 1px #989898;
}
.p-interview-card__img {
  position: relative;
  width: 100%;
}
.p-interview-card__img img {
  position: relative;
  width: 100%;
  height: auto;
}
.p-interview-card__meta {
  position: relative;
  margin-top: clamp(20px, 3.636vw, 40px);
}
.p-interview-card__meta-position {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.p-interview-card__meta-name {
  margin-top: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.p-interview-card__meta-name-text {
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
}
.p-interview-card__faq {
  position: relative;
  margin-top: clamp(20px, 3.636vw, 40px);
}
.p-interview-card__faq dt {
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
}
.p-interview-card__faq dt::before {
  content: "Q.";
  display: inline-block;
}
.p-interview-card__faq dt:not(:first-of-type) {
  margin-top: clamp(30px, 5vw, 55px);
}
.p-interview-card__faq dd {
  margin-top: clamp(18px, 3.2727vw, 36px);
  line-height: 2;
}

.p-recruitment-interview {
  position: relative;
  padding-top: clamp(40px, 7.273vw, 80px);
  padding-bottom: clamp(35px, 6.37vw, 70px);
}

.p-recruitment-flow {
  position: relative;
  padding-top: clamp(35px, 6.37vw, 70px);
  padding-bottom: clamp(90px, 16.363vw, 180px);
}
.p-recruitment-flow .p-selection-flow {
  margin-top: clamp(20px, 3.636vw, 40px);
}

.p-selection-flow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
}
.p-selection-flow__item {
  width: 23.5%;
  position: relative;
}
.p-selection-flow__item-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 20px);
  height: 64px;
  padding: 0 12px;
  background-color: #000;
  color: #fff;
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-selection-flow__item-title:not(.not-arw)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 20px solid #000;
}
.p-selection-flow__item-detail {
  position: relative;
  width: calc(100% - 20px);
  margin-top: clamp(15px, 2.73vw, 30px);
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-selection-flow {
    gap: clamp(25px, 4.545vw, 50px) 4%;
  }
  .p-selection-flow__item {
    width: 48%;
    position: relative;
  }
  .p-selection-flow__item-title {
    height: 48px;
  }
  .p-selection-flow__item-title:not(.not-arw)::after {
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
  }
}

.p-contact {
  padding-bottom: clamp(25px, 4.545vw, 50px);
}
.p-contact-heading {
  margin-bottom: clamp(40px, 7.272vw, 80px);
}
.p-contact-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.p-contact-heading .c-heading-main {
  margin-top: clamp(12px, 2.272vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}
.p-contact__body {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
.p-contact__cautions {
  position: relative;
  width: 196px;
  padding-top: clamp(20px, 2.777vw, 40px);
  border-top: solid 1px #989898;
  color: #fff;
  line-height: 2;
}
.p-contact__cautions-text {
  margin-bottom: clamp(10px, 1.818vw, 20px);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-contact__cautions-require {
  color: #b71c22;
}
.p-contact__form {
  position: relative;
  width: calc(100% - 80px - 196px);
  padding-top: clamp(20px, 2.777vw, 40px);
  border-top: solid 1px #989898;
}

.c-contact-form {
  color: #fff;
}
.c-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.c-contact-form__group {
  margin-top: clamp(20px, 2.73vw, 30px);
}
.c-contact-form__group:first-child {
  margin-top: 0;
}
.c-contact-form__group--acceptance {
  margin-top: clamp(25px, 4.545vw, 50px);
}
.c-contact-form__label, .c-contact-form__sub-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.5;
}
.c-contact-form__sub-label {
  margin-bottom: 10px;
}
.c-contact-form__required {
  margin-left: 0.2em;
  color: #b71c22;
}
.c-contact-form__row:not(:first-of-type) {
  margin-top: 20px;
}
.c-contact-form__row--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.c-contact-form__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.c-contact-form__input, .c-contact-form__select, .c-contact-form__textarea {
  display: block;
  width: 100%;
  border: 1px solid #989898;
  background-color: #3a3a3a;
  color: #fff;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.c-contact-form__input::-webkit-input-placeholder, .c-contact-form__select::-webkit-input-placeholder, .c-contact-form__textarea::-webkit-input-placeholder {
  color: #808080;
}
.c-contact-form__input::-moz-placeholder, .c-contact-form__select::-moz-placeholder, .c-contact-form__textarea::-moz-placeholder {
  color: #808080;
}
.c-contact-form__input:-ms-input-placeholder, .c-contact-form__select:-ms-input-placeholder, .c-contact-form__textarea:-ms-input-placeholder {
  color: #808080;
}
.c-contact-form__input::-ms-input-placeholder, .c-contact-form__select::-ms-input-placeholder, .c-contact-form__textarea::-ms-input-placeholder {
  color: #808080;
}
.c-contact-form__input::placeholder, .c-contact-form__select::placeholder, .c-contact-form__textarea::placeholder {
  color: #808080;
}
.c-contact-form__input:focus, .c-contact-form__select:focus, .c-contact-form__textarea:focus {
  border-color: #989898;
  background-color: #424242;
}
.c-contact-form__input, .c-contact-form__select {
  height: 60px;
  padding: 0 clamp(8px, 1.273vw, 14px);
}
.c-contact-form__textarea {
  min-height: 240px;
  padding: clamp(8px, 1.273vw, 14px) clamp(8px, 1.273vw, 14px);
  resize: vertical;
}
.c-contact-form__select {
  padding-right: clamp(20px, 4.727vw, 52px);
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - clamp(12px, 2.182vw, 24px)) calc(50% - clamp(1.5px, 0.03vw, 3px)), calc(100% - clamp(8px, 1.455vw, 16px)) calc(50% - clamp(1.5px, 0.03vw, 3px));
  background-size: clamp(4px, 0.727vw, 8px) clamp(4px, 0.727vw, 8px), clamp(4px, 0.727vw, 8px) clamp(4px, 0.727vw, 8px);
  background-repeat: no-repeat;
  cursor: pointer;
}
.c-contact-form__select option {
  color: #fff;
  background-color: #3a3a3a;
}
.c-contact-form__privacy {
  max-height: 310px;
  overflow-y: auto;
  padding: clamp(10px, 1.363vw, 15px) clamp(15px, 2.272vw, 25px);
  border: 1px solid #989898;
  background-color: #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-contact-form__privacy p {
  color: #fff;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}
.c-contact-form__privacy::-webkit-scrollbar {
  width: 10px;
}
.c-contact-form__privacy::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}
.c-contact-form__privacy::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}
.c-contact-form__acceptance {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  background-color: transparent;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border: solid 1px #fff;
}
.c-contact-form__acceptance::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-contact-form__acceptance:hover {
  border-color: #fff;
}
.c-contact-form__acceptance:focus {
  border-color: #fff;
}
.c-contact-form__acceptance:checked {
  border-color: #b7282e;
  background-color: #b7282e;
}
.c-contact-form__acceptance:checked::after {
  opacity: 1;
}
.c-contact-form__acceptance:checked + .wpcf7-list-item-label {
  color: #fff;
}
.c-contact-form .wpcf7-acceptance {
  display: block;
}
.c-contact-form .wpcf7-list-item {
  display: block;
  margin: 0;
}
.c-contact-form .wpcf7-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  cursor: pointer;
}
.c-contact-form .wpcf7-list-item-label {
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.c-contact-form__submit {
  margin-top: clamp(25px, 4.545vw, 50px);
}
.c-contact-form__submit-button,
.c-contact-form .wpcf7-submit {
  display: block;
  width: 100%;
  min-height: 60px;
  padding: 20px 24px;
  border: 0;
  border-radius: 8px;
  background-color: #b71c22;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.c-contact-form__submit-button:hover,
.c-contact-form .wpcf7-submit:hover {
  opacity: 0.9;
}
.c-contact-form__submit-button:disabled,
.c-contact-form .wpcf7-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.c-contact-form .wpcf7-spinner {
  display: none;
}
.c-contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ff7b7b;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-contact__body {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-contact__cautions {
    width: 100%;
  }
  .p-contact__form {
    width: 100%;
  }
}
.wpcf7-response-output {
  padding: 10px;
  color: #fff;
}

.p-privacy-policy {
  color: #fff;
}
.p-privacy-policy__lead {
  margin-bottom: clamp(25px, 4.545vw, 50px);
}
.p-privacy-policy__lead p {
  line-height: 2;
}
.p-privacy-policy__body {
  border-top: 1px solid #d9d9d9;
}
.p-privacy-policy__section {
  padding: clamp(20px, 2.777vw, 40px) 0;
  border-bottom: 1px solid #d9d9d9;
}
.p-privacy-policy__heading {
  margin: 0 0 clamp(10px, 1.818vw, 20px);
  font-size: clamp(1.8rem, 2.1818vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
}
.p-privacy-policy__text {
  line-height: 2;
}
.p-privacy-policy__list {
  margin: clamp(10px, 1.818vw, 20px) 0 0;
  padding: 0;
  list-style: none;
}
.p-privacy-policy__list-item {
  position: relative;
  margin-top: 10px;
  padding-left: 1.2em;
  line-height: 2;
}
.p-privacy-policy__list-item:first-child {
  margin-top: 0;
}
.p-privacy-policy__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-privacy-policy__contact {
  margin-top: clamp(10px, 1.818vw, 20px);
}
.p-privacy-policy__contact p {
  margin: 6px 0 0;
  line-height: 2;
}
.p-privacy-policy__contact p:first-child {
  margin-top: 0;
}
.p-privacy-policy__date {
  margin-top: clamp(20px, 2.777vw, 40px);
}
.p-privacy-policy__date p {
  margin: 0;
  line-height: 2;
}

.p-news {
  padding-bottom: clamp(25px, 4.545vw, 50px);
}
.p-news-heading {
  margin-bottom: clamp(40px, 7.272vw, 80px);
}
.p-news-heading .c-heading-sub {
  font-size: clamp(1.4rem, 1.4545vw, 1.6rem);
}
.p-news-heading .c-heading-main {
  margin-top: clamp(12px, 2.272vw, 25px);
  font-size: clamp(2.8rem, 4.364vw, 4.8rem);
}
.p-news-heading__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-news__category-area {
  margin-bottom: clamp(40px, 7.272vw, 80px);
  padding-bottom: 10px;
}
.p-news-meta__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(9px, 1.636vw, 18px);
}
.p-news-meta__category a {
  background-color: transparent;
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
}
.p-news-meta__category.is-current a, .p-news-meta__category:hover a {
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .p-news-heading__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-news-list {
  position: relative;
  padding-bottom: clamp(50px, 4.54vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(35px, 6.36vw, 70px);
  width: 100%;
}
.p-news-list__list {
  position: relative;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: solid 1px #e5e5e5;
  width: 100%;
}
.p-news-list__item {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.p-news-list__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 162px 12px 80px 12px 1fr;
  grid-template-columns: 162px 80px 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  color: #fff;
  text-decoration: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 100%;
}
.p-news-list__thumb {
  position: relative;
}
.p-news-list__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news-list__category-area {
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
  text-align: center;
}
.p-news-list__categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-news-list__content {
  min-width: 0;
}
.p-news-list__time {
  display: block;
  color: #7d7d7d;
  margin-bottom: 6px;
}
.p-news-list__title {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.p-news-list__excerpt {
  margin: 8px 0 0;
  line-height: 2;
  font-size: clamp(1.3rem, 1.2727vw, 1.4rem);
  color: #666666;
}
.p-news-list__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 50px;
  width: 100%;
}
.p-news-list__pager {
  position: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-news-list__link {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .p-news-list__thumb {
    max-width: 162px;
  }
  .p-news-list__category-area {
    padding-top: 0;
    text-align: left;
  }
}

.p-pagination {
  margin-top: clamp(30px, 5.45vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
}
.p-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-bottom: 3px;
}
.p-pagination .page-numbers.current, .p-pagination .page-numbers:hover {
  border-color: transparent;
  background: #3a3a3a;
}
.p-pagination .page-numbers.dots {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
}
.p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
  font-size: 0;
  padding-bottom: 0;
}
.p-pagination .page-numbers.prev::before, .p-pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
}
.p-pagination .page-numbers.prev::before {
  background-image: url("../img/pager-arw--prev.svg");
}
.p-pagination .page-numbers.next::before {
  background-image: url("../img/pager-arw--next.svg");
}
@media screen and (max-width: 768px) {
  .p-pagination .nav-links {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-single {
  position: relative;
  background-color: #1a1a1a;
  padding-top: clamp(125px, 22.727vw, 250px);
  padding-bottom: clamp(65px, 11.818vw, 130px);
}
.p-single-heading {
  position: relative;
  max-width: 100%;
  width: clamp(640px, 75.455vw, 830px);
  white-space: normal;
  line-height: 2;
  font-weight: 500;
}
.p-single-meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(23px, 4.091vw, 45px);
  margin-top: clamp(20px, 2.777vw, 40px);
}
.p-single-meta__time {
  color: #808080;
}
.p-single-meta__category-area {
  position: relative;
}
.p-single-meta__categories {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.p-single-meta__category a {
  background-color: #333333;
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
}
.p-single__body {
  position: relative;
  width: 100%;
  margin-top: clamp(30px, 5.45vw, 60px);
}
.p-single__eyecatch {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  background-color: #b2b2b2;
}
.p-single__eyecatch img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-single__contents {
  position: relative;
  width: 100%;
  margin-top: clamp(30px, 5.45vw, 60px);
  color: #fff;
  line-height: 2;
  padding-bottom: clamp(35px, 6.363vw, 70px);
}
.p-single__footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 20px;
  border-top: solid 1px #989898;
}
.p-single__return {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(1.2rem, 1.364vw, 1.5rem);
  color: #fff;
}
.p-single__return::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("../img/pager-arw--prev.svg");
  background-size: contain;
}

/* ======================================
   Utility
====================================== */
.u-hidden {
  display: none !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}