@charset "UTF-8";

@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: url('/assets/fonts/ZenKakuGothicNew-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zen Old Mincho';
  src: url('/assets/fonts/ZenOldMincho-Regular.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --base: #333333;
  --black1: #000;
  --light: #848896;
  --gray1: #717171;
  --blue1: #00A3DF;
  --border1: #BAD3E3;
  --border2: #0066A8;
  --border3: #E2E2E2;
  --border4: #D7D7D7;
  --btnHover1: #A2A2A2;
  --dots: #D9D9D9;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg1);
  position: relative;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  color: var(--base);
}
@media only screen and (max-width: 768px) {
  body {
    min-width: initial;
    overflow: hidden;
    overflow-y: scroll;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
}

label {
  cursor: pointer;
}

img {
  width: 100%;
  vertical-align: middle;
}

a,
button {
  transition: 0.3s opacity;
}

a {
  color: var(--blue1);
}

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

.tab {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .tab {
    display: block;
  }
}

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

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .inline-sp {
    display: inline;
  }
}

.no-link {
  pointer-events: none;
}

.scroll-header {
  scroll-margin-top: 6rem;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

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

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 7.2rem;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 6.8rem;
  }
}
.l-header__container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 3.6rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-header__container {
    padding: 0 1.5rem;
  }
}
.l-header__logo {
  width: 34.191rem;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    width: 21.7rem;
  }
}
.l-header__logo_link {
  display: block;
}
.l-header__logo_link img {
  vertical-align: middle;
}
.l-header__hamburger_btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-header__hamburger_btn {
    display: block;
    width: 2.4rem;
    height: 1.1rem;
    margin: 0 0 0 auto;
    position: relative;
  }
  .l-header__hamburger_btn::before, .l-header__hamburger_btn::after,
  .l-header__hamburger_btn span {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--border2);
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  .l-header__hamburger_btn::before {
    top: 0;
  }
  .l-header__hamburger_btn::after {
    bottom: 0;
  }
  .l-header__hamburger_btn span {
    top: 50%;
    translate: 0 -50%;
  }
  .l-header__hamburger_btn.is-open::before {
    top: 50%;
    translate: 0 -50%;
    rotate: 45deg;
  }
  .l-header__hamburger_btn.is-open::after {
    bottom: 50%;
    translate: 0 50%;
    rotate: -45deg;
  }
  .l-header__hamburger_btn.is-open span {
    opacity: 0;
  }
}

.l-global {
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-global {
    display: none;
    width: 100%;
    height: calc(100dvh - 6.8rem);
    padding: 3.1rem 2rem 9.9rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 6.8rem;
    left: 0;
  }
}
.l-global__list {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 3.5rem 0 auto;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .l-global__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .l-global__list_item {
    width: 100%;
    padding: 0 0 3rem;
    border-bottom: 1px solid var(--border1);
    box-sizing: border-box;
  }
  .l-global__list_item + .l-global__list_item {
    padding-top: 3rem;
  }
}
.l-global__list a {
  text-decoration: none;
  color: var(--black1);
  transition: 0.3s;
}
.l-global__list a:hover {
  color: var(--blue1);
}
.l-global__logo {
  width: 11.7rem;
}
@media only screen and (max-width: 768px) {
  .l-global__logo {
    margin: 3.8rem auto 0;
  }
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-container {
    padding: 0 1.5rem;
  }
}
.l-container--ptn1 {
  max-width: 131rem;
}

.l-footer {
  padding: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    padding: 2.8rem 0;
    border: 1px solid var(--border3);
    box-sizing: border-box;
  }
}
.l-footer__copy {
  line-height: 2;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .l-footer__copy {
    font-feature-settings: "palt";
  }
}

.l-page-header {
  width: 100dvw;
  height: 42rem;
  background: 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .l-page-header {
    height: 37.5rem;
  }
}
.l-page-header.is-company {
  background-image: url(../img/company/page-header_bg.webp);
}
@media only screen and (max-width: 768px) {
  .l-page-header.is-company {
    background-image: url(../img/company/page-header_bg-sp.webp);
  }
}
.l-page-header.is-team {
  background-image: url(../img/team/page-header_bg.webp);
}
@media only screen and (max-width: 768px) {
  .l-page-header.is-team {
    background-image: url(../img/team/page-header_bg-sp.webp);
  }
}
.l-page-header.is-environment {
  background-image: url(../img/environment/page-header_bg.webp);
}
@media only screen and (max-width: 768px) {
  .l-page-header.is-environment {
    background-image: url(../img/environment/page-header_bg-sp.webp);
  }
}
.l-page-header__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 131rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem 12.3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-page-header__container {
    padding: 0 1.5rem 12rem;
  }
}

.l-page-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .l-page-links {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
  }
}
.l-page-links__link {
  display: grid;
  place-content: center;
  width: 26.4rem;
  height: 5.4rem;
  border: 1px solid var(--btnHover1);
  box-sizing: border-box;
  background: #FFF;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--base);
}
@media only screen and (max-width: 768px) {
  .l-page-links__link {
    font-size: 1.5rem;
  }
}
.l-page-links__link:hover {
  background-color: var(--btnHover1);
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .l-page-links__link:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--base);
  }
}

.c-title--ptn1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 {
    gap: 0;
  }
}
.c-title--ptn1.is-center {
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1.is-center {
    align-items: flex-start;
  }
}
.c-title--ptn1 .is__en {
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue1);
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 .is__en {
    font-size: 1.4rem;
  }
}
.c-title--ptn1 .is__jp {
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-size: 4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 .is__jp {
    font-size: 3.2rem;
  }
}

.c-btn {
  text-decoration: none;
  cursor: pointer;
}
.c-btn--ptn1 {
  display: grid;
  place-content: center;
  width: 26.4rem;
  height: 5.4rem;
  border: 1px solid var(--border1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.4);
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--base);
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .c-btn--ptn1 {
    font-size: 1.5rem;
  }
}
.c-btn--ptn1:hover {
  background-color: var(--btnHover1);
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .c-btn--ptn1:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--base);
  }
}
.c-btn--ptn1.is-white {
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .c-btn--ptn1.is-white {
    color: var(--base);
  }
}

.c-list--dots li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-list--dots li::before {
  content: "・";
}

.p-home-mv {
  position: relative;
}
.p-home-mv__content {
  max-width: 125rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 10.5rem;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__content {
    padding: 0 1.5rem 5rem;
  }
}
.p-home-mv__copy {
  line-height: 1.09375;
  letter-spacing: 0.04em;
  text-align: left;
  font-size: 6.4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__copy {
    line-height: 1.5;
    font-size: 3.2rem;
  }
}
.p-home-mv__bg {
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__bg {
    height: 52rem;
  }
}
.p-home-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-about {
  padding: 12.9rem 0 10.9rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-home-about {
    padding: 5rem 0;
  }
}
.p-home-about::after {
  content: "";
  width: 100dvw;
  aspect-ratio: 1440/1002;
  background: url(../img/top/about_object.webp) 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
  bottom: 10.9rem;
}
@media only screen and (max-width: 768px) {
  .p-home-about::after {
    width: 100dvw;
    aspect-ratio: 375/883.82;
    background-image: url(../img/top/about_object-sp.webp);
    bottom: 20.418rem;
  }
}
.p-home-about__container {
  position: relative;
  z-index: 1;
}
.p-home-about__copy {
  margin: 0 auto 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  color: var(--light);
}
@media only screen and (max-width: 768px) {
  .p-home-about__copy {
    margin-bottom: 2.4rem;
    line-height: 1.5;
    text-align: left;
    font-size: 2.4rem;
  }
}
.p-home-about__lead {
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: left;
  max-width: 48rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-home-about__lead {
    line-height: 2;
    text-align: left;
    font-size: 1.5rem;
  }
}
.p-home-about__lead p + p {
  margin-top: 1.7em;
}

.p-home-contents {
  width: 100dvw;
  aspect-ratio: 1440/706;
  background: 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-home-contents {
    aspect-ratio: auto;
    padding: 37.5rem 0 0;
    background: 50% 0/100% no-repeat;
  }
}
.p-home-contents__wrap {
  display: flex;
  max-width: 131rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-home-contents__wrap {
    display: block;
    height: auto;
    padding: 3rem 1.5rem 5rem;
  }
}
.p-home-contents__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50rem;
  height: 100%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-home-contents__body {
    width: auto;
    height: auto;
  }
}
.p-home-contents__lead {
  margin: 2.7rem 0 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-home-contents__lead {
    margin-top: 2rem;
    line-height: 2;
    font-size: 1.5rem;
  }
}
.p-home-contents__btn {
  display: flex;
  margin: 2.8rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-home-contents__btn {
    justify-content: center;
    margin-top: 3.2rem;
  }
}

.p-home-company {
  background-image: url(../img/top/company_bg.webp);
}
@media only screen and (max-width: 768px) {
  .p-home-company {
    background-image: url(../img/top/company_bg-sp.webp);
  }
}
.p-home-company .p-home-contents__wrap {
  flex-direction: row-reverse;
}

.p-home-team {
  background-image: url(../img/top/team_bg.webp);
}
@media only screen and (max-width: 768px) {
  .p-home-team {
    background-image: url(../img/top/team_bg-sp.webp);
  }
}
.p-home-team .p-home-contents__wrap {
  flex-direction: row;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-team .p-home-contents__wrap {
    color: var(--base);
  }
}

.p-home-workstyle {
  background-image: url(../img/top/workstyle_bg.webp);
}
@media only screen and (max-width: 768px) {
  .p-home-workstyle {
    background-image: url(../img/top/workstyle_bg-sp.webp);
  }
}
.p-home-workstyle .p-home-contents__wrap {
  flex-direction: row-reverse;
}

.p-company-message {
  padding: 4.8rem 0 9rem;
  background: url(../img/company/message_bg.webp) 50% 100%/100% no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-company-message {
    padding: 5rem 0 5.9rem;
    background-image: url(../img/company/message_bg-sp.webp);
  }
}
.p-company-message__body {
  padding: 7.302rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-company-message__body {
    padding-top: 4.3rem;
  }
}
.p-company-message__body_title {
  margin: 0 auto 4.029rem;
  line-height: 1.2;
  font-size: 4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media only screen and (max-width: 768px) {
  .p-company-message__body_title {
    margin-bottom: 2.4rem;
    line-height: 1.5;
    font-size: 3.2rem;
  }
}
.p-company-message__body_lead {
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: left;
  max-width: 69rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-company-message__body_lead {
    line-height: 2;
    text-align: left;
    font-size: 1.5rem;
  }
}
.p-company-message__body_lead p + p {
  margin-top: 1.6em;
}
.p-company-message__body_sign {
  margin: 3.6rem auto 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: right;
  max-width: 65rem;
}
@media only screen and (max-width: 768px) {
  .p-company-message__body_sign {
    display: flex;
    justify-content: flex-end;
    margin-top: 3.8rem;
    line-height: 2;
    text-align: left;
    font-size: 1.5rem;
  }
}
.p-company-overview {
  padding: 3.2rem 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-company-overview {
    padding-top: 0;
  }
}
.p-company-overview::after {
  content: "";
  width: 49.8rem;
  height: 34.629rem;
  background: url(../img/company/history_bg.webp) 50% 50%/100% no-repeat;
  position: absolute;
  right: 0;
  bottom: -32.414rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .p-company-overview::after {
    display: none;
  }
}
.p-company-overview__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8rem;
}
@media only screen and (max-width: 768px) {
  .p-company-overview__wrap {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.p-company-overview__column {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.p-company-overview__block {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border4);
  box-sizing: border-box;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
}
@media only screen and (max-width: 768px) {
  .p-company-overview__block {
    padding: 1.78rem 0;
    line-height: 2.2857142857;
    font-size: 1.5rem;
  }
}
.p-company-overview__block_title {
  flex: 0 0 14rem;
  padding: 0 1.2rem;
  box-sizing: border-box;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-company-overview__block_title {
    flex: 0 0 10.5rem;
  }
}
.p-company-overview__block_content {
  flex: 1 1 auto;
  font-weight: 400;
}
.p-company-overview__block_content a {
  text-decoration: none;
  color: var(--base);
}
.p-company-overview__block_content a[target=_blank] {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.p-company-overview__block_content a[target=_blank]::after {
  content: "";
  width: 1.3rem;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_blank.svg) 50% 50%/100% no-repeat;
}
.p-company-overview__address {
  display: flex;
  flex-direction: column;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
.p-company-overview__address + .p-company-overview__address {
  margin-top: 0.8rem;
}
.p-company-overview__address_title {
  font-weight: 500;
  color: #A4A4A4;
}
.p-company-overview__map {
  flex: 1 1 auto;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  margin: 4.5rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-company-overview__map {
    height: 21.6rem;
  }
}
.p-company-overview__map iframe {
  width: 100%;
  height: 100%;
}
.p-company-history {
  padding: 6.8rem 0 5.885rem;
}
@media only screen and (max-width: 768px) {
  .p-company-history {
    padding: 5rem 0;
  }
}
.p-company-history__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 4rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-company-history__list {
    gap: 1.8rem;
    margin-top: 2rem;
  }
}
.p-company-history__list_item {
  display: flex;
  gap: 5.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  font-size: 1.7rem;
}
@media only screen and (max-width: 768px) {
  .p-company-history__list_item {
    gap: 0;
    line-height: 2.2857142857;
    font-size: 1.5rem;
  }
}
.p-company-history__list_year {
  display: flex;
  justify-content: space-between;
  flex: 0 0 6.4em;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-company-history__list_year {
    flex-direction: column;
    flex: 0 0 6.8rem;
  }
}
.p-company-history__list_content {
  flex: 1 1 auto;
  font-weight: 400;
}
.p-company-business {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100dvw;
  min-height: 70.6rem;
  aspect-ratio: 1440/706;
  background: url(../img/company/business_bg.webp) 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-company-business {
    min-height: initial;
    aspect-ratio: auto;
    padding-top: 40.5rem;
    box-sizing: border-box;
    background: url(../img/company/business_bg-sp.webp) 50% 0/100% no-repeat;
  }
}
.p-company-business__container {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-company-business__container {
    display: block;
  }
}
.p-company-business__content {
  width: 50rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-company-business__content {
    width: 100%;
  }
}
.p-company-business__lead {
  margin: 2.7rem 0 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-company-business__lead {
    margin-top: 2rem;
    line-height: 2;
    font-size: 1.5rem;
  }
}
.p-company-business__block {
  margin: 2rem 0 0;
  padding: 1.6rem 0 1.8rem 1.8rem;
  border: 1px solid var(--base);
  box-sizing: border-box;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-company-business__block {
    margin-top: 3rem;
    padding: 1.6rem 1.0rem;
    line-height: 2.2857142857;
    font-size: 1.5rem;
  }
}
.p-company-business__caption {
  margin: 2rem 0 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-company-business__caption {
    margin-top: 3rem;
    line-height: 2;
    font-size: 1.5rem;
  }
}
.p-company-system {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .p-company-system {
    padding: 3rem 0;
  }
}
.p-company-system__block {
  display: flex;
  gap: 4.9rem;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block {
    gap: 3rem;
  }
}
.p-company-system__block + .p-company-system__block {
  margin: 7.8rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block + .p-company-system__block {
    margin-top: 3rem;
  }
}
.p-company-system__block:nth-child(odd) {
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
.p-company-system__block:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.p-company-system__block_content {
  width: 60rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block_content {
    width: 100%;
  }
}
.p-company-system__block_title {
  margin: 0 0 1.7rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-size: 4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block_title {
    margin: 0;
    line-height: 1.5;
    font-size: 3.2rem;
  }
}
.p-company-system__block_copy {
  margin: 0 0 1.7rem;
  line-height: 1.5384615385;
  letter-spacing: 0.04em;
  font-size: 2.7rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  color: var(--gray1);
}
@media only screen and (max-width: 768px) {
  .p-company-system__block_copy {
    margin: 0;
    line-height: 2.4;
    font-size: 2.1rem;
  }
}
.p-company-system__block_caption {
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block_caption {
    line-height: 2;
    font-size: 1.5rem;
  }
}
.p-company-system__block_list {
  margin-top: 1em;
  ul li {
    line-height: 2;
    letter-spacing: 0.08em;
    font-size: 1.7rem;
    font-weight: 400;
    &:not(:first-child) {
      margin-top: 1em;
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-company-system__block_list {
    ul li {
      font-size: 1.5rem;
    }
  }
}
.p-company-system__block_image {
  width: 60rem;
}
@media only screen and (max-width: 768px) {
  .p-company-system__block_image {
    width: 100dvw;
    margin: 0 -1.5rem;
  }
}

.p-team__head {
  padding: 6.1rem 0 7.2rem;
}
@media only screen and (max-width: 768px) {
  .p-team__head {
    padding: 5rem 0;
  }
}
.p-team__lead {
  margin: 2.7rem 0 0;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-team__lead {
    margin-top: 5rem;
  }
}
.p-team-interview {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .p-team-interview {
    gap: 5rem;
  }
}
.p-team-interview__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100dvw;
  aspect-ratio: 1440/706;
  background: 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block {
    display: block;
    aspect-ratio: auto;
    padding: 40.5rem 0 0;
    background: 50% 0/100% no-repeat;
  }
  .p-team-interview__block:last-of-type{
    margin-bottom: 5rem;
  }
}
.p-team-interview__block:nth-child(odd) .p-team-interview__container {
  flex-direction: row-reverse;
}
.p-team-interview__block:nth-child(even) .p-team-interview__container {
  flex-direction: row;
}
.p-team-interview__block.is-interview1 {
  background-image: url(../img/team/interview_bg-01.webp);
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block.is-interview1 {
    background-image: url(../img/team/interview_bg-01-sp.webp);
  }
}
.p-team-interview__block.is-interview2 {
  background-image: url(../img/team/interview_bg-02.webp);
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block.is-interview2 {
    background-image: url(../img/team/interview_bg-02-sp.webp);
  }
}
.p-team-interview__block.is-interview3 {
  background-image: url(../img/team/interview_bg-03.webp);
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block.is-interview3 {
    background-image: url(../img/team/interview_bg-03-sp.webp);
  }
}
.p-team-interview__block.is-interview4 {
  background-image: url(../img/team/interview_bg-04.webp);
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block.is-interview4 {
    background-image: url(../img/team/interview_bg-04-sp.webp);
  }
}
.p-team-interview__block_content {
  width: 60.1rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block_content {
    width: 100%;
  }
}
.p-team-interview__block_title {
  margin: 0 0 3rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block_title {
    margin-bottom: 1rem;
    line-height: 2.1818181818;
    font-size: 2.2rem;
  }
}
.p-team-interview__block_btn {
  margin: 3rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__block_btn {
    display: flex;
    justify-content: center;
  }
}
.p-team-interview__container {
  display: flex;
  max-width: 131rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__container {
    display: block;
    padding: 0 1.5rem;
  }
}
.p-team-interview__sign {
  display: flex;
  align-items: center;
  gap: 3.9rem;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__sign {
    gap: 2.3rem;
    line-height: 2.2857142857;
    font-size: 1.5rem;
  }
}
.p-team-interview__sign_icon {
  flex: 0 0 10rem;
}
.p-team-interview__sign_name {
  flex: 1 1 auto;
  display: flex;
  gap: 3.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-team-interview__sign_name {
    gap: 2.8rem;
  }
}

.p-interview-head {
  width: 100dvw;
  height: 42rem;
  background: 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-interview-head {
    height: 37.5rem;
  }
}
.p-interview-head.is-interview1 {
  background-image: url(../img/team/interview1/page-header_bg.webp);
}
@media only screen and (max-width: 768px) {
  .p-interview-head.is-interview1 {
    background-image: url(../img/team/interview1/page-header_bg-sp.webp);
  }
}
.p-interview-head__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 131rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem 4.4rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-interview-head__container {
    padding: 0 1.5rem 2.6rem;
  }
}
.p-interview-head__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-head__content {
    gap: 3.6rem;
  }
}
.p-interview-head__sign {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-interview-head__sign {
    gap: 1.8rem;
    line-height: 2.2857142857;
    font-size: 1.5rem;
  }
}
.p-interview-head__sign_icon {
  flex: 0 0 11.6rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-head__sign_icon {
    flex: 0 0 10rem;
  }
}
.p-interview-head__sign_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.p-interview-head__sign_name {
  display: flex;
  gap: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-head__sign_name {
    gap: 2.8rem;
  }
}
.p-interview-body {
  padding: 7.2rem 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-interview-body {
    padding: 5rem 0 0;
    background: url(../img/team/interview1/interview-body_bg-sp.webp) 50% 0/100% no-repeat;
  }
}
.p-interview-body::before {
  content: "";
  width: 100dvw;
  aspect-ratio: 1440/893;
  background: url(../img/team/interview1/interview-body_bg.webp) 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
  bottom: 29rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-body::before {
    display: none;
  }
}
.p-interview-body__container {
  position: relative;
  z-index: 1;
}
.p-interview-body__title {
  margin: 0 0 7.2rem;
  padding: 0 0 2.7rem;
  border-bottom: 1px solid var(--border4);
  box-sizing: border-box;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: left;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media only screen and (max-width: 768px) {
  .p-interview-body__title {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    line-height: 2.1818181818;
    font-size: 2.2rem;
  }
}
.p-interview-body__block {
  margin: 0 auto;
  text-align: left;
}
.p-interview-body__block + .p-interview-body__block {
  margin-top: 7.2rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-body__block + .p-interview-body__block {
    margin-top: 5rem;
  }
}
.p-interview-body__block_content {
  margin: 2.7rem auto 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-interview-body__block_content {
    margin-top: 2rem;
  }
}
.p-interview-body__block_content p + p {
  margin-top: 1.6em;
}
.p-interview-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100dvw;
  min-height: 70.6rem;
  aspect-ratio: 1440/706;
  background: 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-interview-message {
    min-height: initial;
    aspect-ratio: auto;
    padding: 42.5rem 0 0;
    background: 50% 0/100% no-repeat;
  }
}
.p-interview-message.is-interview1 {
  background-image: url(../img/team/interview1/message_bg.webp);
}
@media only screen and (max-width: 768px) {
  .p-interview-message.is-interview1 {
    background-image: url(../img/team/interview1/message_bg-sp.webp);
  }
}
.p-interview-message__container {
  display: flex;
  max-width: 131rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-interview-message__container {
    padding: 0 1.5rem;
  }
}
.p-interview-message__content {
  width: 60rem;
  margin: 0 0 0 auto;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-interview-message__content {
    width: 100%;
  }
}
.p-interview-message__comment {
  margin: 2.7rem 0 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-interview-message__comment {
    margin-top: 2rem;
  }
}
.p-interview-related {
  padding: 12rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-interview-related {
    padding: 5rem 0 6.4rem;
  }
}
.p-interview-related__slider {
  margin: 2.7rem auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-related__slider {
    margin-top: 3rem;
    grid-template-columns: 1fr;
    gap: 2.4rem;    justify-content: center;
  }
}
.p-interview-related__slider .slick-track {
  display: flex !important;
  gap: max(4rem, 2.7777777778vw);
}
@media only screen and (max-width: 768px) {
  .p-interview-related__slider .slick-track {
    gap: 2.4rem;
  }
}
.p-interview-related__slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 3rem auto 0;
}
.p-interview-related__slider .slick-dots li {
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--dots);
}
.p-interview-related__slider .slick-dots li.slick-active {
  background: var(--blue1);
}
.p-interview-related__slider .slick-dots li button {
  width: 100%;
  height: 100%;
  text-indent: -99999px;
}
.p-interview-related__slider_item {
  display: block;
  width: 100%;
  position: relative;
  color: var(--base);
}
@media only screen and (max-width: 768px) {
  .p-interview-related__slider_item {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}
.p-interview-related__slider_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 12.3rem;
  padding: 0 2rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-interview-related__slider_body {
    height: 9.8rem;
    padding: 0 1.2rem;
  }
}
.p-interview-related__sign {
  display: flex;
  align-items: center;
  gap: max(2rem, 1.38888889vw);
}
@media only screen and (max-width: 768px) {
  .p-interview-related__sign {
    gap: 1.7rem;
  }
}
.p-interview-related__sign_icon {
  display: block;
  flex: 0 0 10rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-related__sign_icon {
    flex: 0 0 6.8rem;
  }
}
.p-interview-related__sign_content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-related__sign_content {
    line-height: 1.4285714286;
    font-size: 1.5rem;
  }
}
.p-interview-related__sign_name {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .p-interview-related__sign_name {
    flex-direction: column;
    gap: 0;
  }
}

.p-environment-head {
  padding: 6rem 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-environment-head {
    padding: 5rem 0 0;
  }
}
.p-environment-head::before {
  content: "";
  width: 100dvw;
  aspect-ratio: 1440/893;
  background: url(../img/team/interview1/interview-body_bg.webp) 50% 50%/100% no-repeat;
  position: absolute;
  left: 0;
  bottom: 78.2rem;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-environment-head::before {
    display: none;
  }
}
.p-environment-head__block {
  margin-top: 7.2rem;
  position: relative;
  z-index: 1;
}
.p-environment-head__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem 5.6rem;
  margin: 2.7rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-environment-head__grid {
    grid-template-columns: 100%;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.p-environment-head__grid_image {
  grid-column: 2/3;
  grid-row: 1/4;
}
@media only screen and (max-width: 768px) {
  .p-environment-head__grid_image {
    grid-column: auto;
    grid-row: auto;
    width: 100dvw;
    margin: 0 -1.5rem;
  }
}
.p-environment-head__box {
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-environment-head__box:nth-child(n+4) {
    grid-column: auto;
  }
}
.p-environment-head__box_title {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  /* margin: 0 0 1.7rem;ご要望により行間詰 */
  line-height: 1.5384615385;
  letter-spacing: 0.04em;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  color: var(--gray1);
}
@media only screen and (max-width: 768px) {
  .p-environment-head__box_title {
    align-items: flex-start;
    margin-bottom: 0.9rem;
    line-height: 1.7;
    font-size: 2rem;
  }
}
.p-environment-head__box_title::before {
  content: "";
  width: 0.9rem;
  aspect-ratio: 1/1;
  background: linear-gradient(to right, #C6D7FF, #C4E5FF);
}
@media only screen and (max-width: 768px) {
  .p-environment-head__box_title::before {
    flex: 0 0 0.6rem;
    width: 0.6rem;
    translate: 0 0.75em;
  }
}
.p-environment-head__box_caption {
  line-height: 2;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  font-weight: 400;
}
.p-environment-office {
  padding: 7.2rem 0 0;
  overflow: hidden; /* slickの横スクロール防止 */
}
@media only screen and (max-width: 768px) {
  .p-environment-office {
    padding: 5rem 0 6.3rem;
  }
}
.p-environment-office__slider {
  margin: 6.6rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-environment-office__slider {
    margin-top: 3rem;
  }
}
.p-environment-office__slider .slick-list {
  overflow: visible !important;
}
.p-environment-office__slider .slick-track {
  display: flex !important;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-environment-office__slider .slick-track {
    gap: 2.4rem;
  }
}
.p-environment-office__slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 3rem auto 0;
}
.p-environment-office__slider .slick-dots li {
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  box-sizing: border-box;
  background: var(--dots);
  overflow: hidden;
}
.p-environment-office__slider .slick-dots li.slick-active {
  background: var(--blue1);
}
.p-environment-office__slider .slick-dots li button {
  width: 100%;
  height: 100%;
  text-indent: -99999px;
}
.p-environment-office__slider_item {
  width: 71.8rem;
}
@media only screen and (max-width: 768px) {
  .p-environment-office__slider_item {
    width: 27.5rem;
  }
}

 /* インタビュー下層TOPデザイン追加 */

.p-interview-head.is-interview2 {
  background-image: url(../img/team/interview1/page-header_bg2.webp);
}
@media only screen and (max-width: 768px) {
  .p-interview-head.is-interview2 {
    background-image: url(../img/team/interview1/page-header_bg-sp2.webp);
  }
}

.p-interview-head.is-interview3 {
  background-image: url(../img/team/interview1/page-header_bg3.webp);
}
@media only screen and (max-width: 768px) {
  .p-interview-head.is-interview3 {
    background-image: url(../img/team/interview1/page-header_bg-sp3.webp);
  }
}

.p-interview-head.is-interview4 {
  background-image: url(../img/team/interview1/page-header_bg4.webp);
}
@media only screen and (max-width: 768px) {
  .p-interview-head.is-interview4 {
    background-image: url(../img/team/interview1/page-header_bg-sp4.webp);
  }
}