@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --base: #000000;
  --gray1: #EFEFEF;
  --gray2: #707070;
  --red1: #DB0100;
  --red2: rgba(188,2,0,.75);
  color-scheme: light;
}

/*-- リセット --*/
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;
}

@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media only screen and (max-width: 1030px) {
  html {
    font-size: 0.9708737864vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFF;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--base);
}
@media only screen and (max-width: 768px) {
  body {
    min-width: initial;
    overflow: hidden;
    overflow-y: scroll;
    line-height: 1.8461538462;
    font-size: 1.3rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

:-moz-placeholder {
  background: var(--gray1);
}

:placeholder-shown {
  background: var(--gray1);
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #FFF inset;
}

img {
  vertical-align: middle;
}

a {
  transition: 0.3s opacity;
}

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

.tab {
  display: none;
}
@media only screen and (max-width: 1030px) {
  .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-head {
  scroll-margin-top: 9rem;
}
@media only screen and (max-width: 768px) {
  .scroll-head {
    scroll-margin-top: 6.4rem;
  }
}

.c-btn {
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.c-btn:hover {
  opacity: 0.6;
}
.c-btn--ptn1 {
  display: grid;
  place-content: center;
  width: 27.3rem;
  height: 5.9rem;
  border: 1px solid var(--red1);
  box-sizing: border-box;
  background: var(--gray1);
  position: relative;
  line-height: 1.75;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red1);
  transition: 0.3s;
}
.c-btn--ptn1::after {
  content: "";
  width: 0.949rem;
  height: 1.432rem;
  background: url(../img/common/btn-arrow-01.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  transition: 0.3s;
}
.c-btn--ptn1:hover {
  background: var(--red1);
  color: #FFF;
  opacity: 1;
}
.c-btn--ptn1:hover::after {
  background-image: url(../img/common/btn-arrow-01-white.svg);
}

.c-title--ptn1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--red1);
}
.c-title--ptn1.is-white {
  color: #FFF;
}
.c-title--ptn1.is-white .is__en::after {
  background: #FFF;
}
.c-title--ptn1.is-right {
  align-items: flex-end;
}
.c-title--ptn1.is-right .is__en::after {
  width: calc(100% + (100vw - 123rem) / 2);
  left: auto;
  right: calc((123rem - 100vw) / 2);
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1.is-right .is__en::after {
    width: calc(100% + 2rem);
    right: -2rem;
  }
}
.c-title--ptn1 .is__en, .c-title--ptn1 .is__jp {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
.c-title--ptn1 .is__en {
  position: relative;
  line-height: 1;
  word-break: keep-all;
  white-space: nowrap;
  font-size: 9.5rem;
  font-weight: 700;
  font-family: "Akrobat";
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 .is__en {
    font-size: 5.2rem;
  }
}
.c-title--ptn1 .is__en::after {
  content: "";
  width: calc(100% + (100vw - 120rem) / 2);
  height: 1px;
  background: var(--red1);
  position: absolute;
  left: calc((120rem - 100vw) / 2);
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 .is__en::after {
    width: calc(100% + 2rem);
    left: -2rem;
  }
}
.c-title--ptn1 .is__en strong {
  display: inline-block;
  line-height: 0.5;
  font-size: 18rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 .is__en strong {
    font-size: 5.8rem;
  }
}
.c-title--ptn1 .is__jp {
  margin-top: 0.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn1 .is__jp {
    margin-top: 0.37rem;
    font-size: 1.9rem;
  }
}
.c-title--ptn2 {
  margin: 0 0 3.9rem;
  line-height: 1.4285714286;
  font-size: 2.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .c-title--ptn2 {
    margin-bottom: 3rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}
.c-title--ptn3 {
  margin: 0 0 4rem;
  line-height: 1.6;
  font-size: 5rem;
  font-weight: 900;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .c-title--ptn3 {
    margin-bottom: 2.5rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}

.c-lead--ptn1 {
  line-height: 2;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .c-lead--ptn1 {
    line-height: 2;
    font-size: 1.6rem;
  }
}

.c-list--dots li {
  display: flex;
  flex: 1 1 auto;
}
.c-list--dots li::before {
  content: "・";
  flex: 0 0 1em;
}

.c-effect--totop {
  translate: 0 3rem;
  opacity: 0;
  transition: 0.5s translate, 0.5s opacity;
}
.c-effect--totop.is-on {
  translate: 0 0;
  opacity: 1;
}
.c-effect--toright {
  translate: -15rem 0;
  opacity: 0;
  transition: 0.3s translate ease-in, 0.3s opacity ease-in;
}
.c-effect--toright.is-on {
  translate: 0 0;
  opacity: 1;
}
.c-effect--home-lead span {
  translate: 0 5rem;
  opacity: 0;
  filter: blur(12px);
}
.c-effect--home-lead span:nth-child(1) {
  transition: 0.6s 0.1s ease;
}
.c-effect--home-lead span:nth-child(2) {
  transition: 0.6s 0.2s ease;
}
.c-effect--home-lead span:nth-child(3) {
  transition: 0.6s 0.3s ease;
}
.c-effect--home-lead span:nth-child(4) {
  transition: 0.6s 0.4s ease;
}
.c-effect--home-lead span:nth-child(5) {
  transition: 0.6s 0.5s ease;
}
.c-effect--home-lead span:nth-child(6) {
  transition: 0.6s 0.6s ease;
}
.c-effect--home-lead span:nth-child(7) {
  transition: 0.6s 0.7s ease;
}
.c-effect--home-lead span:nth-child(8) {
  transition: 0.6s 0.8s ease;
}
.c-effect--home-lead span:nth-child(9) {
  transition: 0.6s 0.9s ease;
}
.c-effect--home-lead span:nth-child(10) {
  transition: 0.6s 1s ease;
}
.c-effect--home-lead.is-on span {
  translate: 0 0;
  opacity: 1;
  filter: blur(0);
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 9rem;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 6.5rem;
  }
}
.l-header__container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 10rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-header__container {
    padding: 0 2rem 0 1.2rem;
  }
}
.l-header__logo {
  width: 29.9rem;
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    width: 21.3rem;
  }
}
.l-header__logo_link {
  display: block;
}
.l-header__logo_link img {
  vertical-align: middle;
}
.l-header__content {
  display: flex;
  align-items: flex-end;
  margin: 0 0 0 auto;
}
.l-header__breadcrumbs {
  display: flex;
  margin: 0 2.69rem 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-header__breadcrumbs {
    display: none;
  }
}
.l-header__btns {
  display: flex;
  align-items: center;
  gap: 1.63rem;
}
@media only screen and (max-width: 768px) {
  .l-header__btns {
    gap: 1.78rem;
  }
}
.l-header__btn-entry {
  width: 14rem;
}
@media only screen and (max-width: 768px) {
  .l-header__btn-entry {
    width: 8.183rem;
  }
}

.l-hamburger {
  display: none;
  width: 71.8rem;
  height: 100dvh;
  background: linear-gradient(45deg, #BF0014, #3A2B6C);
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
}
@media only screen and (max-width: 768px) {
  .l-hamburger {
    width: 100%;
  }
}
.l-hamburger-nav {
  max-width: 51.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 5.6rem 0 5rem;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav {
    padding: 7.12rem 2rem 2.45rem;
  }
}
.l-hamburger-nav__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.35rem;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__wrap {
    display: block;
  }
}
.l-hamburger-nav__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FFF;
}
.l-hamburger-nav__link_main {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  position: relative;
  line-height: 1.4444444444;
  font-size: 4.5rem;
  font-weight: 700;
  font-family: "Akrobat";
  color: #FFF;
}
.l-hamburger-nav__link_main::after {
  content: "";
  width: calc(100% + 10.15rem);
  height: 1px;
  background: #FFF;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__link_main::after {
    width: calc(100% + 2rem);
  }
}
.l-hamburger-nav__link_sub {
  display: block;
  margin-top: 0.67rem;
  line-height: 1.4375;
  font-size: 1.6rem;
  font-weight: 700;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__link_sub {
    display: block;
    margin-top: 0.67rem;
  }
}
.l-hamburger-nav__link:hover .l-hamburger-nav__link_sub {
  color: var(--red1);
}
.l-hamburger-nav__top .l-hamburger-nav__item, .l-hamburger-nav__left .l-hamburger-nav__item {
  text-align: left;
}
.l-hamburger-nav__top .l-hamburger-nav__link, .l-hamburger-nav__left .l-hamburger-nav__link {
  text-align: left;
}
.l-hamburger-nav__top .l-hamburger-nav__link_main::after, .l-hamburger-nav__left .l-hamburger-nav__link_main::after {
  left: -10.15rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__top .l-hamburger-nav__link_main::after, .l-hamburger-nav__left .l-hamburger-nav__link_main::after {
    left: -2rem;
  }
}
.l-hamburger-nav__top {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__top {
    margin-bottom: 3.63rem;
  }
}
.l-hamburger-nav__left {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  gap: 4.14rem;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__left {
    gap: 3.63rem;
    margin-bottom: 3.63rem;
  }
}
.l-hamburger-nav__right {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  gap: 2.34rem;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__right {
    gap: 3.63rem;
  }
}
.l-hamburger-nav__right .l-hamburger-nav__item {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__right .l-hamburger-nav__item {
    text-align: left;
  }
}
.l-hamburger-nav__right .l-hamburger-nav__link {
  align-items: flex-end;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__right .l-hamburger-nav__link {
    align-items: flex-start;
    text-align: left;
  }
}
.l-hamburger-nav__right .l-hamburger-nav__link_main::after {
  right: -10.15rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__right .l-hamburger-nav__link_main::after {
    left: -2rem;
    right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .l-hamburger-nav__parent {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 4.742rem;
    position: relative;
  }
  .l-hamburger-nav__parent::before, .l-hamburger-nav__parent::after {
    content: "";
    width: 2.612rem;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 6.3rem;
    right: 0;
  }
  .l-hamburger-nav__parent::after {
    rotate: 90deg;
    transition: 0.3s;
  }
  .l-hamburger-nav__parent.is-open::after {
    rotate: 360deg;
    opacity: 0;
  }
}
.l-hamburger-sub {
  display: flex;
  flex-direction: column;
  gap: 0.67rem;
  margin: 0.67rem 0 0;
  padding-left: 1em;
  line-height: 1.4375;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .l-hamburger-sub {
    margin-top: 2rem;
    gap: 2rem;
  }
  .l-hamburger-sub .l-hamburger-sub {
    padding-left: 0;
  }
  .l-hamburger-sub.l-hamburger-nav__child {
    display: none;
  }
}
.l-hamburger-sub__link {
  text-decoration: none;
  color: #FFF;
  transition: 0.3s;
}
.l-hamburger-sub__link:hover {
  color: var(--red1);
}
.l-hamburger__entry {
  display: flex;
  justify-content: center;
  margin: 4.74rem auto 0;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__entry {
    margin-top: 3.13rem;
  }
}
.l-hamburger__entry_btn {
  display: grid;
  place-content: center;
  width: 51.5rem;
  height: 7.8rem;
  background: var(--red1);
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 5.9rem;
  font-weight: 900;
  font-family: "Akrobat";
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__entry_btn {
    width: 100%;
    height: 7.8rem;
  }
}
.l-hamburger__close {
  width: 9.765rem;
  position: absolute;
  top: 3.21rem;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__close {
    width: 2.921rem;
    top: 1.81rem;
    right: 2rem;
  }
}
.l-hamburger__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.84rem;
  width: 14rem;
  height: 4.923rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__btn {
    width: auto;
    height: auto;
    background: transparent;
  }
}
.l-hamburger__btn_caption {
  width: 5.225rem;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__btn_caption {
    display: none;
  }
}
.l-hamburger__btn_border {
  width: 2.9rem;
  height: 2.65rem;
  box-sizing: border-box;
  position: relative;
}
.l-hamburger__btn_border::before, .l-hamburger__btn_border::after,
.l-hamburger__btn_border hr {
  content: "";
  width: 100%;
  height: 0.4rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--red1);
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.l-hamburger__btn_border::before {
  top: 0;
}
.l-hamburger__btn_border::after {
  bottom: 0;
}
.l-hamburger__btn_border hr {
  margin: 0;
  border: 0;
  top: 50%;
  translate: 0 -50%;
}
.l-hamburger__btn.is-open .l-hamburger__btn_border::before {
  top: 50%;
  rotate: 45deg;
  translate: 0 -50%;
}
.l-hamburger__btn.is-open .l-hamburger__btn_border::after {
  bottom: 50%;
  rotate: -45deg;
  translate: 0 50%;
}
.l-hamburger__btn.is-open .l-hamburger__btn_border hr {
  opacity: 0;
}
.l-hamburger__overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(88, 88, 88, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__overlay {
    position: static;
  }
}
.l-hamburger__overlay_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 9rem;
  padding: 0 10rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__overlay_head {
    height: 6.5rem;
  }
}
.l-hamburger__overlay_logo {
  width: 29.849rem;
}
@media only screen and (max-width: 768px) {
  .l-hamburger__overlay_logo {
    width: 21.312rem;
    position: fixed;
    top: 1.31rem;
    left: 1.24rem;
    z-index: 30;
  }
}

.l-footer {
  background: #FFF;
  position: relative;
}
.l-footer-joinus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 768px) {
  .l-footer-joinus {
    display: none;
  }
}
.l-footer-joinus__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: var(--base);
}
.l-footer-joinus__body {
  width: 60rem;
}
.l-footer-joinus__body_btn {
  display: flex;
  justify-content: flex-start;
  margin: 9rem 0 0;
}
.l-footer-joinus__entry {
  display: grid;
  place-content: center;
  width: 51.5rem;
  height: 7.8rem;
  background: var(--red1);
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 6rem;
  font-weight: 900;
  font-family: "Akrobat";
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .l-footer-joinus__entry {
    width: 100%;
  }
}
.l-footer-joinus-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-footer-joinus-sp {
    display: block;
    padding: 10rem 2rem;
  }
}
.l-footer-totop {
  width: 5rem;
  position: fixed;
  right: 5rem;
  bottom: 3rem;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .l-footer-totop {
    right: 2rem;
  }
}
.l-footer-body {
  padding: 8rem 0 6.4rem;
}
@media only screen and (max-width: 768px) {
  .l-footer-body {
    padding: 4.64rem 0 4.21rem;
    background: var(--red1);
    position: relative;
  }
}
.l-footer-body__container {
  display: flex;
  justify-content: space-between;
  max-width: 126rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-footer-body__container {
    justify-content: center;
    padding: 0;
  }
}
.l-footer-body__nav, .l-footer-body__info {
  text-align: left;
}
.l-footer-body__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10.3rem;
       column-gap: 10.3rem;
  row-gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .l-footer-body__list {
    display: none;
  }
}
.l-footer-body__list_btn {
  display: grid;
  place-content: center;
  width: 20.6rem;
  height: 5rem;
  border: 1px solid var(--red1);
  box-sizing: border-box;
  position: relative;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red1);
  transition: 0.3s;
}
.l-footer-body__list_btn::after {
  content: "";
  width: 0.949rem;
  height: 1.432rem;
  background: url(../img/common/btn-arrow-01.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 1.96rem;
  translate: 0 -50%;
}
.l-footer-body__list_btn:hover {
  background: var(--red1);
  color: #FFF;
  opacity: 1;
}
.l-footer-body__list_btn:hover::after {
  background-image: url(../img/common/btn-arrow-01-white.svg);
}
.l-footer-body__list_link {
  display: flex;
  align-items: center;
  gap: 0.92rem;
  line-height: 1.75;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red1);
}
.l-footer-body__list_link::after {
  content: "";
  width: 0.949rem;
  height: 1.432rem;
  background: url(../img/common/btn-arrow-01.svg) 50% 50%/100% no-repeat;
}
.l-footer-body__list_link + .l-footer-body__list_link {
  margin-top: 1.8rem;
}
.l-footer-body__logo {
  width: 30rem;
  margin: 0 0 3.4rem;
}
@media only screen and (max-width: 768px) {
  .l-footer-body__logo {
    width: 29.812rem;
    margin: 0 auto;
  }
}
.l-footer-body__info_block {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .l-footer-body__info_block {
    display: none;
  }
}
.l-footer-body__info_block + .l-footer-body__info_block {
  margin-top: 1.6rem;
}
.l-footer-copy {
  padding: 1.1rem 0 1.5rem;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .l-footer-copy {
    padding: 0 0 6.3rem;
  }
}
.l-footer-copy__text {
  line-height: 1.75;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}

.l-fixed-bg {
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .l-fixed-bg {
    max-height: 50rem;
  }
}
.l-fixed-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.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 2rem;
  }
}
.l-container--ptn1 {
  max-width: 126rem;
}

.l-breadcrumbs__list {
  display: flex;
  padding: 0 0 0.8rem;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red1);
}
.l-breadcrumbs__list_item + .l-breadcrumbs__list_item::before {
  content: "・";
  margin: 0 0.5rem;
}
.l-breadcrumbs__list_link {
  text-decoration: none;
  color: var(--red1);
}

.l-page-mv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100dvh;
  min-height: 81.5rem;
  padding: 0 0 9.8rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-page-mv {
    max-height: 50rem;
    min-height: initial;
    padding-bottom: 5.85rem;
  }
}

.l-staff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .l-staff {
    grid-template-columns: 100%;
    row-gap: 7.4rem;
  }
}
.l-staff__box {
  display: grid;
  grid-template-columns: 18.575rem 1fr;
  gap: 1.35rem;
}
@media only screen and (max-width: 768px) {
  .l-staff__box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 3.32rem;
  }
}
.l-staff__box_title {
  margin: 0 0 2rem;
  line-height: 1.6;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .l-staff__box_title {
    line-height: 1.4583333333;
  }
}
.l-staff__box_comment {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--red1);
}

.l-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
}
.l-modal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.l-modal-item {
  width: 84rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media only screen and (max-width: 768px) {
  .l-modal-item {
    width: 90%;
  }
}
.l-modal-item video {
  width: 100%;
  aspect-ratio: 16/9;
}
.l-modal-close {
  width: 5rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
}
.l-modal-close::before, .l-modal-close::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 0;
}
.l-modal-close::before {
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}
.l-modal-close::after {
  bottom: 50%;
  translate: 0 50%;
  rotate: -45deg;
}

.p-home-mv {
  position: relative;
}
.p-home-mv__slider {
  width: 99.1rem;
  height: 81.5rem;
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__slider {
    width: 100%;
    height: 100dvh;
  }
}
.p-home-mv__slider_item {
  width: 99.1rem;
  height: 81.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__slider_item {
    width: 100%;
    height: 100dvh !important;
  }
}
.p-home-mv__slider_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1.2 1.2;
}
.p-home-mv__slider_item.slick-active img, .p-home-mv__slider_item.slick-current img {
  animation: zoomIn 6s linear forwards;
}
.p-home-mv__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 15.15rem;
  min-height: 87.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__content {
    padding: 0 2rem 4rem;
    min-height: 100dvh;
  }
}
.p-home-mv__copy {
  margin-bottom: 7.41rem;
  line-height: 1.6;
  font-size: 5rem;
  font-weight: 900;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-mv__copy {
    display: none;
  }
}
.p-home-mv__logo {
  width: 69.792rem;
}
@media only screen and (max-width: 768px) {
  .p-home-mv__logo {
    width: 100%;
  }
}

@keyframes zoomIn {
  from {
    scale: 1 1;
  }
  to {
    scale: 1.2 1.2;
  }
}
.p-home-about {
  height: 89.2rem;
  padding: 10.5rem 0 0;
  box-sizing: border-box;
  background: url(../img/home/about-bg.webp) 50% 0/cover no-repeat;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-home-about {
    height: 75rem;
    padding-top: 3rem;
    background-image: url(../img/home/about-bg-sp.webp);
  }
}
.p-home-about__copy {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-home-about__copy {
    display: block;
    margin: 0 auto 2.7rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFF;
  }
}
.p-home-about__lead {
  line-height: 2;
  font-size: 3rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-about__lead {
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-home-about__lead span {
  display: inline-block;
}

.p-home-message {
  padding: 11.8rem 0 0;
  position: relative;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-message {
    padding: 2rem 0 0;
  }
}
.p-home-message__image {
  width: calc(60rem + (100vw - 120rem) / 2);
  height: 79rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-home-message__image {
    width: calc(100% + 2rem);
    height: 46rem;
    margin-left: -2rem;
    position: static;
  }
}
.p-home-message__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-message__wrap {
  display: flex;
  flex-direction: row-reverse;
  height: 67rem;
  border-radius: 3rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-message__wrap {
    height: auto;
    border-radius: 0 0 3rem 3rem;
  }
}
.p-home-message__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 0 6.7rem 0 0;
  box-sizing: border-box;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-home-message__content {
    width: 100%;
    padding: 3.2rem 2rem 5rem;
  }
}
.p-home-message__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  margin: 0 0 3.73rem;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-message__title {
    gap: 0.3rem;
    margin: 0 0 3rem;
  }
}
.p-home-message__title .is__en {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1.2;
  font-size: 9.5rem;
  font-weight: 700;
  font-family: "Akrobat";
}
@media only screen and (max-width: 768px) {
  .p-home-message__title .is__en {
    font-size: 5.2rem;
  }
}
.p-home-message__title .is__en::after {
  content: "";
  width: calc(100% + 6.7rem);
  height: 1px;
  background: var(--red1);
  position: absolute;
  right: -6.7rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-home-message__title .is__en::after {
    width: calc(100% + 2rem);
    right: -2rem;
  }
}
.p-home-message__title .is__jp {
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-message__title .is__jp {
    line-height: 1.3529411765;
    font-size: 1.7rem;
  }
}
.p-home-message__lead {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-message__lead {
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-home-message__btn {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 8rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-home-message__btn {
    justify-content: center;
    margin-top: 5rem;
  }
}

.p-home-business {
  padding: 12rem 0;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-business {
    padding: 7rem 0;
  }
}
.p-home-business__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 3rem;
  box-sizing: border-box;
  background: #FFF;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-home-business__wrap {
    grid-template-columns: 100%;
  }
}
.p-home-business__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 0 0 0 6.7rem;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-home-business__content {
    display: block;
    padding: 5.2rem 2rem 5rem;
  }
}
.p-home-business__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 0 0 3.73rem;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-business__title {
    gap: 0.3rem;
    margin: 0 0 3rem;
  }
}
.p-home-business__title .is__en {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1.2;
  font-size: 9.5rem;
  font-weight: 700;
  font-family: "Akrobat";
}
@media only screen and (max-width: 768px) {
  .p-home-business__title .is__en {
    font-size: 5.2rem;
  }
}
.p-home-business__title .is__en::after {
  content: "";
  width: calc(100% + 6.7rem);
  height: 1px;
  background: var(--red1);
  position: absolute;
  left: -6.7rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-home-business__title .is__en::after {
    width: calc(100% + 2rem);
    left: -2rem;
  }
}
.p-home-business__title .is__jp {
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-business__title .is__jp {
    line-height: 1.3529411765;
    font-size: 1.7rem;
  }
}
.p-home-business__lead {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-business__lead {
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-home-business__project {
  margin: 2.4rem 0 0;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 6rem;
  font-weight: 700;
  font-family: "Akrobat";
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-business__project {
    width: -moz-fit-content;
    width: fit-content;
    margin: 5.3rem auto 0;
    font-size: 5rem;
  }
}
.p-home-business__btn {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-home-business__btn {
    justify-content: center;
  }
}

.p-home-voice {
  padding: 12rem 0;
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-voice {
    padding: 7rem 0 10rem;
  }
}
.p-home-voice__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10.3rem;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__head {
    display: flex;
    flex-direction: column-reverse;
    gap: 7rem;
  }
}
.p-home-voice__head_lead {
  margin: 3.63rem auto 0;
  line-height: 2;
  text-align: right;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__head_lead {
    margin-top: 3rem;
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-home-voice__head_btn {
  display: flex;
  justify-content: flex-end;
  margin: 8rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__head_btn {
    justify-content: center;
    width: 100%;
    margin-top: 5rem;
  }
}
.p-home-voice__head_left {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.p-home-voice__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10.3rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__bottom {
    grid-template-columns: 100%;
    row-gap: 7rem;
  }
}
.p-home-voice__item {
  display: block;
  width: 100%;
  aspect-ratio: 515/300;
  position: relative;
  text-decoration: none;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__item {
    aspect-ratio: 350/300;
  }
}
.p-home-voice__item_image {
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray2);
  border-radius: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}
.p-home-voice__item img {
  transition: 1s;
}
.p-home-voice__item:hover img {
  scale: 1.2 1.2;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__item:hover img {
    scale: 1 1;
  }
}
.p-home-voice__item_title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
  position: absolute;
  left: -4.7rem;
  bottom: 7rem;
  line-height: 2;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-voice__item_title {
    left: -1rem;
  }
}
.p-home-voice__item_title span {
  display: block;
  padding: 0.1rem 0.7rem;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--red1);
}

.p-home-culture {
  padding: 0 0 12rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-culture {
    padding-bottom: 10rem;
  }
}
.p-home-culture__wrap {
  padding: 12rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__wrap {
    padding-top: 5.6rem;
  }
}
.p-home-culture__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__block {
    grid-template-columns: 100%;
    gap: 7rem;
  }
}
.p-home-culture__block + .p-home-culture__block {
  margin-top: 7rem;
}
.p-home-culture__block_lead {
  margin: 3.73rem auto 0;
  line-height: 2;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__block_lead {
    margin-top: 3rem;
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-home-culture__block_btn {
  display: flex;
  justify-content: flex-start;
  margin: 8rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__block_btn {
    justify-content: center;
    width: 100%;
    margin: 5rem auto 0;
  }
}
.p-home-culture__block_right {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.p-home-culture__item {
  display: block;
  width: 100%;
  aspect-ratio: 582/300;
  border: 1px solid var(--gray2);
  border-radius: 2rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__item {
    aspect-ratio: 350/300;
  }
}
.p-home-culture__item_image {
  width: 100%;
  height: 100%;
}
.p-home-culture__item_image img {
  transition: 1s;
}
.p-home-culture__item:hover img {
  scale: 1.2 1.2;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__item:hover img {
    scale: 1 1;
  }
}
.p-home-culture__item_caption {
  display: block;
  width: 100%;
  padding: 0.6rem 0 1.1rem;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  line-height: 1.4583333333;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-home-culture__item_caption {
    padding: 0.9rem 0 1.2rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
}

.p-home-movie {
  padding: 8rem 0 14rem;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-home-movie {
    padding: 6rem 0 9.5rem;
  }
}
.p-home-movie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
  margin: 4.23rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-home-movie__grid {
    grid-template-columns: 100%;
    gap: 5.5rem;
    margin-top: 6.73rem;
  }
}
.p-home-movie__grid_item figcaption {
  display: block;
  margin: 0.6rem auto 0;
  line-height: 1.4583333333;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-home-movie__grid_item figcaption {
    margin-top: 1rem;
  }
}

.p-business-about {
  min-height: 92.8rem;
  padding: 10.8rem 0 0;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-business-about {
    min-height: 41.5rem;
    padding-top: 6rem;
    background: #FFF;
  }
}
.p-business-civil {
  padding: 0 0 13.94rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-business-civil {
    padding-bottom: 8rem;
  }
}
.p-business-civil__head {
  background-image: url(../img/business/bg-01.webp);
}
@media only screen and (max-width: 768px) {
  .p-business-civil__head {
    background-image: url(../img/business/bg-01-sp.webp);
  }
}
.p-business-architecture {
  padding: 0 0 15rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-business-architecture {
    padding-bottom: 0;
  }
}
.p-business-architecture__head {
  background-image: url(../img/business/bg-02.webp);
}
@media only screen and (max-width: 768px) {
  .p-business-architecture__head {
    background-image: url(../img/business/bg-02-sp.webp);
  }
}
.p-business__head {
  min-height: 62rem;
  padding: 7.8rem 0 0;
  box-sizing: border-box;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-business__head {
    min-height: 45rem;
    padding-top: 7.2rem;
  }
}
.p-business__body {
  padding: 7rem 0 0;
  text-align: left;
}
.p-business__bnr {
  display: block;
  margin: 10rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-business__bnr {
    margin-top: 7rem;
  }
}
.p-business__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
  margin: 10rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-business__grid {
    grid-template-columns: 100%;
    row-gap: 7rem;
    margin-top: 7rem;
  }
}
.p-business__grid_content {
  padding: 2.2rem 0 0;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-business__grid_content {
    padding-top: 2rem;
  }
}
.p-business__grid_title {
  margin: 0 0 1.6rem;
  line-height: 1.4285714286;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-business__grid_title {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
}

.p-projectstory-about {
  min-height: 92.9rem;
  padding: 10.8rem 0 0;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-about {
    min-height: initial;
    padding: 6rem 0 7rem;
    background: #FFF;
  }
}
.p-projectstory-body {
  padding: 0 0 40rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body {
    padding-bottom: 0;
    background: #FFF;
  }
}
.p-projectstory-body__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 12rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__wrap {
    row-gap: 8.4rem;
  }
}
.p-projectstory-body__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--red1);
  border-radius: 3rem;
  box-sizing: border-box;
  background: #FFF;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item {
    grid-template-columns: 100%;
  }
}
.p-projectstory-body__item_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.94rem;
  margin: 0 0 3.76rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item_title {
    gap: 0.57rem;
    width: calc(100% + 2rem);
    margin-right: -2rem;
    margin-bottom: 3rem;
  }
}
.p-projectstory-body__item_title .is__en {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1.4375;
  font-size: 8rem;
  font-weight: 700;
  font-family: "Akrobat";
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item_title .is__en {
    line-height: 1.25;
    font-size: 5.2rem;
  }
}
.p-projectstory-body__item_title .is__en::after {
  content: "";
  width: calc(100% + 6.7rem);
  height: 1px;
  background: var(--red1);
  position: absolute;
  left: -6.7rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item_title .is__en::after {
    width: calc(100% + 2rem);
    left: -2rem;
  }
}
.p-projectstory-body__item_title .is__jp {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3333333333;
  font-size: 3rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item_title .is__jp {
    line-height: 1.3333333333;
    font-size: 1.8rem;
  }
}
.p-projectstory-body__item_caption {
  line-height: 2;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item_caption {
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-projectstory-body__item_btn {
  display: flex;
  justify-content: flex-start;
  margin: 7.7rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__item_btn {
    justify-content: center;
    margin-top: 3.3rem;
  }
}
.p-projectstory-body__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 6.7rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-body__content {
    display: block;
    padding: 6rem 2rem;
  }
}
.p-projectstory-head {
  padding: 10.8rem 0 7.4rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.75);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head {
    padding: 6rem 0 5.62rem;
    background: #FFF;
  }
}
.p-projectstory-head__wrap {
  display: flex;
  align-items: flex-end;
  gap: 5.1rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__wrap {
    flex-direction: column;
    gap: 8.13rem;
  }
}
.p-projectstory-head__wrap_left {
  flex: 1 1 auto;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__wrap_left {
    width: 100%;
  }
}
.p-projectstory-head__wrap_right {
  flex: 0 0 50.5rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__wrap_right {
    flex: 1 1 auto;
    width: 100%;
  }
}
.p-projectstory-head__staff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 7.85rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__staff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.95rem;
    margin-top: 9.35rem;
    padding-left: 5.4rem;
    box-sizing: border-box;
  }
}
.p-projectstory-head__staff_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__staff_item {
    flex-direction: row;
    align-items: flex-end;
  }
}
.p-projectstory-head__staff_image {
  width: 12.834rem;
  margin: 0 auto;
  position: relative;
}
.p-projectstory-head__staff_career {
  width: 5.755rem;
  position: absolute;
  top: -1.95rem;
}
.p-projectstory-head__staff_career.is-01 {
  left: -5.44rem;
}
.p-projectstory-head__staff_career.is-02, .p-projectstory-head__staff_career.is-03 {
  right: -5.64rem;
}
.p-projectstory-head__staff_content {
  padding: 0.4rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__staff_content {
    width: 16.5rem;
  }
}
.p-projectstory-head__staff_post {
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-projectstory-head__staff_name {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-projectstory-head__staff_sub {
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-projectstory-head__info {
  padding-left: 2.6rem;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__info {
    padding-left: 2rem;
  }
}
.p-projectstory-head__info::before {
  content: "";
  width: 1rem;
  height: 100%;
  border: 1px solid var(--gray2);
  box-sizing: border-box;
  background: var(--red1);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__info::before {
    width: 0.865rem;
  }
}
.p-projectstory-head__info_box {
  display: flex;
  margin: 0 auto;
  padding: 2rem 0;
  box-sizing: border-box;
}
.p-projectstory-head__info_box + .p-projectstory-head__info_box {
  border-top: 1px solid var(--base);
}
.p-projectstory-head__info_title {
  flex: 0 0 10rem;
  padding-left: 1rem;
  box-sizing: border-box;
}
.p-projectstory-head__info_content {
  flex: 1 1 auto;
}
.p-projectstory-head__info_title, .p-projectstory-head__info_content {
  font-weight: 700;
}
.p-projectstory-head__title {
  margin: 0 0 2.2rem;
  line-height: 1.4285714286;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-projectstory-head__title {
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}
.p-projectstory-comment {
  margin-bottom: 78.8rem;
  padding: 11.84rem 0 10rem;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment {
    margin-bottom: 0;
    padding: 0 0 8rem;
  }
}
.p-projectstory-comment__block {
  display: flex;
  gap: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment__block {
    flex-direction: column-reverse;
    gap: 6.74rem;
  }
}
.p-projectstory-comment__block + .p-projectstory-comment__block {
  margin-top: 7rem;
}
.p-projectstory-comment__block:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment__block:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.p-projectstory-comment__block_content {
  flex: 1 1 auto;
  text-align: left;
}
.p-projectstory-comment__block_image {
  flex: 0 0 58.2rem;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment__block_image {
    flex: 1 1 auto;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
  }
}
.p-projectstory-comment__block_title {
  margin: 0 0 3.2rem;
  line-height: 1.4285714286;
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment__block_title {
    margin-bottom: 2rem;
    line-height: clac(35/24);
    font-size: 2.4rem;
  }
}
.p-projectstory-comment__block_body {
  font-weight: 700;
  color: #FFF;
}
.p-projectstory-comment__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
  margin: 10rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment__gallery {
    grid-template-columns: 100%;
    gap: 4rem;
    margin-top: 7.9rem;
  }
}
.p-projectstory-comment__gallery_item figcaption {
  display: block;
  margin: 0.8rem 0 0;
  line-height: 2;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-projectstory-comment__gallery_item figcaption {
    margin-top: 1.5rem;
  }
}

.p-message-mv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100dvh;
  min-height: 81.5rem;
  padding: 0 0 9.8rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-message-mv {
    min-height: 50rem;
    padding-bottom: 5.85rem;
  }
}
.p-message-body {
  background: var(--red1);
}
.p-message-body__block {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block {
    flex-direction: column;
    gap: 7rem;
  }
}
.p-message-body__block.is-reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block.is-reverse {
    flex-direction: column;
  }
}
.p-message-body__block_content, .p-message-body__block_image {
  width: calc((100% - 3.5rem) / 2);
  text-align: left;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block_content, .p-message-body__block_image {
    width: 100%;
  }
}
.p-message-body__block:first-child .p-message-body__block_content {
  display: flex;
  justify-content: flex-end;
  padding-top: 10.7rem;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block:first-child .p-message-body__block_content {
    padding-top: 6rem;
  }
}
.p-message-body__block + .p-message-body__block {
  margin-top: 7rem;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block + .p-message-body__block {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-message-body__block_content {
    padding: 6rem 2rem 0;
    box-sizing: border-box;
  }
}
.p-message-body__block_container {
  width: 59.125rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block_container {
    width: 100%;
  }
}
.p-message-body__block_container p + p {
  margin-top: 1.4em;
}
.p-message-body__block_name {
  margin: 3.6rem 0 0;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-message-body__block_name {
    margin-top: 2.5rem;
  }
}
.p-message-body__block_name strong {
  margin-left: 0.6em;
  font-size: 2.8rem;
}
.p-message-philosophy {
  padding: 12rem 0;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-message-philosophy {
    padding: 7rem 0;
  }
}
.p-message-philosophy__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .p-message-philosophy__body {
    flex-direction: column;
    gap: 6.3rem;
  }
}
.p-message-philosophy__body_image {
  width: 68.5rem;
  flex: 0 0 68.5rem;
}
@media only screen and (max-width: 768px) {
  .p-message-philosophy__body_image {
    width: 100dvw;
    margin: 0 -2rem;
    flex: 1 1 auto;
  }
}
.p-message-philosophy__body_content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1 1 auto;
  text-align: right;
}
.p-message-philosophy__body_copy {
  margin: 5.33rem 0 0;
  line-height: 0.8333333333;
  letter-spacing: 0.025em;
  font-size: 6rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-message-philosophy__body_copy {
    margin-top: 1.73rem;
    line-height: 1.44;
    font-size: 5rem;
  }
}
.p-message-philosophy__body_lead {
  margin: 2.4rem 0 0;
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-message-philosophy__body_lead {
    margin-top: 1.2rem;
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-message-company {
  background: #FFF;
}
.p-message-company__container {
  padding: 6.4rem 0 15rem;
}
@media only screen and (max-width: 768px) {
  .p-message-company__container {
    padding: 5rem 0 0;
  }
}
.p-message-company__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
  margin: 9.2rem auto 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-message-company__block {
    grid-template-columns: 100%;
    gap: 7rem;
    margin-top: 6.5rem;
  }
}
.p-message-company__box {
  display: flex;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--base);
  font-weight: 700;
}
.p-message-company__box + .p-message-company__box {
  margin-top: 2rem;
}
.p-message-company__box_title {
  flex: 0 0 20.6rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-message-company__box_title {
    flex: 0 0 10.3rem;
  }
}
.p-message-company__box_content {
  flex: 1 1 auto;
}
.p-message-company__maps_title {
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 2rem;
  font-weight: 700;
}
.p-message-company__maps_sign {
  margin: 0 0 1.5rem;
  line-height: 1.6;
  font-size: 2rem;
  font-weight: 700;
}
.p-message-company__maps_box + .p-message-company__maps_box {
  margin-top: 8.2rem;
}
@media only screen and (max-width: 768px) {
  .p-message-company__maps_box + .p-message-company__maps_box {
    margin-top: 5rem;
  }
}
.p-message-company__maps_box figure iframe {
  width: 100%;
  height: 54.4rem;
}
@media only screen and (max-width: 768px) {
  .p-message-company__maps_box figure iframe {
    height: 32.7rem;
  }
}
.p-message-company__maps_box figure figcaption {
  display: block;
  margin: 1.5rem 0 0;
  line-height: 2.375;
  font-weight: 700;
}

.p-workstyle-mv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100dvh;
  min-height: 81.5rem;
  padding: 0 0 9.8rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-mv {
    min-height: 50rem;
    padding-bottom: 5.85rem;
  }
}
.p-workstyle-about {
  height: 100dvh;
  min-height: 83rem;
  padding: 10.8rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-about {
    height: auto;
    min-height: initial;
    padding: 6rem 0 7rem;
    background: #FFF;
  }
}
.p-workstyle-body {
  padding: 12rem 0;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body {
    padding: 7rem 0 10.7rem;
  }
}
.p-workstyle-body__block {
  display: flex;
  border-radius: 3rem;
  box-sizing: border-box;
  background: #FFF;
  overflow: hidden;
}
.p-workstyle-body__block + .p-workstyle-body__block {
  margin-top: 12rem;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block + .p-workstyle-body__block {
    margin-top: 7rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block.ptn-01 {
    flex-direction: column;
  }
}
.p-workstyle-body__block.ptn-01 .p-workstyle-body__block_image {
  flex: 0 0 58.2rem;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block.ptn-01 .p-workstyle-body__block_image {
    width: 100%;
    flex: 1 1 auto;
  }
}
.p-workstyle-body__block.ptn-01 .p-workstyle-body__block_content {
  flex: 1 1 auto;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block.ptn-01 .p-workstyle-body__block_content {
    width: 100%;
  }
}
.p-workstyle-body__block.ptn-02 {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block.ptn-02 {
    flex-direction: column-reverse;
  }
}
.p-workstyle-body__block.ptn-02 .p-workstyle-body__block_image {
  flex: 0 0 47.9rem;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block.ptn-02 .p-workstyle-body__block_image {
    width: 100%;
    flex: 1 1 auto;
  }
}
.p-workstyle-body__block.ptn-02 .p-workstyle-body__block_content {
  flex: 1 1 auto;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block.ptn-02 .p-workstyle-body__block_content {
    width: 100%;
  }
}
.p-workstyle-body__block_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
  box-sizing: border-box;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block_content {
    padding: 4rem 2rem;
  }
}
.p-workstyle-body__block_title {
  margin: 0 0 2rem;
  line-height: 1.3333333333;
  font-size: 3rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-workstyle-body__block_title {
    line-height: 1.6666666667;
    font-size: 2.4rem;
  }
}

.p-education-about {
  padding: 10.8rem 0 0;
  box-sizing: border-box;
  background: #FFF;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-education-about {
    height: auto;
    min-height: inherit;
    padding: 6rem 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-education-about__staff {
    width: 27.447rem;
    margin-right: 2.2rem;
  }
}
.p-education-training {
  padding: 16.9rem 0 0;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-education-training {
    padding-top: 10rem;
  }
}
.p-education-training__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.8rem 3.6rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 768px) {
  .p-education-training__grid {
    grid-template-columns: 100%;
    gap: 7rem;
    margin-top: 6.73rem;
  }
}
.p-education-training__item_content {
  padding: 2.2rem 0 0;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-education-training__item_content {
    padding-top: 2rem;
  }
}
.p-education-training__item_title {
  margin: 0 0 1.6rem;
  line-height: 1.4285714286;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-education-training__item_title {
    margin-bottom: 1.4rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
}
.p-education-career {
  padding: 10rem 0 11.8rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-education-career {
    padding: 9.7rem 0 0;
  }
}
.p-education-career__lead {
  position: relative;
  z-index: 1;
  line-height: 1.5625;
  text-align: left;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-education-career__lead {
    line-height: 1.5;
    font-size: 2.4rem;
  }
}
.p-education-career__image {
  width: 130rem;
  margin-top: -2.2rem;
  margin-left: -10rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-education-career__image {
    width: 100%;
    margin: 0;
  }
}
.p-education-career__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1.5625;
  text-align: right;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-education-career__copy {
    margin-top: 3.1rem;
    position: static;
    line-height: 1.5;
    font-size: 2.4rem;
  }
}
.p-education-career__content {
  margin: 6.8rem auto 0;
}
.p-education-career__box {
  position: relative;
  text-align: left;
}
.p-education-career__box.is-static .p-education-career__box_content {
  position: static;
}
.p-education-career__box + .p-education-career__box {
  margin-top: 10rem;
}
.p-education-career__box_image {
  width: 24.7rem;
  margin: 0 0 0 auto;
  position: relative;
}
.p-education-career__box_comment.is-02 {
  width: 13.441rem;
  position: absolute;
  right: 0;
  bottom: -6.25rem;
}
.p-education-career__box_comment.is-05 {
  width: 13.441rem;
  position: absolute;
  top: -6.52rem;
  right: 2rem;
}
.p-education-career__box_content {
  padding-left: 1.6rem;
  border-left: 1rem solid var(--red1);
  box-sizing: border-box;
  position: absolute;
  top: 6rem;
  left: 0;
}
.p-education-career__box_title {
  margin: 0 0 1.1rem;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red1);
}

.p-culture-about {
  padding: 10.8rem 0 0;
  background: #FFF;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-culture-about {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-culture-about__staff {
    width: 27.105rem;
    margin: 0 2.5rem 0 auto;
  }
}
.p-culture-system {
  padding: 16.9rem 0 0;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-culture-system {
    padding-top: 10rem;
  }
}
.p-culture-event {
  padding: 10.5rem 0 11rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-culture-event {
    padding: 10rem 0 0;
  }
}

.p-voice-head {
  min-height: 83rem;
  padding-top: 10.8rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-voice-head {
    min-height: initial;
    padding: 6rem 0 6.8rem;
    box-sizing: border-box;
    background: #FFF;
  }
}
.p-voice-body {
  padding: 12rem 0 14rem;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-voice-body {
    padding: 7rem 0;
  }
}
.p-voice-body__wrap {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__wrap {
    gap: 8.4rem;
  }
}
.p-voice-body__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 3rem;
  box-sizing: border-box;
  background: #FFF;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item {
    grid-template-columns: 100%;
  }
}
.p-voice-body__item_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3.6rem 0 6.7rem;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: var(--red1);
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_content {
    display: block;
    padding: 6rem 2rem;
  }
}
.p-voice-body__item_title {
  display: flex;
  flex-direction: column;
  gap: 0.74rem;
  margin: 0 -3.6rem 2.76rem 0;
  color: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_title {
    gap: 0.57rem;
    margin-bottom: 3rem;
  }
}
.p-voice-body__item_title .is__en {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1;
  font-size: 8.5rem;
  font-weight: 700;
  font-family: "Akrobat";
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_title .is__en {
    font-size: 5.2rem;
  }
}
.p-voice-body__item_title .is__en::after {
  content: "";
  width: calc(100% + 6.7rem);
  height: 1px;
  background: var(--red1);
  position: absolute;
  left: -6.7rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_title .is__en::after {
    width: calc(100% + 2rem);
    left: -2rem;
  }
}
.p-voice-body__item_title .is__jp {
  line-height: 1.3333333333;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_title .is__jp {
    line-height: 1.3333333333;
    font-size: 1.8rem;
  }
}
.p-voice-body__item_caption {
  line-height: 2;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_caption {
    line-height: 2;
    font-size: 1.6rem;
  }
}
.p-voice-body__item_btn {
  display: flex;
  justify-content: flex-start;
  margin: 7rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-voice-body__item_btn {
    justify-content: center;
    margin-top: 3.3rem;
  }
}
.p-voice-detail {
  padding: 12rem 0 15rem;
  background: var(--red1);
}
@media only screen and (max-width: 768px) {
  .p-voice-detail {
    padding: 0 0 10rem;
  }
}
.p-voice-detail__wrap {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__wrap {
    gap: 0;
  }
}
.p-voice-detail__block {
  display: flex;
  gap: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__block {
    flex-direction: column;
    gap: 0;
  }
}
.p-voice-detail__block:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__block:nth-child(even) {
    flex-direction: column;
  }
}
.p-voice-detail__block_content {
  flex: 1 1 auto;
  text-align: left;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__block_content {
    width: 100%;
    padding: 7rem 0;
  }
}
.p-voice-detail__block_title {
  margin: 0 0 3.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__block_title {
    margin-bottom: 2rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}
.p-voice-detail__block_comment {
  font-weight: 700;
}
.p-voice-detail__block_image {
  flex: 0 0 58.2rem;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__block_image {
    flex: 1 1 auto;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
  }
}
.p-voice-detail__table {
  flex: 0 0 58.2rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__table {
    flex: 1 1 auto;
    width: 100%;
  }
}
.p-voice-detail__table_title {
  margin: 0 0 1.6rem;
  line-height: 1.0714285714;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Akrobat";
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__table_title {
    margin-bottom: 1.4rem;
  }
}
.p-voice-detail__private {
  margin: 9.4rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__private {
    margin-top: 7rem;
  }
}
.p-voice-detail__private_title {
  display: flex;
  align-items: center;
  gap: 1.13rem;
  margin: 0 0 3.7rem;
  line-height: 1.0714285714;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Akrobat";
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__private_title {
    gap: 1rem;
  }
}
.p-voice-detail__private_title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #FFF;
}
.p-voice-detail__private_block {
  display: grid;
  grid-template-columns: 27.3rem 27.3rem 1fr;
  gap: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__private_block {
    grid-template-columns: 100%;
    gap: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__private_image.is-01 {
    grid-row: 1/2;
  }
  .p-voice-detail__private_image.is-02 {
    grid-row: 3/4;
  }
}
.p-voice-detail__private_content {
  text-align: left;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__private_content {
    grid-row: 2/3;
  }
}
.p-voice-detail__private_copy {
  margin: 0 0 3.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-voice-detail__private_copy {
    margin-bottom: 2rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}
.p-voice-detail__private_comment {
  font-weight: 700;
}

.p-recruit-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 768px) {
  .p-recruit-head {
    grid-template-columns: 100%;
  }
}
.p-recruit-head__content {
  display: flex;
  justify-content: flex-end;
  background: var(--red1);
  padding: 10rem 0 9rem 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-recruit-head__content {
    padding: 6rem 2rem 6.8rem;
  }
}
.p-recruit-head__content_inner {
  width: 60rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-recruit-head__content_inner {
    width: 100%;
  }
}
.p-recruit-head__content_body {
  font-weight: 700;
  color: #FFF;
}
.p-recruit-head__content_body p + p {
  margin-top: 1.7em;
}
.p-recruit-head__title {
  margin: 0 0 4rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-recruit-head__title {
    margin-bottom: 3rem;
    line-height: 1.4583333333;
    font-size: 2.4rem;
  }
}
.p-recruit-head__bg {
  background: url(../img/recruit/bg-01.webp) 50% 100%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-recruit-head__bg {
    display: none;
  }
}
.p-recruit-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 768px) {
  .p-recruit-body {
    grid-template-columns: 100%;
  }
}
.p-recruit-body__head {
  display: flex;
  justify-content: flex-end;
  padding: 10.8rem 0 0 3rem;
  box-sizing: border-box;
  background: url(../img/recruit/img-01.webp) 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .p-recruit-body__head {
    height: 50rem;
    padding: 7rem 2rem 0;
    background-image: url(../img/recruit/img-01-sp.webp);
  }
}
.p-recruit-body__head_inner {
  width: 60rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-recruit-body__head_inner {
    width: 100%;
  }
}
.p-recruit-body__content {
  display: flex;
  justify-content: flex-start;
  padding: 11.86rem 3rem 12rem 6.7rem;
  box-sizing: border-box;
  background: #FFF;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-recruit-body__content {
    padding: 7rem 2rem 0;
  }
}
.p-recruit-body__content_inner {
  width: 60rem;
}
@media only screen and (max-width: 768px) {
  .p-recruit-body__content_inner {
    width: 100%;
  }
}
.p-recruit-body__box {
  display: flex;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--base);
  box-sizing: border-box;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-recruit-body__box {
    line-height: 2;
    font-size: 1.4rem;
  }
}
.p-recruit-body__box + .p-recruit-body__box {
  margin-top: 2rem;
}
.p-recruit-body__box_title {
  flex: 0 0 10.2rem;
}
@media only screen and (max-width: 768px) {
  .p-recruit-body__box_title {
    flex: 0 0 7.5rem;
  }
}
.p-recruit-body__box_content {
  flex: 1 1 auto;
}