@charset "UTF-8";

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

span {
  display: inline-block;
}

:root {
  --primary-color: #FF6E2B;
  --primary-color-rgb: 255, 110, 43;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}


body {
  font-family: "Noto Sans JP", "游ゴシック", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  letter-spacing: 0.05em;
}

body a,
body button {
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

body a:hover,
body button:hover {
  opacity: 0.7;
}

body a {
  word-break: break-all;
}

body *>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* root container */
.l-wrapper {
  position: relative;
  z-index: 0;
  overflow-x: clip;
  background-color: #FFF5F0;
}

.l-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100lvh;
  background: url(assets/img/cmn/texture_bg.png) no-repeat center center/cover;
}

@media screen and (max-width: 768px) {
  .l-wrapper::before {
    height: calc(100lvh + 1.88rem);
  }
}

/* content container */
.l-content-container {
  position: relative;
  padding: 0 0 10rem;
}

@media screen and (max-width: 768px) {
  .l-content-container {
    padding: 0 0 3.75rem;
  }
}

/* container */
.l-container {
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  margin-left: 8.33vw;
  margin-right: 8.33vw;
}

.l-container.-wide {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 1280px) {
  .l-container {
    padding-left: 1.88rem;
    padding-right: 1.88rem;
    margin-left: 1.88rem;
    margin-right: 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .l-container {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .l-container.-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* inner */
.l-inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.l-inner.-sm {
  max-width: 880px;
}

.l-inner.-ssm {
  max-width: 640px;
}

.l-header.-compact .l-header__logo-wrap {
  background-color: transparent;
}

.l-header.-compact .l-header__logo {
  width: 6.25rem;
}

.l-header__btn-wrap {
  position: fixed;
  z-index: 100;
  top: 1rem;
  right: 1rem;
  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: 0.5rem 0.5rem;
  margin: 0 0 0 auto;
}

.l-header__logo-wrap {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 11.25rem;
  aspect-ratio: 180/160;
  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;
  background-color: rgba(255, 255, 255, 0.95);
}

.l-header__logo {
  width: 7.5rem;
  aspect-ratio: 100/68;
}

.l-header__btn {
  width: 10.25rem;
  height: 4rem;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.31rem 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #333333;
  border-radius: 4px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.l-header__btn.-description,
.l-header__btn.-entry {
  background-color: #E85009;
}

.l-header__btn.-menu.is-active .l-header__toggle span:nth-of-type(1) {
  -webkit-transform: translateY(0.56rem) rotate(30deg);
  transform: translateY(0.56rem) rotate(30deg);
}

.l-header__btn.-menu.is-active .l-header__toggle span:nth-of-type(2) {
  opacity: 0;
}

.l-header__btn.-menu.is-active .l-header__toggle span:nth-of-type(3) {
  -webkit-transform: translateY(-0.56rem) rotate(-30deg);
  transform: translateY(-0.56rem) rotate(-30deg);
}

.l-header__btn.-menu.is-active .l-header__toggle::after {
  content: "CLOSE";
}

.l-header__toggle {
  display: block;
  position: relative;
  z-index: 1000;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}

.l-header__toggle span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.l-header__toggle span:nth-of-type(1) {
  top: 0;
}

.l-header__toggle span:nth-of-type(2) {
  top: 0.56rem;
}

.l-header__toggle span:nth-of-type(3) {
  top: 1.13rem;
}

.l-header__toggle::after {
  content: "MENU";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 0.81rem;
  line-height: 1;
}

.l-header.is-active .l-header__btn.-company,
.l-header.is-active .l-header__btn.-description,
.l-header.is-active .l-header__btn.-entry {
  opacity: 0;
}

@media screen and (max-width: 1600px) {
  .l-header.-compact .l-header__logo {
    width: 5rem;
  }

  .l-header__logo-wrap {
    width: 7.5rem;
  }

  .l-header__logo {
    width: 5rem;
  }

  .l-header__btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .l-header__btn {
    width: 10.25rem;
    height: 4rem;
  }

  .l-header__btn.-menu {
    width: 5.13rem;
  }

  .l-header__btn.-company,
  .l-header__btn.-description {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .l-header__btn {
    width: 6.25rem;
    height: 3.75rem;
  }

  .l-header__btn.-menu {
    width: 3.75rem;
  }

  .l-header__btn.-company,
  .l-header__btn.-description {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .l-header__btn-wrap {
    font-size: clamp(14px, 2vw, 16px);
  }

  .l-header__toggle::after {
    font-size: clamp(14px, 2vw, 16px);
  }
}

.l-header-drawer {
  visibility: hidden;
  height: auto;
  opacity: 0;
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.l-header-drawer.is-active {
  height: 100lvh;
  visibility: visible;
  opacity: 1;
}

.l-header-drawer__inner {
  max-width: 1200px;
  width: 90%;
  height: 100%;
  -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: start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 3.75rem;
  margin: 0 0 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
}

.l-header-drawer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem 8.33vw;
  margin: 6.25rem 0 0;
}

.l-header-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6.25rem 6.25vw;
}

.l-header-drawer__category {
  width: calc(50% - 3.13vw);
}

.l-header-drawer__category-title {
  color: var(--primary-color);
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}

.l-header-drawer__menu {
  margin: 0 0.63rem;
}

.l-header-drawer__menu-item {
  font-size: 1rem;
}

.l-header-drawer__menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.63rem;
}

.l-header-drawer__menu-item a::before {
  content: "";
  width: 0.63rem;
  height: 1px;
  background-color: currentColor;
}

.l-header-drawer__menu-item:not(:last-of-type) {
  margin-bottom: 0.63rem;
}

.l-header-drawer__btn-wrap {
  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: 0.5rem 0.5rem;
}

.l-header-drawer__btn {
  width: 10.25rem;
  height: 4rem;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.31rem 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #333333;
  border-radius: 4px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.l-header-drawer__btn.-description,
.l-header-drawer__btn.-entry {
  background-color: var(--primary-color);
}

@media screen and (max-width: 1280px) {
  .l-header-drawer__body {
    gap: 2.5rem 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .l-header-drawer__inner {
    width: 100%;
    padding: 1rem 1rem 2.5rem;
  }

  .l-header-drawer__body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 3.75rem 0 0;
  }

  .l-header-drawer__nav {
    gap: 2.5rem 0;
  }

  .l-header-drawer__back {
    font-size: 0.88rem;
  }

  .l-header-drawer__category {
    width: 100%;
  }

  .l-header-drawer__category-title {
    font-size: 1rem;
    margin: 0 0 0.5em;
  }

  .l-header-drawer__menu-item {
    font-size: 0.88rem;
    border-bottom: 1px solid #999999;
  }

  .l-header-drawer__menu-item a {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1em 0.5em 1em 0;
  }

  .l-header-drawer__menu-item a::before {
    content: none;
  }

  .l-header-drawer__menu-item a::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    aspect-ratio: 1/1;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .l-header-drawer__menu-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.l-footer {
  color: #fff;
  background: url(assets/img/cmn/footer_bg.jpg?250811) no-repeat bottom center/cover;
  padding: 10rem 0 1rem;
}

.l-footer__body {
  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: 2.5rem 2.5rem;
}

.l-footer__logo {
  width: 6.25rem;
  aspect-ratio: 100/68;
}

.l-footer__copyright {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 26.56vw 0 0;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3.75rem 0 1rem;
  }

  .l-footer__body {
    -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;
  }

  .l-footer__copyright {
    margin: 12.5rem 0 0;
  }
}

.l-footer-cta {
  margin: 0 0 12.5rem;
}

.l-footer-cta__heading {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 1em;
}

.l-footer-cta__desc {
  max-width: 542px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.l-footer-cta__btn-wrap {
  gap: 1.63rem 1.63rem;
}

.l-footer-cta__btn.c-btn {
  min-width: initial;
  width: calc(50% - 0.81rem);
  height: 7.88rem;
  font-size: 1.5rem;
  background-color: var(--primary-color);
}

.l-footer-cta__btn.c-btn .c-btn__chevron {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-footer-cta {
    margin: 0 0 3.75rem;
  }

  .l-footer-cta__btn.c-btn {
    width: 100%;
    height: 4rem;
    font-size: 1rem;
  }
}

.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 2.5rem 8.33vw;
}

.l-footer-nav__category-title {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}

.l-footer-nav__menu {
  margin: 0 0 0 0.63rem;
}

.l-footer-nav__menu-item {
  position: relative;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 0 0 0 1.25rem;
}

.l-footer-nav__menu-item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  width: 0.63rem;
  height: 1px;
  background-color: currentColor;
}

.l-footer-nav__menu-item:not(:last-of-type) {
  margin-bottom: 0.63rem;
}

@media screen and (max-width: 1280px) {
  .l-footer-nav {
    gap: 2.5rem 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-nav {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .l-footer-nav__category {
    width: calc(50% - 1.25rem);
  }

  .l-footer-nav__category-title {
    font-size: 1rem;
  }
}

.c-sentence {
  line-height: 2;
}

.c-sentence+.c-sentence {
  margin-top: 2em;
}

.c-sentence+.c-btn__wrap {
  margin-top: 3.75rem;
}

@media screen and (min-width: 769px) {
  .c-sentence+.c-btn__wrap.-start {
    justify-content: start;
  }
}

@media screen and (max-width: 768px) {
  .c-sentence {
    font-size: 0.88rem;
  }

  .c-sentence+.c-btn__wrap {
    margin-top: 2.5rem;
    max-width: 420px;
    margin-inline: auto;
  }

  .c-sentence+.c-btn__wrap.-align_left {
    justify-content: center;
  }

  .p-message-interview__question {
    font-size: 16px;
  }
}

.c-typo-text {
  font-family: "Poppins", sans-serif;
  font-size: 16vw;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.75;
  opacity: 0.25;
}

@media screen and (max-width: 768px) {
  .c-typo-text {
    line-height: .8;
  }
}

.c-catch-text {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .c-catch-text {
    font-size: 1.8rem;
  }
}

.c-underline-link {
  display: inline;
  color: var(--primary-color);
  text-decoration: underline;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 20rem;
  height: 4rem;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  background-color: #333333;
  padding: 0 1.5rem 0 2.5rem;
}

.c-btn__chevron {
  color: #E85009;
  height: 100%;
  aspect-ratio: 94/125;
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem 1.5rem;
}

.c-btn__wrap.-align_left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.c-btn__wrap.-align_right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

.c-heading {
  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;
  margin: 0 0 2rem;
}

.c-heading__sub-title {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  margin-bottom: .5em;
}

.c-heading__main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-heading.-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0;
}

.c-heading.-vertical .c-heading__sub-title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.c-heading.-vertical .c-heading__main-title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 1024px) {
  .c-heading.-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-heading.-vertical .c-heading__sub-title {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }

  .c-heading.-vertical .c-heading__main-title {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
}

@media screen and (max-width: 768px) {
  .c-heading__main-title {
    font-size: 1.5rem;
  }
}

.c-square-heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 0;
}

.c-square-heading__main-title {
  position: relative;
  z-index: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.6rem, 6.25vw, 6.25rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.c-square-heading__main-title::before,
.c-square-heading__main-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  aspect-ratio: 1/1;
  border: 3px solid #FF6E2B;
}

.c-square-heading__main-title::before {
  bottom: 0.5em;
  left: -0.44em;
  width: 0.88em;
  background-color: #FF6E2B;
}

.c-square-heading__main-title::after {
  bottom: 1.1em;
  left: 0.16em;
  width: 0.56em;
}

.c-square-heading__sub-title {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.c-square-heading+.c-sentence {
  margin-top: 3.75rem;
}

@media screen and (max-width: 1024px) {
  .c-square-heading+.c-sentence {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .c-square-heading__main-title {
    padding: 0 0 0 1rem;
  }

  .c-square-heading__main-title::before {
    left: 0;
  }

  .c-square-heading__main-title::after {
    left: 0.55em;
  }

  .c-square-heading+.c-sentence {
    margin-top: 1.25rem;
  }
}

.c-bg-heading {
  margin: 0 0 4rem;
}

.c-bg-heading__text {
  display: inline-block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--primary-color);
  padding: 0.25em 1.5em;
}

.c-bg-heading.-align_right {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .c-bg-heading {
    margin: 0 0 2.5rem;
  }

  .c-bg-heading__text {
    font-size: 0.88rem;
    padding: 0.15em .75em;
  }
}

.c-catch-heading {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: clamp(2.8rem, 4.17vw, 4.69rem);
  line-height: 1.2;
  letter-spacing: -0.075em;
  font-weight: 400;
}

.c-catch-heading .-lg {
  font-size: 1.3em;
}

.c-twotone-heading {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0 0 1em;
}

.c-twotone-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.38rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-color)), color-stop(50%, var(--primary-color)), color-stop(50%, #333333), to(#333333));
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 50%, #333333 50%, #333333 100%);
}

@media screen and (max-width: 768px) {
  .c-twotone-heading {
    font-size: 1rem;
  }
}

.c-table {
  width: 100%;
  table-layout: fixed;
}

.c-table th,
.c-table td {
  font-size: 1rem;
  padding: 1.5em 0;
  word-break: break-all;
}

.c-table th {
  width: 28%;
  font-weight: 700;
  border-bottom: 1px solid #333333;
}

.c-table td {
  border-bottom: 1px solid #cccccc;
}

.c-table td>*+* {
  margin-top: 1.5em;
}

@media screen and (max-width: 768px) {

  .c-table th,
  .c-table td {
    font-size: 0.88rem;
  }
}

/* list */
.c-square-list li {
  position: relative;
  padding: 0 0 0 1.25rem;
}

.c-square-list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  background-color: var(--primary-color);
}

.c-square-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-square-list.-wh li::before {
  background-color: #fff;
}

.c-square-list.-bk li::before {
  background-color: #333333;
}

.c-square-list li.-head {
  padding: 0;
  font-weight: 700;
}

.c-square-list li.-head::before {
  content: none;
}

@media screen and (max-width: 768px) {
  .c-square-list li {
    font-size: 0.88rem;
  }
}

.c-dot-list li {
  position: relative;
  padding: 0 0 0 1.25rem;
}

.c-dot-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 0.5rem;
}

.c-dot-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-dot-list li.-head {
  padding: 0;
  font-weight: 700;
}

.c-dot-list li.-head::before {
  content: none;
}

@media screen and (max-width: 768px) {
  .c-dot-list li {
    font-size: 0.88rem;
  }
}

/* breadcrumbs */
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-y: auto;
}

.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.c-breadcrumbs__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.63rem;
  color: #999999;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.c-breadcrumbs__item a:hover {
  opacity: 0.7;
}

.c-breadcrumbs__item:not(:last-of-type)::after {
  content: "";
  width: 0.75rem;
  height: 1px;
  background-color: #999999;
  margin: 0 0.5rem;
}

.c-breadcrumbs__item:last-of-type {
  color: #333333;
}

.c-breadcrumbs__item:first-of-type a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .c-breadcrumbs__item {
    font-size: 0.75rem;
  }
}

.c-media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 3.75rem 4.5rem;
}

.c-media-object__media {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 46%;
}

.c-media-object__content {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 1440px) {
  .c-media-object {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8rem 4.5rem;
  }

  .c-media-object__media {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .c-media-object {
    gap: 2.5rem 0;
  }
}

.c-media-object.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1440px) {
  .c-media-object.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.c-media-object.-reverse_only_desktop {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1440px) {
  .c-media-object.-reverse_only_desktop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.c-media-object.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-media-object.-vertical .c-media-object__media {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .c-media-object.-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.c-line {
  position: absolute;
  top: 0;
  left: -14.58vw;
  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;
  max-width: 1300px;
  width: calc(100vw - 7.5rem);
  color: #FF6E2B;
}

.c-line::before {
  content: "";
  display: block;
  width: calc(100% - 1rem);
  height: 2px;
  background-color: currentColor;
  margin: 0 auto 0 0;
}

.c-line__square-wrap {
  width: 1.75rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 2px;
  margin-top: -3px;
}

.c-line__square-wrap span {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  background-color: currentColor;
  border: 0.25rem solid currentColor;
}

.c-line__square-wrap span:nth-child(1) {
  background-color: transparent !important;
}

.c-line.-align_right {
  left: initial;
  right: -14.58vw;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-line.-align_right::before {
  margin: 0 0 0 auto;
}

.c-line.-align_right .c-line__square-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.c-line.-bk {
  color: #333333;
}

@media screen and (max-width: 1280px) {
  .c-line {
    width: calc(100vw - 3.75rem);
    left: -3.75rem;
  }

  .c-line.-align_right {
    right: -3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .c-line {
    width: calc(100vw - 1rem);
    left: -1rem;
  }

  .c-line::before {
    width: calc(100% - 14px);
  }

  .c-line__square-wrap {
    width: 26px;
    margin-top: -2px;
  }

  .c-line__square-wrap span {
    border-width: 2px;
  }

  .c-line.-align_right {
    right: -1rem;
  }
}

.c-sec-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem 8.33vw;
}

.c-sec-header__separator {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: inline-block;
  width: 1px;
  background-color: #999999;
}

@media screen and (min-width: 1025px) {
  .c-sec-header.-horizontal {
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }

  .c-sec-header.-horizontal .c-sec-header__separator {
    -ms-flex-item-align: center;
    align-self: center;
    width: 5.63rem;
    height: 1px;
    margin-top: -1.6rem;
  }

  .c-sec-header.-reverse_only_desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .c-sec-header__right {
    margin-top: -1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .c-sec-header {
    gap: 2.5rem 0;
    -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;
  }

  .c-sec-header__separator {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 5.63rem;
    height: 1px;
  }
}

@media screen and (max-width: 768px) {
  .c-sec-header {
    gap: 1.25rem 0;
  }
}
.p-interview-list .c-voice-parts::before{
  display: none; 
}

.c-voice-parts {
  position: relative;
  padding-top: 11.5rem;
  margin-top: -1.5rem;
}

.c-voice-parts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90vw;
  height: 45rem;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  ;
}

.c-voice-parts__header {
  margin: 0 0 8.75rem;
}

.c-voice-parts__slider-wrap {
  position: relative;
  margin: 0 0 5rem;
}

.c-voice-parts__slider-inner {
  overflow: hidden;
  width: calc(100% - 6.25vw);
  padding: 0 6.77vw 0 0;
  margin: 0 0 0 auto;
}

.c-voice-parts__slider .slick-list {
  overflow: visible;
}

.c-voice-parts__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.25rem;
}

.c-voice-parts__arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  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;
  width: 2.5rem;
  aspect-ratio: 40/100;
  background-color: #333333;
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.c-voice-parts__arrow::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  aspect-ratio: 1/1;
  background: url(assets/img/cmn/chevron_ico_wh.svg) no-repeat center center/contain;
}

.c-voice-parts__arrow.-prev {
  left: 2.5rem;
}

.c-voice-parts__arrow.-prev::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.c-voice-parts__arrow.-next {
  right: 2.5rem;
}

.c-voice-parts__slide {
  position: relative;
  width: 21.5rem !important;
}

.c-voice-parts__slide.-pk .c-voice-parts__body::before {
  background: linear-gradient(135deg, #f79e62, #fe5196);
}

.c-voice-parts__body {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 344/460;
}

.c-voice-parts__body::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0.75rem;
  display: block;
  width: calc(100% - 0.75rem);
  height: calc(100% - 3.75rem);
  background: linear-gradient(135deg, #92fe9d, #00c9ff);
}

.c-voice-parts__body::after {
  content: "TH INC.";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0.75rem;
  font-size: 3.38rem;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  opacity: 0.07;
}

.c-voice-parts__job {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  display: block;
  height: calc(100% - 3.75rem);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #333333;
  padding: 0.63rem 0;
}

.c-voice-parts__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 268/460;
  height: 100%;
  margin: 0 0.75rem 0 auto;
}

.c-voice-parts__img img {
  -o-object-fit: contain;
  object-fit: contain;
}

.c-voice-parts__profile {
  position: absolute;
  z-index: 2;
  top: 8rem;
  left: 0;
  width: 40%;
}

.c-voice-parts__year {
  display: block;
  font-size: 0.88rem;
}

.c-voice-parts__dep {
  display: inlie-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  border: 1px solid #333333;
  padding: 0 0.5em;
  margin: 0 0 0.63rem;
}

.c-voice-parts__name {
  display: block;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  letter-spacing: 0.05em;
}

.c-voice-parts__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 2rem;
  padding: 0.75rem 1.25rem 0;
}

.c-voice-parts__title {
  font-size: 0.88rem;
  font-weight: 400;
}

.c-voice-parts__chevron-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  width: 2.5rem;
  aspect-ratio: 40/32;
  border: 1px solid #333333;
}

.c-voice-parts__chevron {
  color: #333333;
  height: 0.75rem;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  .c-voice-parts {
    padding-top: 8rem;
    margin-top: -5rem;
  }

  .c-voice-parts::before {
    width: 100vw;
    height: 50%;
  }

  .c-voice-parts__header {
    margin: 0 0 1.25rem;
  }

  .c-voice-parts__profile {
    top: 5rem;
  }

  .c-voice-parts__slider-wrap {
    margin: 0 0 2.5rem;
  }

  .c-voice-parts__slider-inner {
    width: 100%;
    padding: 0 0.75rem 0 0;
  }

  .c-voice-parts__slide {
    width: 21.56rem !important;
  }

  .c-voice-parts__arrow.-prev {
    left: 1rem;
  }

  .c-voice-parts__arrow.-next {
    right: 1rem;
  }
}

.c-challenge-parts {
  color: #fff;
  background: url(assets/img/cmn/challenge_bg.png) no-repeat top center/101% 100%;
  background-size: cover;
  padding: 11.88rem 0 10rem;
}

.c-challenge-parts__header {
  position: relative;
  padding: 4rem 0 0;
  margin: 0 0 5rem;
}

.c-challenge-parts__typo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.c-challenge-parts__balloon {
  position: absolute;
  top: -8rem;
  left: calc(50% + 2rem);
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  width: 15rem;
}

.c-challenge-parts__heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.c-challenge-parts__heading .-tag {
  display: inline-block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.c-challenge-parts__desc {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-challenge-parts {
    padding: 6rem 0;
    margin: 0 0 3.75rem;
  }

  .c-challenge-parts__header {
    margin: 0 0 2.5rem;
  }

  .c-challenge-parts__balloon {
    width: 7.5rem;
    top: -2rem;
    right: -1.25rem;
    -webkit-transform: none;
    transform: none;
  }

  .c-challenge-parts__balloon picture {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  .c-challenge-parts__typo {
    opacity: .1;
    top: 1.88rem;
  }

  .c-challenge-parts__heading {
    font-size: 1.4rem;
  }

  .c-challenge-parts__desc {
    text-align: left;
  }
}

.c-faq-list__item {
  cursor: pointer;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}

.c-faq-list__item:not(:last-of-type) {
  margin-bottom: 3rem;
}

.c-faq-list__item.is-open .c-faq-list__header::after {
  content: "－";
}

.c-faq-list__item.is-open .c-faq-list__question {
  border-bottom: 1px solid #cccccc;
}

.c-faq-list__item.is-open .c-faq-list__content {
  opacity: 1;
  height: auto;
  padding: 1.5rem 7.5rem 2rem;
}

.c-faq-list__header {
  min-height: 5.63rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.5rem;
  padding: 0 2rem;
}

.c-faq-list__header::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  width: 3rem;
  aspect-ratio: 48/35;
  background: url(assets/img/training/question_ico.png) no-repeat center center/contain;
}

.c-faq-list__header::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  content: "＋";
  display: inline-block;
  color: var(--primary-color);
  font-size: 1.88rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 auto;
}

.c-faq-list__question {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 2rem 0;
}

.c-faq-list__content {
  opacity: 0;
  height: 0;
  display: block;
  padding: 0 7.5rem;
  -webkit-transition: opacity 0.2s ease-out, max-height 0.2s ease-out, padding 0.2s ease-out;
  transition: opacity 0.2s ease-out, max-height 0.2s ease-out, padding 0.2s ease-out;
}

.c-faq-list__catch {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

@media screen and (max-width: 768px) {
  .c-faq-list__item:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }

  .c-faq-list__item.is-open .c-faq-list__header {
    border-bottom: 1px solid #999999;
  }

  .c-faq-list__item.is-open .c-faq-list__question {
    border-bottom: none;
  }

  .c-faq-list__item.is-open .c-faq-list__content {
    padding: 1rem;
  }

  .c-faq-list__header {
    gap: 0 1rem;
    padding: 0;
    margin: 0 1rem;
  }

  .c-faq-list__header::after {
    font-size: 1.25rem;
  }

  .c-faq-list__question {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .c-faq-list__content {
    padding: 0 1rem;
  }

  .c-faq-list__catch {
    font-size: 1rem;
  }
}

.p-top-mv {
  position: relative;
  z-index: 0;
  height: 100svh;
}

.p-top-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: url(assets/img/top/mv_bg.jpg) repeat-x 0 0/auto 100%;
  -webkit-animation: mv_bg_loop 100s linear infinite;
  animation: mv_bg_loop 100s linear infinite;
}

.p-top-mv__container {
  position: relative;
  height: 100%;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6.25vw;
  margin: 0 8.33vw;
}

.p-top-mv__catch {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  color: #fff;
  font-size: 6.25vw;
  font-weight: 400;
}

@-webkit-keyframes mv_bg_loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -474.07vh 0;
  }
}

@keyframes mv_bg_loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -474.07vh 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-top-mv__container {
    padding: 0 1.88rem;
    margin: 0 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-mv__container {
    padding: 0 1rem;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-top-mv__catch {
    font-size: 3.75rem;
    line-height: 1.2;
  }
}

.p-top-mv-news {
  position: absolute;
  bottom: 4.63rem;
  left: 0;
  display: block;
  width: calc(100% - 2rem);
  max-width: 26.25rem;
  background-color: #fff;
  border-radius: 4px;
  padding: 2.13rem 2rem 1.38rem;
}

.p-top-mv-news__heading01 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7.5rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  background-color: #333333;
  text-align: center;
  padding: 0.13rem 0;
}

.p-top-mv-news__heading02 {
  position: absolute;
  top: 0;
  right: -1.2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 2.4rem 0 0;
}

.p-top-mv-news__heading02::before,
.p-top-mv-news__heading02::after {
  content: "";
  position: absolute;
  display: inline-block;
  aspect-ratio: 1/1;
}

.p-top-mv-news__heading02::before {
  bottom: 0.3rem;
  right: 0.3rem;
  width: 1.6rem;
  background-color: #333333;
}

.p-top-mv-news__heading02::after {
  right: -.3rem;
  width: 1.2rem;
  border: 2px solid #333333
}

.p-top-mv-news__date {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.p-top-mv-news__title {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .p-top-mv-news {
    left: 1rem;
    bottom: 1rem;
    max-width: 420px;
    width: 80vw;
    padding: 1.6rem 1.2rem 1.2rem;
  }
}

.p-top-intro01 {
  position: relative;
  padding: 10rem 0;
}

.p-top-intro01__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 30rem;
  aspect-ratio: 480/287;
  opacity: 0.02;
}

.p-top-intro01__container {
  position: relative;
}

.p-top-intro01__side-img {
  display: none;
}

.p-top-intro01__line {
  top: 10rem;
  left: 0;
  max-width: initial;
  width: 91.67vw;
}

.p-top-intro01__line::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 8.33vw;
  display: inline-block;
  width: 2px;
  height: 8.88rem;
  background-color: #333333;
}

.p-top-intro01__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem 2.5rem;
}

.p-top-intro01__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 4.38rem 0 0;
}

.p-top-intro01__catch {
  margin: 0 0 0.8em;
}

.p-top-intro01__right {
  position: relative;
  width: 47.4vw;
  margin: -5rem -6.25vw 0 0;
}

.p-top-intro01__typo {
  position: absolute;
  top: 9.38rem;
  right: -6.25vw;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  text-stroke: 1px var(--primary-color);
  font-size: 11vw;
}

.p-top-intro01__map {
  position: relative;
  width: 100%;
  aspect-ratio: 908/1055;
}

.p-top-intro01__circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  background-color: rgba(110, 43, 255, 0.4);
  -webkit-animation: 2.6s worldMapCircle linear infinite;
  animation: 2.6s worldMapCircle linear infinite;
}

.p-top-intro01__circle span:nth-child(2) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.p-top-intro01__circle01 {
  position: absolute;
  z-index: 1;
  bottom: 27%;
  right: 21%;
  width: 27%;
  padding-top: 27%;
}

.p-top-intro01__circle02 {
  position: absolute;
  z-index: 1;
  bottom: 14%;
  left: 9%;
  width: 24%;
  padding-top: 24%;
}

@-webkit-keyframes worldMapCircle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }

  20% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

@keyframes worldMapCircle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }

  20% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

@media screen and (min-width: 1601px) {
  .p-top-intro01__side-img {
    display: block;
    position: absolute;
    width: 10.42vw;
    aspect-ratio: 200/670;
    left: -3.13vw;
    bottom: -3.13rem;
  }

  .p-top-intro01__side-img::before {
    content: "";
    position: absolute;
    top: 0.63rem;
    right: -0.63rem;
    display: block;
    width: calc(100% + 1rem);
    height: 100%;
    border: 4px solid #FF6E2B;
  }
}

@media screen and (max-width: 1440px) {
  .p-top-intro01__body {
    -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;
  }

  .p-top-intro01__typo {
    right: 0;
    left: 0;
  }

  .p-top-intro01__right {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-top-intro01__line {
    width: calc(100vw - 1.88rem);
  }

  .p-top-intro01__line::after {
    left: 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-intro01 {
    padding: 3.75rem 0;
  }

  .p-top-intro01__logo {
    width: 9.38rem;
  }

  .p-top-intro01__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-top-intro01__typo {
    top: 4rem;
    font-size: 16vw;
  }

  .p-top-intro01__left {
    padding: 1.25rem 0 0;
  }

  .p-top-intro01__right {
    width: 100%;
  }

  .p-top-intro01__line {
    width: calc(100vw - 1rem);
    top: 3.75rem;
  }

  .p-top-intro01__line::after {
    content: none;
  }
}

.p-top-intro02 {
  position: relative;
  margin: 0 0 10rem;
}

.p-top-intro02__side-img {
  display: none;
}

.p-top-intro02__line.-align_right {
  top: initial;
  bottom: 0;
  right: 0;
  max-width: initial;
  width: 91.67vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-top-intro02__line.-align_right::after {
  content: "";
  position: absolute;
  bottom: -0.94rem;
  right: 8.33vw;
  display: inline-block;
  width: 2px;
  height: 8.88rem;
  background-color: #333333;
}

.p-top-intro02__line.-align_right .c-line__square-wrap {
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
  margin-bottom: -3px;
}

.p-top-intro02__body {
  padding: 0 0 10rem;
}

.p-top-intro02__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.p-top-intro02__catch {
  margin: 0 0 3.75rem;
}

.p-top-intro02__img {
  position: relative;
  z-index: 0;
  max-width: 1120px;
  margin: -23.44vw auto 0;
}

@media screen and (min-width: 1601px) {
  .p-top-intro02__side-img {
    display: block;
    position: absolute;
    width: 7.81vw;
    aspect-ratio: 150/670;
    right: 0;
    top: -16.88rem;
  }

  .p-top-intro02__side-img::before {
    content: "";
    position: absolute;
    top: 0.63rem;
    left: -0.63rem;
    display: block;
    width: calc(100% + 1rem);
    height: 100%;
    border: 4px solid #FF6E2B;
  }
}

@media screen and (max-width: 1280px) {
  .p-top-intro02__line.-align_right {
    width: calc(100vw - 1.88rem);
  }

  .p-top-intro02__line.-align_right::after {
    right: 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-intro02 {
    padding: 0 0 3.75rem;
    margin: 0 0 3.75rem;
  }

  .p-top-intro02__catch {
    margin: 0 0 1.25rem;
  }

  .p-top-intro02__body {
    padding: 0 0 1.25rem;
  }

  .p-top-intro02__line.-align_right {
    width: calc(100vw - 1rem);
  }

  .p-top-intro02__line.-align_right::after {
    content: none;
  }
}

.p-top-gallery {
  position: relative;
  z-index: 0;
  padding: 0 0 5rem;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  margin: 0 0 7.5rem;
}

.p-top-gallery__bg {
  position: relative;
  z-index: -1;
  width: 100vw;
  height: 20rem;
  background: url(assets/img/top/gallery_bg.jpg) repeat-x 0 0/auto 100%;
  -webkit-animation: gallery_bg_loop 100s linear infinite;
  animation: gallery_bg_loop 100s linear infinite;
}

.p-top-gallery__typo {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 15rem;
  background: url(assets/img/top/gallery_typo.png) repeat-x 0 0/auto 100%;
  -webkit-animation: gallery_typo_loop 200s linear infinite;
  animation: gallery_typo_loop 200s linear infinite;
  margin: -7.5rem 0 0;
}

@-webkit-keyframes gallery_bg_loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 150rem 0;
  }
}

@keyframes gallery_bg_loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 150rem 0;
  }
}

@-webkit-keyframes gallery_typo_loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -331.5rem 0;
  }
}

@keyframes gallery_typo_loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -331.5rem 0;
  }
}

@media screen and (max-width: 768px) {
  .p-top-gallery {
    padding: 0 0 2.5rem;
    margin: 0 0 3.75rem;
  }

  .p-top-gallery__bg {
    height: 11.88rem;
  }

  .p-top-gallery__typo {
    height: 9.06rem;
    margin: -3.75rem 0 0;
  }

  @-webkit-keyframes gallery_bg_loop {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 90rem 0;
    }
  }

  @keyframes gallery_bg_loop {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 90rem 0;
    }
  }

  @-webkit-keyframes gallery_typo_loop {
    from {
      background-position: 0 0;
    }

    to {
      background-position: -198.88rem 0;
    }
  }

  @keyframes gallery_typo_loop {
    from {
      background-position: 0 0;
    }

    to {
      background-position: -198.88rem 0;
    }
  }
}

.p-top-about {
  position: relative;
  z-index: 0;
  padding: 12.5rem 0;
  margin: 0 auto 10rem 0;
}

.p-top-about__frame {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 8.33vw;
  width: calc(100% + 4px);
  height: 100%;
  border: 4px solid #FF6E2B;
}

.p-top-about__frame::before,
.p-top-about__frame::after {
  content: "";
  position: absolute;
  left: -0.75rem;
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background-color: #FF6E2B;
}

.p-top-about__frame::before {
  top: -0.75rem;
}

.p-top-about__frame::after {
  bottom: -0.75rem;
}

.p-top-about__body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7rem 9.38vw;
}

.p-top-about__catch {
  font-size: 2rem;
  font-weight: 400;
  margin: 3.75rem 0 2.5rem;
}

.p-top-about__img {
  width: 50vw;
  margin: 0 0 0 -14.58vw;
}

@media screen and (max-width: 1440px) {
  .p-top-about__body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top-about__img {
    width: 100%;
    margin: 0 1rem 0 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-top-about__container {
    padding-left: 3.75rem;
  }

  .p-top-about__frame {
    left: 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-about {
    padding: 3.75rem 0;
    margin: 0 0 3.75rem;
  }

  .p-top-about__container {
    padding-left: 3rem;
  }

  .p-top-about__frame {
    width: calc(100% + 2px);
    left: 1rem;
    border-width: 2px;
  }

  .p-top-about__frame::before,
  .p-top-about__frame::after {
    width: 1rem;
    left: -0.5rem;
  }

  .p-top-about__frame::before {
    top: -0.5rem;
  }

  .p-top-about__frame::after {
    bottom: -0.5rem;
  }

  .p-top-about__body {
    gap: 2.5rem 0;
  }

  .p-top-about__catch {
    font-size: 1.38rem;
    margin: 2.5rem 0 1.25rem;
  }
}

.p-top-message {
  position: relative;
  z-index: 0;
  overflow: visible;
}

.p-top-message__bg {
  position: absolute;
  z-index: 0;
  top: 12rem;
  left: 0;
  width: 100%;
  height: calc(100% - 12rem);
  background: url(assets/img/top/message_bg.jpg?250811) no-repeat center right/cover;
}

.p-top-message__bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  display: block;
  width: 27.08vw;
  height: 100%;
  background-color: var(--primary-color);
  mix-blend-mode: color-burn;
}

.p-top-message__logo {
  position: absolute;
  top: 13.88rem;
  right: 1.88rem;
  width: 4.13rem;
  aspect-ratio: 66/40;
}

.p-top-message__body {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 0 6.25vw;
}

.p-top-message__content {
  padding: 0 0 6.25rem;
}

.p-top-message__catch {
  font-size: 2rem;
  margin: 3.75rem 0 1rem;
}

.p-top-message__media {
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30.31vw;
}

.p-top-message__img {
  position: relative;
  z-index: -1;
  width: 90%;
}

.p-top-message__profile {
  position: absolute;
  z-index: 0;
  right: 1.88rem;
  bottom: 7.5rem;
  color: #fff;
  font-weight: 700;
}

.p-top-message__position {
  display: block;
  font-size: 0.88rem;
}

.p-top-message__name {
  display: block;
  font-size: 1.25rem;
}

@media screen and (max-width: 1440px) {
  .p-top-message {
    padding: 0 0 7.5rem;
  }

  .p-top-message__bg {
    height: 613px;
  }

  .p-top-message__bg::before {
    width: 47vw;
    height: 100%;
  }

  .p-top-message__body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top-message__content {
    padding: 0;
  }

  .p-top-message__media {
    max-width: 580px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-top-message {
    padding: 0 0 3.75rem;
    margin: 0 0 3.75rem;
  }

  .p-top-message__logo {
    width: 2.5rem;
    top: 13rem;
    right: 1rem;
  }

  .p-top-message__bg {
    height: calc(100% - 40.5rem);
  }

  .p-top-message__bg::before {
    width: 50vw;
  }

  .p-top-message__body {
    gap: 4rem 0;
    padding: 0;
  }

  .p-top-message__position {
    font-size: 0.75rem;
  }

  .p-top-message__name {
    font-size: 0.88rem;
  }

  .p-top-message__content {}

  .p-top-message__catch {
    font-size: 1.38rem;
    margin: 2.5rem 0 1.25rem;
  }
}

.p-top-voice {
  margin: 0 0 10rem;
}

@media screen and (max-width: 449px) {
  .p-top-message__bg {
    height: calc(100% - 42.3rem);
  }

  .p-top-message__profile {
    right: 0;
    bottom: 4rem;
  }

}

@media screen and (max-width: 768px) {
  .p-top-voice {
    margin: 0 0 7.5rem;
  }
}

.p-top-link {
  margin: 0 0 10.63rem;
}

.p-top-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: .5rem;
}

.p-top-link__item {
  position: relative;
  z-index: 0;
  width: calc((100% - 3rem) / 4);
  aspect-ratio: 390/558;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem 0;
  color: #fff;
  padding: 1.5rem;
}

.p-top-link__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.7;
}

.p-top-link__img {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-link__title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-top-link__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid #fff;
}

.p-top-link__desc {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  overflow: hidden;
}

.p-top-link__chevron {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 3.5rem;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 1440px) {
  .p-top-link__item {
    width: calc(50% - 0.5rem);
  }
}

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

  .p-top-link__list {
    gap: 0.5rem;
  }

  .p-top-link__item {
    gap: 1rem 0;
    padding: 0.88rem;
  }

  .p-top-link__title {
    font-size: 1.13rem;
  }

  .p-top-link__footer {
    gap: 0.5rem;
  }

  .p-top-link__desc {
    font-size: 0.75rem;
    -webkit-line-clamp: 3;
  }

  .p-top-link__chevron {
    height: 1.25rem;
  }
}

.p-top-salary {
  position: relative;
  z-index: 0;
  padding: 12.5rem 0;
}

.p-top-salary__frame {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 8.33vw;
  width: calc(100% + 4px);
  height: 100%;
  border: 4px solid #FF6E2B;
}

.p-top-salary__frame::before,
.p-top-salary__frame::after {
  content: "";
  position: absolute;
  right: -1rem;
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background-color: #FF6E2B;
}

.p-top-salary__frame::before {
  top: -1rem;
}

.p-top-salary__frame::after {
  bottom: -1rem;
}

.p-top-salary__body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem 4.17vw;
}

.p-top-salary__img {
  width: 50vw;
  margin: 0 -14.58vw 0 0;
}

.p-top-salary__catch {
  font-size: 2rem;
  font-weight: 400;
  margin: 3.75rem 0 2.5rem;
}

@media screen and (max-width: 1440px) {
  .p-top-salary__body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top-salary__img {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-top-salary__container {
    padding-right: 3.75rem;
  }

  .p-top-salary__frame {
    right: 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-salary {
    padding: 3.75rem 0;
  }

  .p-top-salary__container {
    padding-right: 3rem;
  }

  .p-top-salary__frame {
    width: calc(100% + 2px);
    right: 1rem;
    border-width: 2px;
  }

  .p-top-salary__frame::before,
  .p-top-salary__frame::after {
    width: 1rem;
    right: -0.5rem;
  }

  .p-top-salary__frame::before {
    top: -0.5rem;
  }

  .p-top-salary__frame::after {
    bottom: -0.5rem;
  }

  .p-top-salary__body {
    margin-left: 1rem;
  }

  .p-top-salary__catch {
    font-size: 1.38rem;
    margin: 2.5rem 0 1.25rem;
  }
}

.p-page-mv {
  position: relative;
  z-index: 0;
  padding: 12.5rem 0 10rem;
}

.p-page-mv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  opacity: 0.15;
}

@media screen and (max-width: 768px) {
  .p-page-mv {
    padding: 9.38rem 0 3.75rem;
  }
}

.p-page-2col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-page-2col__sidebar {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 27.08vw;
  padding: 11.25rem 7.5rem 11.25rem 3.75rem;
  margin-bottom: -1rem;
}

.p-page-2col__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 1280px) {
  .p-page-2col__sidebar {
    padding: 11.25rem 1.88rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-page-2col__sidebar {
    display: none;
  }

  .p-page-2col__main {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: 100%;
  }
}

.p-page-toc {
  position: sticky;
  z-index: 10;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  counter-reset: number 0;
  padding: 7.5rem 0 0;
}

.p-page-toc__item:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.p-page-toc__item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 0 0.5rem 0;
}

.p-page-toc__item-link::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: "Poppins", sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.p-page-toc__item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333333;
  opacity: 0;
}

.p-page-toc__item-link.is-active::before {
  color: var(--primary-color);
}

.p-page-toc__item-link.is-active::after {
  opacity: 1;
}

.p-page-sec {
  position: relative;
  background-color: #fff;
  padding: 7.5rem 0;
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.p-page-sec__line {
  width: calc(100% - 5.21vw);
  left: 0;
  top: 7.5rem;
}

.p-page-sec__line.-align_right {
  right: 0;
}

.p-page-sec__container {
  padding: 0 14vw 0 10vw;
}

.p-page-sec__img {
  position: relative;
  z-index: 0;
  width: calc(100% + 14.58vw) !important;
  margin: 0 -14.58vw 0 0;
}

.p-page-sec__img.-with_frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2.5rem;
  left: -2.5rem;
  width: 100%;
  height: 100%;
  border: 0.38rem solid var(--primary-color);
}

.p-page-sec__img.-with_bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2.5rem;
  left: -2.5rem;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
}

.p-page-sec__media-object {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -14.58vw 0 0;
}

.p-page-sec__media-object.-reverse {
  margin: 0 -6.25vw 0 -12.5vw;
}

@media screen and (max-width: 1440px) {
  .p-page-sec__media-object {
    margin: 0 !important;
  }
}

@media screen and (max-width: 1280px) {
  .p-page-sec__container {
    padding: 0 3.75rem 0 3.75rem;
  }

  .p-page-sec__line {
    width: calc(100% - 3.75rem);
  }
}

@media screen and (max-width: 768px) {
  .p-page-sec {
    padding: 3.75rem 0;
  }

  .p-page-sec__container {
    padding: 0 1rem;
  }

  .p-page-sec__line {
    top: 3.75rem;
    width: calc(100% - 1rem);
  }

  .p-page-sec__img {
    width: 100% !important;
    margin: 0 -0.94rem 0 0;
  }

  .p-page-sec__img.-with_frame::before {
    top: 0.5rem;
    left: -0.5rem;
    border: 2px solid var(--primary-color);
  }

  .p-page-sec__img.-with_bg::before {
    content: "";
    top: 0.5rem;
    left: -0.5rem;
  }
}

.p-message-mv {
  position: relative;
  z-index: 0;
  min-height: 75.78vw;
  background: url(assets/img/message/mv_bg.jpg) no-repeat bottom right/cover;
  padding: 10rem 0 7.5rem;
}

.p-message-mv::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: calc(630px + 14.58vw);
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(rgba(255, 254, 252, 0)));
  background: linear-gradient(90deg, #ffffff, rgba(255, 254, 252, 0));
}

.p-message-mv__header {
  margin-bottom: 3.5rem;
}

.p-message-mv__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem 0;
}

.p-message-mv__left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 630px;
}

.p-message-mv__catch {
  margin: 0 0 2.5rem;
}

.p-message-mv__desc {
  letter-spacing: 0.1em;
}

.p-message-mv__right {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-message-mv__profile {
  position: absolute;
  bottom: 84%;
  right: 3.13vw;
  font-weight: 700;
}

.p-message-mv__position {
  display: block;
  font-size: 0.88rem;
}

.p-message-mv__name {
  font-size: 1.25rem;
}

.p-message-mv__img {
  display: none;
}

@media screen and (max-width: 1440px) {
  .p-message-mv {
    background-position: bottom right -13.89vw;
  }

  .p-message-mv__profile {
    right: -4.17vw;
  }
}

@media screen and (max-width: 1280px) {
  .p-message-mv__profile {
    right: 0;
  }
}

@media screen and (min-width: 1025px) {
  .p-message-mv__body {
    padding-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .p-message-mv {
    background: none;
    padding: 9.38rem 0 3.75rem;
  }

  .p-message-mv::before {
    content: none;
  }

  .p-message-mv__body {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .p-message-mv__img {
    display: block;
  }

  .p-message-mv__left {
    max-width: initial;
    width: 100%;
  }

  .p-message-mv__profile {
    position: initial;
    text-align: right;
    margin: 8px 0 0;
    line-height: 1.4;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 16px);
  }

  .p-message-mv__position {
    font-size: inherit;
  }

  .p-message-mv__name {
    font-size: inherit;
  }
}

@media screen and (max-width: 768px) {
  .p-message-mv__header {
    margin-bottom: 2.5rem;
  }

  .p-message-mv__catch {
    margin: 0 0 2.5rem;
  }
}

.p-message-company {
  padding: 12.5rem 0 10rem;
}

.p-message-company__inner {
  position: relative;
}

.p-message-company__typo {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 6.25rem;
  color: #333333;
  text-stroke: none;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  opacity: 0.05;
}

.p-message-company__logo {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 240/163;
  margin: 0 auto 6.25rem;
}

.p-message-company__desc {
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .p-message-company {
    padding: 3.75rem 0;
  }

  .p-message-company__logo {
    width: 9.06rem;
    margin: 0 auto 2.5rem;
  }

  .p-message-company__typo {
    left: -1.88rem;
  }
}

.p-message-growth {
  position: relative;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#ff6e2b), to(#e53d30));
  background: linear-gradient(90deg, #ff6e2b, #e53d30);
  padding: 10rem 0;
}

.p-message-growth__typo {
  position: absolute;
  top: -1rem;
  right: -1rem;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-message-growth__body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-message-growth__catch {
  margin: 0 0 3.13rem;
}

@media screen and (max-width: 768px) {
  .p-message-growth {
    padding: 3.75rem 0;
  }

  .p-message-growth__body {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .p-message-growth__catch {
    margin: 0 0 2.5rem;
  }

  .p-message-growth__typo {
    top: -0.5rem;
  }
}

.p-message-main__sidebar {
  background-color: rgba(255, 110, 43, 0.05);
}

.p-message-interview {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.p-message-interview__question {
  position: relative;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0 0 0 2.25rem;
  margin: 0 0 0.5rem;
}

.p-message-interview__question::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background-color: var(--primary-color);
}

.p-message-interview__question:not(:first-of-type) {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .p-message-interview__question {
    padding: 0 0 0 1rem;
  }

  .p-message-interview__question::before {
    width: .75rem;
  }
}

.p-training-mv {
  background-color: rgba(var(--primary-color-rgb), 0.05);
}

.p-training-intro {
  padding: 7.5rem 0;
}

.p-training-intro__heading {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 0 0 2rem;
}

.p-training-intro__desc {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-training-intro {
    padding: 3.75rem 0;
  }

  .p-training-intro__heading {
    margin: 0 0 1.25rem;
  }

  .p-training-intro__desc {
    text-align: left;
  }
}

.p-training-main {
  position: relative;
  z-index: 0;
  padding: 15rem 0 0;
  margin: 0 0 12.5rem;
}

.p-training-main::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 57%;
  background: url(assets/img/training/main_bg.jpg) no-repeat center center/cover;
  opacity: 0.1;
}

.p-training-main__header {
  margin: 0 0 6.25rem;
}

@media screen and (max-width: 768px) {
  .p-training-main {
    padding: 3.75rem 0 0;
    margin: 0 0 7.5rem;
  }

  .p-training-main::before {
    height: 80%;
  }

  .p-training-main__header {
    margin: 0 0 2.5rem;
  }
}

.p-training-flow {
  position: relative;
  margin: 0 0 12.5rem;
}

.p-training-flow__body {
  gap: 3.75rem 10.42vw;
}

.p-training-flow__img {
  width: 37.5vw;
  margin: -3rem 0 0 -14.58vw;
  height: fit-content;
}

.p-training-flow.-reverse .p-training-flow__img {
  margin: -3rem -14.58vw 0 0;
}

@media screen and (max-width: 1440px) {
  .p-training-flow__img {
    width: 100%;
    margin: 0 !important;
    max-width: fit-content;
  }

  .p-training-flow.-reverse .p-training-flow__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-training-flow__body {
    gap: 2.5rem 0;
  }

  .p-training-flow:not(:last-of-type) {
    margin-bottom: 3.75rem;
  }
}

.p-training-jobs {
  position: relative;
  z-index: 0;
  padding: 10rem 0;
}

.p-training-jobs::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 8.33vw);
  height: 100%;
  background-color: #fff;
}

.p-training-jobs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem 6.25vw;
}

.p-training-jobs__left {
  width: 28.75rem;
}

.p-training-jobs__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  border-top: 0.25rem solid #333333;
}

.p-training-jobs__right::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0;
  display: inline-block;
  width: 5.5rem;
  height: 0.25rem;
  background-color: var(--primary-color);
}

.p-training-jobs__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.88rem 3rem 1.88rem 1.88rem;
  border-bottom: 0.25rem solid #333333;
}

.p-training-jobs__link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  display: inline-block;
  width: 5.5rem;
  height: 0.25rem;
  background-color: var(--primary-color);
}

.p-training-jobs__title {
  margin: 0;
}

.p-training-jobs__title .c-heading__main-title {
  font-family: "Poppins", sans-serif;
}

.p-training-jobs__chevron {
  height: 2.13rem;
  aspect-ratio: 1/1;
  color: #333333;
}

@media screen and (max-width: 1440px) {
  .p-training-jobs__body {
    padding-left: 0;
  }

  .p-training-jobs__link {
    padding: 1.88rem 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-training-jobs::before {
    width: calc(100% - 1.88rem);
  }
}

@media screen and (max-width: 1024px) {
  .p-training-jobs::before {
    width: 100%;
  }

  .p-training-jobs__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 1.88rem;
  }

  .p-training-jobs__left {
    width: 100%;
  }

  .p-training-jobs__right {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-training-jobs {
    padding: 3.75rem 0;
  }

  .p-training-jobs__body {
    gap: 2.5rem 0;
    padding: 0 1rem;
  }

  .p-training-jobs__link {
    padding: 0.63rem 1.25rem;
  }
}

.p-training-faq {
  padding: 10rem 0;
}

.p-training-faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem 12.5vw;
  padding: 0 0 0 6.25vw;
}

.p-training-faq__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 1280px) {
  .p-training-faq__body {
    padding: 0;
    gap: 3.75rem 3.75rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-training-faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-training-faq {
    padding: 3.75rem 0;
    margin: 0 0 3.75rem;
  }

  .p-training-faq__body {
    gap: 2.5rem 0;
  }
}

.p-training-recruit__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 6.25rem;
}

.p-training-recruit__body {
  position: relative;
  padding-bottom: 8.44rem;
  margin-bottom: 7.5rem;
}

.p-training-recruit__body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% - 18.13rem);
  background-color: var(--primary-color);
  opacity: 0.05;
  z-index: -1;
}

.p-training-recruit__body .c-square-list,
.p-training-recruit__body .c-dot-list {
  margin: 2rem 0;
}

.p-training-recruit__body .c-twotone-heading {
  margin: 4.06rem 0 2rem;
}

.p-training-recruit__img {
  position: relative;
  margin: 0 0 7.5rem;
}

.p-training-recruit__img::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: block;
  width: 100%;
  height: 100%;
  border: 0.25rem solid var(--primary-color);
}

.p-training-recruit__separator {
  border-bottom: 0.25rem dotted #333333;
  margin: 5rem 0;
}

.p-training-recruit__block:not(:last-of-type) {
  margin-bottom: 10rem;
}

@media screen and (max-width: 1024px) {
  .p-training-recruit__body {
    padding: 0 3.75rem 3.75rem;
    margin: 0 0 7.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-training-recruit__header {
    margin: 0 0 2.5rem;
  }

  .p-training-recruit__body {
    padding: 0 1rem 3.75rem;
    margin: 0 0 3.75rem;
  }

  .p-training-recruit__body::before {
    height: calc(100% - 3.75rem);
  }

  .p-training-recruit__body .c-square-list,
  .p-training-recruit__body .c-dot-list {
    margin: 1.25rem 0;
  }

  .p-training-recruit__body .c-twotone-heading {
    margin: 2.5rem 0 1.25rem;
  }

  .p-training-recruit__img {
    margin: 0 0 2.5rem;
  }

  .p-training-recruit__img::before {
    top: 0.5rem;
    left: 0.5rem;
    border-width: 2px;
  }

  .p-training-recruit__separator {
    border-bottom-width: 2px;
    margin: 2.5rem 0;
  }

  .p-training-recruit__block:not(:last-of-type) {
    margin-bottom: 3.75rem;
  }
}

/*lightbox調整*/
.about .lb-outerContainer {
  height: auto !important;
  max-height: none !important;
}

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

.p-about-about__logo {
  position: absolute;
  top: 1.88rem;
  right: 3.75rem;
  width: 21.25rem;
  aspect-ratio: 340/203;
}

.p-about-about01 {
  padding-bottom: 15rem;
}

.p-about-about01__img {
  margin-top: 4rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .p-about-about01 {
    padding-bottom: 3.75rem;
  }

  .p-about-about01__img {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .p-about-about__logo {
    right: 1rem;
    top: 1rem;
    width: 50vw;

  }
}

.p-about-feature {
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 10rem 0 11.25rem;
  margin: -7.5rem 8.33vw 7.5rem 0;
}

.p-about-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -27.08vw;
  display: block;
  width: calc(100% + 27.08vw);
  height: 100%;
  background: url(assets/img/about/feature_bg.jpg) no-repeat center left/cover;
}

.p-about-feature__container {
  padding: 0 6.25vw 0 0;
}

.p-about-feature__typo {
  position: absolute;
  top: 10rem;
  left: -28.13vw;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-about-feature__header {
  letter-spacing: -0.05em;
  margin: 0 0 3.75rem;
}

.p-about-feature__company-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.25rem;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.p-about-feature__company-name::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block;
  width: 16.75rem;
  height: 1px;
  background-color: #fff;
}

.p-about-feature__heading {
  display: block;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 0 0 0 2.88rem;
}

.p-about-feature__heading .-lg {
  font-size: 2em;
}

.p-about-feature__item {
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3rem;
}

.p-about-feature__item:not(:last-of-type) {
  margin-bottom: 2rem;
}

.p-about-feature__item:nth-of-type(2) {
  margin-left: 5.21vw;
}

.p-about-feature__item:nth-of-type(3) {
  margin-left: 10.42vw;
}

.p-about-feature__ico {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 13.5rem;
  aspect-ratio: 1/1;
  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;
  border-radius: 50%;
  border: 2px solid #fff;
}

.p-about-feature__ico img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-about-feature__num {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.p-about-feature__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

@media screen and (max-width: 1280px) {
  .p-about-feature {
    margin: -7.5rem 1.88rem 7.5rem 0;
  }

  .p-about-feature::before {
    width: 100vw;
  }

  .p-about-feature__container {
    padding: 0 1.88rem 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .p-about-feature {
    margin: 0;
  }

  .p-about-feature::before {
    left: 0;
  }

  .p-about-feature__container {
    padding: 0 3.75rem;
  }

  .p-about-feature__typo {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-about-feature {
    padding: 3.75rem 0;
  }

  .p-about-feature__container {
    padding: 0 1rem;
  }

  .p-about-feature__company-name {
    font-size: 1.25rem;
  }

  .p-about-feature__heading {
    font-size: 2.25rem;
    padding: 0;
  }

  .p-about-feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-about-feature__item:nth-of-type(2) {
    margin-left: 0;
  }

  .p-about-feature__item:nth-of-type(3) {
    margin-left: 0;
  }

  .p-about-feature__ico {
    width: 8.13rem;
  }

  .p-about-feature__num {
    font-size: 0.88rem;
  }

  .p-about-feature__title {
    font-size: 1.13rem;
  }
}

.p-about-about02 {
  padding-bottom: 0;
  margin: 0 0 12.5rem;
}

.p-about-about02__img {
  margin-top: 5rem;
}

.p-about-about02__img img {
  margin-bottom: -5rem;
}

@media screen and (max-width: 768px) {
  .p-about-about02 {
    margin: 0 0 7.5rem;
  }

  .p-about-about02__img {
    margin-top: 2.5rem;
  }

  .p-about-about02__img img {
    margin-bottom: -2.5rem;
  }
}

.p-about-about03 {
  position: relative;
  z-index: 1;
  padding-bottom: 13.13rem;
  margin: 0 0 -13.13rem;
}

.p-about-about03__typo {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  color: var(--primary-color);
  text-stroke: none;
  opacity: 1;
  white-space: nowrap;
  font-size: 10vw;
}

@media screen and (max-width: 1024px) {

  .p-about-about03__typo {
    left: 0;
    font-size: 13vw;
  }
}

@media screen and (max-width: 768px) {
  .p-about-about03 {
    padding-bottom: 6.25rem;
    margin: 0 0 -3.75rem;
  }
}

@media screen and (max-width: 480px) {
  .p-about-about03 {
    padding-bottom: 3.75rem;
  }
}

.p-about-history {
  position: relative;
  z-index: 0;
  padding: 13.13rem 0 10rem;
}

.p-about-history::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -27.08vw;
  display: block;
  width: calc(100% + 27.08vw);
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.03;
}

.p-about-history__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-about-history__block:not(:last-of-type) .p-about-history__content {
  padding-bottom: 6rem;
}

.p-about-history__block:first-of-type .p-about-history__year {
  padding-top: 6rem;
}

.p-about-history__block:first-of-type .p-about-history__content {
  padding-top: 6rem;
}

.p-about-history__year {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 9.38rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin: -0.25em 0 0;
}

.p-about-history__content {
  position: relative;
}

.p-about-history__content::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #333333;
}

.p-about-history__item {
  position: relative;
  padding: 0 0 0 2.5rem;
}

.p-about-history__item:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.p-about-history__item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: -0.25rem;
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.p-about-history__item::after {
  content: "";
  position: absolute;
  top: 0.63rem;
  left: -1px;
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .p-about-history {
    padding: 3.75rem 0;
  }

  .p-about-history__block:not(:last-of-type) .p-about-history__content {
    padding-bottom: 2.5rem;
  }

  .p-about-history__block:first-of-type .p-about-history__year {
    padding-top: 3.75rem;
  }

  .p-about-history__block:first-of-type .p-about-history__content {
    padding-top: 3.75rem;
  }

  .p-about-history__year {
    width: 5.63rem;
    font-size: 1.5rem;
    margin: 0;
  }

  .p-about-history__item {
    font-size: 0.88rem;
  }

  .p-about-history__item:not(:last-of-type) {
    margin-bottom: 0.88rem;
  }
}

.p-about-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: -5rem 0 7.5rem;
}

@media screen and (max-width: 768px) {
  .p-about-gallery {
    margin: 0 0 3.75rem;
    gap: .3rem;
  }
}

.p-about-about04 {
  position: relative;
  z-index: 1;
  padding-bottom: 10rem;
}

.p-about-about04__table th {
  position: relative;
  width: 36%;
  font-weight: 400;
  border-bottom-color: #cccccc;
  padding-right: 1rem;
}

.p-about-about04__table th::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .p-about-about04 {
    padding-bottom: 3.75rem;
  }
}

.p-about-access {
  position: relative;
  z-index: 0;
  background-color: #fff;
  margin: 0 0 7.5rem;
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.p-about-access__map {
  position: relative;
  aspect-ratio: 1400/647;
  background-color: #e4e4e4;
}

.p-about-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-about-access__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.p-about-access__title {
  margin: 0 0 1em;
}

.p-about-access__btn {
  min-width: initial;
  width: 100%;
  max-width: 16.25rem;
  padding: 0 2rem;
}

.p-about-access__btn-ico {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1/1;
}

.p-about-access__btn-ico::before,
.p-about-access__btn-ico::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1rem;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  background-color: #fff;
}

.p-about-access__btn-ico::before {
  left: 0;
  bottom: 0;
}

.p-about-access__btn-ico::after {
  right: 0;
  top: 0;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .p-about-access {
    margin: 0 0 3.75rem;
  }

  .p-about-access__map {
    aspect-ratio: 3/2;
  }

  .p-about-access__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-about-shop {
  position: relative;
}

.p-about-shop__heading {
  position: absolute;
  top: 0;
  left: -2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17.5rem;
  aspect-ratio: 280/80;
}

.p-about-shop__block {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem 5rem;
}

.p-about-shop__block:not(:last-of-type) {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #999999;
}

.p-about-shop__map {
  position: relative;
  width: 48%;
  aspect-ratio: 480/360;
  background-color: #e4e4e4;
}

.p-about-shop__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-about-shop__title,
.p-about-shop__address,
.p-about-shop__tel,
.p-about-shop__desc {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 1em;
}
.p-about-shop__title{
  font-weight: 600;
	font-size: 1.2rem;
}
.p-about-shop__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.63rem;
}

.p-about-shop__gallery-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 140/120;
}

@media screen and (max-width: 1440px) {
  .p-about-shop__map {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .p-about-shop__heading {
    left: 3.75rem;
  }

  .p-about-shop__block {
    gap: 2.5rem 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-about-shop__heading {
    width: 10rem;
    left: 1rem;
  }
  .p-about-shop__block {
    gap: 1rem;
}
}
.p-interview-mv {
  position: relative;
  z-index: 0;
  padding: 12.5rem 0 0;
}

.p-interview-mv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}

.p-interview-mv__container {
  height: 100%;
}

.p-interview-mv__body {
  height: 100%;
  display: grid;
  grid-template-areas: "content img-wrap" "profile img-wrap";
  grid-template-columns: 1fr 30.38rem;
  grid-template-rows: 1fr -webkit-min-content;
  grid-template-rows: 1fr min-content;
  gap: 5rem 0;
}

.p-interview-mv__content {
  grid-area: content;
  align-self: end;
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem 0;
}

.p-interview-mv__img-wrap {
  grid-area: img-wrap;
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.p-interview-mv__img {
  width: 61%;
}

.p-interview-mv__img img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-interview-mv__job {
  position: absolute;
  top: 8.75rem;
  right: 1.25rem;
  width: auto;
  height: 8.25rem;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

@media screen and (max-width: 768px) {
  .p-interview-mv {
    padding: 9.38rem 0 0;
  }

  .p-interview-mv__body {
    grid-template-areas: "content content" "profile img-wrap" ". img-wrap";
    grid-template-columns: 1fr 9.4rem;
    gap: 3.75rem 0;
  }

  .p-interview-mv__img {
    width: 100%;
    margin: -2.5rem 0 0;
  }

  .p-interview-mv__job {
    display: none;
  }
}

.p-interview-profile {
  grid-area: profile;
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 4rem 0;
  margin: 0 0 7.5rem;
}

.p-interview-profile::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -7.5rem;
  display: block;
  width: calc(100% + 30.38rem + 7.5rem + 23.75rem);
  height: 100%;
  background: linear-gradient(135deg, #f79e62, #fe5196);
}

.p-interview-profile--sales::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -7.5rem;
  display: block;
  width: calc(100% + 30.38rem + 7.5rem + 23.75rem);
  height: 100%;
  background: linear-gradient(135deg, #92fe9d, #00c9ff);
}

.p-interview-profile__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.p-interview-profile__heading::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2px;
  background-color: #fff;
}

.p-interview-profile__info {
  padding: 0 0 0 6rem;
}

@media screen and (max-width: 768px) {
  .p-interview-profile {
    padding: 2.5rem 0;
    margin: 0;
  }

  .p-interview-profile__heading {
    font-size: 1.5rem;
  }

  .p-interview-profile__heading::before {
    width: 1em;
    height: 1px;
  }

  .p-interview-profile__info {
    padding: 0 0 0 2.5rem;
  }
}

.p-interview-question {
  position: relative;
  z-index: 0;
  padding: 7.5rem 0 20.63rem;
}

.p-interview-question::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  display: block;
  width: calc(100% - 8.33vw);
  height: 100%;
  background-color: #fff;
}

.p-interview-question__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem 6.25vw;
  padding: 0 0 0 6.25vw;
}

.p-interview-question__list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-interview-question__item {
  max-width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3rem;
}

.p-interview-question__item:not(:last-of-type) {
  margin-bottom: 5.38rem;
}

.p-interview-question__item:nth-of-type(2) {
  margin-left: 5.21vw;
}

.p-interview-question__item:nth-of-type(3) {
  margin-left: 10.42vw;
}

.p-interview-question__ico {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 13.5rem;
  aspect-ratio: 1/1;
  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;
  padding: 3.75rem;
  border-radius: 50%;
  border: 2px solid #fff;
}

.p-interview-question__ico img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-interview-question__num {
  position: relative;
  z-index: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  color: var(--primary-color);
  font-size: 6.25rem;
  font-weight: 400;
}

.p-interview-question__num::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0.7em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 1.6em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.05;
}

.p-interview-question__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1em;
}

.p-interview-question__desc {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 500;
}

@media screen and (max-width: 1280px) {
  .p-interview-question::before {
    width: calc(100% - 1.88rem);
  }

  .p-interview-question__body {
    padding: 0 0 6.25vw 1.88rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-interview-question::before {
    width: calc(100% - 1.5rem);
  }

  .p-interview-question__container {
    padding-left: 3rem;
  }

  .p-interview-question__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

}

@media screen and (max-width: 768px) {
  .p-interview-question {
    padding: 3.75rem 0 10.75rem;
  }

  .p-interview-question__body {
    gap: 2.5rem 0;
  }

  .p-interview-question__item {
    -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;
  }

  .p-interview-question__item:not(:last-of-type) {
    margin-bottom: 2rem;
  }

  .p-interview-question__item:nth-of-type(2) {
    margin-left: 0;
  }

  .p-interview-question__item:nth-of-type(3) {
    margin-left: 0;
  }

  .p-interview-question__num {
    font-size: 2.5rem;
  }

  .p-interview-question__title {
    font-size: 1.13rem;
    margin: 0 0 0.5em;
  }

  .p-interview-question__desc {
    font-size: 0.88rem;
  }
}

.p-interview-main {
  position: relative;
  z-index: 1;
}

.p-interview-main__sidebar {
  background-color: rgba(255, 110, 43, 0.05);
}

.p-interview-main__header {
  background: url(assets/img/interview/main-header_bg.png?250811) repeat top left/116rem 19.5rem;
  border-right: 4rem solid var(--primary-color);
  padding: 5.31rem 8.33vw;
  margin: -11.25rem 0 0;
}

.p-interview-main__typo {
  color: #333333;
  opacity: 1;
  font-size: 6rem;
}

.p-interview-main__typo {
  color: #333333;
  opacity: 1;
  font-size: clamp(5rem, 11vw, 12.5rem);
}

@media screen and (max-width: 1280px) {
  .p-interview-main__header {
    padding: 5.31rem 1.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-interview-main__header {
    padding: 1.25rem 1rem;
    margin: -5.25rem 0 0;
    border-right-width: 0.63rem;
    background-size: cover;
  }
}

.p-interview-story {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.p-interview-challenge {
  background: url(assets/img/interview/challenge_bg.png) no-repeat top center/101% 100%;
  background-size: cover;
}
.p-interview-blank{
  height: 2.5rem;
}
.p-feature-mv {
  position: relative;
  height: 100lvh;
  padding: 13.75rem 0 0;
}

.p-feature-mv__img {
  width: 100%;
  max-width: 50rem;
  aspect-ratio: 800/320;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-feature-mv {
    height: auto;
    padding: 9.38rem 0 3.75rem;
  }
}

.p-feature-intro {
  position: relative;
  margin: -11.88rem 0 15rem;
}

.p-feature-intro__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem 1.25rem;
}

.p-feature-intro__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.63rem 0;
  width: 20.83vw;
}

.p-feature-intro__img {
  width: 100%;
  aspect-ratio: 400/320;
}

.p-feature-intro__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-feature-intro__catch {
  text-align: center;
  margin: 0 0 0.8em;
}

.p-feature-intro__desc {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 3;
}

@media screen and (min-width: 1601px) {
  .p-feature-intro__container {
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 1440px) {
  .p-feature-intro__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3.75rem 0.63rem;
  }

  .p-feature-intro__img-wrap {
    width: calc(50% - 0.38rem);
  }

  .p-feature-intro__img-wrap01 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .p-feature-intro__img-wrap02 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-feature-intro__body {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .p-feature-intro {
    margin: 0 0 7.5rem;
  }

  .p-feature-intro__container {
    gap: 2.5rem 0.63rem;
  }

  .p-feature-intro__desc {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-feature-sec01 {
  margin: 0 0 7.5rem;
}

.p-feature-sec01__img {
  width: 50vw;
  margin: 0 0 0 -14.58vw;
}

@media screen and (max-width: 1440px) {
  .p-feature-sec01__img {
    width: 100%;
    margin: 0;
  }
}

.p-feature-sec02 {
  margin: 0 0 15rem;
}

.p-feature-sec02__heading {
  position: relative;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  background-color: #333333;
  border-right: 0.5rem solid var(--primary-color);
  padding: 0.5em 3em;
  margin: 0 8.33vw 2em;
}

.p-feature-sec02__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -8.33vw;
  display: inline-block;
  width: 12.5vw;
  height: 2px;
  background-color: var(--primary-color);
}

.p-feature-sec02__right {
  margin: 0;
}

@media screen and (max-width: 1440px) {
  .p-feature-sec02__left {
    padding: 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-feature-sec02__heading {
    margin: 0 1.88rem 2em;
  }

  .p-feature-sec02__heading::before {
    left: -1.88rem;
    width: 6.88rem;
  }
}

@media screen and (max-width: 768px) {
  .p-feature-sec02 {
    margin: 0 0 3.75rem;
  }

  .p-feature-sec02__container {
    padding: 0 1rem;
  }

  .p-feature-sec02__heading {
    font-size: 1.5rem;
    padding: 0.5em 1em;
    margin: 0 1rem 2em;
  }

  .p-feature-sec02__heading::before {
    left: -1rem;
    width: 1.88rem;
  }
}

.p-feature-nav {
  position: relative;
  z-index: 0;
  padding: 13.13rem 0 0;
  margin: 0 0 24.38rem;
}

.p-feature-nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 85%;
  background: url(assets/img/feature/main_bg.jpg) no-repeat center center/cover;
  opacity: 0.1;
}

.p-feature-nav__header {
  margin: 0 0 6.25rem;
}

.p-feature-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.25rem;
}

.p-feature-nav__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  .p-feature-nav {
    padding: 3.75rem 0 0;
    margin: 0 0 7.5rem;
  }

  .p-feature-nav__header {
    margin: 0 0 2.5rem;
  }
}

.p-feature-merit__body {
  gap: 3.75rem 10.42vw;
}

.p-feature-merit__img {
  width: 37.5vw;
  margin: 0 0 0 -14.58vw;
}

.p-feature-merit:not(:last-of-type) {
  margin-bottom: 12.5rem;
}

.p-feature-merit.-reverse .p-feature-merit__img {
  margin: 0 -14.58vw 0 0;
}

@media screen and (max-width: 1440px) {
  .p-feature-merit__img {
    width: 100%;
    margin: 0 !important;
  }

  .p-feature-merit.-reverse .p-feature-merit__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-feature-merit__body {
    gap: 2.5rem 0;
  }

  .p-feature-merit:not(:last-of-type) {
    margin-bottom: 3.75rem;
  }
}

.p-feature-merit03 {
  margin: 0 0 12.5rem;
}

@media screen and (max-width: 768px) {
  .p-feature-merit03 {
    margin: 0 0 3.75rem;
  }
}

.p-feature-footer {
  width: 100%;
  aspect-ratio: 1920/440;
  margin: 1rem 0 -10rem;
}

.p-feature-footer__img {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-feature-footer {
    aspect-ratio: 3/2;
    margin: 1rem 0 -3.75rem;
  }
}

.p-access__inner {
  margin-top: -120px;
  padding-top: 120px;
}

.p-access__inner:not(:last-child) {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  
.p-access__inner:not(:last-child) {
  margin-bottom: 120px;
}
@m
}

.p-reserve-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 6.25rem;
}

.p-reserve-intro__desc {
  text-align: center;
}

.p-reserve-step {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-reserve-step__circle {
  position: relative;
  width: clamp(4rem, 24vw, 7.5rem);
  height: clamp(4rem, 24vw, 7.5rem);
  border-radius: 100vh;
  background: #cccccc;
}

.p-reserve-step__circle::after {
  content: '';
  display: block;
  width: 90%;
  height: 90%;
  border-radius: 100vh;
  border: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-reserve-step__circle.-active {
  background: var(--primary-color);
}

.p-reserve-step__desc {
  font-size: 92%;
  white-space: nowrap;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-reserve-step__arrow {
  display: inline-block;
  vertical-align: middle;
  color: #cccccc;
  line-height: 1;
  position: relative;
  width: .5em;
  height: .5em;
  transform: translateX(-25%) rotate(45deg);
}

.p-reserve-step__arrow::after,
.p-reserve-step__arrow::before {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.p-reserve-step__arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.p-reserve-step__arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

@media screen and (max-width: 768px) {
  .p-reserve-header {
    margin: 0 0 2.5rem;
  }
}



.p-reserve-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  margin-top: clamp(4rem, 16vw, 8rem);
}

.smf-item__col--label {
  display: flex;
  gap: .75rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.smf-item__description {
  background: var(--primary-color);
  font-size: .75rem;
  border-radius: 100vh;
  color: #ffffff;
  line-height: unset;
  padding: 2px 10px;
  margin-top: 1px;
}

.smf-text-control {
  display: flex;
  position: relative;
  width: fit-content;
}
.smf-radioes-control{
  width: fit-content;
}
.smf-radioes-control__control{
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.smf-radio-control{
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.smf-radio-control__control {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: #FEF8F4;
  border: solid 1px #cccccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 100vh;
}

.smf-radio-control__control:before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: transparent;
  border-radius: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: .2s;
}
.smf-radio-control__control:checked:before {
  background: var(--primary-color);
}

.smf-item__label__text,
.smf-radio-control__label {
  letter-spacing: .1em;
}

.smf-text-control__control {
  width: 100%;
  max-width: 20rem;
  height: 3rem;
  background: #FEF8F4;
  border: solid 1px #cccccc;
  padding-inline: 1rem;
}

.smf-text-control__control.-lg {
  max-width: 40rem;
}

.smf-text-control .arrow {
  width: 34px;
  height: 100%;
  border: solid 1px #cccccc;
  background: var(--primary-color);
  position: absolute;
  right: 0;
}

.smf-text-control .arrow::after {
  content: '';
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: url(assets/img/cmn/arrow-ico-bottom_wh.svg) no-repeat;
}

.smf-control-description {
  color: #cccccc;
  font-size: .88rem;
  margin-top: .25rem;
}

.smf-textarea-control__control {
  width: 100%;
  max-width: 40rem;
  height: 20rem;
  background: #FEF8F4;
  border: solid 1px #cccccc;
  padding: 1rem;
}

.smf-button-control{
  margin-top: 2.5rem;
  width: 15rem;
    height: 3.5rem;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.31rem 0;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: var(--primary-color);
    border-radius: 4px;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    margin-inline: auto;
}


.p-salary-beforeAfter__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-inline: auto;
}
.p-salary-beforeAfter__imgBox{
  display: grid;
  gap: 2rem;
  margin-inline: auto;
}
.p-salary-beforeAfter__imgBox img{
  height: fit-content;
  max-width: 360px;
}

.p-salary-beforeAfter__alert{
  color: #fff;
  background: #e53d30;
  font-weight: bold;
  font-size: 1.4rem;
  width: fit-content;
  padding: .2rem 1.5rem;
  margin-inline: auto;
  margin-block: 2rem .5rem;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
.p-salary-beforeAfter__grid{
  grid-template-columns: 1fr;
  gap: 3rem;
}
.p-salary-beforeAfter__alert{
  padding: .2rem .75rem;
}
}

/* adjustment */
.u-display--sm {
  display: none;
}

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

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

@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none;
  }
}

.u-color--primary {
  color: var(--primary-color);
}

.u-color--red {
  color: #e53d30;
}

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

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

.u-mgB-64{
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mgB-64{
  margin-bottom: 2rem;
}
}