:root {
  --color-bg: #f2f3f3;
  --color-primary: #004896;
  --color-text: #1c1c1c;
  --color-text-body: #242629;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-accent: #86b9d3;
  --color-gray: #6d7279;
  --color-btn: #202020;
  --color-footer-bg: #111111;
  --color-article-bg: #85a3b8;
  --font-serif: "Instrument Serif", serif;
  --font-sans-jp: "Noto Sans JP", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --layout-sp-breakpoint: 750;
  --layout-sp-viewport-width: 375;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 94px;
}
@media screen and (max-width: 750px) {
  html {
    scroll-padding-top: 80px;
  }
}
html.is-menu-open {
  overflow: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans-jp);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  body {
    width: 1200px;
    max-width: none;
  }
}
body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open::before {
  content: "";
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}

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

ul {
  list-style: none;
}

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

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

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

.c-btn, .c-btn--m {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 200px;
  height: 50px;
  padding: 0 40px 0 19px;
  background-color: var(--color-btn);
  border-radius: 6px;
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  border: solid 1px var(--color-btn);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.c-btn::after, .c-btn--m::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 7px;
  background-color: var(--color-white);
  -webkit-clip-path: polygon(0 35%, 62% 35%, 62% 0%, 100% 50%, 62% 100%, 62% 65%, 0 65%);
          clip-path: polygon(0 35%, 62% 35%, 62% 0%, 100% 50%, 62% 100%, 62% 65%, 0 65%);
}
.c-btn:hover, .c-btn--m:hover {
  background-color: var(--color-white);
  color: var(--color-btn);
  border-color: #000;
}
.c-btn:hover::after, .c-btn--m:hover::after {
  background-color: var(--color-btn);
}
@media screen and (max-width: 750px) {
  .c-btn, .c-btn--m {
    font-size: 16px;
  }
}

.c-btn--m {
  padding: 0 80px 0 40px;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .c-btn--m {
    width: 268px;
    height: auto;
    white-space: normal;
    padding: 10px 40px 10px 19px;
    margin-left: -5px !important;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  width: 100%;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.l-header.is-scrolled {
  background-color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .l-header {
    background-color: var(--color-white);
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 94px;
}
@media screen and (max-width: 750px) {
  .l-header__inner {
    height: 80px;
  }
}

.l-header__logo {
  background-color: var(--color-white);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 34px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .l-header__logo {
    padding: 0 24px;
    background-color: transparent;
  }
}

.l-header__logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
@media screen and (max-width: 750px) {
  .l-header__logo-link {
    gap: 18px;
  }
}

.l-header__logo-pac {
  width: 119px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .l-header__logo-pac {
    width: 84px;
  }
}

.l-header__logo-sep {
  display: block;
  width: 1px;
  height: 62px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .l-header__logo-sep {
    height: 44px;
  }
}

.l-header__logo-forbes {
  width: 95px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .l-header__logo-forbes {
    width: 67px;
  }
}

.l-header__nav {
  padding-right: 41px;
}
@media screen and (max-width: 750px) {
  .l-header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    padding-right: 0;
    background-color: var(--color-white);
    z-index: 101;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-header__nav[aria-hidden=false] {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 750px) {
  .l-header__nav-list {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 29px;
    padding: 34px 33px 45px;
  }
}

.l-header__nav-link {
  font-family: var(--font-lato);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  color: var(--color-text);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-header__nav-link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 750px) {
  .l-header__nav-link {
    font-size: 20px;
  }
}

.l-header__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 750px) {
  .l-header__menu-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header__menu-btn[aria-expanded=true] .l-header__menu-btn-bar {
  background-color: transparent;
}
.l-header__menu-btn[aria-expanded=true] .l-header__menu-btn-bar::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__menu-btn[aria-expanded=true] .l-header__menu-btn-bar::after {
  top: -2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-header__menu-btn-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.l-header__menu-btn-bar::before, .l-header__menu-btn-bar::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  position: relative;
  -webkit-transition: top 0.2s ease, -webkit-transform 0.2s ease;
  transition: top 0.2s ease, -webkit-transform 0.2s ease;
  transition: top 0.2s ease, transform 0.2s ease;
  transition: top 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.l-header__menu-btn-bar::before {
  top: -8px;
}
.l-header__menu-btn-bar::after {
  top: 6px;
}

.l-footer {
  background-color: var(--color-footer-bg);
}

.l-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 61px;
  height: 250px;
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    height: 270px;
    padding-top: 52px;
  }
}

.l-footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media screen and (max-width: 750px) {
  .l-footer__sns {
    gap: 30px;
  }
}

.l-footer__sns-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-footer__sns-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-footer__sns-link:hover {
  opacity: 0.7;
}

.l-footer__logo {
  margin-top: 35px;
}
@media screen and (max-width: 750px) {
  .l-footer__logo {
    margin-top: 40px;
  }
}
.l-footer__logo img {
  width: 135px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .l-footer__logo img {
    width: 122px;
  }
}

.l-footer__copyright {
  margin-top: 28px;
}
.l-footer__copyright small {
  display: block;
  font-family: var(--font-sans-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #666666;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .l-footer__copyright small {
    font-size: 10px;
  }
}

@-webkit-keyframes heroLineReveal {
  0% {
    -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
            clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 0 -20%, 120% -20%, 120% 100%);
            clip-path: polygon(0 100%, 0 -20%, 120% -20%, 120% 100%);
  }
}

@keyframes heroLineReveal {
  0% {
    -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
            clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 0 -20%, 120% -20%, 120% 100%);
            clip-path: polygon(0 100%, 0 -20%, 120% -20%, 120% 100%);
  }
}
@-webkit-keyframes heroRectReveal {
  0% {
    opacity: 0;
    -webkit-transform: translate(-24px, 24px) scale(0.72);
            transform: translate(-24px, 24px) scale(0.72);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@keyframes heroRectReveal {
  0% {
    opacity: 0;
    -webkit-transform: translate(-24px, 24px) scale(0.72);
            transform: translate(-24px, 24px) scale(0.72);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@-webkit-keyframes heroTextFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes heroTextFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes aboutBgReveal {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes aboutBgReveal {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes aboutTextFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes aboutTextFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-hero {
  margin: 0 auto;
  position: relative;
  width: 1440px;
  height: 1030px;
  background-color: var(--color-bg);
}
@media screen and (max-width: 750px) {
  .p-hero {
    height: 568px;
  }
}

.p-hero__rects {
  position: absolute;
  left: 181px;
  top: -53px;
  height: 998px;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .p-hero__rects {
    left: -424px;
    top: 113px;
    height: 273px;
    overflow: visible;
  }
}
.p-hero__rects rect {
  opacity: 0;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: heroRectReveal 1.44s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: heroRectReveal 1.44s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: var(--hero-rect-delay, 1.1s);
          animation-delay: var(--hero-rect-delay, 1.1s);
}

.p-hero__line {
  position: absolute;
  left: -211px;
  top: 0px;
  width: 1651px;
  height: auto;
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  -webkit-animation: heroLineReveal 2.5s cubic-bezier(0.76, 0, 0.24, 1) 0.24s forwards;
          animation: heroLineReveal 2.5s cubic-bezier(0.76, 0, 0.24, 1) 0.24s forwards;
}
@media screen and (min-width: 1440px) {
  .p-hero__line {
    left: calc(720px - 64.6527777778vw);
    width: 114.6527777778vw;
  }
}
@media screen and (max-width: 750px) {
  .p-hero__line {
    left: -148px;
    top: 73px;
    width: 658px;
    height: 557px;
  }
}

.p-hero__body {
  position: absolute;
  left: 52px;
  top: 292px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .p-hero__body {
    left: 24px;
    top: 307px;
  }
}

.p-hero__title {
  font-family: var(--font-serif);
  font-size: 280px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text);
  opacity: 0;
  -webkit-animation: heroTextFadeIn 1.8s ease 3s forwards;
          animation: heroTextFadeIn 1.8s ease 3s forwards;
}
@media screen and (max-width: 750px) {
  .p-hero__title {
    font-size: 86px;
  }
}

.p-hero__subtitle {
  position: absolute;
  left: 654px;
  top: 397px;
  font-family: var(--font-sans-jp);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--color-black);
  white-space: nowrap;
  opacity: 0;
  -webkit-animation: heroTextFadeIn 1.8s ease 3.5s forwards;
          animation: heroTextFadeIn 1.8s ease 3.5s forwards;
}
@media screen and (max-width: 750px) {
  .p-hero__subtitle {
    font-size: 12px;
    left: 192px;
    top: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-hero__line {
    -webkit-animation: none;
            animation: none;
    -webkit-clip-path: polygon(0 100%, 0 -20%, 120% -20%, 120% 100%);
            clip-path: polygon(0 100%, 0 -20%, 120% -20%, 120% 100%);
  }
  .p-hero__rects rect {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
  .p-hero__title,
  .p-hero__subtitle {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}
.p-about {
  position: relative;
  padding: 23px 0 22px;
}
@media screen and (max-width: 750px) {
  .p-about {
    padding: 103px 24px 50px;
  }
}

.p-about__bg {
  display: block;
  position: absolute;
  -webkit-animation: aboutTextFadeIn 1.6s ease 5.1s forwards;
          animation: aboutTextFadeIn 1.6s ease 5.1s forwards;
  pointer-events: none;
  opacity: 0;
  top: 15px;
  left: 50%;
  width: 1440px;
  height: auto;
}
.p-about__bg img {
  display: block;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .p-about__bg {
    display: none;
  }
}

.p-about__bg--sp {
  display: none;
  opacity: 0;
  -webkit-animation: aboutTextFadeIn 1.6s ease 5.1s forwards;
          animation: aboutTextFadeIn 1.6s ease 5.1s forwards;
}
@media screen and (max-width: 750px) {
  .p-about__bg--sp {
    display: block;
    position: absolute;
    width: 417px;
    height: auto;
    left: -20px;
    top: 0;
    max-width: none;
  }
}

.p-about__inner {
  position: relative;
  width: 734px;
  min-height: 830px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 52px 11px;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-about__inner {
    width: 100%;
    min-height: 0;
    padding: 80px 10px 102px;
  }
}
.p-about__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: -1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.p-about__inner.is-inview::after {
  -webkit-animation: aboutBgReveal 1.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
          animation: aboutBgReveal 1.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.p-about__inner.is-inview .p-about__title {
  -webkit-animation: aboutTextFadeIn 1.6s ease 0.9s forwards;
          animation: aboutTextFadeIn 1.6s ease 0.9s forwards;
}
.p-about__inner.is-inview .p-about__text {
  -webkit-animation: aboutTextFadeIn 1.6s ease 1.3s forwards;
          animation: aboutTextFadeIn 1.6s ease 1.3s forwards;
}

.p-about__title {
  font-family: var(--font-serif);
  font-size: 74px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: var(--color-white);
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
@media screen and (max-width: 750px) {
  .p-about__title {
    font-size: 44px;
  }
}

.p-about__text {
  margin-top: 46px;
  font-family: var(--font-sans-jp);
  font-size: 20px;
  font-weight: 400;
  line-height: 2.5;
  text-align: center;
  color: var(--color-white);
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
@media screen and (max-width: 750px) {
  .p-about__text {
    font-size: 13px;
    line-height: 2.3;
    letter-spacing: 0.02em;
    margin-top: 30px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-about__inner::after,
  .p-about__inner.is-inview::after {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .p-about__title,
  .p-about__text,
  .p-about__bg,
  .p-about__bg--sp,
  .p-about__inner.is-inview .p-about__title,
  .p-about__inner.is-inview .p-about__text,
  .p-about.is-inview .p-about__bg,
  .p-about.is-inview .p-about__bg--sp {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}
.p-interview {
  position: relative;
  margin-top: 163px;
}
@media screen and (max-width: 750px) {
  .p-interview {
    margin-top: 100px;
  }
}

.p-interview__inner {
  position: relative;
  height: 737px;
}
@media screen and (max-width: 750px) {
  .p-interview__inner {
    height: auto;
    min-height: 708px;
  }
}

.p-interview__label {
  position: absolute;
  left: 99px;
  top: 9px;
  z-index: 4;
}
@media screen and (max-width: 750px) {
  .p-interview__label {
    position: static;
    padding: 30px 24px 9px;
  }
}

.p-interview__label-en {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .p-interview__label-en {
    font-size: 70px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.p-interview__fig {
  position: absolute;
  left: calc(50% - 419px);
  top: 0;
  width: 1139px;
}
@media screen and (max-width: 750px) {
  .p-interview__fig {
    position: static;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-interview__img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-interview__img {
    display: none;
  }
}

.p-interview__img--sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-interview__img--sp {
    display: block;
    width: 93.6165333333%;
  }
}

.p-interview__content {
  position: absolute;
  left: 160px;
  top: 312px;
  width: 766px;
  min-height: 398px;
  background-color: var(--color-white);
  padding: 60px 65px 60px 97px;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .p-interview__content {
    position: relative;
    width: 290px;
    padding: 34px 38px 64px;
    min-height: auto;
    margin: -24px 0 0 24px;
    z-index: 1;
    left: auto;
    top: auto;
  }
}
.p-interview__content .c-btn, .p-interview__content .c-btn--m {
  position: absolute;
  right: 66px;
  bottom: -28px;
}
@media screen and (max-width: 750px) {
  .p-interview__content .c-btn, .p-interview__content .c-btn--m {
    right: 21px;
    bottom: -32px;
  }
}

.p-interview__title {
  font-family: var(--font-sans-jp);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .p-interview__title {
    font-size: 18px;
    line-height: 1.4;
  }
}

.p-interview__desc {
  margin-top: 26px;
  font-family: var(--font-sans-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--color-text-body);
}
@media screen and (max-width: 750px) {
  .p-interview__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 11px;
  }
}

.p-introduction {
  position: relative;
  margin-top: 136px;
}
@media screen and (max-width: 750px) {
  .p-introduction {
    margin-top: 100px;
    padding: 62px 24px 0;
  }
}

.p-introduction__inner {
  position: relative;
  max-width: 1317px;
  height: 690px;
  margin: 0 auto;
  padding: 198px 247px 400px 60px;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .p-introduction__inner {
    max-width: none;
    height: auto;
    padding: 52px 72px 0 38px;
    background-color: #fff;
  }
}
.p-introduction__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 65px;
  right: 69px;
  width: 1000vw;
  height: calc(100% - 65px);
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-introduction__inner::before {
    display: none;
  }
}

.p-introduction__bg-rect-1 {
  position: absolute;
  top: 8px;
  left: calc(50% - 73px);
}
@media screen and (max-width: 750px) {
  .p-introduction__bg-rect-1 {
    width: 42px;
    top: -58px;
    left: 0px;
  }
  .p-introduction__bg-rect-1 rect:nth-child(1) {
    display: block;
    -webkit-transform: translate(-30px, 16px);
            transform: translate(-30px, 16px);
  }
}

.p-introduction__bg-rect-2 {
  position: absolute;
  left: 39px;
  bottom: -22px;
}
@media screen and (max-width: 750px) {
  .p-introduction__bg-rect-2 {
    width: 60px;
    left: 0;
    bottom: -56px;
  }
}

.p-introduction__label {
  position: absolute;
  right: 40px;
  top: 0;
  width: 260px;
  height: 712px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .p-introduction__label {
    right: 65px;
    top: -45px;
    width: auto;
    height: auto;
  }
}

.p-introduction__label-company {
  position: absolute;
  right: 136px;
  top: 0;
  display: block;
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .p-introduction__label-company {
    position: static;
    font-size: 70px;
  }
}

.p-introduction__label-intro {
  position: absolute;
  right: 0;
  top: 40px;
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .p-introduction__label-intro {
    font-size: 70px;
    right: -72px;
    top: 21px;
  }
}

.p-introduction__content {
  /*
    position: absolute;
    left: 0;
    top: 67px;
    width: 1269px;
    min-height: 621px;
    padding: 131px 120px;
    z-index: 2;
  */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-introduction__content .c-btn, .p-introduction__content .c-btn--m {
  margin: 74px 0 0 auto;
}
@media screen and (max-width: 750px) {
  .p-introduction__content .c-btn, .p-introduction__content .c-btn--m {
    margin: 10px 0 0 31px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.p-introduction__title {
  font-family: var(--font-sans-jp);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-text);
  max-width: 1010px;
}
@media screen and (max-width: 750px) {
  .p-introduction__title {
    font-size: 18px;
    line-height: 1.4;
  }
}

.p-introduction__desc {
  margin-top: 30px;
  font-family: var(--font-sans-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--color-text-body);
  max-width: 1010px;
}
@media screen and (max-width: 750px) {
  .p-introduction__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
  }
}

.p-article {
  position: relative;
  background-color: var(--color-article-bg);
  margin-top: 157px;
  padding-bottom: 77px;
}
@media screen and (max-width: 750px) {
  .p-article {
    height: auto;
    margin-top: 122px;
    padding-bottom: 30px;
  }
}

.p-article__bg {
  width: 92.8629166667%;
}
@media screen and (max-width: 750px) {
  .p-article__bg {
    width: 100%;
  }
}

.p-article__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 19.8% 4.8% 8.32%;
}
@media screen and (max-width: 750px) {
  .p-article__inner {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
  }
}

.p-article__label {
  position: absolute;
  right: 38px;
  top: 61px;
  width: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .p-article__label {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    gap: 28px;
    padding: 30px 24px 30px;
  }
}

.p-article__label-en {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-article__label-en {
    font-size: 70px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.p-article__label-ja {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 38px 10px 0 0;
  font-family: var(--font-sans-jp);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-article__label-ja {
    font-size: 16px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin: 10px 0 0 0;
    letter-spacing: 0.1em;
  }
}

.p-article__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9%;
}
@media screen and (max-width: 750px) {
  .p-article__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 66px 0 24px;
    margin-top: -94px;
  }
}

.p-article__item {
  max-width: 430px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 750px) {
  .p-article__item {
    padding-bottom: 60px;
  }
}
.p-article__item .c-btn, .p-article__item .c-btn--m {
  margin-left: auto;
}

.p-article__num {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-white);
}
.p-article__title {
  margin: 8px 0 10px;
  font-family: var(--font-sans-jp);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: var(--color-white);
}
.p-article__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-family: var(--font-sans-jp);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-white);
}

.p-article__item .c-btn, .p-article__item .c-btn--m {
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  .p-article__item .c-btn, .p-article__item .c-btn--m {
    margin-top: 20px;
  }
}

.p-bnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 120px 0 120px;
  background-color: var(--color-bg);
}
@media screen and (max-width: 750px) {
  .p-bnr {
    padding: 100px 24px;
  }
}

.p-bnr__link {
  display: block;
  max-width: 760px;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
}
.p-bnr__link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 750px) {
  .p-bnr__bg--pc {
    display: none;
  }
}

.p-bnr__bg--sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-bnr__bg--sp {
    display: block;
  }
}

.p-bnr__logo {
  position: absolute;
  top: 50%;
  left: 80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 228px;
}
@media screen and (max-width: 750px) {
  .p-bnr__logo {
    width: 170px;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-bnr__text {
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-family: var(--font-helvetica);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-white);
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-bnr__text {
    width: 100%;
    bottom: 5px;
    left: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    font-size: 15px;
  }
}
.p-bnr__text::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 7px;
  background-color: var(--color-white);
  -webkit-clip-path: polygon(0 35%, 62% 35%, 62% 0%, 100% 50%, 62% 100%, 62% 65%, 0 65%);
          clip-path: polygon(0 35%, 62% 35%, 62% 0%, 100% 50%, 62% 100%, 62% 65%, 0 65%);
}
@media screen and (max-width: 750px) {
  .p-bnr__text {
    font-size: 16px;
  }
}

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

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