@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: 12rem;
  --side-height: 13rem;
  --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 {
    --mv-height: 84rem;
    --side-width: 100%;
  }
}

html {
  font-size: 10px;
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  background: #fff;
  color: #333;
  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: #2D2D2B;
  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 {
  overflow: hidden;
}

.l-section {
  position: relative;
  z-index: 10;
  background-color: #f2f2f2;
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  transition: all 0.6s ease;
}
.l-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  display: block;
  background: #fff;
  transition: all 0.6s ease;
}
.l-header.is-active {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
.l-header.is-active::before {
  opacity: 0;
}

.l-header__left {
  height: 100%;
  padding: 3rem 4.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 960px) {
  .l-header__left {
    padding: 1.5rem 1.6rem 0rem;
  }
}

.l-header__logo {
  width: 20rem;
  height: 5.4rem;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-header__logo {
    width: 16rem;
    height: 5rem;
    line-height: 0;
  }
}

.l-header__logo.-thanks {
  width: 34rem;
  height: auto;
}
@media screen and (max-width: 960px) {
  .l-header__logo.-thanks {
    width: 16rem;
  }
}

.l-header.is-active {
  background: rgba(123, 120, 128, 0.4) !important;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

.l-header.is-active .l-header__logo {
  color: #000;
}

.l-header__right {
  display: flex;
  align-items: center;
}

.l-header__list {
  display: flex;
  gap: 1rem;
}

.l-header__list-link {
  width: 15.8rem;
  height: 5.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 3px;
  background: #2D2D2B;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: all 0.6s ease;
}
@media (hover: hover) {
  .l-header__list-link:hover {
    opacity: 0.7;
  }
}
.l-header__list-link.-catalog {
  background: #fff;
  color: #2D2D2B;
}

.l-header.is-active .l-header__list-link.-catalog {
  background: #8e8e8e;
  color: #fff;
}

.l-header__list-link__icon {
  width: 2.2rem;
  height: 2.2rem;
}

.l-header__list-item.-catalog .l-header__list-link__icon {
  width: 3rem;
  height: auto;
}

.l-header__nav-btn {
  position: relative;
  width: var(--header-height);
  height: var(--header-height);
  color: #fff;
}
.l-header__nav-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 0.2rem;
  display: block;
  background: currentColor;
  transition: 0.4s cubic-bezier(0.01, 0.55, 0.55, 1);
}
.l-header__nav-btn span::before, .l-header__nav-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  transition: 0.4s cubic-bezier(0.01, 0.55, 0.55, 1);
}
.l-header__nav-btn span::before {
  top: -0.8rem;
}
.l-header__nav-btn span::after {
  bottom: -0.8rem;
}
.l-header__nav-btn.is-active {
  color: #2D2D2B;
}
.l-header__nav-btn.is-active span {
  background: transparent;
}
.l-header__nav-btn.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header__nav-btn.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.l-header.is-active .l-header__nav-btn {
  color: #2D2D2B;
}

.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translate(101%, 0);
  z-index: 9500;
  width: 45.3rem;
  max-width: 100%;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.01, 0.55, 0.55, 1);
}
.l-header__nav.is-active {
  transform: translate(0, 0);
}

.l-header__nav-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.l-header__nav-head {
  display: flex;
  flex-direction: row-reverse;
}

.l-header__nav-body {
  padding: 0 0 var(--header-height);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.l-header__nav-list {
  margin: 0 0 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 960px) {
  .l-header__nav-list {
    margin: 0 0 4rem;
    gap: 2rem;
  }
}

.l-header__nav-list__link {
  color: #2D2D2B;
  font-size: 1.7rem;
  line-height: 1.8235294118;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .l-header__nav-list__link:hover {
    opacity: 0.7;
  }
}

.l-header__nav-cv {
  display: inline-flex;
  flex-direction: column;
  gap: 2rem;
}

.l-header__nav-cv__link {
  position: relative;
  width: 25.7rem;
  height: 7.8rem;
  padding: 0 0 0 8.5rem;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: #2D2D2B;
  color: #fff;
}

.l-header__nav-cv__link.-catalog {
  margin-bottom: 1.2rem;
}

.l-header__nav-cv__link-icon {
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translate(0, -50%);
  width: 3.4rem;
  height: 3.4rem;
  line-height: 1;
}

.l-header__nav-cv__link.-catalog .l-header__nav-cv__link-icon {
  width: 3.6rem;
  height: auto;
}

.l-header__nav-cv__link-text {
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.l-header__nav-cv__link-arrow {
  width: 2.8rem;
  line-height: 0;
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .l-header__nav-cv__link:hover .l-header__nav-cv__link-arrow {
    transform: translate(0.5rem, 0);
  }
}
.l-fixed-nav {
  position: fixed;
  bottom: 2rem;
  right: 1.8rem;
  z-index: 8000;
  display: flex;
}
@media screen and (max-width: 960px) {
  .l-fixed-nav {
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.l-fixed-nav__link {
  width: 50%;
  height: 6rem;
  border-radius: 1rem 1rem 0 0;
  background: #2BA6A6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}
.l-fixed-nav__link.-catalog {
  background: #534233;
}
@media screen and (max-width: 960px) {
  .l-fixed-nav__link {
    flex: 1;
    border-radius: 0;
  }
}

.l-fixed-nav__link-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.l-fixed-nav__link.-catalog .l-fixed-nav__link-icon {
  display: flex;
  width: 2.8rem;
  height: auto;
}

.l-fixed-nav__link-text {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.l-fixed-nav__page-top {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  background-color: #77776f;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.l-fixed-nav__page-top::before {
  content: "";
  transform: rotate(45deg) translate(-1px, 1px);
  width: 1.2rem;
  height: 1.2rem;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}
.l-fixed-nav__page-top span {
  padding: 0 0 0 1px;
}
@media screen and (max-width: 960px) {
  .l-fixed-nav__page-top {
    width: 7rem;
    height: 6rem;
    padding: 1rem 0 0;
  }
  .l-fixed-nav__page-top::before {
    transform: rotate(45deg) translate(0, 0);
  }
}

.l-footer {
  position: relative;
  padding: 4.2rem 0 7rem;
  background: #2d2d2b;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 2.8rem 0 9.8rem;
  }
}

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

.l-footer__body {
  margin: 0 0 4.2rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .l-footer__body {
    margin: 0 0 2rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.l-footer__logo {
  width: 8rem;
  height: 8rem;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-footer__logo {
    width: 8.8rem;
    height: 8.8rem;
  }
}

.l-footer__list-box {
  width: 41.4rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .l-footer__list-box {
    width: 100%;
    flex-direction: column;
    gap: 1.4rem;
  }
}

.l-footer__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.l-footer__list-item {
  line-height: 1;
}

.l-footer__list-link {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.1em;
}

.l-footer__foot {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .l-footer__foot {
    flex-direction: column;
    gap: 1rem;
  }
}

.l-footer__foot-right {
  width: 41.1rem;
}
@media screen and (max-width: 960px) {
  .l-footer__foot-right {
    width: 100%;
  }
}

.l-footer__foot-cv {
  width: 21rem;
  height: 5.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50vh;
  background: #fff;
  border: 0.2rem solid #fff;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .l-footer__foot-cv:hover {
    background: transparent;
    color: #fff;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__foot-cv {
    width: 23.7rem;
    height: 6.4rem;
    font-size: 1.6rem;
    line-height: 1.9375;
  }
}

.l-footer__foot-link {
  font-size: 1.3rem;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.l-footer__copyright {
  font-size: 1.2rem;
  line-height: 2.5833333333;
  letter-spacing: 0.06em;
  font-weight: 300;
  font-family: "Heebo", sans-serif;
}

.l-footer__page-top {
  position: absolute;
  right: 3.7rem;
  bottom: 6rem;
  width: 6.5rem;
}
.l-footer__page-top img {
  transition: 0.4s ease;
}
@media (hover: hover) {
  .l-footer__page-top:hover img {
    transform: translate(0, -1rem);
  }
}
@media screen and (max-width: 960px) {
  .l-footer__page-top {
    right: 1.4rem;
    bottom: 9.8rem;
    width: 5.6rem;
  }
}

.c-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.c-svg-icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.c-section-title__sub {
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Heebo", sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-section-title__sub {
    font-size: 2rem;
  }
}

.c-section-title__main {
  font-size: 3.8rem;
  line-height: 1.4210526316;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-section-title__main {
    font-size: 3.2rem;
  }
}

.c-slider-arrows {
  display: flex;
  gap: 0.6rem;
}

.c-slider-arrow {
  width: 5.1rem;
  line-height: 0;
}
.c-slider-arrow.-prev {
  transform: scale(-1, 1);
}

.c-modal-close {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.3);
}
.c-modal-close::before, .c-modal-close::after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 0.2rem;
  display: block;
  background: #000;
}
.c-modal-close::before {
  transform: rotate(45deg);
}
.c-modal-close::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .c-modal-close {
    width: 4.5rem;
    height: 4.5rem;
  }
  .c-modal-close::before, .c-modal-close::after {
    width: 2rem;
  }
}

.c-map-link {
  font-size: 1.4rem;
  line-height: 2.2142857143;
  letter-spacing: 0;
  font-weight: 700;
  text-decoration: underline;
  vertical-align: baseline;
}
.c-map-link span {
  width: 1.2rem;
  height: 1.9rem;
  margin: 0 0.4rem 0 0;
  line-height: 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 0.6s ease;
  will-change: opacity;
}
.c-enter-opacity.is-entered {
  opacity: 1;
  will-change: auto;
}

.c-enter-fadeup {
  opacity: 0;
  transform: translate(0, 1rem);
  transition: 0.6s ease;
  will-change: opacity, transform;
}
.c-enter-fadeup.is-entered {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}

.p-mv {
  position: relative;
  height: 93.6rem;
  max-height: 100vh;
  max-height: 100svh;
}
@media screen and (max-width: 960px) {
  .p-mv {
    height: 53.6rem;
  }
}

.p-mb__bg {
  width: 100%;
  height: 100%;
  background: url(../images/mv/mv_pc.webp) center center/cover no-repeat;
}
@media screen and (max-width: 960px) {
  .p-mb__bg {
    background: url(../images/mv/mv_sp.webp) center center/cover no-repeat;
  }
}

.p-mv__container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .p-mv__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 9.8rem 0 1rem;
  }
}

.p-mv__no1 {
  position: absolute;
  top: 13.54vw;
  left: 7.3vw;
  width: 22.8vw;
}
@media screen and (max-width: 960px) {
  .p-mv__no1 {
    position: static;
    width: 21.9rem;
  }
}

.p-mv__box {
  position: absolute;
  width: 100%;
  bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .p-mv__box {
    position: static;
  }
}

.p-mv__label {
  padding: 1.2rem 7.4rem;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px) brightness(1.5) drop-shadow(0px 3px 6px rgb(255, 255, 255));
}
@media screen and (max-width: 960px) {
  .p-mv__label {
    margin: 0 auto 0.2rem;
    padding: 0.9rem 1.8rem;
  }
}

.p-mv__label__text {
  position: relative;
  width: fit-content;
  font-family: "Zen Old Mincho", serif;
  color: #494449;
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-mv__label__text {
    color: #555869;
    font-size: 2.3rem;
  }
}

.p-mv__label__text::before {
  position: absolute;
  top: 0.2rem;
  right: 0.8rem;
  content: "リムハウス";
  display: block;
  color: #473c1d;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-mv__label__text::before {
    top: 0;
    right: 0.3rem;
    color: #354557;
    font-size: 0.85rem;
  }
}

.p-mv__text {
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 1400px) {
  .p-mv__text {
    font-size: 5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__text {
    font-size: 2.9rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.p-mv__text span {
  display: inline;
  font-size: 9.8rem;
}
@media screen and (max-width: 960px) {
  .p-mv__text span {
    font-size: 4.5rem;
  }
}

.glass-wrap {
  position: relative;
  display: inline-block;
}

.glass {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cutout {
  position: relative;
  mix-blend-mode: destination-out;
  color: black; /* 重要：透明ではダメ */
  font-weight: 600;
}

.glass {
  display: inline-block;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-mask: url(#text-mask);
  mask: url(#text-mask);
}

.p-intro {
  background-color: #333;
  padding: 8.5rem 0 15.4rem;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 3.7rem 0 3.6rem;
  }
}

.p-intro__copy {
  margin-bottom: 8rem;
  font-family: "Libre Baskerville", seri;
  color: #7d7466;
  font-size: 13.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-intro__copy {
    margin-bottom: 3rem;
    font-size: 4.4rem;
  }
}

.p-intro__inner {
  position: relative;
  z-index: 1;
  padding: 10.8rem 4rem 60rem;
}
@media screen and (max-width: 960px) {
  .p-intro__inner {
    padding: 41rem 2.5rem 50rem;
  }
}

.p-intro__title {
  margin: 0 0 3rem;
  color: #e4cfae;
  font-size: 3.5rem;
  line-height: 1.5714285714;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    margin: 0 0 2.6rem;
    font-size: 2.7rem;
  }
}

.p-intro__text {
  font-size: 1.5rem;
  line-height: 2.5333333333;
  letter-spacing: 0.08em;
  text-align: center;
  color: #e4cfae;
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    text-align: left;
  }
}

.p-intro__text-zen {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.7rem;
  line-height: 2.2352941176;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .p-intro__text-zen {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 0.8rem;
  }
}

.p-intro__img02 {
  position: absolute;
  top: 5rem;
  left: -6rem;
  z-index: -1;
  width: 35.9rem;
}
.p-intro__img02 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img02 {
    top: 0.5rem;
    left: 0;
    width: 15.6rem;
  }
}

.p-intro__img03 {
  position: absolute;
  top: 25rem;
  right: -6rem;
  z-index: -1;
  width: 32.5rem;
}
.p-intro__img03 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img03 {
    top: 8.8rem;
    right: 0;
    width: 18.8rem;
  }
}

.p-intro__img04 {
  position: absolute;
  top: 3rem;
  right: -2.4rem;
  z-index: -1;
}
.p-intro__img04 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img04 {
    top: -0.8rem;
    bottom: auto;
    right: 2rem;
    width: 18.2rem;
    z-index: -2;
  }
}

.p-intro__img05 {
  position: absolute;
  top: 32rem;
  left: 7.6rem;
  z-index: -1;
}
.p-intro__img05 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img05 {
    top: 13.6rem;
    left: 6rem;
    width: 7.9rem;
  }
}

.p-intro__img06 {
  position: absolute;
  top: 42rem;
  left: -1.6rem;
  z-index: -1;
}
.p-intro__img06 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img06 {
    top: 22rem;
    left: 3rem;
    right: auto;
    width: 3.669rem;
  }
}

.p-intro__img07 {
  position: absolute;
  bottom: 40rem;
  right: 4rem;
  z-index: -1;
}
.p-intro__img07 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img07 {
    top: 15.1rem;
    bottom: auto;
    left: 3.8rem;
    width: 20.5rem;
  }
}

.p-intro__img08 {
  position: absolute;
  bottom: 12.4rem;
  left: -1.2rem;
  z-index: -1;
}
.p-intro__img08 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img08 {
    bottom: 24.7rem;
    left: 0;
    width: 32.268rem;
  }
}

.p-intro__img09 {
  position: absolute;
  bottom: 10.4rem;
  left: 5.2rem;
  z-index: -1;
}
.p-intro__img09 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img09 {
    bottom: 22.6rem;
    left: 4.2rem;
    width: 3.976rem;
    z-index: 1;
  }
}

.p-intro__img10 {
  position: absolute;
  bottom: 8.6rem;
  right: -2rem;
  z-index: -1;
}
.p-intro__img10 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img10 {
    right: 2.6rem;
    bottom: 8rem;
    width: 19.953rem;
  }
}

.p-intro__img11 {
  position: absolute;
  bottom: 31rem;
  right: 30rem;
  z-index: -2;
}
.p-intro__img11 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img11 {
    top: 23.3rem;
    right: auto;
    bottom: auto;
    left: 2.55rem;
    width: 8.6rem;
  }
}

.p-intro__img12 {
  position: absolute;
  bottom: -9rem;
  right: 49.2rem;
  z-index: -1;
}
.p-intro__img12 img {
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .p-intro__img12 {
    bottom: 7rem;
    left: 2.55rem;
    width: 9.8rem;
  }
}

.p-open {
  padding: 8rem 0 12.5rem;
  background-color: #ece2e6;
}
@media screen and (max-width: 960px) {
  .p-open {
    padding: 6rem 0;
  }
}

.p-open__title__main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: #79273F;
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
.p-open__title__main::before, .p-open__title__main::after {
  content: "";
  width: 1em;
  height: 2px;
  display: inline-block;
  background-color: currentColor;
}
.p-open__title__main::before {
  transform: rotate(70deg) translate(0.1em, 0);
}
.p-open__title__main::after {
  transform: rotate(-70deg) translate(-0.1em, 0);
}
@media screen and (max-width: 960px) {
  .p-open__title__main {
    font-size: 2.4rem;
  }
}

.p-open__box-head {
  padding: 2rem;
  border-radius: 4rem 4rem 0 0;
  background-color: #79273F;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-open__box-head {
    padding: 1.5rem 1.2rem;
    border-radius: 2rem 2rem 0 0;
  }
}

.p-open__box-title {
  font-size: 2.7rem;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-open__box-title {
    font-size: 1.9rem;
  }
}

.p-open__box-body {
  padding: 8rem 7rem;
  background-color: #fff;
  border: 0.3rem solid #79273F;
  border-radius: 0 0 4rem 4rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-body {
    padding: 3rem 2rem;
    border-width: 0.4rem;
    border-radius: 0 0 2rem 2rem;
  }
}

.p-open__box-intro {
  margin: 0 0 6.4rem;
  display: flex;
  gap: 2.6rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-intro {
    margin: 0 0 5rem;
    flex-direction: column;
  }
}

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

.p-open__box-subtitle {
  margin: 0 0 2rem;
  color: #79273F;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-open__box-subtitle {
    margin: 0 0 2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
    letter-spacing: 0.08em;
  }
}

.p-open__box-date {
  margin: 0 0 2.4rem;
  display: inline-flex;
  background-color: #fcfae7;
  border-radius: 50vh;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-open__box-date {
    margin: 0 0 2.4rem;
  }
}

.p-open__box-date__label {
  padding: 0.8rem 2rem;
  background-color: #79273F;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-open__box-date__label {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

.p-open__box-date__text {
  padding: 0.8rem 3rem 0.8rem 1.8rem;
  color: #79273F;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-open__box-date__text {
    padding: 0.8rem 2.5rem 0.8rem 1.4rem;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
  }
}

.p-open__box-intro__text {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-open__box-intro__text {
    font-size: 1.3rem;
  }
}

.p-open__box-intro__img {
  flex: 1;
}

.p-open__box-point__container {
  position: relative;
  margin: 0 0 6.8rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__container {
    margin: 0 -2rem 5rem;
  }
}

@media screen and (min-width: 961px) {
  .p-open__box-point__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
}

.p-open__box-point__item {
  width: calc((100% - 6rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__item {
    padding: 0 2rem;
  }
}

.p-open__box-point__item-content {
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__item-content {
    min-height: 6.6rem;
  }
}

.p-open__box-point__item-flag {
  position: relative;
  width: 6.2rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__item-flag {
    width: 5.8rem;
  }
}

.p-open__box-point__item-num {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 1.6rem 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__item-num {
    padding: 0 1.3rem 1.4rem 0;
    font-size: 1.5rem;
  }
}

.p-open__box-point__item-text {
  flex: 1;
  font-size: 1.7rem;
  line-height: 1.4117647059;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__item-text {
    font-size: 1.6rem;
    line-height: 1.375;
  }
}

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

.p-open__box-note {
  padding: 3.8rem 4.5rem;
  margin: 0 0 5.8rem;
  background-color: #f7f7f7;
  border-radius: 2.3rem;
}
@media screen and (max-width: 960px) {
  .p-open__box-note {
    padding: 2.5rem 2rem;
    border-radius: 1.8rem;
  }
}

.p-open__box-note__title {
  padding: 0.8rem;
  margin: 0 0 1.7rem;
  border-radius: 50vh;
  background-color: #79273F;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.5294117647;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-open__box-note__title {
    padding: 0.6rem;
    margin: 0 0 1.5rem;
    font-size: 1.6rem;
  }
}

.p-open__box-data {
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-open__box-data {
    position: relative;
    padding: 0.8rem 0;
    flex-direction: column;
  }
  .p-open__box-data::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    display: block;
    background: linear-gradient(90deg, #79273F 0, #79273F 6rem, #e2d3d9 6rem, #e2d3d9 100%);
  }
}

.p-open__box-data__head,
.p-open__box-data__body {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
}

.p-open__box-data__head {
  width: 13.4rem;
  padding: 1.7rem 0;
  color: #79273F;
  font-weight: 500;
}
@media screen and (min-width: 961px) {
  .p-open__box-data__head {
    border-bottom: 1px solid #79273F;
  }
}
@media screen and (max-width: 960px) {
  .p-open__box-data__head {
    width: 100%;
    padding: 0.4rem 0;
  }
}

.p-open__box-data__body {
  padding: 1.7rem 2rem;
  flex: 1;
}
@media screen and (min-width: 961px) {
  .p-open__box-data__body {
    border-bottom: 1px solid #e2d3d9;
  }
}
@media screen and (max-width: 960px) {
  .p-open__box-data__body {
    padding: 0.4rem 0;
  }
}

.p-open__link-btn {
  position: relative;
  width: 25.7rem;
  height: 7.8rem;
  padding: 0 0 0 8.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #79273F;
  border-radius: 50vh;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 960px) {
  .p-open__link-btn {
    width: 20rem;
    height: 6.1rem;
    padding: 0 0 0 7rem;
  }
}

.p-open__link-btn__icon {
  position: absolute;
  top: 50%;
  left: 2.8rem;
  transform: translate(0, -50%);
  width: 3.4rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-open__link-btn__icon {
    /* left: 2rem; */
    width: 2.4rem;
  }
}

.p-open__link-btn__text {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-open__link-btn__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.p-open__link-btn__play {
  width: 2.8rem;
  line-height: 0;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-open__link-btn__play {
    width: 1.7rem;
  }
}

.p-open__link-btn__bn {
  position: absolute;
  top: -2.6rem;
  right: -1.7rem;
  transform: translate(100%, 0);
  width: 12.9rem;
}
@media screen and (max-width: 960px) {
  .p-open__link-btn__bn {
    top: 0;
    right: 45%;
    transform: translate(50%, -75%);
    width: 16.6rem;
  }
}

@media (hover: hover) {
  .p-open__link-btn:hover .p-open__link-btn__play {
    transform: translate(0.5rem, 0);
  }
}
.p-open__box-point__pagination {
  position: static;
  padding: 1rem 2rem 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 961px) {
  .p-open__box-point__pagination {
    display: none;
  }
}

.p-open__box-point__pagination .swiper-pagination-bullet-active {
  background-color: #5b6694;
}

.p-open__box-point__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 4.5rem;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-open__box-point__arrow::before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  border-top: 2px solid #aaaaaa;
  border-right: 2px solid #aaaaaa;
  transform: rotate(45deg);
}
.p-open__box-point__arrow.-prev {
  left: 1.5rem;
  transform: translate(-100%, 0) scale(-1, 1);
}
.p-open__box-point__arrow.-next {
  right: 1.5rem;
  transform: translate(100%, 0);
}
@media screen and (min-width: 961px) {
  .p-open__box-point__arrow {
    display: none;
  }
}

.p-open__box-point__notice {
  padding: 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-open__box-point__notice {
    font-size: 1rem;
  }
}

.p-model-lead {
  padding: 4.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-model-lead {
    padding: 4.8rem 0 0;
  }
}

.p-model-lead__copy {
  margin-bottom: 8rem;
  padding: 0 2rem;
  font-family: "Libre Baskerville", seri;
  color: #333333;
  font-size: 13.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model-lead__copy {
    margin-bottom: 3rem;
    padding: 0 0.5rem;
    font-size: 4.4rem;
    line-height: 1.24;
  }
}

.p-model-lead__content {
  margin-bottom: 12rem;
}
@media screen and (max-width: 960px) {
  .p-model-lead__content {
    margin-bottom: 8rem;
  }
}

.p-model-lead__subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #2D2D2B;
  font-size: 2.8rem;
  line-height: 1.6071428571;
  margin-bottom: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
.p-model-lead__subtitle::before, .p-model-lead__subtitle::after {
  content: "";
  background: url(../images/model_house/border.png);
  background-repeat: no-repeat;
  width: 2rem;
  height: 0.6rem;
  display: inline-block;
}
.p-model-lead__subtitle::before {
  transform: translate(-1.7rem, 0.2rem);
}
.p-model-lead__subtitle::after {
  transform: translate(1.7rem, 0.2rem);
}
@media screen and (max-width: 960px) {
  .p-model-lead__subtitle {
    margin: 0 0 1rem;
    font-size: 1.7rem;
  }
}

.p-model-lead__title {
  margin: 0 0 5rem;
  font-size: 3.8rem;
  line-height: 0.8157894737;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model-lead__title {
    margin: 0 0 3rem;
    font-size: 3.1rem;
    line-height: 1.2258064516;
  }
}

.p-model-lead__head-text {
  font-size: 3.7rem;
  line-height: 1.4864864865;
  font-family: "Heebo", sans-serif;
  letter-spacing: 0.2em;
  font-weight: 900;
  white-space: nowrap;
}
@media screen and (min-width: 961px) {
  .p-model-lead__head-text {
    position: absolute;
    top: 1.2rem;
    left: -0.35em;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 960px) {
  .p-model-lead__head-text {
    margin: 0 0 3rem;
    font-size: 2.1rem;
    text-align: center;
  }
}

.p-model-lead__container {
  position: relative;
  padding: 0 0 0 6.5rem;
  margin: 0 0 4.8rem;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 960px) {
  .p-model-lead__container {
    padding: 0;
    margin: 0 0 2rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.p-model-lead__body {
  padding: 0 0 2rem;
  flex: 1;
}
@media screen and (max-width: 960px) {
  .p-model-lead__body {
    padding: 0;
  }
}

.p-model-lead__body-title {
  margin: 0 0 2rem;
  font-size: 2.6rem;
  line-height: 1.8461538462;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.4em;
}
@media screen and (max-width: 960px) {
  .p-model-lead__body-title {
    margin: 0 0 1.6rem;
    font-size: 1.9rem;
    line-height: 2.2105263158;
  }
}

.p-model-lead__body-text {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
}

.p-model-lead__link-list {
  padding: 1.5rem 0 0;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 960px) {
  .p-model-lead__link-list {
    margin: 0 -1rem;
    justify-content: center;
  }
}

.p-model-lead__link-btn {
  width: 20rem;
  height: 6.2rem;
  padding: 0 0 0 4rem;
  border-radius: 5px;
  background: #2D2D2B;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  transition: 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-model-lead__link-btn {
    height: 6rem;
    padding: 0 0 0 2rem;
  }
}

.p-model-lead__link-btn__text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.p-model-lead__link-btn__play {
  width: 2.2rem;
  line-height: 0;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-model-lead__link-btn__play {
    width: 0.6rem;
  }
}

@media (hover: hover) {
  .p-model-lead__link-btn:hover .p-model-lead__link-btn__play {
    transform: translate(0.5rem, 0);
  }
}
.p-model-lead__foot {
  width: 52.3rem;
  padding: 1.5rem 0 0;
  overflow: hidden;
}
.p-model-lead__foot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate(1rem, -1rem) scale(1.05);
  transition: all 0.6s ease 0.2s;
}
.p-model-lead__foot.is-entered img {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width: 960px) {
  .p-model-lead__foot {
    width: 100%;
    height: 24rem;
    padding: 0;
  }
}

.p-model-lead__gallery {
  padding: 8rem 0 0;
}
.p-model-lead__gallery .swiper {
  transition: opacity 0.4s ease;
}
.p-model-lead__gallery .swiper:not(.swiper-initialized) {
  height: 27.9rem;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-model-lead__gallery .swiper:not(.swiper-initialized) {
    height: 14.7rem;
  }
}
.p-model-lead__gallery .swiper-wrapper {
  transition-timing-function: linear;
  backface-visibility: hidden;
}
.p-model-lead__gallery img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-model-lead__gallery {
    padding: 2rem 0 0;
  }
}

.p-cv {
  padding: 7.5rem 0 9rem;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-cv {
    padding: 4rem 0;
  }
}

.p-cv__bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -10;
  transform: translate(0, -50%);
  width: 100%;
  height: calc(100% + 20rem);
}
.p-cv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cv__text {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-cv__text {
    text-align: left;
  }
}

.p-cv__link-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 960px) {
  .p-cv__link-list {
    padding: 3rem 0 0;
    margin: 0 -1rem;
    gap: 0.5rem;
  }
}

.p-cv__link-banner {
  position: absolute;
  top: -0.8rem;
  left: -16rem;
  width: 14.1rem;
}
@media screen and (max-width: 960px) {
  .p-cv__link-banner {
    top: -5.2rem;
    left: 3.6rem;
    width: 29.3rem;
  }
}

.p-cv__list-link__icon {
  width: 3.45rem;
  height: 3.208rem;
  color: #000;
}

.p-cv__link-btn {
  position: relative;
  width: 33rem;
  height: 7.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.38rem;
  background: #2BA6A6;
  border-radius: 3px;
}
@media screen and (max-width: 960px) {
  .p-cv__link-btn {
    width: 33rem;
    height: 7.8rem;
  }
}

.p-cv__link-btn__icon {
  position: absolute;
  top: 50%;
  left: 2.8rem;
  transform: translate(0, -50%);
  width: 3rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-cv__link-btn__icon {
    left: 2rem;
    width: 2.8rem;
  }
}

.p-cv__link-btn.-catalog .p-cv__link-btn__icon {
  top: 52.5%;
  width: 2.5rem;
}
@media screen and (max-width: 960px) {
  .p-cv__link-btn.-catalog .p-cv__link-btn__icon {
    width: 1.5rem;
  }
}

.p-cv__link-btn.-reserve .p-cv__link-btn__icon {
  width: 3.4rem;
}
@media screen and (max-width: 960px) {
  .p-cv__link-btn.-reserve .p-cv__link-btn__icon {
    width: 2.4rem;
  }
}

.p-cv__link-btn__text {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.p-cv__link-btn__play {
  width: 2.8rem;
  line-height: 0;
  transition: transform 0.4s ease;
}

.p-cv__link-btn__bn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(90%, -80%);
  width: 12.9rem;
}
@media screen and (max-width: 960px) {
  .p-cv__link-btn__bn {
    right: 45%;
    transform: translate(50%, -75%);
    width: 16.6rem;
  }
}

@media (hover: hover) {
  .p-cv__link-btn:hover .p-cv__link-btn__play {
    transform: translate(0.5rem, 0);
  }
}
.p-works {
  padding: 7rem 0 9rem;
}

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

.p-works__item-head {
  position: relative;
  margin: 0 -1rem;
}
@media screen and (max-width: 960px) {
  .p-works__item-head {
    margin: 0 calc(50% - 50vw);
  }
}

.p-works__slider {
  padding: 0 0 1rem;
}

.p-works__slider-slide {
  padding: 0 1rem;
}
@media screen and (max-width: 960px) {
  .p-works__slider-slide {
    padding: 0 2.5rem;
  }
}

.p-works__slider-slide__img {
  position: relative;
  height: 52rem;
  overflow: hidden;
  border-radius: 1rem;
}
.p-works__slider-slide__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.6s ease;
  will-change: opacity, transform;
}
@media screen and (max-width: 960px) {
  .p-works__slider-slide__img {
    height: 22rem;
  }
}

.p-works__item.is-entered .p-works__slider-slide__img img {
  opacity: 1;
  transform: scale(1);
  will-change: auto;
}

.p-works__slider-pagination {
  position: static;
  padding: 1rem 1rem 0;
  display: flex;
  justify-content: flex-end;
}
.p-works__slider-pagination .swiper-pagination-bullet-active {
  background-color: #5b6694;
}
@media screen and (max-width: 960px) {
  .p-works__slider-pagination {
    padding: 1rem 2.5rem 0;
  }
}

.p-works__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  width: 6rem;
  height: 8rem;
  display: flex;
  align-items: center;
}
.p-works__slider-arrow::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  display: block;
  border-top: 2px solid #AAAAAA;
  border-right: 2px solid #AAAAAA;
}
.p-works__slider-arrow.-prev {
  left: -6rem;
}
.p-works__slider-arrow.-prev::before {
  margin: 0 0 0 auto;
  transform: scale(-1, 1) rotate(45deg) skew(5deg, 5deg);
}
.p-works__slider-arrow.-next {
  right: -6rem;
}
.p-works__slider-arrow.-next::before {
  margin: 0 auto 0 0;
  transform: rotate(45deg) skew(5deg, 5deg);
}
@media screen and (max-width: 960px) {
  .p-works__slider-arrow {
    width: 4rem;
  }
  .p-works__slider-arrow::before {
    width: 1.7rem;
    height: 1.7rem;
  }
  .p-works__slider-arrow.-prev {
    left: 0;
    padding: 0 1.6rem 0 0;
  }
  .p-works__slider-arrow.-next {
    right: 0;
    padding: 0 0 0 1.6rem;
  }
}

.p-works__item-body {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 960px) {
  .p-works__item-body {
    gap: 1.6rem;
  }
}

.p-works__item-body__main {
  flex: 1;
}

.p-works__item__label {
  margin: 0 0 1rem;
  color: #2D2D2B;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
  font-weight: 900;
  font-family: "Heebo", sans-serif;
}
.p-works__item__title {
  margin: 0 0 1rem;
  font-size: 2.6rem;
  line-height: 1.5384615385;
  letter-spacing: 0.12em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-works__item__title {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}

.p-works__item__text {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
}
.p-works__item-body__sub {
  width: 44rem;
  padding: 2.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-works__item-body__sub {
    width: 100%;
    padding: 0;
  }
}

.p-works__item-about {
  padding: 2rem 2.2rem;
  border-radius: 1rem;
  background: #F2F1EC;
}
@media screen and (max-width: 960px) {
  .p-works__item-about {
    padding: 2.3rem;
  }
}

.p-works__item-body__sub-title {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.p-works__item-body__sub-text {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.08em;
}

.p-voice {
  padding: 7rem 0 9rem;
  background: #4d694a;
}
@media screen and (max-width: 960px) {
  .p-voice {
    padding: 5rem 0;
  }
}

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

.p-voice__slider {
  padding: 5rem calc(50vw - 55.25rem) 0;
}
@media screen and (max-width: 960px) {
  .p-voice__slider {
    padding: 2rem 1.5rem 6rem;
  }
}

.p-voice__slider-slide {
  height: auto !important;
  padding: 1rem;
  transition: opacity 0.4s ease;
}
.p-voice__slider-slide.is-hide {
  opacity: 0.7;
}

.p-voice__slider-slide__inner {
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transform: translate(1rem, 0);
  opacity: 0;
  transition: all 0.4s ease;
  will-change: opacity, transform;
}

.p-voice__slider-slide.is-entered .p-voice__slider-slide__inner {
  transform: translate(0, 0);
  opacity: 1;
  will-change: auto;
}

.p-voice__slider-slide__head {
  height: 23.8rem;
  overflow: hidden;
}
.p-voice__slider-slide__head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-voice__slider-slide__head {
    height: 20.7rem;
  }
}

@media (hover: hover) {
  .p-voice__slider-slide:hover .p-voice__slider-slide__head img {
    transform: scale(1.1);
  }
}
.p-voice__slider-slide__body {
  width: 100%;
  padding: 2.2rem 2rem 2rem;
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-voice__slider-slide__body {
    padding: 1.5rem;
    gap: 1.6rem;
  }
}

.p-voice__slider-slide__title {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-voice__slider-slide__title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.p-voice__slider-slide__about {
  color: #2D2D2B;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-voice__slider-slide__about {
    font-size: 1.2rem;
    line-height: 1.8333333333;
  }
}

.p-voice__slider__main-arrows {
  position: absolute;
  top: 0;
  left: calc(50% + 54.2rem);
  transform: translate(-100%, 0);
}
@media screen and (max-width: 960px) {
  .p-voice__slider__main-arrows {
    top: auto;
    left: auto;
    right: 2.5rem;
    bottom: 0;
    transform: translate(0, 0);
  }
}

.p-voice__slider__sub-arrow {
  position: absolute;
  top: 32.5%;
  right: 0.6rem;
  transform: translate(0, -50%);
  z-index: 10;
  width: 5.4rem;
}
.p-voice__slider__sub-arrow.-prev {
  right: auto;
  left: 0.6rem;
  transform: translate(0, -50%) scale(-1, 1);
}

.p-voice-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}

.p-voice-modal__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-voice-modal__inner {
  position: relative;
  width: 119rem;
  max-width: 100%;
  max-height: 110rem;
  height: 100%;
  padding: 5rem 7.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__inner {
    padding: 3rem 0.5rem;
  }
}

.p-voice-modal__close {
  position: absolute;
  top: 4.3rem;
  right: 2rem;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

.p-voice-modal__slider {
  height: 100%;
}

.p-voice-modal__slider-slide {
  padding: 0 2rem;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__slider-slide {
    padding: 0 1rem;
  }
}

.p-voice-modal__slider-slide__inner {
  height: 100%;
  padding: 4rem 6rem 5.6rem;
  border-radius: 1rem;
  background: #fff;
  overflow-y: auto;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__slider-slide__inner {
    padding: 2rem 2rem 2.2rem;
  }
}

.p-voice-modal__head {
  padding: 0 0 1.6rem;
  margin: 0 0 2.4rem;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__head {
    padding: 0 0 0.5rem;
    margin: 0 0 1.5rem;
  }
}

.p-voice-modal__title {
  font-size: 2.6rem;
  line-height: 1.5384615385;
  letter-spacing: 0.12em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__title {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
  }
}

.p-voice-modal__subtitle {
  color: #2D2D2B;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__subtitle {
    font-size: 1rem;
  }
}

.p-voice-modal__thumb {
  position: relative;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__thumb {
    margin: 0 0 2rem;
  }
}

.p-voice-modal__thumb-img {
  height: 51.5rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__thumb-img {
    height: 22rem;
  }
}

.p-voice-modal__thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice-modal__owner {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 1rem;
  border-radius: 0 1rem 1rem 1rem;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__owner {
    position: relative;
    bottom: auto;
    left: auto;
    gap: 1.6rem;
  }
}

.p-voice-modal__owner-label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -100%);
  padding: 0.4rem 1rem;
  background: #2D2D2B;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2727272727;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Lora", serif;
}

.p-voice-modal__owner-icon {
  width: 7.7rem;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__owner-icon {
    width: 7rem;
  }
}

.p-voice-modal__owner-content {
  flex: 1;
}

.p-voice-modal__owner-title {
  color: #2D2D2B;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__owner-title {
    font-size: 1rem;
  }
}

.p-voice-modal__owner-name {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__owner-name {
    font-size: 1.4rem;
  }
}

.p-voice-modal__owner-ruby {
  font-size: 0.8rem;
  line-height: 1.375;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.p-voice-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__body {
    gap: 1rem;
  }
}

.p-voice-modal__faq {
  padding: 2rem 2.4rem 2rem 1.9rem;
  border-radius: 1rem;
  background: #F2F1EC;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__faq {
    padding: 1.6rem 1.8rem 1.6rem 1.6rem;
    gap: 1rem;
  }
}

.p-voice-modal__faq-q {
  position: relative;
  padding: 0.4rem 0 0.4rem 4.2rem;
  color: #2D2D2B;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.p-voice-modal__faq-q::before {
  content: "Q";
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 3.3rem;
  height: 3.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #2D2D2B;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  font-family: "Heebo", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__faq-q {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .p-voice-modal__faq-q::before {
    top: 0;
    width: 3rem;
    height: 3rem;
    font-size: 1.7rem;
    line-height: 1;
  }
}

.p-voice-modal__faq-a {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .p-voice-modal__faq-a {
    font-size: 1.2rem;
    font-weight: 400;
  }
}

.p-voice-modal__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  width: 6rem;
  height: 8rem;
  display: flex;
  align-items: center;
}
.p-voice-modal__slider-arrow::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.p-voice-modal__slider-arrow.-prev {
  left: 0;
}
.p-voice-modal__slider-arrow.-prev::before {
  margin: 0 0 0 auto;
  transform: scale(-1, 1) rotate(45deg) skew(5deg, 5deg);
}
.p-voice-modal__slider-arrow.-next {
  right: 0;
}
.p-voice-modal__slider-arrow.-next::before {
  margin: 0 auto 0 0;
  transform: rotate(45deg) skew(5deg, 5deg);
}
@media screen and (max-width: 960px) {
  .p-voice-modal__slider-arrow {
    width: 4rem;
  }
  .p-voice-modal__slider-arrow::before {
    width: 1.7rem;
    height: 1.7rem;
  }
  .p-voice-modal__slider-arrow.-prev {
    left: 0;
    padding: 0 1.6rem 0 0;
  }
  .p-voice-modal__slider-arrow.-next {
    right: 0;
    padding: 0 0 0 1.6rem;
  }
}

.p-features {
  padding: 7rem 0 5rem;
  background-color: #2a2e33;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-features {
    padding: 7rem 0 2em;
  }
}

.p-features__inner {
  max-width: 1920px;
  padding: 0;
}

.p-features__head {
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 960px) {
  .p-features__head {
    padding: 5rem 0 7rem;
  }
}

.p-features__title {
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-align: center;
}
.p-features__title span {
  color: transparent;
  -webkit-text-stroke: 1px #a6a6a6;
  font-size: 10.3rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: var(--my-preset--font-family--raleway);
  font-feature-settings: "palt";
}
@media screen and (max-width: 960px) {
  .p-features__title {
    font-size: 3.3rem;
  }
}

.p-features__list {
  border-top: 1px solid #FAF9F7;
}

.p-features__list-item {
  padding: 4.7rem 0;
  border-bottom: 1px solid #FAF9F7;
}
.p-features__list-item:nth-child(3) {
  border-bottom: none;
}
@media screen and (max-width: 960px) {
  .p-features__list-item {
    padding: 2.3rem 0 2.7rem;
  }
}

.p-features__list-item__inner {
  width: 100%;
  max-width: 116.5rem;
  padding: 0 4rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 6.2rem;
}
@media screen and (max-width: 960px) {
  .p-features__list-item__inner {
    padding: 0 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media screen and (min-width: 961px) {
  .p-features__list-item:nth-child(even) .p-features__list-item__inner {
    flex-direction: row-reverse;
  }
}

.p-features__list-item__content {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-features__list-item__content {
    width: 100%;
  }
}

.p-features__list-item__content-inner {
  width: 100%;
}

.p-features__list-item__subtitle {
  margin: 0 0 1.55rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-features__list-item__subtitle {
    margin: 0 0 1rem;
  }
}

.p-features__list-item__subtitle-num {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  font-size: 5.3rem;
  line-height: 1.5849056604;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: var(--my-preset--font-family--raleway);
  font-feature-settings: "palt";
  opacity: 0;
  transform: translate(-2rem, 0);
  transition: 0.6s cubic-bezier(0, 0.7, 0.3, 1);
}

.p-features__list-item.is-fadein .p-features__list-item__subtitle-num {
  opacity: 1;
  transform: translate(0, 0);
}

.p-features__list-item__title {
  margin: 0 0 2.1rem;
  font-size: 2.4rem;
  line-height: 1.5833333333;
  letter-spacing: 0.08em;
  font-weight: 700;
  opacity: 0;
  transition: 0.8s ease 0.2s;
}
@media screen and (max-width: 960px) {
  .p-features__list-item__title {
    margin: 0 0 2rem;
    font-size: 2.2rem;
    line-height: 1.7272727273;
  }
}

.p-features__list-item.is-fadein .p-features__list-item__title {
  opacity: 1;
}

.p-features__list-item__desc {
  font-size: 1.5rem;
  line-height: 1.9333333333;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: 0.8s ease 0.2s;
}

.p-features__list-item.is-fadein .p-features__list-item__desc {
  opacity: 1;
}

.p-features__list-item__img {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.p-features__list-item__img::before {
  content: "";
  padding: 79.167% 0 0;
  display: block;
}
.p-features__list-item__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: 0.6s ease 0.4s;
}
@media screen and (max-width: 960px) {
  .p-features__list-item__img {
    width: 100%;
  }
}

.p-features__list-item.is-fadein .p-features__list-item__img img {
  opacity: 1;
  transform: scale(1);
}

.is-fadein {
  opacity: 1;
  transform: translate(0, 0);
}

.p-facility {
  z-index: 20;
  padding: 5rem 0 4rem;
}
.p-facility::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-width: 3.1rem 4.5rem 0 4.5rem;
  border-color: #F2F2F2 transparent transparent transparent;
}
@media screen and (max-width: 960px) {
  .p-facility::after {
    border-width: 3.1rem 5rem 0 5rem;
  }
}

.p-facility__bottom-lead {
  margin: 0 auto;
  font-size: 3.8rem;
  line-height: 1.4210526316;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .p-facility__bottom-lead {
    font-size: 3.1rem;
    line-height: 1.2258064516;
  }
}

.p-model {
  padding: 6rem 0;
  background: transparent;
  color: #fff;
  transition: background 0.6s ease;
  will-change: background;
}
.p-model.is-entered {
  background: #2D2D2B;
}
@media screen and (max-width: 960px) {
  .p-model {
    padding: 6rem 0 2.4rem;
  }
}

.p-model__inner {
  /* opacity: 0;
  will-change: opacity;
  transition: opacity .4s ease; */
}

.p-model__content {
  margin-bottom: 8rem;
}
@media screen and (max-width: 960px) {
  .p-model__content {
    margin-bottom: 4rem;
  }
}
.p-model__content:last-of-type {
  margin-bottom: 0;
}

.p-model.is-entered .p-model__inner {
  opacity: 1;
  will-change: auto;
}

.p-model__title {
  margin: 0 0 2.6rem;
  font-size: 4.1rem;
  line-height: 0.756097561;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model__title {
    font-size: 3.2rem;
    line-height: 1.3125;
  }
}

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

.p-model__intro {
  margin-bottom: 1.6rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model__intro {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }
}
.p-model__intro.-top {
  margin-bottom: 2.9rem;
}

.p-model__intro-txt {
  padding-top: 1.6rem;
  margin-bottom: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-model__intro-txt {
    margin-bottom: 3.6rem;
    font-size: 1.4rem;
  }
}

.p-model__data {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 960px) {
  .p-model__data {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
}

.p-model__data-head {
  position: relative;
  padding: 0 1rem 0 0;
  font-weight: 700;
}
.p-model__data-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 1px;
  height: 1.7rem;
  display: block;
  background: currentColor;
}
@media screen and (max-width: 960px) {
  .p-model__data-head {
    width: 8rem;
    padding: 0.5rem 0;
  }
  .p-model__data-head::after {
    height: 75%;
  }
}

.p-model__data-body {
  padding: 0 0 0 1rem;
}
@media screen and (max-width: 960px) {
  .p-model__data-body {
    padding: 0.5rem 0 0.5rem 1rem;
    flex: 1;
  }
}

.p-model__container {
  margin: 0 calc(50% - 50vw) 9rem;
}
@media screen and (max-width: 960px) {
  .p-model__container {
    margin: 0 calc(50% - 50vw);
  }
}

.p-model__slider {
  padding: 0 calc((100vw - 110rem) / 2) 0;
}
@media screen and (max-width: 960px) {
  .p-model__slider {
    padding: 0 0 6rem;
  }
}

@media screen and (max-width: 960px) {
  .p-model__slider-wrapper {
    margin-bottom: 0.7rem;
  }
}

.p-model__slider-slide {
  padding: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-model__slider-slide {
    padding: 0.5rem;
  }
}

.p-model__slider-slide__outer {
  position: relative;
  width: 100%;
}
.p-model__slider-slide__outer::before {
  content: "";
  padding: 66.67% 0 0;
  display: block;
}

.p-model__slider-slide__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-model__slider-slide__inner {
    gap: 0.8rem;
  }
}

.p-model__slider-slide__box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.p-model__slider-slide__box.-small {
  width: calc(50% - 1.2rem);
}
@media screen and (max-width: 960px) {
  .p-model__slider-slide__box.-small {
    width: calc(50% - 0.4rem);
  }
}

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

.p-model__slider-slide__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.3rem 1rem;
  background: rgba(0, 0, 0, 0.6);
}

.p-model__slider-slide__label-text {
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-model__slider-slide__label-text {
    font-size: 1.2rem;
    line-height: 1.5833333333;
  }
}

.p-model__slider__main-arrow-box {
  padding: 0 1rem;
  position: absolute;
  top: 29%;
  left: 0;
  z-index: 10;
  width: 100%;
}

.p-model__slider__main-arrow-wrap {
  display: flex;
  justify-content: space-between;
}

.p-model__slider__main-arrow.-prev {
  transform: scale(-1, 1);
}
.p-model__slider__sub-arrow-box {
  width: fit-content;
  margin-left: auto;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-model__slider__sub-arrow-box {
    padding-right: 2.5rem;
  }
}

.p-model__slider__sub-arrow.-next {
  right: 0.4rem;
}
.p-model__slider__sub-arrow.-prev {
  margin-right: 0.6rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-model__slider__sub-arrow {
    top: 45%;
    z-index: 10;
  }
}

.p-model__slider-pagination {
  position: static;
}
@media screen and (max-width: 960px) {
  .p-model__slider-pagination {
    display: none;
  }
}
.p-model__slider-pagination .swiper-pagination-bullet {
  background: #fff;
}

@media screen and (max-width: 960px) {
  .p-model__point__slider_container {
    position: relative;
  }
}

.p-model__list-wrapper {
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 960px) {
  .p-model__list-wrapper {
    margin-bottom: 0;
  }
}
.p-model__list-wrapper .swiper-pagination-bullet {
  background: #47494e;
}
@media screen and (min-width: 959px) {
  .p-model__list-wrapper .swiper-pagination-bullet {
    display: none;
  }
}

.p-model__list-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .p-model__list-container {
    padding-bottom: 3rem;
  }
}

.p-model__list-box {
  width: 33.5rem;
  font-size: 1.4rem;
  line-height: 1.6428571429;
}

.p-model__list-pic {
  margin-bottom: 1.58rem;
}

.p-model__point__slider-next {
  color: #aaaaaa;
  width: 0.5rem;
  left: -1.6rem;
}
.p-model__point__slider-next::after {
  font-size: 2.6rem;
}
@media screen and (min-width: 959px) {
  .p-model__point__slider-next {
    display: none;
  }
}

.p-model__point__slider-prev {
  color: #aaaaaa;
  width: 0.5rem;
  right: -1.6rem;
}
.p-model__point__slider-prev::after {
  font-size: 2.6rem;
}
@media screen and (min-width: 959px) {
  .p-model__point__slider-prev {
    display: none;
  }
}

.p-model__floor-wrapper {
  max-width: 100%;
  padding: 2rem 0 0;
  margin: 0 auto 3.6rem;
}
@media screen and (max-width: 960px) {
  .p-model__floor-wrapper {
    margin: 0 auto 2.5rem;
  }
}

.p-model__floor-title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-model__floor-title {
    font-size: 1.9rem;
  }
}

.p-model__floor {
  padding: 3rem 5rem 2.8rem;
  border-radius: 1rem;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-model__floor {
    padding: 1.8rem 0.9rem;
  }
}

.p-model__floor-plan {
  margin: 0 0 1rem;
  display: flex;
  margin-bottom: 3.3rem;
}
@media screen and (max-width: 960px) {
  .p-model__floor-plan {
    flex-direction: column;
  }
}

.p-model__floor-plan__box {
  position: relative;
  width: calc(50% - 1.6rem);
}
.p-model__floor-plan__box img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-model__floor-plan__box {
    width: 100%;
    padding: 2.4rem 0 0;
  }
}

.p-model__floor-plan__num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2D2D2B;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Heebo", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-model__floor-plan__num {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    font-size: 2.1rem;
  }
}

.p-model__floor-data {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-model__floor-data {
    align-items: flex-start;
    gap: 1rem;
  }
}

.p-model__floor-data__title {
  color: #3b3b3b;
  font-size: 1.3rem;
  line-height: 1.2307692308;
  letter-spacing: 0.12em;
  font-weight: 700;
  white-space: nowrap;
}

.p-model__floor-data__box {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-model__floor-data__box {
    flex-direction: column;
    gap: 0;
  }
}

.p-model__floor-data__row {
  display: table;
  border-collapse: collapse;
}

.p-model__floor-data__head,
.p-model__floor-data__body {
  padding: 0.3rem;
  display: table-cell;
  border: 1px solid #000;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: center;
}

.p-model__floor-data__head {
  width: 6.4rem;
  background: #a7a7a7;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-model__floor-data__head {
    width: 6.6rem;
  }
}

.p-model__floor-data__body {
  width: 16.4rem;
  color: #000;
}
@media screen and (max-width: 960px) {
  .p-model__floor-data__body {
    width: 13.6rem;
    padding-left: 0.9rem;
    text-align: left;
  }
}

.p-model__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-model__links {
    gap: 0.6rem;
  }
}

.p-model__link-btn {
  width: 23rem;
  height: 6.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  border-radius: 50vh;
  border: 0.2rem solid #fff;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 960px) {
  .p-model__link-btn {
    width: calc(50% - 0.3rem);
    height: 4.9rem;
  }
}

.p-model__link-btn__icon {
  width: 3.7rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-model__link-btn__icon {
    width: 2.8rem;
  }
}

.p-model__link-btn__text {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.14em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-model__link-btn__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.p-model__link-btn__play {
  width: 2.4rem;
  line-height: 0;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-model__link-btn__play {
    width: 1.7rem;
  }
}

@media (hover: hover) {
  .p-model__link-btn:hover .p-model__link-btn__play {
    transform: translate(0.5rem, 0);
  }
}
.p-banner {
  padding: 2.8rem 0 2.8rem;
  background: #fafafa;
}
@media screen and (max-width: 960px) {
  .p-banner {
    padding-bottom: 4.8rem;
  }
}

.p-banner__inner {
  max-width: 78rem;
}

.p-banner__item {
  display: block;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-banner__item {
    margin-bottom: 1.4rem;
  }
}
.p-banner__item img {
  width: 100%;
}

.p-banner__notice-title {
  padding: 1.6rem 0 0;
  margin: 0 0 0.7rem;
  font-size: 1.5rem;
  line-height: 2.0666666667;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-banner__notice-title {
    text-align: left;
  }
}

.p-banner__notice-text {
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.08em;
}

.p-banner__notice-text__strong {
  font-weight: 500;
  text-decoration: underline;
}

.p-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 2.8rem 0;
  width: 41rem;
  background: #2f9b9b;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 2px solid #fff;
  border-radius: 10rem;
  box-shadow: 10px 3px 6px 0px rgba(0, 0, 0, 0.1490196078);
}
@media screen and (max-width: 960px) {
  .p-banner__btn {
    padding: 2.15rem 0;
    width: 32.4rem;
    font-size: 1.4rem;
  }
}

.p-banner__btn-arrow {
  position: relative;
}
.p-banner__btn-arrow::before {
  position: absolute;
  top: 23%;
  transform: translateY(-50%);
  content: "";
  display: block;
  background: url(../images/common/arrow_down.png) center center/contain no-repeat;
  width: 4.4rem;
  height: 4.4rem;
}
@media screen and (max-width: 960px) {
  .p-banner__btn-arrow::before {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.p-company {
  padding: 6rem 0 10rem;
}
@media screen and (max-width: 960px) {
  .p-company {
    padding: 8rem 0 9rem;
  }
}

.p-company__data {
  width: 97rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-company__data-row {
  display: flex;
  gap: 4.2rem;
}
@media screen and (max-width: 960px) {
  .p-company__data-row {
    gap: 0;
  }
}

.p-company__data-head {
  width: 12.3rem;
  padding: 2rem 0;
  border-bottom: 1px solid #2D2D2B;
  font-size: 1.5rem;
  line-height: 2.0666666667;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-company__data-head {
    width: 10.2rem;
    padding: 1rem 0;
    font-size: 1.3rem;
    line-height: 2.3076923077;
  }
}

.p-company__data-body {
  flex: 1;
  padding: 2.5rem 0 2.4rem;
  border-bottom: 1px solid #D0D0D0;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-company__data-body {
    padding: 1.6rem 0 1.5rem 0.8rem;
    font-size: 1.3rem;
    line-height: 1.4615384615;
  }
}

.p-company__data-title {
  padding: 6.7rem 0 0;
  margin: 0 0 3rem;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 960px) {
  .p-company__data-title {
    padding: 4.5rem 0 0;
    margin: 0 0 1.2rem;
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
}

.p-store {
  padding: 6rem 0 5rem;
  background: #C7C7BF;
}
@media screen and (max-width: 960px) {
  .p-store {
    padding: 4rem 0;
  }
}

.p-store__container {
  display: flex;
  gap: 6.8rem;
}
@media screen and (max-width: 960px) {
  .p-store__container {
    flex-direction: column;
    gap: 2.4rem;
  }
}

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

.p-store__subtitle {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.p-store__subtitle::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background: currentColor;
}

.p-store__title {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
  line-height: 1.5909090909;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.p-store__title small {
  font-size: 63.63%;
  font-weight: 400;
}

.p-store__body {
  flex: 1;
}

.p-store__data {
  display: flex;
  gap: 1.1rem;
}

.p-store__data-head {
  width: 6rem;
  padding: 1rem 0;
  border-bottom: 1px solid #000;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.p-store__data-body {
  flex: 1;
  padding: 1rem 0 1rem 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-store__data-body {
    padding: 1rem 0.4rem;
  }
}

.p-store__link {
  width: 23rem;
  height: 5.8rem;
  padding: 0 0 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  border-radius: 50vh;
  border: 1px solid currentColor;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-store__link span {
  transform: translate(0, -0.2rem);
  width: 1.4rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-store__link {
    width: 14rem;
    height: 3.8rem;
    gap: 1rem;
    border-width: 0.1rem;
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
  .p-store__link span {
    width: 0.9rem;
  }
}

.p-store__body {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-store__body {
    gap: 1.5rem;
  }
}

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

.p-standard {
  padding: 11rem 0 7rem;
  overflow: hidden;
  background: #E6E6E3;
}
@media screen and (max-width: 960px) {
  .p-standard {
    padding: 5.5rem 0 8rem;
  }
}

.p-standard__inner {
  position: relative;
  max-width: 160rem;
  padding: 0 16rem;
}
@media screen and (max-width: 960px) {
  .p-standard__inner {
    padding: 0 2rem;
  }
}

.p-standard__head {
  position: absolute;
  top: 0;
  right: 0;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .p-standard__head {
    transform: translate(95%, 0);
  }
}

.p-standard__list {
  max-width: 124rem;
  padding: 8rem 4rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
@media screen and (max-width: 960px) {
  .p-standard__list {
    padding: 3.5rem 0 0;
    gap: 3rem;
  }
}

.p-standard__list-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 8rem;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item {
    gap: 1.7rem 2.5rem;
  }
}

.p-standard__list-item__head {
  width: 20rem;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__head {
    width: 10rem;
  }
}

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

@media (hover: hover) {
  .p-standard__list-item__head:hover .p-standard__list-item__thumb img {
    transform: scale(1.05);
  }
}
.p-standard__list-item__name {
  position: relative;
  padding: 0 4rem 0 0.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.p-standard__list-item__name::after {
  content: "";
  top: 0.3rem;
  right: 0.8rem;
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  background: no-repeat center/100% url(../images/common/icon_zoom.svg);
}
.p-standard__list-item__name.-no-icon::after {
  display: none;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__name {
    padding: 0 2.5rem 0 0.2rem;
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
  .p-standard__list-item__name::after {
    top: 0.3rem;
    right: 0.6rem;
    width: 1.1rem;
    height: 1.1rem;
  }
}

.p-standard__list-item__date {
  padding: 0 0.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__date {
    font-size: 2.4rem;
    line-height: 1.5833333333;
  }
}

.p-standard__list-item__body {
  position: relative;
  padding: 0 0 0 4rem;
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__body {
    padding: 0;
  }
}

.p-standard__list-item__body__title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.32em;
  font-weight: 500;
  writing-mode: vertical-rl;
}

.p-standard__list-item__photo {
  margin: 0 -2rem 0 0;
  overflow: hidden;
}

.p-standard__list-item__photo-inner {
  margin: 0 0 0 -2rem;
}

.p-standard__list-item__slider-slide {
  padding: 0 2rem;
}

.p-standard__list-item__slider-wrapper {
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__slider-wrapper {
    margin-bottom: 0;
  }
}

.p-standard__list-item__slider-slide__content strong {
  font-size: 2.2rem;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .p-standard__list-item__slider-slide__content small {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.93;
    letter-spacing: 0.08em;
    font-feature-settings: "palt";
  }
}

.p-standard__list-item__slider-pagenation {
  position: static;
}
.p-standard__list-item__slider-pagenation .swiper-pagination-bullet {
  background-color: #444444;
  opacity: 1;
}
.p-standard__list-item__slider-pagenation .swiper-pagination-bullet-active {
  background-color: #5b6694;
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__slider-pagenation {
    line-height: 1;
  }
}

.p-standard__list-item__more {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}
.p-standard__list-item__more::after {
  content: "";
  width: 5.1rem;
  height: 1rem;
  margin: 0 0 0 1rem;
  display: inline-block;
  background: no-repeat center/100% url(../images/common/icon_arrow.png);
}
@media screen and (max-width: 960px) {
  .p-standard__list-item__more {
    font-size: 1rem;
  }
  .p-standard__list-item__more::after {
    width: 3.8rem;
    height: 0.7rem;
    margin: 0 0 0 0.5rem;
  }
}

.p-standard__modal-list__item {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item {
    padding: 3rem;
  }
}

.p-standard__modal-list__item-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.p-standard__modal-list__item-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75.2rem;
  max-width: 95%;
  height: 100rem;
  max-height: 95%;
  padding: 4.6rem 5rem 5rem;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-content {
    width: 100%;
    height: 100%;
    padding: 3rem 0 4rem;
  }
}

.p-standard__modal-list__item-content__inner {
  height: 100%;
  overflow-y: auto;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-content__inner {
    padding: 0 1.5rem 2rem 2.2rem;
  }
}

.p-standard__modal-list__item-head {
  margin: 0 0 3.2rem;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-head {
    margin: 0 0 1.6rem;
    gap: 1.5rem;
  }
}

.p-standard__modal-list__item-head__thumb {
  width: 15rem;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-head__thumb {
    width: 11.7rem;
  }
}

.p-standard__modal-list__item-head__profile {
  flex: 1;
}

.p-standard__modal-list__item-head__name {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.12em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-head__name {
    font-size: 1.8rem;
  }
}

.p-standard__modal-list__item-head__company {
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-head__company {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }
}

.p-standard__modal-list__item-head__content {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-head__content {
    grid-column: 1/3;
  }
}

.p-standard__modal-list__item-head__desc {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-head__desc {
    font-size: 1.3rem;
  }
}

.p-standard__modal-list__item-body {
  padding: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body {
    padding: 3.2rem 0 0;
  }
}

.p-standard__modal-list__item-body__title {
  position: relative;
  padding: 0 90% 0 0;
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  line-height: 2.0666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-standard__modal-list__item-body__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 90%;
  height: 1px;
  background: #3f3b38;
  opacity: 0.2;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__title {
    padding: 0 77% 0 0;
    margin: 0 0 1rem;
    font-size: 1.4rem;
  }
  .p-standard__modal-list__item-body__title::after {
    width: 77%;
  }
}

.p-standard__modal-list__item-body__data {
  width: 100%;
  margin: 0 0 4rem;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__data {
    margin: 0 0 1.5rem;
  }
}

.p-standard__modal-list__item-body__data-row {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__data-row {
    font-size: 1.1rem;
  }
}

.p-standard__modal-list__item-body__data-head {
  width: 8rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__data-head {
    width: 7rem;
  }
}

.p-standard__modal-list__item-body__data-desc {
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__data-desc {
    padding: 0 0 0 0.8rem;
  }
}

.p-standard__modal-list__item-body__side {
  padding: 1rem 0 0 4rem;
  flex: 1;
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__side {
    padding: 2rem 0 0;
  }
}

.p-standard__modal-list__item-body__side-link {
  padding: 0.7rem;
  background-color: #d9d8d7;
  display: block;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: center;
}
.p-standard__modal-list__item-body__side-link::after {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  transform: translate(0.7rem, 0.1rem);
  display: inline-block;
  background: no-repeat center/100% url(../images/icon_external.svg);
}
@media screen and (max-width: 960px) {
  .p-standard__modal-list__item-body__side-link {
    padding: 1.4rem;
    font-size: 2.6rem;
    line-height: 2;
  }
  .p-standard__modal-list__item-body__side-link::after {
    width: 2.2rem;
    height: 2.2rem;
    transform: translate(1rem, 0.1rem);
  }
}

.p-standard__modal__close {
  position: absolute;
  top: 0;
  right: -7.8rem;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
}
.p-standard__modal__close::before, .p-standard__modal__close::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2px;
  background-color: #000;
  display: block;
}
.p-standard__modal__close::before {
  transform: rotate(45deg);
}
.p-standard__modal__close::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .p-standard__modal__close {
    top: -1.5rem;
    right: -0.5rem;
    width: 5.5rem;
    height: 5.5rem;
  }
  .p-standard__modal__close::before, .p-standard__modal__close::after {
    width: 2rem;
    height: 2px;
  }
}

.p-standard__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  width: 6rem;
  height: 8rem;
  display: flex;
  align-items: center;
}
.p-standard__slider-arrow::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  display: block;
  border-top: 2px solid #aaaaaa;
  border-right: 2px solid #aaaaaa;
}
.p-standard__slider-arrow.-prev {
  left: 17rem;
}
.p-standard__slider-arrow.-prev::before {
  margin: 0 0 0 auto;
  transform: scale(-1, 1) rotate(45deg) skew(5deg, 5deg);
}
.p-standard__slider-arrow.-next {
  right: 14rem;
}
.p-standard__slider-arrow.-next::before {
  margin: 0 auto 0 0;
  transform: rotate(45deg) skew(5deg, 5deg);
}
@media screen and (max-width: 960px) {
  .p-standard__slider-arrow {
    width: 4rem;
  }
  .p-standard__slider-arrow::before {
    width: 1.7rem;
    height: 1.7rem;
  }
  .p-standard__slider-arrow.-prev {
    left: 0;
    padding: 0 1.6rem 0 0;
  }
  .p-standard__slider-arrow.-next {
    right: 0;
    padding: 0 0 0 1.6rem;
  }
}

.p-catalog-btn {
  padding: 6rem 0 3rem;
  background: #f9f9f9;
}
@media screen and (max-width: 960px) {
  .p-catalog-btn {
    padding: 3rem 0 1.5rem;
  }
}

.p-catalog-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin: 0 auto;
  padding: 2.1rem 18rem 2.1rem 6.2rem;
  width: fit-content;
  background: #A97443;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 10px 3px 6px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 1rem;
}
@media screen and (max-width: 960px) {
  .p-catalog-btn__link {
    padding: 1rem 5rem 1rem 2.6rem;
    gap: 1.5rem;
  }
}

.p-catalog-btn__pic {
  width: 21rem;
}
@media screen and (max-width: 960px) {
  .p-catalog-btn__pic {
    width: 10rem;
  }
}

.p-catalog-btn__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: fit-content;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-catalog-btn__box {
    gap: 0.8rem;
  }
}

.p-catalog-btn__txt-sub {
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-catalog-btn__txt-sub {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

.p-catalog-btn__txt-main {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-catalog-btn__txt-main {
    position: relative;
    font-size: 2rem;
  }
}

.p-catalog-btn__arrow {
  display: block;
  background: url(../images/common/arrow_down.png) center center/contain no-repeat;
  width: 4.4rem;
  height: 4.4rem;
  transform: rotate(-90deg);
}
@media screen and (max-width: 960px) {
  .p-catalog-btn__arrow {
    position: absolute;
    top: 50%;
    right: -2.4rem;
    transform: translateY(-50%) rotate(-90deg);
    width: 3.4rem;
    height: 3.4rem;
  }
}

.p-thanks__fv {
  height: 20rem;
  background-color: #e6e6e3;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-thanks__fv {
    height: 13.2rem;
  }
}

.p-thanks__fv-logo {
  width: 11.1rem;
  height: 11.1rem;
  color: #000;
}
@media screen and (max-width: 960px) {
  .p-thanks__fv-logo {
    width: 6.9rem;
    height: 6.9rem;
  }
}

.p-thanks__content {
  padding: 6rem 0 9rem;
}
@media screen and (max-width: 960px) {
  .p-thanks__content {
    padding: 3rem 0 7rem;
  }
}

.p-thanks {
  padding: 6rem 0 11.5rem;
}
@media screen and (max-width: 960px) {
  .p-thanks {
    padding: 3.5rem 0 8rem;
  }
}

.p-thanks__inner {
  padding: 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-thanks__inner {
    padding: 0 2.5rem;
  }
}

.p-thanks__title {
  margin: 0 0 3.4rem;
  font-size: 3.5rem;
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-thanks__title {
    margin: 0 0 2.4rem;
  }
}

.p-thanks__subtitle {
  width: 33.4rem;
  max-width: 100%;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 960px) {
  .p-thanks__subtitle {
    width: 100%;
    margin: 0 auto 1rem;
  }
}

.p-thanks__text {
  margin: 0 0 9rem;
  font-size: 1.5rem;
  line-height: 2.5333333333;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-thanks__text {
    margin: 0 0 5rem;
    font-size: 1.5rem;
    line-height: 2.0666666667;
    text-align: left;
  }
}

.p-thanks__top-page {
  width: 26.3rem;
  max-width: 100%;
  height: 7.2rem;
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  color: #000;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.p-form {
  background: #F9F9F9;
}

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

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

.p-form__container.-catalog {
  padding-top: 7rem;
}
@media screen and (max-width: 960px) {
  .p-form__container.-catalog {
    padding-top: 4.6rem;
  }
}

.p-form__catch {
  margin-bottom: 5.4rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-form__catch {
    margin: 0 -1.5rem 1.2rem;
    font-size: 1.6rem;
  }
}

.p-form__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-form__title {
    gap: 1.7rem;
  }
}

.p-form__title-logo {
  width: 14.1rem;
}
@media screen and (max-width: 960px) {
  .p-form__title-logo {
    width: 10rem;
  }
}

.p-form__title-text {
  font-size: 3.8rem;
  line-height: 2.0263157895;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__title-text {
    font-size: 2.8rem;
  }
}

.p-form__note {
  padding: 0.6rem 1.5rem;
  display: inline-block;
  border: dashed 2px #4d694a;
  font-size: 1.5rem;
  line-height: 2.1333333333;
  letter-spacing: 0.18em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__note {
    padding: 0.4rem 1.1rem;
    font-size: 1.2rem;
  }
}

.p-form__error {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 960px) {
  .p-form__error {
    margin: 0 auto 2rem;
  }
}

.p-form__error__text {
  color: #ed744b;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__error__text {
    font-size: 1.3rem;
  }
}

.p-form__item {
  padding: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 8rem;
}
@media screen and (max-width: 960px) {
  .p-form__item {
    padding: 1rem 0;
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 960px) {
  .p-form__item:has(.-radio) {
    flex-wrap: nowrap;
  }
}

.p-form__item__head {
  width: 32rem;
  padding: 0.5rem 0;
}
.p-form__item__head.-large {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-form__item__head {
    width: 100%;
    padding: 0.5rem 0;
  }
}

.p-form__item__head-inner {
  min-height: 5rem;
  padding: 1.2rem 2rem 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0 1rem;
  background: #e6e6e3;
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-form__item__head-inner {
    padding: 0.7rem 1.3rem 0.7rem 1.5rem;
    gap: 0 1rem;
    min-height: 4rem;
    border-radius: 0.5rem;
  }
}

.p-form__item__head-title {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.12em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__item__head-title {
    font-size: 1.6rem;
    font-size: max(1.6rem, 16px);
  }
}

.p-form__item__head-notice {
  padding: 0 0 0 2.5rem;
  font-size: 80%;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__item__head-notice {
    padding: 0;
    display: inline-block;
    font-size: 70%;
    line-height: 1.4;
  }
}

.p-form__required {
  padding: 0 0.7rem;
  background: #c7c7bf;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__required {
    padding: 0 0.7rem;
    font-size: 1.2rem;
    font-size: max(1.2rem, 12px);
  }
}

.p-form__item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-form__item__body-outer {
  padding: 0.5rem 0;
}

.p-form__item__body-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 960px) {
  .p-form__item__body-inner {
    gap: 0.8rem;
  }
}

.p-form__box {
  width: 100%;
  max-width: 100%;
}
.p-form__box.-small {
  width: 20rem;
}
.p-form__box.-left_text {
  width: 12rem;
}
@media screen and (max-width: 960px) {
  .p-form__box.-small {
    width: calc(50% - 0.4rem);
  }
  .p-form__box.-left_text {
    width: 16rem;
    font-size: 1.6rem;
  }
  .p-form__box.-right_text {
    font-size: 1.6rem;
  }
}

.p-form__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
@media screen and (max-width: 960px) {
  .p-form__card-wrapper {
    gap: 0.5rem 0;
  }
}

.p-form__card {
  width: calc(33.3333333333% - 1.5rem);
  min-height: 27rem;
  padding: 1.5rem 3rem;
  border-radius: 0.5rem;
  background: #f2f1ec;
  display: flex;
  flex-direction: column;
  color: #252525;
}
.p-form__card.is-active {
  background: #4d694a;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-form__card {
    width: 100%;
    min-height: 1px;
    padding: 1.2rem 0.7rem;
    border-radius: 0.5rem;
    flex-direction: row;
    gap: 0 1rem;
  }
}

.p-form__card-head {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
.p-form__card-head::before {
  content: "";
  padding: 66.67% 0 0;
  display: block;
}
.p-form__card-head img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-form__card-head {
    width: 10rem;
  }
}

.p-form__card-body {
  padding: 0.7rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-form__card-body {
    padding: 0.3rem 0 0;
  }
}

.p-form__card-title {
  position: relative;
  padding: 0 0 0 3rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-form__card-title {
    padding: 0 0 0 2.2rem;
  }
}

.p-form__card-title__checkbox {
  position: absolute;
  top: 0.9rem;
  left: 0;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-form__card-title__checkbox {
    top: 0.5rem;
  }
}

.p-form__card-title__text {
  color: currentColor;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.08em;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-form__card-title__text {
    font-size: 1.4rem;
  }
}

.p-form__card-content {
  padding: 0.5rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .p-form__card-content {
    padding: 0.7rem 0 0;
  }
}

.p-form__card-text {
  color: currentColor;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__card-text {
    font-size: 1.1rem;
  }
}

.p-form__input-text,
.p-form__textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 2px #e5e5e5;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.p-form__input-text:focus,
.p-form__textarea:focus {
  box-shadow: inset 0 0 0 2px #c7c7bf;
}
.p-form__input-text::placeholder,
.p-form__textarea::placeholder {
  color: #c9c9c9;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-form__input-text,
  .p-form__textarea {
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-size: max(1.4rem, 16px);
  }
}

.p-form__select-label {
  position: relative;
  width: 100%;
  background-color: #fff;
  display: block;
}
.p-form__select-label::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 2rem;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 0.2rem solid #c9c9c9;
  border-bottom: 0.2rem solid #c9c9c9;
  transform: rotate(45deg) translate(-50%, 50%);
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-form__select-label::after {
    right: 1rem;
    width: 0.7rem;
    height: 0.7rem;
  }
}

.p-form__select {
  width: 100%;
  padding: 1rem 1.5rem;
  display: block;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 2px #e5e5e5;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.p-form__select:focus {
  box-shadow: inset 0 0 0 2px #c7c7bf;
}
.p-form__select.is-empty {
  color: #c9c9c9;
}
@media screen and (max-width: 960px) {
  .p-form__select {
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-size: max(1.4rem, 16px);
  }
}

.p-form__checkbox-label {
  padding: 0 1rem 0 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.p-form__checkbox-label.-small {
  display: inline-flex;
}
@media screen and (max-width: 960px) {
  .p-form__checkbox-label {
    padding: 0 0.5rem 0 0.4rem;
    gap: 0.7rem;
  }
}

.p-form__checkbox-label__text {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.p-form__checkbox-label__text small {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__checkbox-label__text {
    font-size: 1.4rem;
    font-size: max(1.4rem, 16px);
  }
  .p-form__checkbox-label__text small {
    font-size: 1.4rem;
    font-size: max(1.4rem, 16px);
  }
}

.p-form__checkbox {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.7rem 0 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0.2rem solid #3f3b38;
  vertical-align: baseline;
  transform: translate(0, -0.4rem);
}
.p-form__checkbox::before {
  content: "";
  width: 1rem;
  height: 0.6rem;
  display: inline-block;
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: rotate(-45deg) translate(10%, -15%);
}
.p-form__checkbox:checked {
  border-color: #fff;
}
.p-form__checkbox:checked::before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-form__checkbox.-black:checked {
  border-color: #3f3b38;
}
.p-form__checkbox.-black:checked::before {
  border-left: 1px solid #3f3b38;
  border-bottom: 1px solid #3f3b38;
}
@media screen and (max-width: 960px) {
  .p-form__checkbox {
    width: 1.5rem;
    height: 1.5rem;
    transform: translate(0, -0.2rem);
  }
  .p-form__checkbox::before {
    width: 0.9rem;
    height: 0.5rem;
  }
}

.p-form__small-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 960px) {
  .p-form__small-card-wrapper {
    gap: 0.5rem;
  }
}

.p-form__small-card-wrapper.-radio,
.p-form__small-card-wrapper.-vertical {
  flex-direction: column;
}

.p-form__small-card-wrapper.-radio .p-form__small-card {
  display: block;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .p-form__small-card-wrapper.-radio .p-form__small-card {
    width: auto;
  }
}

.p-form__small-card-wrapper.-vertical .p-form__small-card {
  display: block;
  width: fit-content;
}

.p-form__small-card__radio {
  position: absolute;
  top: 1.8rem;
  left: 1.4rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-form__small-card__radio {
    top: 1.1rem;
    left: 1rem;
  }
}

.p-form__radio {
  appearance: auto;
  accent-color: #3f3b38;
  inline-size: 1.8rem;
  block-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-form__radio {
    inline-size: 1.3rem;
    block-size: 1.3rem;
  }
}

.p-form__small-card {
  position: relative;
  padding: 1.2rem 1.5rem 1.2rem 4.5rem;
  border: 2px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #fff;
  line-height: 0;
}
.p-form__small-card.is-active {
  /* background: #5b6694;
  border-color: #5b6694;
  color: $white; */
}
@media screen and (max-width: 960px) {
  .p-form__small-card {
    padding: 0.6rem 1.7rem 0.6rem 3.2rem;
    border: 0.2rem solid #e5e5e5;
    border-radius: 0.5rem;
  }
}

.p-form__small-card.-inner_text {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .p-form__small-card.-inner_text {
    gap: 1rem;
    width: 100%;
  }
}
.p-form__small-card.-inner_text .p-form__small-card__checkbox {
  top: 3.2rem;
}
@media screen and (max-width: 960px) {
  .p-form__small-card.-inner_text .p-form__small-card__checkbox {
    top: 2rem;
  }
}
.p-form__small-card.-inner_text .p-form__small-card__text {
  flex-shrink: 0;
  width: 7rem;
}
@media screen and (max-width: 960px) {
  .p-form__small-card.-inner_text .p-form__small-card__text {
    width: 10rem;
  }
}
.p-form__small-card.-inner_text .p-form__box.-small {
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .p-form__small-card.-inner_text .p-form__box.-small {
    width: 11rem;
  }
}
@media screen and (max-width: 960px) {
  .p-form__small-card.-inner_text .p-form__box.-small.-right_text {
    width: fit-content;
  }
}

.p-form__small-card__checkbox {
  position: absolute;
  top: 2.2rem;
  left: 1.4rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-form__small-card__checkbox {
    top: 1.2rem;
    left: 0.7rem;
  }
}

.p-form__small-card__text {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__small-card__text {
    font-size: 1.3rem;
  }
}

.p-form__text {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__text {
    font-size: 1.2rem;
  }
}

.p-form__questionnaire {
  padding: 8rem 0 6.5rem;
}
@media screen and (max-width: 960px) {
  .p-form__questionnaire {
    padding: 4rem 0 2.5rem;
  }
}

.p-form__questionnaire__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 68rem;
  height: 8rem;
  background: #333333;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .p-form__questionnaire__btn {
    width: 100%;
    height: 6rem;
    font-size: 1.6rem;
  }
}

.p-form__questionnaire__btn-plus {
  position: absolute;
  top: 50%;
  right: 4.2rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-form__questionnaire__btn-plus {
    right: 2.1rem;
  }
}

.p-form__questionnaire__btn-plus::before,
.p-form__questionnaire__btn-plus::after {
  position: absolute;
  display: block;
  content: "";
  width: 2rem;
  height: 3px;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-form__questionnaire__btn-plus::before,
  .p-form__questionnaire__btn-plus::after {
    width: 1.6rem;
  }
}

.p-form__questionnaire__btn-plus::after {
  transform: rotate(90deg);
  transition: 0.3s ease;
}

.p-form__questionnaire__btn.is-open .p-form__questionnaire__btn-plus::after {
  width: 0;
}

.p-form__questionnaire__content {
  display: none;
  overflow: hidden;
  padding-top: 3rem;
}
@media screen and (max-width: 960px) {
  .p-form__questionnaire__content {
    padding-top: 2rem;
  }
}

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

.p-form__submit {
  width: 50rem;
  max-width: 100%;
  height: 8rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50vh;
  background: #5fa6a6;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.1818181818;
  letter-spacing: 0.16em;
  font-weight: 700;
}
@media (hover: hover) {
  .p-form__submit {
    transition: opacity 0.4s ease;
  }
  .p-form__submit:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 960px) {
  .p-form__submit {
    width: 30rem;
    height: 6rem;
    font-size: 1.7rem;
  }
}

.p-form__rakuie-tour {
  display: none;
}

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

.p-contact {
  padding: 6rem 0 15rem;
}
@media screen and (max-width: 960px) {
  .p-contact {
    padding: 3rem 0 7.5rem;
  }
}

.p-contact__head {
  margin: 0 0 5.5rem;
}
@media screen and (max-width: 960px) {
  .p-contact__head {
    margin: 0 0 1.7rem;
  }
}

.p-contact__title {
  margin: 0 0 3rem;
  color: #2D2D2B;
  font-size: 2.4rem;
  line-height: 1.5833333333;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-contact__title {
    font-size: 1.9rem;
    line-height: 1.3157894737;
  }
}

.p-contact__lead {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-contact__lead {
    font-size: 1.3rem;
    line-height: 1.1538461538;
  }
}

@media screen and (max-width: 960px) {
  .p-form .formError {
    left: 0 !important;
  }
}

.p-form .formErrorContent {
  padding: 0.3rem 1.5rem;
  background: #d9534f;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .p-form .formErrorContent {
    padding: 0.2rem 2rem;
    font-size: 1.2rem;
  }
}

.p-form .formErrorArrow {
  display: none;
}

.p-form-error {
  background: #ffecec;
  color: #b00020;
  border: 1px solid #f5c2c7;
  padding: 1.2rem;
  margin: 2.4rem 0;
  border-radius: 0.4rem;
}
@media screen and (max-width: 960px) {
  .p-form-error {
    font-size: 1.2rem;
  }
}

.p-form-error[hidden] {
  display: none !important;
}

.p-form-modal {
  display: none;
}

.p-form-modal[aria-hidden=false] {
  display: block;
}

.p-form-modal__overlay {
  position: fixed;
  z-index: 100000;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.p-form-modal__content {
  position: fixed;
  z-index: 100001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2.4rem;
  width: 80%;
  max-height: 84vh;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .p-form-modal__content {
    padding: 2.4rem 1.2rem;
    width: 92%;
    max-height: 84vh;
    max-height: 84svh;
  }
}

.p-form-modal__body {
  padding: 4rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 960px) {
  .p-form-modal__body {
    padding: 2rem 0.4rem;
  }
}

.p-form-modal__title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 960px) {
  .p-form-modal__title {
    font-size: 1.7rem;
  }
}

.p-form-modal__text {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form-modal__text {
    font-size: 1.2rem;
  }
}
.p-form-modal__text span {
  color: #02993b;
}

.p-form-modal__footer {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 960px) {
  .p-form-modal__footer {
    padding-top: 1.4rem;
  }
}

.p-form-modal__confirm {
  display: block;
  margin: 0 auto;
  padding: 1.2rem 2.4rem;
  border-radius: 0.5rem;
  background: #5fa6a6;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form-modal__confirm {
    font-size: 1.6rem;
  }
}

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

.u-color-coral {
  color: #ed744b !important;
}

.u-fc-white {
  color: #fff !important;
}

.u-fc-mossGreen {
  color: #2D2D2B !important;
}

.u-fc-wineRed {
  color: #79273F !important;
}

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

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

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

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

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

.u-pl-0 {
  padding-left: 0 !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-0 {
  margin-bottom: 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;
}

@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-bg-yellow {
  background-color: #FFF49D !important;
}

.u-bg-mossGreen {
  background-color: #2D2D2B !important;
}

.u-bg-coral {
  background-color: #ed744b !important;
}

.u-bg-cerulean {
  background-color: #1d98c2 !important;
}

.u-bg-lightGray {
  background-color: #F9F9F9 !important;
}

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