@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, span, img, a, table, tr, th, td {
  border: 0;
  vertical-align: bottom;
}

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;
  font: inherit;
  font-size: 100%;
  outline: none;
}

textarea {
  resize: vertical;
}

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

html {
  font-size: 10px;
  /* @include mq(min1921) {
    font-size: calc(100vw / 192);
  } */
  /* @include mq(max1920) {
    font-size: calc(100vw / 192);
  } */
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  background: #fff;
  color: #231815;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  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: #319cf4;
  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-section {
  position: relative;
}

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

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

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

@media screen and (max-width: 960px) {
  .l-header__inner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9100;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
}

.l-header__menu-btn {
  position: fixed;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 9100;
  width: 6.5rem;
  height: 6.5rem;
  background: #252525;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .l-header__menu-btn {
    position: static;
    width: 13rem;
    height: 13rem;
    padding: 1.5rem 0 0;
    gap: 1.5rem;
    background-color: #fff;
  }
  .l-header__menu-btn.is-active {
    background: #252525;
  }
}

.l-header__menu-btn__outer {
  position: relative;
  width: 3.5rem;
  height: 2.4rem;
}
.l-header__menu-btn__outer::before, .l-header__menu-btn__outer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 1px;
  background: #fff;
  transition: all 0.5s ease;
}
.l-header__menu-btn__outer::before {
  top: 0;
}
.l-header__menu-btn__outer::after {
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .l-header__menu-btn__outer {
    width: 4.8rem;
    height: 3.2rem;
  }
  .l-header__menu-btn__outer::before, .l-header__menu-btn__outer::after {
    height: 1px;
    background-color: #252525;
  }
}

@media screen and (max-width: 960px) {
  .l-header__menu-btn.is-active .l-header__menu-btn__outer::before, .l-header__menu-btn.is-active .l-header__menu-btn__outer::after {
    background-color: #fff;
  }
}

.l-header__menu-btn.is-active .l-header__menu-btn__outer::before {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.l-header__menu-btn.is-active .l-header__menu-btn__outer::after {
  bottom: 50%;
  transform: translate(0, 50%) rotate(-45deg);
}

.l-header__menu-btn__inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 1px;
  background-color: #fff;
  transition: all 0.5s ease;
}
@media screen and (max-width: 960px) {
  .l-header__menu-btn__inner {
    height: 1px;
    background-color: #252525;
  }
}

@media screen and (max-width: 960px) {
  .l-header__menu-btn.is-active .l-header__menu-btn__inner {
    background-color: #fff;
  }
}

.l-header__menu-btn.is-active .l-header__menu-btn__inner {
  transform: translate(100%, -50%);
  opacity: 0;
}

.l-header__menu-btn__text {
  margin: 0 -0.2em 0 0;
  color: #231815;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 400;
}

@media screen and (max-width: 960px) {
  .l-header__menu-btn.is-active .l-header__menu-btn__text {
    color: #fff;
  }
}

.l-header__side {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 5100;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 960px) {
  .l-header__side {
    position: static;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 0.7rem;
  }
}

.l-header__side-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 960px) {
  .l-header__side-list {
    flex-direction: row;
    gap: 0;
  }
}

.l-header__side-list__link {
  width: 10rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  writing-mode: vertical-rl;
}
.l-header__side-list__link.-tel {
  background-color: #eee;
}
.l-header__side-list__link.-catalog {
  background-color: #539286;
}
.l-header__side-list__link.-reserve {
  background-color: #b88092;
}
@media screen and (max-width: 960px) {
  .l-header__side-list__link {
    width: 15rem;
    height: 13rem;
    flex-direction: column;
    writing-mode: horizontal-tb;
  }
}

.l-header__side-list__link-img {
  width: 7.8rem;
}

.l-header__side-list__link-text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .l-header__side-list__link-text {
    font-size: 1.6rem;
  }
  .l-header__side-list__link-text strong {
    font-size: 2.5rem;
  }
}

.l-header__side-list__link.-tel .l-header__side-list__link-text {
  color: #b88092;
}

.l-header__side__top {
  padding: 1.5rem 0;
  background-color: #312927;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-header__side__top {
    width: 15rem;
    padding: 2.7rem 0 1.8rem;
    font-size: 2.5rem;
  }
}

.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -10;
  width: 49.5rem;
  background: #252525;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.18, 0.83, 0.24, 0.87);
}
.l-header__nav.is-active {
  z-index: 9000;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 960px) {
  .l-header__nav {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}

.l-header__nav__inner {
  padding: 8.5rem 4.5rem 11.5rem;
}
@media screen and (max-width: 960px) {
  .l-header__nav__inner {
    padding: 5.5rem 6rem 21rem 11rem;
    display: flex;
  }
}

@media screen and (max-width: 960px) {
  .l-header__nav__list {
    flex: 1;
  }
}

.l-header__nav__item {
  padding: 0.5rem 0;
}

.l-header__nav__link {
  padding: 1rem 0;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.14em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .l-header__nav__link {
    font-size: 3rem;
  }
}

.l-footer {
  padding: 6rem 0 8rem;
  background: #b8b8b8;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 7rem 0 15.5rem;
  }
}

.l-footer__logo {
  width: 36.8rem;
  margin: 0 auto 4.5rem;
  transform: translate(-4rem, 0);
}

.l-footer__copyright {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer__copyright {
    font-size: 2rem;
  }
}

.c-section-title__main {
  font-size: 9.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
.c-section-title__main small {
  font-size: 4.2rem;
}
@media screen and (max-width: 960px) {
  .c-section-title__main {
    letter-spacing: 0.06em;
  }
}

.c-section-title__sub {
  font-size: 1.5rem;
  line-height: 3;
  letter-spacing: 0.14em;
  font-style: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-section-title__sub {
    font-size: 2rem;
    line-height: 2.25;
    letter-spacing: 0.14em;
  }
}

.c-fadeup {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.c-fadeup.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.p-mv {
  z-index: 10;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-mv {
    margin: 0 0 29rem;
  }
}

.p-mv__bg {
  height: 88rem;
  overflow: hidden;
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  animation: ZoomOutFadeIn 0.8s ease forwards;
}
@media screen and (max-width: 1366px) {
  .p-mv__bg {
    height: 62.33rem;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__bg {
    height: auto;
  }
}

@keyframes ZoomOutFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.p-mv__logo {
  position: absolute;
  top: 1.5rem;
  left: 2.6rem;
  width: 15.5rem;
}
@media screen and (max-width: 960px) {
  .p-mv__logo {
    top: 3rem;
    left: 1.5rem;
    width: 24rem;
  }
}

.p-mv__title {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 96rem;
  height: calc(100% + 2.833rem);
  padding: 0 8rem 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%, 0 70%);
}
@media screen and (max-width: 1366px) {
  .p-mv__title {
    width: 68rem;
    padding: 0 5.66rem 2.833rem 0;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__title {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    align-items: flex-start;
    transform: translate(0, 29rem);
    padding: 6.5rem 15.1rem 0.5rem 6.5rem;
    border-radius: 0 0 1rem 1rem;
    clip-path: polygon(0 0, 77% 0, 100% 43%, 100% 100%, 0 100%);
  }
}

.p-mv__title-logo {
  width: 68.4rem;
  height: 44.2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
@media screen and (max-width: 1366px) {
  .p-mv__title-logo {
    width: 48.5rem;
    height: 31.4rem;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__title-logo {
    width: 44.7rem;
    height: 28.9rem;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.p-mv__title-text {
  transform: translate(5.5rem, -5rem);
  color: #312927;
  font-size: 4.4rem;
  line-height: 1.7272727273;
  letter-spacing: 0.02em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .p-mv__title-text {
    transform: translate(3.9rem, -3.5rem);
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__title-text {
    transform: translate(5.5rem, -5.5rem);
    padding: 0 0 0 4rem;
    font-size: 3.8rem;
    line-height: 2;
    text-align: left;
  }
}

.p-intro {
  padding: 14rem 0 11rem;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 8rem 0 16rem;
  }
}

.p-intro__bg-01 {
  position: absolute;
  bottom: 9rem;
  right: 10rem;
  width: 19.5833333333vw;
}
@media screen and (max-width: 1366px) {
  .p-intro__bg-01 {
    right: 7rem;
  }
}
@media screen and (max-width: 960px) {
  .p-intro__bg-01 {
    bottom: auto;
    right: 2.5rem;
    top: 8rem;
    transform: translate(50%, 0);
    width: 37.6rem;
    /* display: none; */
  }
}

.p-intro__bg-02 {
  position: absolute;
  top: 22rem;
  left: 11.5rem;
  width: 24.0104166667vw;
}
@media screen and (max-width: 1680px) {
  .p-intro__bg-02 {
    top: 24rem;
    left: 4rem;
  }
}
@media screen and (max-width: 1366px) {
  .p-intro__bg-02 {
    top: 26rem;
    width: 32rem;
  }
}
@media screen and (max-width: 960px) {
  .p-intro__bg-02 {
    top: 58rem;
    left: 5rem;
    transform: translate(-50%, 0);
    width: 46.1rem;
  }
}

.p-intro__title {
  margin: 0 auto 5rem;
  font-size: 6.1rem;
  line-height: 1.4426229508;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    margin: 0 auto 13rem;
    font-size: 5.3rem;
    line-height: 1.3396226415;
    writing-mode: vertical-rl;
    text-align: left;
  }
}

.p-intro__text {
  font-size: 4rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
}

.p-about {
  padding: 17rem 0 0;
}
.p-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-150%, -55%);
  width: 64.4rem;
  height: 46rem;
  background: #ecd2cb;
  opacity: 0.67;
  clip-path: polygon(0 0, 100% 0%, 55% 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .p-about {
    padding: 15rem 0 0;
  }
  .p-about::before {
    left: 26rem;
    transform: translate(-100%, -5rem);
  }
}

.p-about__container {
  padding: 0 2.5rem 0 1rem;
  margin: 0 0 10rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 7rem;
}
@media screen and (max-width: 960px) {
  .p-about__container {
    padding: 2rem 0 0;
    flex-direction: column;
  }
}

.p-about__head {
  width: 57.2rem;
}
@media screen and (max-width: 1366px) {
  .p-about__head {
    width: 40rem;
  }
}
@media screen and (max-width: 960px) {
  .p-about__head {
    width: 48.4rem;
  }
}

.p-about__body {
  flex: 1;
}

.p-about__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 960px) {
  .p-about__list {
    gap: 10rem;
  }
}

.p-about__list__item {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 960px) {
  .p-about__list__item {
    position: relative;
    gap: 0;
  }
}

.p-about__list__item-num {
  color: transparent;
  font-size: 11.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
}
@media screen and (max-width: 960px) {
  .p-about__list__item-num {
    position: absolute;
    top: 1.1rem;
    left: 0;
  }
}

.p-about__list__item-title {
  margin: 0 0 2rem;
  font-size: 3.8rem;
  line-height: 1.2631578947;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-about__list__item-title {
    padding: 0 0 0 16rem;
    margin: 0 0 3.5rem;
    font-size: 4.8rem;
    line-height: 1.4166666667;
  }
}

.p-about__list__item-desc {
  font-size: 1.8rem;
  line-height: 1.8333333333;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-about__list__item-desc {
    font-size: 4rem;
    line-height: 1.7;
  }
}

.p-about__bottom {
  width: 100%;
  height: 95.2rem;
  clip-path: polygon(0 16.5%, 70% 0, 100% 16.5%, 100% 100%, 0 100%);
  overflow: hidden;
}
.p-about__bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-about__bottom {
    height: 82rem;
  }
}

.p-plan {
  padding: 15rem 0;
}

.p-plan__intro {
  padding: 6rem 0;
  margin: 0 0 4rem;
}
@media screen and (max-width: 960px) {
  .p-plan__intro {
    margin: 0;
  }
}

.p-plan__intro__text {
  margin: 0 0 3.5rem;
  font-size: 2.3rem;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-plan__intro__text {
    margin: 0 0 5rem;
    font-size: 3rem;
    line-height: 1.5333333333;
  }
}

.p-plan__intro__img {
  width: 86.7rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-plan__intro__img {
    width: 50.2rem;
  }
}

.p-plan__list-title {
  font-size: 3.4rem;
  line-height: 1.2941176471;
  letter-spacing: 0;
  font-feature-settings: "palt";
  font-weight: 400;
  text-align: center;
}

.p-plan__list {
  padding: 3rem 0 0;
}

.p-plan__list__item {
  padding: 4rem 0;
}

.p-plan__list__item-head {
  position: relative;
  padding: 0 0 24rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-plan__list__item-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 100%;
  display: block;
  background: #e6c2b9;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head {
    padding: 0 3rem 16rem;
    display: block;
  }
}

.p-plan__list__item-head__lead {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__lead {
    padding: 0 10.5rem 0 0;
    margin: 0 0 6rem;
    justify-content: space-between;
  }
}

.p-plan__list__item-num {
  width: 16rem;
  height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #231815;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-num {
    width: 15.5rem;
    height: 15.5rem;
  }
}

.p-plan__list__item-num__sub {
  font-size: 2.1rem;
  line-height: 1.1904761905;
  letter-spacing: 0.16em;
  font-feature-settings: "palt";
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-num__sub {
    font-size: 2rem;
  }
}

.p-plan__list__item-num__main {
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-num__main {
    font-size: 5.8rem;
  }
}

.p-plan__list__item-head__data {
  padding: 0 0 2rem;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__data {
    padding: 0;
  }
}

.p-plan__list__item-head__data__main {
  font-size: 3.4rem;
  line-height: 1.6470588235;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  font-weight: 700;
}
.p-plan__list__item-head__data__main strong {
  font-size: 4.8rem;
  line-height: 1.1666666667;
  letter-spacing: 0.06em;
  vertical-align: baseline;
}
.p-plan__list__item-head__data__main small {
  font-size: 1.5rem;
  line-height: 3.7333333333;
  letter-spacing: 0.44em;
  vertical-align: baseline;
}
.p-plan__list__item-head__data__main span {
  vertical-align: baseline;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__data__main {
    font-size: 4rem;
    line-height: 1.45;
  }
  .p-plan__list__item-head__data__main strong {
    font-size: 5.4rem;
    line-height: 1.0740740741;
  }
  .p-plan__list__item-head__data__main small {
    font-size: 1.8rem;
    line-height: 3.2222222222;
  }
}

.p-plan__list__item-head__data__sub {
  width: 95%;
  padding: 0.3rem;
  margin: 0 auto;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__data__sub {
    padding: 0.2rem;
    font-size: 2rem;
  }
}

.p-plan__list__item-head__main {
  padding: 0 0 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__main {
    padding: 0;
  }
}

.p-plan__list__item-head__title {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__title {
    font-size: 3.4rem;
    letter-spacing: 0.06em;
    text-align: center;
  }
}

.p-plan__list__item-head__price {
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: right;
  font-weight: 400;
  font-feature-settings: "palt";
  vertical-align: baseline;
}
.p-plan__list__item-head__price strong {
  font-size: 3.6rem;
  line-height: 1.2222222222;
  font-weight: 700;
  vertical-align: baseline;
}
.p-plan__list__item-head__price small {
  font-size: 1.3rem;
  line-height: 3.3846153846;
  vertical-align: baseline;
}
.p-plan__list__item-head__price span {
  padding: 0 0.5rem;
  vertical-align: baseline;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-head__price {
    font-size: 2rem;
    line-height: 2.9;
    text-align: center;
  }
  .p-plan__list__item-head__price strong {
    font-size: 5.2rem;
    line-height: 1.1153846154;
  }
  .p-plan__list__item-head__price small {
    font-size: 1.6rem;
    line-height: 3.625;
  }
}

.p-plan__list__item-body {
  margin: -20rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-body {
    margin: -14rem 0 0;
  }
}

.p-plan__list__item-body__thumb {
  margin: 0 0 5.5rem;
}

.p-plan__list__item-body__text {
  margin: 0 0 5rem;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0;
  font-feature-settings: "palt";
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-body__text {
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}

.p-plan__list__item-body__floor {
  width: 114rem;
  max-width: 100%;
  margin: 0 auto 5rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-body__floor {
    padding: 2rem;
    margin: 0 auto 7rem;
  }
}

.p-plan__list__item-body__data {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-plan__list__item-body__data {
    display: flex;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1.9583333333;
  }
}

.p-cv {
  padding: 17rem 0 13rem;
  background-color: #191716;
  background: no-repeat center/cover url(../images/cv_bg.jpg);
}
@media screen and (max-width: 960px) {
  .p-cv {
    padding: 11rem 0 12rem;
    background-image: url(../images/cv_bg_sp.jpg);
  }
}

.p-cv__box {
  margin: 0 0 5.5rem;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-cv__box {
    margin: 0 0 5rem;
    flex-direction: column;
    gap: 5rem;
  }
}

.p-cv__btn {
  text-align: center;
}

.p-cv__text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 3.375;
  letter-spacing: 0.05em;
  font-weight: 700;
  vertical-align: baseline;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-cv__text {
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-cv__text__icon {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1.3rem 0 0;
  line-height: 0;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  .p-cv__text__icon {
    width: 3.7rem;
    height: 3.7rem;
    margin: 0 0.5rem 0 -1.5rem;
  }
}

.p-cv__tel {
  transform: translate(0, 0.1em);
  padding: 0 0.5rem 0 1rem;
  font-size: 4.7rem;
  line-height: 1.1489361702;
  letter-spacing: 0.05em;
  vertical-align: baseline;
}
@media screen and (max-width: 960px) {
  .p-cv__tel {
    transform: translate(0, 0);
    padding: 1rem 0 0.2rem;
    font-size: 7.3rem;
    line-height: 1.2739726027;
  }
}

.p-works {
  padding: 19rem 0;
  background: #539286;
}
.p-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-width: 112.5rem 48rem 0 0;
  border-color: #b7d1cc transparent transparent transparent;
}
@media screen and (max-width: 960px) {
  .p-works {
    padding: 12rem 0;
  }
  .p-works::before {
    border-width: 66rem 28rem 0 0;
  }
}

.p-works__outer {
  position: relative;
  max-width: 176rem;
}

.p-works__title {
  margin: 0 0 9rem;
}
@media screen and (max-width: 960px) {
  .p-works__title {
    text-align: center;
  }
}

.p-works__title__inner {
  display: inline-block;
}

.p-works__title__main {
  color: #fff;
  font-size: 19.7rem;
  line-height: 1.0152284264;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.p-works__title__sub {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-works__title__sub {
    font-size: 2rem;
    line-height: 2.25;
  }
}

.p-works__container {
  margin: -3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8rem;
}
@media screen and (max-width: 960px) {
  .p-works__container {
    margin: 0;
    gap: 7rem;
  }
}

.p-works__box {
  width: calc(50% - 4rem);
}
@media screen and (min-width: 961px) {
  .p-works__box:nth-of-type(odd) {
    padding: 11rem 0 0;
  }
}
@media screen and (max-width: 960px) {
  .p-works__box {
    width: 100%;
  }
}

.p-works__box-outer {
  position: relative;
  padding: 7rem 0 0 8rem;
}
@media screen and (max-width: 960px) {
  .p-works__box-outer {
    padding: 3rem 0 0 6rem;
  }
}

.p-works__box__popup {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  transform: translate(calc(-50% - 8rem), -50%);
  padding: 2rem 5.5rem 2rem 4rem;
  display: flex;
  align-items: center;
  border-radius: 50vh;
  background-color: #b88092;
  border: 0.5rem solid #fff;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: 600;
  white-space: nowrap;
}
.p-works__box__popup::after {
  content: "";
  position: absolute;
  right: 2.5rem;
  width: 1rem;
  height: 1rem;
  border-right: 0.3rem solid #fff;
  border-bottom: 0.3rem solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 960px) {
  .p-works__box__popup {
    left: 0;
    transform: translate(0, -50%);
    padding: 1.1rem 10rem 1.1rem 9.4rem;
    border-width: 0.2rem;
    font-size: 2.4rem;
    line-height: 1.125;
  }
  .p-works__box__popup::after {
    right: 4rem;
    width: 1.1rem;
    height: 1.1rem;
  }
}

.p-works__box-inner {
  position: relative;
  width: 100%;
  height: 40.5rem;
  background: #fff;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media screen and (max-width: 960px) {
  .p-works__box-inner {
    height: auto;
    align-items: normal;
  }
}

.p-works__box-thumb {
  position: absolute;
  top: -7rem;
  left: -8rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-works__box-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0, 1, 0.7, 1);
}
@media screen and (max-width: 960px) {
  .p-works__box-thumb {
    top: -3rem;
    left: -6rem;
    width: 59rem;
    height: 33rem;
  }
}

@media (hover: hover) {
  .p-works__box-inner:hover .p-works__box-thumb img {
    transform: scale(1.05);
  }
}
.p-works__box-head {
  position: relative;
  width: 8rem;
  height: 100%;
  padding: 2.5rem 0 5.5rem;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .p-works__box-head {
    width: 10rem;
    height: auto;
    padding: 2.5rem 0 7rem;
  }
}

.p-works__box-head__icon {
  position: absolute;
  bottom: 2.2rem;
  width: 2rem;
  height: 2rem;
  color: #539286;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-works__box-head__icon {
    bottom: 2.7rem;
    width: 2.7rem;
    height: 2.7rem;
  }
}

.p-works__box__title {
  color: #539286;
  font-size: 2.4rem;
  line-height: 1.125;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-works__box__title {
    font-size: 3rem;
    line-height: 1.4333333333;
  }
}

.p-works__box-body {
  height: 7rem;
  padding: 0 0 0 2.5rem;
  display: flex;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 960px) {
  .p-works__box-body {
    height: auto;
    padding: 33rem 0 0 2.5rem;
  }
}

.p-works__box__desc {
  color: #539286;
  font-size: 1.5rem;
  line-height: 1.1333333333;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-works__box__desc {
    padding: 0 0 3rem;
    font-size: 2.8rem;
    line-height: 1.2142857143;
  }
}

.p-works-modal {
  position: fixed;
  inset: 0;
  z-index: -10;
  width: 100vw;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.p-works-modal.is-active {
  z-index: 9000;
  opacity: 1;
  visibility: visible;
}

.p-works-modal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
}

.p-works-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  width: 96rem;
  height: 64rem;
  max-width: 90%;
  max-height: 90%;
  padding: 8.5rem 0 7rem 12rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: row-reverse;
}
.p-works-modal__box::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 44.2rem;
  height: 29rem;
  display: block;
  background: no-repeat center/100% url(../images/works_modal_bg.png);
}
@media screen and (max-width: 960px) {
  .p-works-modal__box {
    max-width: 95%;
    height: auto;
    padding: 10rem 5rem 5rem;
    flex-direction: column-reverse;
  }
  .p-works-modal__box::before {
    width: 38rem;
  }
}

.p-works-modal__close {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-works-modal__close-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-works-modal__close-icon::before, .p-works-modal__close-icon::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  border-radius: 1px;
  background-color: #231815;
}
.p-works-modal__close-icon::before {
  transform: rotate(45deg);
}
.p-works-modal__close-icon::after {
  transform: rotate(-45deg);
}

.p-works-modal__close-text {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.p-works-modal__box-head {
  width: 12rem;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-works-modal__box-head {
    width: 100%;
    padding: 2rem 4.5rem 0 0;
    writing-mode: horizontal-tb;
  }
}

.p-works-modal__box__title {
  font-size: 2.4rem;
  line-height: 1.875;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-works-modal__box__title {
    font-size: 2.8rem;
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}

.p-works-modal__box-body {
  flex: 1;
}

.p-works-modal__slider-main__slide {
  position: relative;
  padding: 56.25% 0 0;
}
.p-works-modal__slider-main__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-works-modal__slider-sub {
  padding: 0.8rem 2rem;
}

.p-works-modal__slider-sub__slide {
  position: relative;
  border: 0 !important;
  opacity: 0.7;
}
.p-works-modal__slider-sub__slide::before {
  content: "";
  padding: 66.67% 0 0;
  display: block;
}
.p-works-modal__slider-sub__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-works-modal__slider-sub__slide.is-active {
  opacity: 1;
}

.p-specs {
  padding: 16rem 0 21rem;
  background-color: #f1ede8;
  background-image: linear-gradient(#e3dfda 1px, transparent 0), linear-gradient(90deg, #e3dfda 1px, transparent 0);
  background-size: 11.5rem 11.5rem;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .p-specs {
    padding: 10rem 0 18rem;
  }
}

.p-specs__title {
  margin: 0 0 12rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-specs__title {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 960px) {
  .p-specs__title__inner {
    display: flex;
    flex-direction: column;
  }
}

.p-specs__title__main {
  font-size: 13.3rem;
  line-height: 1.0526315789;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-specs__title__main {
    font-size: 13.3rem;
    line-height: 0.7744360902;
    letter-spacing: 0.06em;
    text-align: left;
  }
}

.p-specs__title__sub {
  font-size: 2.8rem;
  line-height: 1.6071428571;
  letter-spacing: 0.14em;
  font-style: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-specs__title__sub {
    transform: translate(0, -100%);
    padding: 0 0.5em 0 0;
    text-align: right;
  }
}

.p-specs__container {
  margin: 0 calc(50% - 50vw);
}

.p-specs__boxes {
  margin: 0 0 15.5rem;
}

.p-specs__box {
  display: none;
}
.p-specs__box.is-active {
  display: block;
}

.p-specs__box-list {
  padding: 7rem 0 6rem;
  background: #fff;
  border-bottom: 1px solid #231815;
}

.p-specs__slider__track {
  padding: 0 calc((100% - 120.6rem) / 2) !important;
}
@media screen and (max-width: 960px) {
  .p-specs__slider__track {
    padding: 0 3rem 0 5rem !important;
  }
}

.p-specs__slider__slide {
  padding: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-specs__slider__slide {
    padding: 1.3rem;
  }
}

.p-specs__slider__progress {
  position: relative;
  width: 95%;
  max-width: 85rem;
  height: 3px;
  margin: 0 auto;
  background-color: #c2bfbe;
}
@media screen and (max-width: 960px) {
  .p-specs__slider__progress {
    max-width: 63rem;
    height: 2px;
  }
}

.p-specs__slider__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #231815;
  height: 100%;
  transition: all 1000ms ease;
  width: 0;
}

.p-specs__tabs {
  height: 11rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 960px) {
  .p-specs__tabs {
    height: 8rem;
    gap: 0;
  }
}

.p-specs__tab {
  width: 36rem;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 960px) {
  .p-specs__tab {
    width: 33.33%;
  }
}

.p-specs__tab__btn {
  width: 100%;
  height: 85%;
  background: #fff;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: transparent;
  color: #231815;
  font-size: 2.4rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: 700;
  background: no-repeat top/100% url(../images/specs_tab.png);
}
.p-specs__tab__btn.is-active {
  height: 100%;
  background-image: url(../images/specs_tab_active.png);
  transform: translate(0, 1px);
}
@media screen and (max-width: 960px) {
  .p-specs__tab__btn.is-active {
    background-image: url(../images/specs_tab_active_sp.png);
  }
}

.p-specs__img {
  padding: 0 4rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-specs__img {
    padding: 0 1rem;
  }
}

.p-modelhouse {
  padding: 9rem 0 18rem;
  background: #987a74;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-modelhouse {
    padding: 9rem 0 14.5rem;
  }
}

.p-modelhouse__bg-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 46.5rem;
  display: flex;
  opacity: 0.2;
}
.p-modelhouse__bg-top::before {
  content: "";
  width: 60.4166666667vw;
  height: 100%;
  background: #ddafa4;
}
.p-modelhouse__bg-top::after {
  content: "";
  width: 28rem;
  height: 100%;
  background: #ddafa4;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 960px) {
  .p-modelhouse__bg-top::before {
    width: 51.3rem;
  }
}

.p-modelhouse__bg-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 46rem;
  display: flex;
  opacity: 0.2;
}
.p-modelhouse__bg-bottom::before {
  content: "";
  width: 28rem;
  height: 100%;
  background: #ddafa4;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.p-modelhouse__bg-bottom::after {
  content: "";
  width: 60.4166666667vw;
  height: 100%;
  background: #ddafa4;
}

.p-modelhouse__outer {
  position: relative;
  z-index: 10;
}

.p-modelhouse__title {
  margin: 0 0 8.5rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__title {
    margin: 0 0 6rem;
  }
}

.p-modelhouse__title__main {
  margin: 0 0 2.5rem;
  font-size: 15rem;
  line-height: 1.0666666667;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__title__main {
    margin: 0 0 0.5rem;
    font-size: 9.4rem;
    letter-spacing: 0.07em;
    text-align: justify;
  }
}

.p-modelhouse__title__sub {
  padding: 0.5rem 0;
  border-bottom: 3px solid #fff;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.2857142857;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__title__sub {
    font-size: 2.7rem;
    letter-spacing: 0.12em;
  }
}

.p-modelhouse__container {
  width: 100%;
  max-width: 95.8rem;
  margin: 0 auto;
}

.p-modelhouse__intro {
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__intro {
    margin: 0 0 9rem;
    gap: 2.5rem;
  }
}

.p-modelhouse__thumb {
  width: 12rem;
}

.p-modelhouse__status {
  padding: 0.5rem 2rem;
  margin: 0 0 0.5rem;
  display: inline-block;
  background: #fff;
  color: #987a74;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__status {
    padding: 0.5rem 3rem;
    font-size: 3.5rem;
    line-height: 1.2857142857;
  }
}

.p-modelhouse__name {
  font-size: 2.8rem;
  line-height: 1.5357142857;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-feature-settings: "palt";
}
@media screen and (max-width: 960px) {
  .p-modelhouse__name {
    font-size: 3.9rem;
    line-height: 1.4358974359;
  }
}

.p-modelhouse__slider-wrapper {
  margin: 0 0 0.5rem;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__slider-wrapper {
    margin: 0 calc(50% - 50vw) 3rem;
  }
}

.p-modelhouse__slider-main__slide {
  text-align: center;
}
.p-modelhouse__slider-main__slide img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .p-modelhouse__slider-sub__track {
    padding: 0 6rem 0 0 !important;
  }
}

.p-modelhouse__slider-sub__slide {
  position: relative;
  border-width: 2px !important;
}
.p-modelhouse__slider-sub__slide::before {
  content: "";
  padding: 66.67% 0 0;
  display: block;
}
.p-modelhouse__slider-sub__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-modelhouse__slider-sub__slide.is-active {
  border-color: #00afea !important;
}

.p-modelhouse__subtitle {
  padding: 2rem;
  margin: 0 0 0.5rem;
  font-size: 2.4rem;
  line-height: 1.1666666667;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__subtitle {
    margin: 0 0 2rem;
    font-size: 3.6rem;
    line-height: 1.2777777778;
  }
}

.p-modelhouse__content {
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 960px) {
  .p-modelhouse__content {
    font-size: 3rem;
    line-height: 1.1333333333;
    letter-spacing: 0.1em;
  }
}

.p-modelhouse__data {
  padding: 4rem 0 0;
  margin: 0 0 12rem;
  display: flex;
  gap: 6rem;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__data {
    padding: 4rem 3rem 0;
    margin: 0 0 7.5rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.p-modelhouse__map {
  position: relative;
  width: 40rem;
}
.p-modelhouse__map::before {
  content: "";
  padding: 77.78% 0 0;
  display: block;
}
.p-modelhouse__map iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__map {
    width: 100%;
  }
}

.p-modelhouse__data__inner {
  width: 42rem;
}
@media screen and (max-width: 960px) {
  .p-modelhouse__data__inner {
    width: 100%;
  }
}

.p-modelhouse__data__title {
  font-size: 2.8rem;
  line-height: 1.3571428571;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-feature-settings: "palt";
}
@media screen and (max-width: 960px) {
  .p-modelhouse__data__title {
    margin: 0 0 2.5rem;
    font-size: 3.6rem;
  }
}

.p-modelhouse__data__content {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 960px) {
  .p-modelhouse__data__content {
    font-size: 2.4rem;
    line-height: 1.5833333333;
  }
}

.p-modelhouse__cv {
  text-align: center;
}

.p-modelhouse__cv__btn {
  filter: drop-shadow(0.4rem 0.4rem 0.6rem rgba(0, 0, 0, 0.2));
}

.p-company {
  padding: 9.5rem 0;
}
@media screen and (max-width: 960px) {
  .p-company {
    padding: 14rem 0 4rem;
  }
}

.p-company__inner {
  max-width: 100rem;
}

.p-company__title {
  margin: 0 0 6rem;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.25em;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-company__title {
    font-size: 3.6rem;
  }
}

.p-company__profile__head {
  padding: 1rem 1.5rem 0.8rem 0;
  border-top: solid 1px #fff;
  width: 20%;
  overflow: hidden;
  color: #13131e;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: right;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #eff1f0;
}
@media screen and (max-width: 960px) {
  .p-company__profile__head {
    width: 100%;
    padding: 2rem 3rem 1.6rem 2rem;
    display: block;
    font-size: 3rem;
    text-align: left;
  }
}

.p-company__profile__desc {
  padding: 1rem 2rem;
  text-align: left;
  vertical-align: top;
  color: #595960;
  background-color: #ffffff;
  border-top: solid 1px #eff1f0;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-company__profile__desc {
    width: 100%;
    padding: 2rem 3rem 1.6rem 2rem;
    display: block;
    font-size: 3rem;
  }
}

.p-company__notes {
  font-size: 1.4rem;
  line-height: 1;
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-company__notes {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 961px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .u-pc {
    display: none !important;
  }
}
.u-w100 {
  width: 100% !important;
}

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

.u-fc-pink {
  color: #ddafa4 !important;
}

.u-fc-black {
  color: #231815 !important;
}

.u-ff-din {
  font-family: "din-2014", sans-serif !important;
}

.u-bg-pink {
  background-color: #ddafa4 !important;
}

@media screen and (max-width: 960px) {
  .u-pt-4rem-sp {
    padding-top: 4rem !important;
  }
}