@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #ffffff;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  section {
    scroll-margin-top: 74px;
  }
}

main {
  position: relative;
  overflow-x: hidden;
  z-index: 0;
}

* {
  color: #35323B;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

h2.bubble {
  font-family: "Mrs Saint Delafield", cursive;
  font-size: max(4.7rem, 39px);
  font-weight: 400;
  position: relative;
  display: inline;
}
@media screen and (max-width: 550px) {
  h2.bubble {
    margin-left: 10%;
  }
}
h2.bubble::after {
  content: "";
  width: 180%;
  height: 100%;
  background-image: url(../images/h2_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: max(2.5rem, 18px);
  font-weight: 600;
}

.loop-image {
  width: 100%;
  overflow: hidden;
}
.loop-image__inner {
  display: flex;
  width: max-content;
  animation: loopImage 40s linear infinite;
}
.loop-image img {
  display: block;
  width: 250vw;
  max-width: none;
  flex-shrink: 0;
}
@media screen and (max-width: 550px) {
  .loop-image img {
    width: 350vw;
  }
}

@keyframes loopImage {
  from {
    transform: translateX(-250vw);
  }
  to {
    transform: translateX(0);
  }
}
.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 12px 0;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  z-index: 2000;
}
.header__left .logo {
  width: max(20rem, 150px);
  margin-left: max(3rem, 15px);
  margin-right: 2rem;
  margin-bottom: 0.5%;
}
.header__left .pc {
  position: relative;
}
.header__left .pc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.header__left .pc:hover::after {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .header__left .pc {
    display: none;
  }
}
.header__right {
  display: flex;
  gap: max(0.8rem, 8px);
  margin: 0 max(1rem, 9px);
}
@media screen and (max-width: 1000px) {
  .header__right {
    display: none;
  }
}
.header__right a {
  padding: 10px;
  width: max(20rem, 200px);
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: max(1.4rem, 14px);
  transition: 0.3s ease;
}
.header__right a.request {
  background-color: #B4A24E;
  border: 3px solid rgba(106, 92, 28, 0.2);
  box-shadow: inset 0 -17px 16px rgba(0, 0, 0, 0.1);
}
.header__right a.visit {
  background-color: #35323B;
  border: 3px solid #1c1b22;
  box-shadow: inset 0 -17px 16px rgba(0, 0, 0, 0.2);
}
.header__right a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.header__right a:active {
  transform: translateY(0);
}
.header__sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__sp {
    display: block;
  }
}
.header__sp .js-headerToggle {
  position: relative;
  z-index: 1001;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header__sp .js-headerToggle span {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: 0.3s ease;
}
.header__sp .js-headerToggle span:nth-child(1) {
  top: 15px;
}
.header__sp .js-headerToggle span:nth-child(2) {
  top: 24px;
}
.header__sp .js-headerToggle span:nth-child(3) {
  top: 33px;
}
.header__sp .header__nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__sp .header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.header__sp .header__nav a.sp {
  position: relative;
  text-align: center;
}
.header__sp .header__nav a.sp::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.header__sp .header__nav a.sp:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.header__sp .header__nav a.cta_sp {
  padding: 10px;
  width: max(20rem, 200px);
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: max(1.4rem, 14px);
  transition: 0.3s ease;
}
.header__sp .header__nav a.cta_sp.request {
  background-color: #B4A24E;
  border: 3px solid rgba(106, 92, 28, 0.2);
  box-shadow: inset 0 -17px 16px rgba(0, 0, 0, 0.1);
}
.header__sp .header__nav a.cta_sp.visit {
  background-color: #35323B;
  border: 3px solid #1c1b22;
  box-shadow: inset 0 -17px 16px rgba(0, 0, 0, 0.2);
}
.header__sp .header__nav a.cta_sp:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.header__sp .header__nav a.cta_sp:active {
  transform: translateY(0);
}
.header.active .js-headerToggle span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}
.header.active .js-headerToggle span:nth-child(2) {
  opacity: 0;
}
.header.active .js-headerToggle span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}
.header.active .header__nav {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #35323B;
  padding: max(6.6rem, 30px) max(2.7rem, 20px);
}
.footer * {
  color: #fff;
  font-size: max(1.2rem, 12px);
}
.footer__box1 {
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  margin-bottom: max(4.8rem, 20px);
}
@media screen and (max-width: 768px) {
  .footer__box1 {
    flex-direction: column;
    align-items: center;
  }
}
.footer__box1 a:nth-of-type(1) {
  width: max(37.3rem, 200px);
}
.footer__box1 a:nth-of-type(2) {
  width: max(54.6rem, 270px);
}
.footer__box2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__box2 {
    flex-direction: column;
  }
}
.footer__box2--btn {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__box2--btn {
    flex-direction: column;
    align-items: center;
    margin-bottom: max(2rem, 20px);
  }
}
.footer__box2--btn a {
  position: relative;
}
.footer__box2--btn a:not(:last-child)::after {
  content: "";
  width: 1px;
  height: max(2rem, 20px);
  background-color: #FFFFFF;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__box2--btn a:not(:last-child)::after {
    content: initial;
  }
}
.footer__box2--right {
  display: flex;
  align-items: center;
  gap: max(2.4rem, 24px);
}
.footer__box2--copyright {
  font-size: max(1.2rem, 7px);
}
.footer__box2--sns {
  display: flex;
  gap: max(1.5rem, 15px);
}
.footer__box2--sns a {
  width: max(4.8rem, 30px);
}
.footer__box2--sns.pc {
  display: flex;
}
.footer__box2--sns.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .footer__box2--sns {
    justify-content: end;
    margin-bottom: max(4.8rem, 20px);
  }
  .footer__box2--sns.pc {
    display: none;
  }
  .footer__box2--sns.sp {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .footer__box2--sns {
    justify-content: center;
  }
}

.top {
  display: flex;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .top {
    margin-top: 74px;
  }
}
@media screen and (max-width: 768px) {
  .top {
    flex-direction: column-reverse;
  }
}
.top__text {
  background-color: #35323B;
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top__text {
    width: 100%;
  }
}
.top__text--inner {
  width: 72%;
}
.top__text--inner .img {
  margin-bottom: max(5rem, 30px);
}
@media screen and (max-width: 768px) {
  .top__text--inner .img {
    width: 75%;
    max-width: 315px;
    margin: 17rem auto 8rem;
  }
}
.top__text--inner p {
  color: #fff;
  font-size: max(1.8rem, 10px);
  line-height: 2.7;
}
@media screen and (max-width: 768px) {
  .top__text--inner p {
    text-align: center;
    font-size: max(1.8rem, 14px);
    margin-bottom: 26rem;
  }
}
.top__img {
  flex: 1;
}
.top__bg {
  position: absolute;
  bottom: -2%;
}

.about {
  background-color: #EAE5E3;
  padding-top: max(5rem, 50px);
  position: relative;
  z-index: -1;
}
.about__deco {
  position: absolute;
  left: 0;
  bottom: 25%;
  width: max(17.5rem, 70px);
  z-index: -1;
}
.about .container {
  z-index: 10;
  position: relative;
}
.about .flex {
  display: flex;
  gap: 9.8rem;
  margin-bottom: max(6rem, 30px);
}
@media screen and (max-width: 1000px) {
  .about .flex {
    flex-direction: column-reverse;
  }
}
.about .flex .main-slider {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .about .flex .main-slider {
    width: 100%;
  }
}
.about .flex .main-slider .swiper-slide img {
  height: 100%;
}
.about .flex .main-slider .swiper-pagination {
  position: absolute;
  left: auto;
  right: 3.2rem;
  bottom: 2.6rem;
  width: auto;
  display: flex;
  gap: max(1.4rem, 12px);
  z-index: 10;
}
.about .flex .main-slider .swiper-pagination-bullet {
  width: max(0.9rem, 9px);
  height: max(0.9rem, 9px);
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.about .flex .main-slider .swiper-pagination-bullet-active {
  background: #B4A24E;
}
.about .flex .text h3 {
  margin-top: max(2.4rem, 12px);
  margin-bottom: max(3.9rem, 15px);
}
.about .space {
  background-color: #fff;
  padding: max(1.2rem, 11px);
  margin-bottom: -3%;
}
.about .space h3 {
  color: #fff;
  background-color: #CABFB9;
  text-align: center;
  line-height: 1.8;
  padding: max(1rem, 15px);
}
.about .space .img {
  width: 90%;
  margin: max(3.5rem, 30px) auto;
}
@media screen and (max-width: 1000px) {
  .about .space .img {
    display: block;
    max-width: 400px;
  }
}

.arrange__box1 {
  background-color: #CABFB9;
  padding: max(7.6rem, 30px) 0;
  display: flex;
  align-items: center;
}
.arrange__box1 .text {
  margin-left: 10%;
}
@media screen and (max-width: 1000px) {
  .arrange__box1 .text {
    margin-left: 5%;
  }
}
.arrange__box1 .text h2.bubble {
  font-size: max(4.7rem, 25px);
}
.arrange__box1 .text h2.bubble::after {
  width: 150%;
}
.arrange__box1 .text p {
  font-size: max(2.5rem, 12px);
  margin-top: 8%;
}
.arrange__box1 .arrow {
  margin: 0 3.7rem;
  width: 2%;
}
.arrange__box1 .arrange-slider {
  flex: 1;
  filter: drop-shadow(3px 3px 26px rgba(0, 0, 0, 0.2));
}
.arrange__box1 .arrange-slider .swiper-slide {
  width: auto;
}
.arrange__box1 .arrange-slider img {
  display: block;
  width: 100%;
}
.arrange__box2 {
  background-color: #35323B;
  position: relative;
  padding: max(5rem, 20px) 0 max(8%, 60px);
}
.arrange__box2 p {
  color: #fff;
  text-align: center;
  font-size: max(3rem, 20px);
  line-height: 1.8;
}
.arrange__box2--bg {
  position: absolute;
  bottom: -2%;
}
.arrange__box3--title {
  font-size: max(2.5rem, 14px);
  text-align: center;
  margin-bottom: max(4.3rem, 20px);
}
.arrange__box3--flex {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex {
    flex-direction: column;
  }
}
.arrange__box3--flex .box {
  text-align: center;
  width: 100%;
  position: relative;
  padding: max(4rem, 20px) 0;
}
.arrange__box3--flex .box:not(:last-of-type) {
  border-right: 1px solid;
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #35323B;
  }
}
.arrange__box3--flex .box:not(:last-of-type)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(100%, -50%);
  width: max(2.4rem, 20px);
  aspect-ratio: 24/56;
  background-image: url(../images/arrange_box3_arrow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box:not(:last-of-type)::before {
    right: 50%;
    top: auto;
    bottom: 0%;
    z-index: 1;
    transform: translate(50%, 71%) rotate(90deg);
  }
}
.arrange__box3--flex .box:nth-of-type(2) {
  background-color: #B4A24E;
}
.arrange__box3--flex .box:nth-of-type(2) * {
  color: #fff;
}
.arrange__box3--flex .box:nth-of-type(2)::before {
  background-image: url(../images/arrange_box3_arrow2.svg);
}
.arrange__box3--flex .box:nth-of-type(2)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0%;
  z-index: 1;
  transform: translate(50%, 73%);
  width: max(2.9rem, 30px);
  aspect-ratio: 29/91;
  background-image: url(../images/arrange_box3_arrow3.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box:nth-of-type(2)::after {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box:last-of-type::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0%;
    z-index: 1;
    transform: translate(50%, 90%);
    width: max(2.9rem, 30px);
    aspect-ratio: 29/91;
    background-image: url(../images/arrange_box3_arrow3.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.arrange__box3--flex .box h3 {
  font-family: "Mrs Saint Delafield", cursive;
  font-size: max(4.9rem, 20px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: max(3rem, 10px);
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box h3 {
    font-size: max(4.9rem, 30px);
    margin-top: max(3rem, 10px);
  }
}
.arrange__box3--flex .box h4 {
  font-size: max(1.6rem, 14px);
  margin-bottom: max(3.5rem, 10px);
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box h4 br {
    display: none;
  }
}
.arrange__box3--flex .box p {
  font-size: max(1.4rem, 12px);
}
@media screen and (max-width: 1000px) {
  .arrange__box3--flex .box p {
    padding: 0 10%;
  }
  .arrange__box3--flex .box p br {
    display: none;
  }
}
.arrange__box3--text {
  max-width: 658px;
  margin: max(7rem, 40px) auto;
}
@media screen and (max-width: 1000px) {
  .arrange__box3--text {
    width: 75%;
    margin: max(7rem, 60px) auto max(7rem, 40px);
  }
}

.model {
  background: linear-gradient(0deg, #CABFB9, #EAE5E3);
  padding: max(9.6rem, 50px) 0 max(13.2rem, 90px);
  position: relative;
  z-index: 0;
}
.model__bg {
  position: absolute;
  right: 0;
  width: max(25rem, 100px);
  bottom: 13%;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .model__bg {
    bottom: 1%;
  }
}
.model .container {
  background-color: #FFFFFF;
  padding: 1px 0;
}
.model__title {
  background-color: #EAE5E3;
  margin: max(3.7rem, 10px);
  padding: max(2rem, 15px) max(3rem, 30px) max(3rem, 20px) 0;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .model__title {
    align-items: center;
    flex-direction: column;
    padding: max(3rem, 10px);
  }
}
.model__title--box1 {
  flex: 1;
  display: flex;
  margin-left: max(2.4rem, 20px);
}
@media screen and (max-width: 1000px) {
  .model__title--box1 {
    margin-left: 0;
  }
}
.model__title--box1 .img {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: self-end;
}
@media screen and (max-width: 1000px) {
  .model__title--box1 .img {
    min-width: initial;
    max-width: 200px;
  }
}
.model__title--box1 .img img {
  width: 105%;
  transform: translate(-5%, 10%);
  max-width: none;
}
.model__title--box1 .text {
  margin-left: max(3rem, 5px);
  min-width: 165px;
}
@media screen and (max-width: 1000px) {
  .model__title--box1 .text {
    min-width: initial;
  }
}
@media screen and (max-width: 1000px) {
  .model__title--box1 .text h2.bubble {
    font-size: max(4.7rem, 24px);
  }
}
.model__title--box1 .text h2.bubble::after {
  width: 130%;
  left: 42%;
}
.model__title--box1 .text p:nth-of-type(1) {
  font-size: max(3.2rem, 24px);
  line-height: 1.5;
}
.model__title--box1 .text p:nth-of-type(1) span {
  font-size: max(5.4rem, 40px);
  margin-right: -4%;
}
.model__title--box1 .text p:nth-of-type(2) {
  font-size: max(1.5rem, 10px);
}
.model__title--line {
  width: 2px;
  background: repeating-linear-gradient(to bottom, #35323B 0 2px, transparent 2px 9px);
  margin: max(4rem, 15px) max(4.5rem, 20px);
}
@media screen and (max-width: 1000px) {
  .model__title--line {
    display: none;
  }
}
.model__title--box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .model__title--box2 {
    margin-top: max(3rem, 30px);
  }
}
.model__title--box2 h3 {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .model__title--box2 h3 {
    font-size: max(2.5rem, 14px);
    text-align: center;
  }
}
.model__title--box2 h3::after {
  content: "";
  background-image: url(../images/model_pdeco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 479/16;
  position: absolute;
  left: 0;
  bottom: -22%;
}
@media screen and (max-width: 1000px) {
  .model__title--box2 h3::after {
    bottom: -35%;
  }
}
.model__title--box2 .flex {
  display: flex;
  gap: max(2.4rem, 10px);
  margin-top: max(3rem, 20px);
}
@media screen and (max-width: 768px) {
  .model__title--box2 .flex {
    flex-direction: column;
  }
}
.model__title--box2 .flex__box .title {
  font-size: max(2rem, 14px);
}
.model__title--box2 .flex__box .title::before {
  content: "⚫︎";
}
.model__title--box2 .flex__box p {
  font-size: max(1.6rem, 12px);
}
.model__main {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .model__main {
    flex-direction: column;
  }
}
.model__main .title {
  padding: max(1.8rem, 14px) max(1.4rem, 10px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .model__main .title {
    flex-direction: row;
    align-items: baseline;
    gap: 5%;
    padding: max(2rem, 20px);
    padding-left: max(3rem, 30px);
  }
}
.model__main .title p.tag {
  font-size: max(1.5rem, 8px);
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: translate(-50%, -50%);
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .model__main .title p.tag {
    left: initial;
    right: 0;
  }
}
.model__main .title p.tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max(11.2rem, 100px);
  border-radius: 50%;
  aspect-ratio: 1/1;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .model__main .title p.tag::before {
    width: max(11.2rem, 60px);
  }
}
.model__main .title h3 {
  width: 70%;
  margin: max(2rem, 20px) auto max(3.7rem, 20px);
}
@media screen and (max-width: 1000px) {
  .model__main .title h3 {
    width: 50%;
    max-width: 200px;
    margin: 0;
  }
}
@media screen and (max-width: 1000px) {
  .model__main .title .img {
    width: 50%;
    max-width: 200px;
  }
}
.model__main .title p.text {
  width: 28.608rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .model__main .title p.text {
    width: 50%;
    max-width: 200px;
    font-size: max(2rem, 10px);
  }
}
.model__main .floor {
  margin: max(6rem, 20px);
}
.model__main .floor .text {
  display: flex;
  align-items: center;
  margin-bottom: max(5rem, 20px);
}
@media screen and (max-width: 1000px) {
  .model__main .floor .text {
    flex-direction: column;
    align-items: baseline;
    gap: 5rem;
  }
}
.model__main .floor .text p {
  padding: 0 max(2.2rem, 14px);
  border-left: 1px solid #35323B;
}
@media screen and (max-width: 1000px) {
  .model__main .floor .text p img {
    width: 50%;
  }
}
.model__main.main1 {
  border-top: 2px solid #35323B;
}
@media screen and (max-width: 1000px) {
  .model__main.main1 {
    border-top: none;
  }
}
.model__main.main1 .title {
  background-color: #CABFB9;
}
.model__main.main1 .title p.tag::before {
  background-color: #35323B;
}
.model__main.main2 .title {
  background-color: #35323B;
}
.model__main.main2 .title p.tag::before {
  background-color: #B4A24E;
}
.model__main.line {
  height: 0;
}
@media screen and (max-width: 1000px) {
  .model__main.line {
    height: initial;
  }
}
@media screen and (max-width: 1000px) {
  .model__main.line .title {
    display: none;
  }
}
.model__main.line .floor {
  flex: 1;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .model__main.line .floor {
    margin-bottom: 5%;
  }
}
.model__main.line .floor .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #35323B 0 2px, transparent 2px 9px);
}
.model__main.line .floor .img {
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .model__main.line .floor .img {
    position: relative;
    transform: translateY(0%);
    width: 10%;
    margin: 0 auto;
  }
}

.cta {
  background-image: url(../images/cta_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: max(5.7rem, 50px) 0 max(6.7rem, 60px);
}
.cta h2 {
  width: 80%;
  max-width: 566px;
  margin: 0 auto;
  display: block;
}
.cta__flex {
  display: flex;
  gap: max(1.6rem, 16px);
  margin-top: max(2.7rem, 20px);
}
@media screen and (max-width: 768px) {
  .cta__flex {
    flex-direction: column;
  }
}
.cta__flex--box {
  width: 100%;
  text-align: center;
}
.cta__flex--box a {
  padding: 2.5rem;
  width: 100%;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-size: max(2.5rem, 18px);
  transition: 0.3s ease;
  position: relative;
}
.cta__flex--box a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 75%;
  aspect-ratio: 1/1;
  margin-right: 1.5rem;
  background-image: url(../images/cta_a_arow.svg);
  background-size: contain;
}
.cta__flex--box a.request {
  background-color: #B4A24E;
  border: 3px solid rgba(106, 92, 28, 0.2);
  box-shadow: inset 0 -17px 16px rgba(0, 0, 0, 0.1);
}
.cta__flex--box a.visit {
  background-color: #35323B;
  border: 3px solid #1c1b22;
  box-shadow: inset 0 -17px 16px rgba(0, 0, 0, 0.2);
}
.cta__flex--box a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.cta__flex--box a:active {
  transform: translateY(0);
}
.cta__flex--box p {
  margin-top: 10px;
  font-size: max(1.4rem, 13px);
}
.cta__flex--box p.arrange {
  font-size: max(3rem, 16px);
  line-height: 1.7;
  margin-bottom: max(2.4rem, 15px);
}
.cta.cta2 {
  padding: max(8.5rem, 20px) 0 max(10.4rem, 60px);
}
.cta.cta2 .cta__flex {
  margin: 0;
}
.cta.cta2 .cta__flex .cta__flex--box p.arrange {
  font-size: max(3rem, 16px);
  line-height: 1.7;
  margin-bottom: max(2.4rem, 15px);
  position: relative;
  display: inline-block;
}
.cta.cta2 .cta__flex .cta__flex--box p.arrange::before {
  content: "";
  position: absolute;
  left: -7%;
  bottom: 0;
  transform: translateX(-100%);
  width: max(2.2rem, 14px);
  aspect-ratio: 22/47;
  background-image: url(../images/cta_arrange1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.cta.cta2 .cta__flex .cta__flex--box p.arrange::after {
  content: "";
  position: absolute;
  right: -18.5%;
  bottom: 0;
  transform: translateX(-100%);
  width: max(2.2rem, 12px);
  aspect-ratio: 22/42;
  background-image: url(../images/cta_arrange2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}