@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, img, a, table {
  border: 0;
  vertical-align: bottom;
}

span, tr, th, td {
  vertical-align: baseline;
}

div, article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

span {
  display: inline-block;
}

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

p, a, h1, h2, h3, h4, li, div, span, dt, dd, th, td {
  text-align: left;
}

a {
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: currentColor;
  font: inherit;
  font-size: 100%;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

:root {
  --header-height: 7.5rem;
  --side-width: 5rem;
  --side-height: auto;
  --vh: 1vh;
  --100vh: calc(var(--vh) * 100);
  --mv-height: calc(var(--100vh) - 8rem - var(--header-height));
  --mv-height: clamp(57rem, calc(var(--100vh) - 8rem - var(--header-height)), 92rem);
}
@media screen and (max-width: 960px) {
  :root {
    --side-width: 100%;
    --mv-height: 84rem;
    --side-width: 100%;
    --side-height: 8rem;
  }
}

html {
  font-size: 10px;
}
@media screen and (max-width: 1700px) {
  html {
    font-size: 0.5882352941vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  background: #232323;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 2.4rem;
  }
}

a {
  color: inherit;
  display: inline-block;
}

a:not([class]) {
  color: inherit;
  /* text-decoration: underline; */
}
@media screen and (min-width: 961px) {
  a:not([class]) {
    transition: opacity ease 0.3s;
  }
  a:not([class]):hover {
    opacity: 0.7;
  }
}

picture {
  line-height: 0;
  display: inherit;
}
picture img {
  vertical-align: baseline;
}

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

.l-main {
  background: #232323;
}

.l-section {
  position: relative;
  z-index: 10;
}

.l-inner {
  width: 100%;
  max-width: 184rem;
  padding: 0 4rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-inner {
    padding: 0 1.5rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9001;
  padding: 2.6rem 4.2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-form {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  padding: 2.6rem 4.2rem;
  mix-blend-mode: exclusion;
}
@media screen and (max-width: 960px) {
  .l-header-form {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.l-header__title {
  line-height: 0;
}

.l-header__logo {
  width: 27.9rem;
  line-height: 0;
  overflow: hidden;
}
.l-header__logo img {
  transform: translate(0, 110%);
  animation: headerLogo 1.2s cubic-bezier(0.01, 0.55, 0.55, 1) forwards;
}

@keyframes headerLogo {
  to {
    transform: translate(0, 0);
  }
}
.l-gnav {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9001;
  width: 46.8rem;
  height: 100vh;
  padding: 9.5rem 1.5rem 9.5rem 4rem;
  background: rgba(38, 29, 22, 0.9019607843);
  font-family: "Zen Old Mincho", serif;
  transition: 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .l-gnav {
    width: 100%;
    padding: 14.4rem 7.4rem 14.4rem 6.3rem;
  }
}

.l-gnav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l-gnav__list {
  height: 100%;
}

.l-gnav__item {
  margin-bottom: 1.7rem;
}
.l-gnav__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .l-gnav__item {
    margin-bottom: 2.5rem;
  }
}

.l-gnav__link {
  font-size: 2.4rem;
  cursor: pointer;
  transition: 0.4s ease;
}
@media screen and (max-width: 960px) {
  .l-gnav__link {
    font-size: 3.4rem;
  }
}

@media (hover: hover) {
  .l-gnav__link:hover {
    opacity: 0.7;
  }
}
.l-gnav__list-archive {
  padding-left: 2rem;
  margin-bottom: 1.7rem;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive {
    padding-left: 5rem;
    margin-bottom: 2.5rem;
  }
}

.l-gnav__list-archive__item {
  margin-bottom: 1.7rem;
}
.l-gnav__list-archive__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive__item {
    margin-bottom: 2.5rem;
  }
}

.l-gnav__list-archive__link {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.4s ease;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive__link {
    font-size: 3.4rem;
    gap: 5rem;
  }
}

@media (hover: hover) {
  .l-gnav__list-archive__link:hover {
    opacity: 0.7;
  }
}
.l-gnav__list-archive__link::before {
  display: block;
  content: "";
  background: #fff;
  height: 1px;
  width: 0.5rem;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive__link::before {
    width: 1rem;
  }
}

.l-header__hamburger {
  --h: 2.5rem;
  --line: .2rem;
  --move: calc((var(--h) - var(--line)) / 2);
  position: relative;
  z-index: 9002;
  width: 3.2rem;
  height: var(--h);
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .l-header__hamburger {
    --h: 4rem;
    width: 5rem;
  }
}

.l-header__hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--line);
  background: #fff;
  border-radius: 0.4rem;
  transform-origin: center;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
}
.l-header__hamburger__line.-top {
  top: 0;
}
.l-header__hamburger__line.-middle {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.l-header__hamburger__line.-bottom {
  bottom: 0;
}

.l-header__hamburger.is-active .l-header__hamburger__line.-top {
  animation: open-menu-top 0.75s forwards;
}
.l-header__hamburger.is-active .l-header__hamburger__line.-middle {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger__line.-bottom {
  animation: open-menu-bottom 0.75s forwards;
}

.l-header__hamburger.is-close .l-header__hamburger__line.-top {
  animation: close-menu-top 0.75s forwards;
}
.l-header__hamburger.is-close .l-header__hamburger__line.-middle {
  opacity: 1;
}
.l-header__hamburger.is-close .l-header__hamburger__line.-bottom {
  animation: close-menu-bottom 0.75s forwards;
}

/*  バーガーメニューのアニメーション
============================================ */
@keyframes close-menu-top {
  0% {
    transform: translateY(var(--move)) rotate(45deg);
  }
  50% {
    transform: translateY(var(--move)) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes close-menu-bottom {
  0% {
    transform: translateY(calc(var(--move) * -1)) rotate(-45deg);
  }
  50% {
    transform: translateY(calc(var(--move) * -1)) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes open-menu-top {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(var(--move)) rotate(0);
  }
  100% {
    transform: translateY(var(--move)) rotate(45deg);
  }
}
@keyframes open-menu-bottom {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc(var(--move) * -1)) rotate(0);
  }
  100% {
    transform: translateY(calc(var(--move) * -1)) rotate(-45deg);
  }
}
body.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden; /* iOS対策にもなることが多い */
}

.l-side {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 9000;
  width: var(--side-width);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 960px) {
  .l-side {
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
    flex-direction: row;
    gap: 0.3rem;
  }
}

.l-side__link {
  width: 100%;
  height: 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232323;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 700;
  writing-mode: vertical-rl;
}
.l-side__link.-reserve {
  background: #c30d23;
}
@media screen and (max-width: 960px) {
  .l-side__link {
    width: auto;
    height: var(--side-height);
    flex: 1;
    font-size: 2.4rem;
    writing-mode: horizontal-tb;
  }
}

.l-footer {
  padding: 14.5rem 0 2.5rem;
  background: #232323;
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 46rem;
  height: 100%;
  display: block;
  background: #535353;
  clip-path: polygon(55.4% 0%, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 10rem 0 calc(3.5rem + var(--side-height));
  }
  .l-footer::before {
    width: 44rem;
    clip-path: polygon(61.4% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}

.l-footer__inner {
  width: 56rem;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-footer__inner {
    width: 60rem;
  }
}

.l-footer__logo {
  width: 51.5rem;
  max-width: 100%;
  margin: 0 auto 8.5rem;
}

.l-footer__company {
  margin: 0 0 15rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 960px) {
  .l-footer__company {
    margin: 0 0 11.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.l-footer__company-name {
  font-size: 3.6rem;
  line-height: 1.0277777778;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 960px) {
  .l-footer__company-name {
    font-size: 6rem;
  }
}

.l-footer__company-address {
  font-size: 1.6rem;
  line-height: 2.3125;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .l-footer__company-address {
    font-size: 2.8rem;
    line-height: 1.3214285714;
  }
}

.l-footer__company-tel {
  font-size: 2.4rem;
  line-height: 1.5416666667;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 960px) {
  .l-footer__company-tel {
    font-size: 3rem;
  }
}

.l-footer__copyright {
  font-size: 1.4rem;
  line-height: 2.6428571429;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer__copyright {
    margin: 0 calc(50% - 50vw);
    font-size: 2rem;
    line-height: 1.85;
  }
}

.c-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 4rem;
  height: 4rem;
}
.c-slider-arrow::before {
  content: "";
  width: 400%;
  height: 400%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #000 transparent transparent #000;
}
.c-slider-arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #fff transparent transparent #fff;
  transition: width 0.4s cubic-bezier(1, 0, 0, 1), height 0.4s cubic-bezier(1, 0, 0, 1);
}
@media (hover: hover) {
  .c-slider-arrow:hover::after {
    width: 400%;
    height: 400%;
  }
}
@media screen and (max-width: 960px) {
  .c-slider-arrow {
    top: 47.5%;
  }
}

.p-model:nth-child(even) .c-slider-arrow::before {
  border-color: #fafafa transparent transparent #fafafa;
}
.p-model:nth-child(even) .c-slider-arrow::after {
  border-color: #232323 transparent transparent #232323;
}

.c-slider-arrow.-prev {
  left: 2rem;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow.-prev {
    left: 1rem;
  }
}

.c-slider-arrow.-next {
  right: 2rem;
  transform: translate(0, -50%) rotate(45deg) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow.-next {
    right: 1rem;
  }
}

.c-slider-arrow__black {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 4rem;
  height: 4rem;
}
.c-slider-arrow__black::before {
  content: "";
  width: 400%;
  height: 400%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #fff transparent transparent #fff;
}
.c-slider-arrow__black::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #000 transparent transparent #000;
  transition: width 0.4s cubic-bezier(1, 0, 0, 1), height 0.4s cubic-bezier(1, 0, 0, 1);
}
@media (hover: hover) {
  .c-slider-arrow__black:hover::after {
    width: 400%;
    height: 400%;
  }
}
@media screen and (max-width: 960px) {
  .c-slider-arrow__black {
    top: 47.5%;
  }
}

.c-slider-arrow__black.-prev {
  left: 2rem;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow__black.-prev {
    left: 1rem;
  }
}

.c-slider-arrow__black.-next {
  right: 2rem;
  transform: translate(0, -50%) rotate(45deg) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow__black.-next {
    right: 1rem;
  }
}

.c-slider-pagination {
  display: flex;
}

.c-slider-pagination__bullet {
  position: relative;
  height: 2px;
  flex: 1;
  background: #d9d9d9;
  overflow: hidden;
}
.c-slider-pagination__bullet::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #343232;
  opacity: 0;
}
.c-slider-pagination__bullet.is-active::after {
  opacity: 1;
}

@media (hover: hover) {
  .c-hover-opacity {
    transition: 0.4s ease;
  }
  .c-hover-opacity:hover {
    opacity: 0.7;
  }
}

.c-enter-opacity {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.01, 0.55, 0.55, 1);
  will-change: opacity;
}
.c-enter-opacity.is-view {
  opacity: 1;
  will-change: auto;
}

.c-enter-fadeup {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: 1s cubic-bezier(0.01, 0.55, 0.55, 1);
  will-change: opacity, transform;
}
.c-enter-fadeup.is-view {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}

.c-enter-bg {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.c-enter-bg__item {
  height: 100%;
  flex: 1;
  background: #fff;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.c-enter-bg__item.is-view {
  transform: translate(0, 101%);
}

.p-mv {
  position: relative;
  z-index: 100;
  padding: 0 0 10rem 8rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-mv {
    padding: 0 0 10.5rem;
  }
}

.p-mv__outer {
  position: relative;
  z-index: 1;
  height: 88rem;
  padding: 2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1700px) {
  .p-mv__outer {
    height: 82rem;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__outer {
    height: 92rem;
  }
}

.p-mv__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.p-mv__slider {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: opacity 0.4s ease;
}
.p-mv__slider.swiper-initialized {
  opacity: 1;
}
.p-mv__slider .swiper-slide-active img,
.p-mv__slider .swiper-slide-duplicate-active img,
.p-mv__slider .swiper-slide-prev img {
  animation: zoomDown 8s forwards;
}

@keyframes zoomDown {
  to {
    transform: scale(1);
  }
}
.p-mv__title {
  width: 88.2rem;
  max-width: 100%;
  opacity: 0;
  transform: translate(1.1);
  animation: mvTitle 1.2s ease forwards;
}
@media screen and (max-width: 960px) {
  .p-mv__title {
    width: 69.4rem;
  }
}

@keyframes mvTitle {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.p-mv__lead {
  position: absolute;
  bottom: -9.5rem;
  left: 50%;
  transform: translate(-50%, 2rem);
  opacity: 0;
  animation: mvLead 1s ease 0.6s forwards;
}

@keyframes mvLead {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.p-mv__lead-main {
  color: #312f32;
  font-size: 15rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-mv__lead-main {
    margin: 0 0 2.5rem;
    font-size: 8rem;
    letter-spacing: -0.01em;
  }
}

.p-mv__lead-sub {
  color: #232323;
  font-size: 3.6rem;
  line-height: 1.3611111111;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  transform: skewX(-10deg);
}
.p-mv__lead-sub small {
  font-size: 3rem;
}
@media screen and (max-width: 960px) {
  .p-mv__lead-sub {
    font-size: 3rem;
    text-align: center;
  }
  .p-mv__lead-sub small {
    font-size: 100%;
  }
}

.p-intro {
  padding: 7.6rem 0 12rem;
  color: #232323;
}
.p-intro::before {
  content: "";
  position: absolute;
  top: -26rem;
  right: 0;
  z-index: -1;
  width: calc(100% - 4rem);
  height: 100%;
  display: block;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 10rem 0 13rem;
  }
  .p-intro::before {
    width: 100%;
  }
}

.p-intro__container {
  padding: 0 0 0 8rem;
  margin: 0 calc(50% - 50vw) 5rem 0;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 960px) {
  .p-intro__container {
    padding: 0;
    margin: 0 0 8rem;
    flex-direction: column;
  }
}

.p-intro__main {
  width: 80rem;
  padding: 0 0 4.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .p-intro__main {
    width: 100%;
    padding: 0;
  }
}

.p-intro__title {
  margin: 0 0 15rem;
  font-size: 4.8rem;
  line-height: 1.2083333333;
  letter-spacing: 0.14em;
  font-weight: 400;
  text-indent: -0.5em;
}
.p-intro__title span {
  color: #c30d23;
  text-indent: 0;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    margin: 0 0 6.5rem;
    font-size: 6rem;
    line-height: 1.25;
    letter-spacing: 0.14em;
    text-align: center;
    text-indent: 0;
  }
}

.p-intro__text {
  font-size: 1.6rem;
  line-height: 2.3125;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    font-size: 2.8rem;
    line-height: 1.5714285714;
  }
}

.p-intro__sub {
  height: 88rem;
  flex: 1;
}
.p-intro__sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-intro__bottom {
  height: 45rem;
  padding: 0 0 0 8rem;
  margin: 0 calc(50% - 50vw) 0 0;
}
@media screen and (max-width: 960px) {
  .p-intro__bottom {
    padding: 0;
    margin: 0 calc(50% - 50vw);
  }
}

.p-intro__slider {
  height: 22.7604166667vw;
}
.p-intro__slider.swiper-initialized {
  height: auto;
}

.p-intro__slider-slide img {
  width: 100%;
  height: auto;
}

.p-model-list {
  padding: 11rem 0 19rem;
  background: #232323;
  color: #fff;
}

.p-model-list__inner {
  padding: 0 10rem;
}
@media screen and (max-width: 960px) {
  .p-model-list__inner {
    padding: 0 3rem;
  }
}

.p-model-list__head {
  margin: 0 0 9.6rem;
  display: flex;
  align-items: flex-start;
  gap: 5.5rem;
}
@media screen and (max-width: 960px) {
  .p-model-list__head {
    flex-direction: column;
    align-items: center;
    gap: 10rem;
  }
}

.p-model-list__head-title {
  position: relative;
}

.p-model-list__head-title__main {
  font-size: 13rem;
  line-height: 0.8769230769;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.p-model-list__head-title__left {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(calc(-100% - 2rem), 0);
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.56em;
  font-weight: 700;
  writing-mode: vertical-rl;
  opacity: 0;
  transition: 0.6s cubic-bezier(0.01, 0.55, 0.55, 1);
}

.p-model-list__head-title.is-view .p-model-list__head-title__left {
  opacity: 1;
  transform: translate(-100%, 0);
}

.p-model-list__head-title__bottom {
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.56em;
  font-weight: 700;
  transform: translate(0, 2rem);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.01, 0.55, 0.55, 1) 0.2s;
}

.p-model-list__head-title.is-view .p-model-list__head-title__bottom {
  opacity: 1;
  transform: translate(0, 0);
}

.p-model-list__merit {
  flex: 1;
  transition-delay: 0.6s;
}

.p-model-list__merit-title {
  padding: 0 0 0 2.8rem;
  margin: 0 0 1rem;
  font-size: 2.4rem;
  line-height: 1.875;
  letter-spacing: 0.18em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-title {
    padding: 0;
    margin: 0 0 4rem;
    font-size: 2.4rem;
    line-height: 1.875;
    text-align: center;
  }
}

.p-model-list__merit-list {
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-list {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-model-list__merit-list__item {
  position: relative;
  width: 33.3333333333%;
  max-width: 36rem;
  padding: 0 2.8rem;
}
.p-model-list__merit-list__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, 0);
  width: 1px;
  height: 20rem;
  display: block;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-list__item {
    width: 42rem;
    max-width: 100%;
    padding: 0;
  }
  .p-model-list__merit-list__item::after {
    display: none;
  }
}

.p-model-list__merit-list__item-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-list__item-head {
    position: relative;
    padding: 0 0 0 8rem;
  }
}

.p-model-list__merit-list__item-num {
  font-size: 6rem;
  line-height: 0.75;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-list__item-num {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: 8rem;
  }
}

.p-model-list__merit-list__item-title {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-list__item-title {
    padding: 2rem 0;
    font-size: 2.4rem;
  }
}

.p-model-list__merit-list__item-img {
  width: 25rem;
  margin: 0 auto;
}
.p-model-list__merit-list__item-img img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-model-list__merit-list__item-img {
    width: 33.4rem;
  }
}

.p-model-list__body {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.p-model-list__item {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 960px) {
  .p-model-list__item {
    width: 100%;
  }
}

.p-model-list__item-outer {
  position: relative;
  padding: 0 6rem;
  display: block;
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-outer {
    padding: 5rem 3rem 4.6rem;
  }
}

.p-model-list__item-inner {
  width: 48rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-inner {
    width: 100%;
  }
}

.p-model-list__item-intro {
  position: absolute;
  top: 2.4rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-intro {
    position: static;
  }
}

.p-model-list__item-label {
  position: relative;
  padding: 0 0 1.8rem;
  font-size: 1.2rem;
  line-height: 3.6666666667;
  letter-spacing: 0.14em;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  writing-mode: vertical-rl;
}
.p-model-list__item-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1.8rem;
  height: 1px;
  display: block;
  background: #232323;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-label {
    padding: 0 0 1rem;
    font-size: 2rem;
    line-height: 2.2;
    writing-mode: horizontal-tb;
    text-align: center;
  }
}

.p-model-list__item-subtitle {
  padding: 1.8rem 0 0;
  font-size: 1.5rem;
  line-height: 2.9333333333;
  letter-spacing: 0.14em;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-subtitle {
    font-size: 2.8rem;
    line-height: 1.5714285714;
    writing-mode: horizontal-tb;
    text-align: center;
  }
}

.p-model-list__item-head {
  padding: 2.5rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-head {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-model-list__item-title {
  min-height: 6.2rem;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  line-height: 1.4761904762;
  letter-spacing: 0.14em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-title {
    min-height: 0;
    padding: 2.5rem 0 0;
    margin: 0 0 3rem;
    font-size: 3rem;
    line-height: 1.4666666667;
  }
}

.p-model-list__item-thumb {
  position: relative;
  overflow: hidden;
}
.p-model-list__item-thumb::before {
  content: "";
  padding: 70.83% 0 0;
  display: block;
}
.p-model-list__item-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.01, 0.55, 0.55, 1);
}
@media screen and (max-width: 960px) {
  .p-model-list__item-thumb {
    width: 58rem;
    margin: 0 auto;
  }
}

@media (hover: hover) {
  .p-model-list__item-outer:hover .p-model-list__item-thumb img {
    transform: scale(1.1);
  }
}
.p-model-list__item-body {
  padding: 2.7rem 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-body {
    padding: 0;
  }
}

.p-model-list__item-body__inner {
  margin: 0 0 4rem;
}

.p-model-list__item-data {
  padding: 0.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
}

.p-model-list__item-data__head {
  width: 9rem;
  padding: 0.3rem 0.3rem 0.3rem 0.8rem;
  background-color: #232323;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-data__head {
    width: 11.4rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-model-list__item-data__body {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-data__body {
    font-size: 2.1rem;
    line-height: 1.5714285714;
  }
}

.p-model-list__item-btn {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  border-radius: 0.3rem;
  background: #232323;
  border: 1px solid #232323;
  transition: background 0.4s ease;
}
@media (hover: hover) {
  .p-model-list__item-btn:hover {
    background: #fff;
  }
}
@media screen and (max-width: 960px) {
  .p-model-list__item-btn {
    padding: 2.8rem;
    border-radius: 0;
    gap: 3rem;
  }
}

.p-model-list__item-btn__arrow {
  transform: rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: border 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-btn__arrow {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media (hover: hover) {
  .p-model-list__item-btn:hover .p-model-list__item-btn__arrow {
    border-color: #232323;
  }
}
.p-model-list__item-btn__text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: color 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-model-list__item-btn__text {
    font-size: 3rem;
    line-height: 1.8;
  }
}

@media (hover: hover) {
  .p-model-list__item-btn:hover .p-model-list__item-btn__text {
    color: #232323;
  }
}
.p-model {
  padding: 18rem 0 16rem;
}
@media screen and (max-width: 960px) {
  .p-model {
    padding: 12.5rem 0 20.5rem;
  }
}

.p-model:nth-child(even) {
  background: #fafafa;
  color: #232323;
}

.p-model__head {
  margin: 0 0 16.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 960px) {
  .p-model__head {
    margin: 0 0 8rem;
    flex-direction: column;
  }
}

.p-model__head-subtitle {
  width: 16rem;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model__head-subtitle {
    width: 22rem;
    padding: 1rem;
    font-size: 2rem;
    line-height: 1.75;
  }
}

.p-model:nth-child(even) .p-model__head-subtitle {
  border: 1px solid #232323;
  color: #232323;
}

.p-model__head-title {
  font-size: 2.8rem;
  line-height: 1.5714285714;
  letter-spacing: 0.14em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-model__head-title {
    font-size: 3.6rem;
    line-height: 1.2222222222;
  }
}

.p-model__thumb {
  position: relative;
  margin: 0 -2rem 9.5rem;
}
.p-model__thumb::before {
  content: "";
  padding: 61.1% 0 0;
  display: block;
}
.p-model__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-model__thumb {
    margin: 0 0 9rem;
  }
}

.p-model__thumb-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.p-model__thumb-bg__item {
  height: 100%;
  flex: 1;
  background: #fff;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.p-model__thumb-bg__item.is-view {
  transform: translate(0, 101%);
}

.p-model__data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-model__data {
    align-items: flex-start;
  }
}

.p-model__data-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .p-model__data-inner {
    width: 100%;
  }
}

.p-model__data__list {
  padding: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-model__data__list {
    padding: 1.5rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.p-model__data__head {
  width: 9rem;
  padding: 0.2rem 0.2rem 0.2rem 0.4rem;
  background: #fff;
  color: #232323;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model__data__head {
    width: 13.1rem;
    padding: 0.5rem 0.5rem 0.5rem 0.9rem;
    font-size: 2.3rem;
    line-height: 1.347826087;
  }
}

.p-model:nth-child(even) .p-model__data__head {
  background: #232323;
  color: #fafafa;
}

.p-model__data__body {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 960px) {
  .p-model__data__body {
    font-size: 2.8rem;
    line-height: 1.3571428571;
  }
}

.p-model__point {
  padding: 0 8rem 0;
}
@media screen and (max-width: 960px) {
  .p-model__point {
    padding: 0 1.5rem 0;
  }
}

.p-model__point-main {
  display: flex;
  gap: 4.1666666667vw;
}
@media screen and (max-width: 960px) {
  .p-model__point-main {
    margin: 0 0 4rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-model__point-main__content {
  width: 40%;
  padding: 0 0 15rem;
}
@media screen and (max-width: 960px) {
  .p-model__point-main__content {
    width: 100%;
    padding: 0;
  }
}

.p-model__point-title {
  transform: skewX(-10deg);
  margin: 0 0 6.5rem;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0.14em;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 960px) {
  .p-model__point-title {
    margin: 0 0 6rem;
    font-size: 4.8rem;
    line-height: 1.6458333333;
  }
}

.p-model__point-text {
  font-size: 1.5rem;
  line-height: 2.9333333333;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 960px) {
  .p-model__point-text {
    font-size: 2.8rem;
    line-height: 1.7857142857;
  }
}

.p-model__point-main__img {
  position: relative;
  flex: 1;
  transform: translate(0, 3rem);
}
.p-model__point-main__img::before {
  content: "";
  padding: 61.36% 0 0;
  display: block;
}
.p-model__point-main__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-model__point-main__img {
    transform: translate(0, 0);
    width: 59rem;
    align-self: flex-end;
  }
}

.p-model__point-sub {
  display: flex;
  gap: 4.1666666667vw;
}
@media screen and (max-width: 960px) {
  .p-model__point-sub {
    flex-direction: column;
    gap: 6rem;
  }
}

.p-model__point-sub__img {
  position: relative;
  flex: 1;
  transform: translate(0, -13rem);
}
.p-model__point-sub__img::before {
  content: "";
  padding: 75% 0 0;
  display: block;
}
.p-model__point-sub__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-model__point-sub__img {
    transform: translate(0, 0);
    width: 39rem;
  }
}

.p-model__point-sub__content {
  width: 55%;
  padding: 5rem 0 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-model__point-sub__content {
    width: 100%;
    padding: 0;
  }
}

.p-model__gallery {
  margin: 0 calc(50% - 50vw) 16rem 0;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 960px) {
  .p-model__gallery {
    padding: 17rem 0 0;
    margin: 0 0 4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-model__gallery-head {
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .p-model__gallery-head {
    width: auto;
  }
}

.p-model__gallery-head__title {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.18em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-model__gallery-head__title {
    font-size: 2rem;
  }
}

.p-model__gallery-body {
  width: calc(100% - 20rem);
}
@media screen and (max-width: 960px) {
  .p-model__gallery-body {
    width: 100%;
  }
}

.p-model__gallery__slider {
  padding: 0 calc(50vw - 58rem) 0 3.3rem;
}
@media screen and (max-width: 960px) {
  .p-model__gallery__slider {
    padding: 0;
  }
}

.p-model__gallery__slider-slide {
  width: 61.4rem;
  padding: 0.7rem;
}
@media screen and (max-width: 960px) {
  .p-model__gallery__slider-slide {
    padding: 3rem;
  }
}

.p-model__gallery__img {
  position: relative;
  margin: 0 0 1.5rem;
}
.p-model__gallery__img::before {
  content: "";
  padding: 75% 0 0;
  display: block;
}
.p-model__gallery__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-model__gallery__img {
    margin: 0 0 3rem;
  }
}

.p-model__gallery__title {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.18em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model__gallery__title {
    font-size: 2.4rem;
  }
}

.p-model__gallery__slider-arrow.-next {
  left: 62rem;
  right: auto;
}

.p-model__foot {
  width: 104rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-model__foot {
    padding: 0 3rem;
  }
}

.p-model__foot-title {
  margin: 0 0 6rem;
  display: flex;
  align-items: center;
  gap: 5.4rem;
}
@media screen and (max-width: 960px) {
  .p-model__foot-title {
    margin: 0 0 4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.4rem;
  }
}

.p-model__foot-title__label {
  padding: 1rem 2.4rem;
  border: 1px solid #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-model__foot-title__label {
    padding: 1rem 2.8rem;
    font-size: 2rem;
    line-height: 1.75;
  }
}

.p-model:nth-child(even) .p-model__foot-title__label {
  border: 1px solid #232323;
}

.p-model__foot-title__text {
  font-size: 2.1rem;
  line-height: 2.0952380952;
  letter-spacing: 0.14em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-model__foot-title__text {
    font-size: 3.6rem;
    line-height: 1.2222222222;
  }
}

.p-model__foot-container {
  padding: 7rem 0 0;
  margin: 0 0 7rem;
  display: flex;
  align-items: flex-start;
  gap: 8rem;
}
@media screen and (max-width: 960px) {
  .p-model__foot-container {
    padding: 9rem 0 0;
    margin: 0 0 13.6rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.p-model__foot-img {
  position: relative;
  flex: 1;
}
.p-model__foot-img::before {
  content: "";
  padding: 70.83% 0 0;
  display: block;
}
.p-model__foot-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-model__foot-img {
    width: 100%;
  }
}

.p-model__foot-map {
  flex: 1;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-model__foot-map {
    width: 100%;
  }
}

.p-model__foot-map__inner {
  position: relative;
  margin: 0 0 1rem;
}
.p-model__foot-map__inner::before {
  content: "";
  padding: 70.83% 0 0;
  display: block;
}
.p-model__foot-map__inner iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 960px) {
  .p-model__foot-map__inner {
    margin: 0 0 2rem;
  }
}

.p-model__foot-map__link {
  padding: 0.6rem 3.2rem;
  border: 1px solid #fff;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  letter-spacing: 0.14em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-model__foot-map__link {
    padding: 1rem 4.8rem;
    font-size: 1.8rem;
    line-height: 1.2777777778;
  }
}

.p-model:nth-child(even) .p-model__foot-map__link {
  border: 1px solid #232323;
}

.p-model__link {
  position: relative;
  width: 68rem;
  max-width: 100%;
  height: 8rem;
  padding: 1rem 6rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #fff;
  transition: background 0.4s cubic-bezier(0.01, 0.55, 0.55, 1);
}
@media (hover: hover) {
  .p-model__link:hover {
    background: #232323;
  }
}
@media screen and (max-width: 960px) {
  .p-model__link {
    width: 64.4rem;
    height: 11rem;
  }
}

.p-model:nth-child(even) .p-model__link {
  background: #232323;
  border: 1px solid #232323;
}
@media (hover: hover) {
  .p-model:nth-child(even) .p-model__link:hover {
    background: #fafafa;
  }
}

.p-model__link-text {
  color: #232323;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.14em;
  font-weight: 700;
  transition: color 0.4s cubic-bezier(0.01, 0.55, 0.55, 1);
}
@media screen and (max-width: 960px) {
  .p-model__link-text {
    font-size: 3rem;
    line-height: 1.8;
  }
}

.p-model:nth-child(even) .p-model__link-text {
  color: #fafafa;
}

@media (hover: hover) {
  .p-model__link:hover .p-model__link-text {
    color: #fff;
  }
}
@media (hover: hover) {
  .p-model:nth-child(even) .p-model__link:hover .p-model__link-text {
    color: #232323;
  }
}

.p-model__link-arrow {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translate(-1rem, -50%);
  transition: transform 0.4s cubic-bezier(0.01, 0.55, 0.55, 1);
}
.p-model__link-arrow::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.p-model:nth-child(even) .p-model__link-arrow::before {
  border-top: 1px solid #232323;
  border-right: 1px solid #232323;
}

@media (hover: hover) {
  .p-model__link:hover .p-model__link-arrow {
    transform: translate(0, -50%);
  }
}
.p-works {
  padding: 21rem 0 4rem;
  background: #fff;
  color: #232323;
}
@media screen and (max-width: 960px) {
  .p-works {
    padding: 16rem 0 14rem;
  }
}

.p-works__inner {
  padding: 0 12rem;
}
@media screen and (max-width: 960px) {
  .p-works__inner {
    padding: 0 3rem;
  }
}

.p-works__head {
  padding: 0 8rem;
  margin: 0 0 18rem;
}
@media screen and (max-width: 960px) {
  .p-works__head {
    display: flex;
    justify-content: center;
  }
}

.p-works__head-inner {
  display: flex;
  align-items: baseline;
  gap: 3rem;
}
@media screen and (max-width: 960px) {
  .p-works__head-inner {
    flex-direction: column;
    align-items: flex-end;
  }
}

.p-works__title {
  font-size: 13rem;
  line-height: 0.8692307692;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.p-works__subtitle {
  transform: translate(0, -0.5rem);
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 960px) {
  .p-works__subtitle {
    transform: translate(0, 0);
    font-size: 2rem;
  }
}

.p-works__body {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}
@media screen and (max-width: 960px) {
  .p-works__body {
    gap: 14rem;
  }
}

.p-works__item {
  width: calc(50% - 4rem);
  padding: 4rem;
}
@media screen and (max-width: 960px) {
  .p-works__item {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.p-works__item__slider-slide {
  padding: 0 4rem;
}
@media screen and (max-width: 960px) {
  .p-works__item__slider-slide {
    padding: 0 3rem;
  }
}

.p-works__item__img {
  position: relative;
}
.p-works__item__img::before {
  content: "";
  padding: 75% 0 0;
  display: block;
}
.p-works__item__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-works__item__slider-bottom {
  padding: 1rem 4rem;
}
@media screen and (max-width: 960px) {
  .p-works__item__slider-bottom {
    padding: 2.5rem 3rem;
  }
}

.p-works__item-inner {
  padding: 0 4rem;
}
@media screen and (max-width: 960px) {
  .p-works__item-inner {
    padding: 0 3rem;
  }
}

.p-works__item-head {
  min-height: 7.8rem;
  padding: 1.5rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-works__item-head {
    padding: 2.5rem 1rem;
    margin: 0 0 1.5rem;
  }
}

.p-works__item-title {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.18em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-works__item-title {
    font-size: 3rem;
    line-height: 1.4666666667;
  }
}

.p-works__item-text {
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .p-works__item-text {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

.p-about {
  padding: 4rem 0 10rem;
  background: #fff;
  color: #232323;
}

.p-about-intro {
  position: relative;
  z-index: 50;
  display: flex;
}

.p-about-intro__head {
  width: 68rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-about-intro__head {
    width: 18rem;
    align-items: flex-start;
  }
}

.p-about-intro__title {
  font-size: 3.6rem;
  line-height: 1.4444444444;
  letter-spacing: 0.14em;
  font-weight: 400;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .p-about-intro__title {
    font-size: 5rem;
    transform: translate(0, -0.5em);
  }
}

.p-about-intro__body {
  flex: 1;
}

.p-about-intro__img {
  position: relative;
  height: 70rem;
}
.p-about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-main {
  position: relative;
  z-index: 10;
  padding: 21rem 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-about-main {
    padding: 13.4rem 0 5rem;
  }
}

.p-about-main__bg {
  position: absolute;
  top: 0;
  z-index: -1;
  transform: translate(0, -35rem);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-about-main__bg {
    transform: translate(0, -42.5rem);
    height: calc(100% - 26.5rem);
  }
}

.p-about-main__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-about-main__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-main__bg-text {
  position: absolute;
  bottom: -8.5rem;
  left: 0;
  right: 0;
  transform: translate(0, 100%);
  padding: 0 0 0 3rem;
}

.p-about-main__title {
  margin: 0 0 1rem;
  font-size: 4.8rem;
  line-height: 1.2916666667;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}
.p-about-main__title small {
  font-size: 79%;
}
@media screen and (max-width: 960px) {
  .p-about-main__title {
    font-size: 6rem;
  }
}

.p-about-main__subtitle {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-about-main__subtitle {
    font-size: 2rem;
  }
}

.p-about-main__lead {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  letter-spacing: 0.16em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-about-main__lead {
    font-size: 2.8rem;
    line-height: 1.7142857143;
  }
}

.p-about-method {
  padding: 0 0 11rem;
}

.p-about-method__container {
  margin: 0 0 0 calc(50% - 50vw);
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .p-about-method__container {
    margin: 0;
    flex-direction: column;
  }
}

.p-about-method__head {
  width: 70rem;
  padding: 0 10rem 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-about-method__head {
    width: 100%;
    padding: 0 4.5rem;
  }
}

.p-about-method__body {
  position: relative;
  width: calc(100% - 70rem);
  padding: 0 3.8rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-about-method__body {
    width: 100%;
    padding: 7.8rem 0 0;
  }
}

.p-about-method__slider {
  padding: 0.5rem 0 0.5rem 11.8rem;
}
@media screen and (max-width: 960px) {
  .p-about-method__slider {
    padding: 0.5rem 0;
  }
}

.p-about-method__slider-slide {
  padding: 0 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-about-method__slider-slide {
    padding: 0 1.5rem;
  }
}

.p-about-method__slider-arrow::before {
  border-color: #000 transparent transparent #000;
}
@media screen and (max-width: 960px) {
  .p-about-method__slider-arrow::before {
    width: 250%;
    height: 250%;
  }
}

.p-about-method__slider-arrow::after {
  display: none;
}

.p-about-method__slider-arrow.-prev {
  left: 11rem;
}
@media screen and (max-width: 960px) {
  .p-about-method__slider-arrow.-prev {
    left: 0;
  }
}

.p-about-method__slider-arrow.-next {
  right: 3rem;
}
@media screen and (max-width: 960px) {
  .p-about-method__slider-arrow.-next {
    right: 0;
  }
}

.p-about-method__slider-bottom {
  padding: 2.5rem 1.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-about-method__slider-bottom {
    padding: 6.4rem 3rem 0;
  }
}

.p-about-cost {
  padding: 11rem 0 6rem;
}
@media screen and (max-width: 960px) {
  .p-about-cost {
    padding: 8rem 0 4.5rem;
  }
}

@media screen and (max-width: 960px) {
  .p-about-cost__head {
    padding: 0 4.5rem;
  }
}

.p-about-cost__body {
  position: relative;
  padding: 6rem 0;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 960px) {
  .p-about-cost__body {
    padding: 2.5rem;
  }
}

.p-about-cost__slider-slide {
  padding: 0.5rem;
}
.p-about-cost__slider-slide img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-about-cost__slider-slide {
    padding: 0 1.5rem;
  }
}

.p-about-cost__slider-arrow::before {
  border-color: #000 transparent transparent #000;
}
@media screen and (max-width: 960px) {
  .p-about-cost__slider-arrow::before {
    width: 250%;
    height: 250%;
  }
}

.p-about-cost__slider-arrow::after {
  display: none;
}

.p-about-cost__slider-arrow.-prev {
  left: 30%;
}
@media screen and (max-width: 960px) {
  .p-about-cost__slider-arrow.-prev {
    left: 1.5rem;
  }
}

.p-about-cost__slider-arrow.-next {
  right: 30%;
}
@media screen and (max-width: 960px) {
  .p-about-cost__slider-arrow.-next {
    right: 1.5rem;
  }
}

.p-about-cost__slider-bottom {
  width: 33.33%;
  padding: 1.5rem 0.5rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-about-cost__slider-bottom {
    width: 100%;
  }
}

.p-about-cost__foot {
  width: 94rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (max-width: 960px) {
  .p-about-cost__foot {
    padding: 5.5rem 0;
  }
}

.p-about-cost__note {
  font-size: 1.1rem;
  line-height: 2.1818181818;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 960px) {
  .p-about-cost__note {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

@media screen and (max-width: 960px) {
  .p-about-guarantee__inner {
    padding: 0 3rem;
  }
}

.p-about-guarantee__container {
  width: 140rem;
  max-width: 100%;
  padding: 9rem 8rem 9.5rem;
  margin: 0 auto;
  border-radius: 2rem;
  background: #c30d23;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-about-guarantee__container {
    padding: 11rem 1.5rem 17rem;
  }
}

@media screen and (max-width: 960px) {
  .p-about-guarantee__slider {
    height: 52.6rem;
  }
  .p-about-guarantee__slider.swiper-initialized {
    height: auto;
  }
}

.p-about-guarantee__list {
  padding: 5rem 0 0;
  display: flex;
}

.p-about-guarantee__list-item {
  width: 33.3333333333%;
  height: auto;
  padding: 1.5rem;
}

.p-about-guarantee__list-item__inner {
  height: 100%;
  padding: 2rem 2.5rem 3.5rem;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-about-guarantee__list-item__inner {
    padding: 4rem 2rem 6rem;
  }
}

.p-about-guarantee__list-item__head {
  margin: 0 0 5rem;
  min-height: 7.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-about-guarantee__list-item__head {
    min-height: 10.8rem;
  }
}

.p-about-guarantee__list-item__title {
  color: #c30d23;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: center;
}
.p-about-guarantee__list-item__title small {
  font-size: 83%;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .p-about-guarantee__list-item__title {
    font-size: 3.9rem;
    line-height: 1.5128205128;
  }
}

@media screen and (max-width: 960px) {
  .p-about-guarantee__list-item__body {
    padding: 0 4rem;
  }
}

.p-about-guarantee__list-item__text {
  color: #232323;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 960px) {
  .p-about-guarantee__list-item__text {
    font-size: 2.3rem;
    line-height: 1.8695652174;
  }
}

.p-about-guarantee__pagination {
  position: static;
}
.p-about-guarantee__pagination .swiper-pagination-bullet {
  background: #fff;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 1rem !important;
}

.p-about-company {
  padding: 5rem 0 0;
  z-index: 5;
}

.p-about-company__bg {
  position: absolute;
  top: -11rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 45rem;
}

.p-about-company__inner {
  max-width: 152rem;
  padding: 0 2rem 0 30rem;
}
@media screen and (max-width: 960px) {
  .p-about-company__inner {
    padding: 0 4.5rem;
  }
}

.p-about-company__title {
  margin: 0 0 4rem;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.34em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-about-company__title {
    margin: 0 0 2rem;
    font-size: 3rem;
  }
}

.p-about-company__data {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .p-about-company__data,
  .p-about-company__data tbody,
  .p-about-company__data tr,
  .p-about-company__data th,
  .p-about-company__data td {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .p-about-company__data-row {
    padding: 1.5rem 0.5rem;
  }
}

.p-about-company__data-head,
.p-about-company__data-body {
  padding: 0.6rem 1rem 0.6rem 0;
  font-size: 1.4rem;
  line-height: 2.3571428571;
  letter-spacing: 0.34em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-about-company__data-head,
  .p-about-company__data-body {
    padding: 0.5rem 0;
    font-size: 2.4rem;
    line-height: 1.9583333333;
  }
}

.p-about-company__data-head {
  width: 22rem;
}
@media screen and (max-width: 960px) {
  .p-about-company__data-head {
    width: 100%;
  }
}

@media screen and (min-width: 961px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .u-pc {
    display: none !important;
  }
}
.u-fc-white {
  color: #fff !important;
}

.u-fc-red {
  color: #c30d23 !important;
}

.u-ff-oldMincho {
  font-family: "Zen Old Mincho", serif !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-left {
  text-align: left !important;
}

@media screen and (min-width: 961px) {
  .u-ta-center-pc {
    text-align: center !important;
  }
  .u-ta-right-pc {
    text-align: right !important;
  }
  .u-ta-left-pc {
    text-align: left !important;
  }
}
@media screen and (max-width: 960px) {
  .u-ta-center-sp {
    text-align: center !important;
  }
  .u-ta-right-sp {
    text-align: right !important;
  }
  .u-ta-left-sp {
    text-align: left !important;
  }
}
.u-w-100 {
  width: 100% !important;
}

.u-pt-3rem {
  padding-top: 3rem !important;
}

@media screen and (max-width: 960px) {
  .u-pr-0-sp {
    padding-right: 0 !important;
  }
  .u-pl-0-sp {
    padding-left: 0 !important;
  }
}
.u-mb-1rem {
  margin-bottom: 1rem !important;
}

.u-mb-2rem {
  margin-bottom: 2rem !important;
}

.u-mb-3rem {
  margin-bottom: 3rem !important;
}

.u-mb-4rem {
  margin-bottom: 4rem !important;
}

.u-mb-5rem {
  margin-bottom: 5rem !important;
}

.u-mb-6rem {
  margin-bottom: 6rem !important;
}

.u-mb-7rem {
  margin-bottom: 7rem !important;
}

.u-mb-8rem {
  margin-bottom: 8rem !important;
}

.u-mb-9rem {
  margin-bottom: 9rem !important;
}

.u-mb-10rem {
  margin-bottom: 10rem !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

@media screen and (min-width: 961px) {
  .u-ml-neg2rem-pc {
    margin-left: -2rem !important;
  }
  .u-mr-neg2rem-pc {
    margin-right: -2rem !important;
  }
  .u-mb-2rem-pc {
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 960px) {
  .u-ml-neg2rem-sp {
    margin-left: -2rem !important;
  }
  .u-mr-neg2rem-sp {
    margin-right: -2rem !important;
  }
  .u-mb-1rem-sp {
    margin-bottom: 1rem !important;
  }
  .u-mb-2rem-sp {
    margin-bottom: 2rem !important;
  }
  .u-mb-3rem-sp {
    margin-bottom: 3rem !important;
  }
  .u-mb-4rem-sp {
    margin-bottom: 4rem !important;
  }
  .u-mb-5rem-sp {
    margin-bottom: 5rem !important;
  }
  .u-mb-8rem-sp {
    margin-bottom: 8rem !important;
  }
  .u-mb-10rem-sp {
    margin-bottom: 10rem !important;
  }
}
.u-bg-white {
  background-color: #fff !important;
}

.u-alignItems-flexStart {
  align-items: flex-start !important;
}

.u-flexDirection-column {
  flex-direction: column !important;
}

@media screen and (min-width: 961px) {
  .justifyContent-center-pc {
    justify-content: center !important;
  }
  .flex-none-pc {
    flex: none !important;
  }
}