@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

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

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

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

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

:root {
  --base-width: 1000px;
  --base-width-sp: 80%;
  --base-inline-sp: 10%;
  --base-color: #000000;
  --base-text-color: #000000;
  --base-font-size: 17px;
  --base-font-size-sp: vw(17);
}

:root {
  --brand-color: #b7afa4;
  --brand-color-rgb: 183, 175, 164;
  --fr-bg-color: #ece5dd;
  --fr-brand-red: #bf5454;
  --color-brown: #837768;
  --color-gray: #646464;
  --color-reserve: #53a88f;
  --color-catalog: #f5a32d;
  --en: "Jost", sans-serif;
  --fr-font-gothic: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}

/*======================================================================================*/
.l-header {
  position: relative;
  z-index: 100;
  padding: 3em 1em 1em;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 2em 1em 0;
    background-color: var(--brand-color);
  }
}

.l-header-logo {
  position: absolute;
  top: 1.2em;
  left: 1em;
  display: inline-block;
  width: 192px;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    position: fixed;
    top: 1.5em;
    left: 1em;
    z-index: 15;
  }
}
.l-header-logo.is-show {
  position: fixed;
  top: 1.2em;
  left: 1em;
  z-index: 15;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(210deg) brightness(101%) contrast(107%);
}

.l-header-nav {
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  height: 0;
  padding: 0.7em 1em;
  z-index: 10;
  opacity: 0;
  transition: 0.5s ease all;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    position: fixed;
    top: -4em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
    width: 100%;
    height: auto;
    padding: 0.7em 1em;
    z-index: 10;
    translate: 0 0;
    transition: 0.5s ease all;
    opacity: 1;
  }
}
.l-header-nav .cta-button {
  width: auto;
  margin: 2em 0 0;
  gap: 1em 0.5em;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-header-nav .cta-button {
    margin-top: 0;
    pointer-events: all;
  }
}
.l-header-nav .cta-link {
  text-align: center;
  text-indent: -1em;
}
.l-header-nav.is-active {
  top: 0;
  background-color: rgba(131, 119, 104, 0.8);
}
.l-header-nav.is-show {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  top: 0;
  opacity: 1;
  padding-top: 4.5em;
  background-color: rgba(131, 119, 104, 0.9);
}
.l-header-nav.is-show .l-header-nav-list > li a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
}
.l-header-nav.is-show .cta-button {
  pointer-events: all;
}

.l-header-nav-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-header-nav-list {
    flex-direction: row;
  }
}
.l-header-nav-list > li {
  padding-bottom: 1em;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .l-header-nav-list > li {
    padding-right: 0.7em;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.l-header-nav-list > li + li {
  padding-top: 1em;
}
@media screen and (min-width: 768px) {
  .l-header-nav-list > li + li {
    padding-left: 0.7em;
    border-left: 1px solid #fff;
    border-bottom: none;
    padding-top: 0;
  }
}
.l-header-nav-list > li a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header-nav-list > li a {
    font-size: 16px;
  }
}

.toggle-btn {
  position: relative;
  position: fixed;
  top: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
  z-index: 15;
  border-radius: 50%;
  background-color: rgba(var(--brand-color-rgb), 0.3);
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn::before, .toggle-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 60%;
  height: 2px;
  background-color: #fff;
  translate: -50%;
  transition: 0.3s ease all;
}
.toggle-btn::before {
  top: 0.63em;
}
.toggle-btn::after {
  top: 1.2em;
}
.toggle-btn.is-active::before, .toggle-btn.is-active::after {
  width: 75%;
  top: 0.95em;
}
.toggle-btn.is-active::before {
  rotate: -45deg;
}
.toggle-btn.is-active::after {
  rotate: 45deg;
}

.l-footer {
  padding: 17px;
  text-align: center;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 30px;
  }
}

.l-footer-logo {
  display: inline-block;
  width: 255px;
}
@media screen and (min-width: 768px) {
  .l-footer-logo {
    width: 466px;
  }
}

/*====================================== lp ============================================*/
.inner {
  max-width: 1100px;
}

.flex-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
}
@media screen and (min-width: 768px) {
  .flex-center {
    justify-content: space-between;
    gap: 0;
  }
}

.img-wrp {
  position: relative;
}
.img-wrp .img-wrp-image__note {
  position: absolute;
  bottom: 1em;
  left: 6%;
  color: #fff;
  font-size: 2.9333333333vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-shadow: 0px 0px 1px rgb(0, 0, 0), 0px 0px 5px rgb(0, 0, 0);
}
@media screen and (min-width: 768px) {
  .img-wrp .img-wrp-image__note {
    left: 3%;
    font-size: 13px;
  }
}

.fr-contents .title {
  margin-bottom: 1em;
  color: var(--color-brown);
  font-size: min(2em, 7.2vw);
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .fr-contents .title {
    font-size: 2.4em;
  }
}
.fr-contents .read {
  margin-bottom: 3.5em;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fr-contents .read {
    text-align: center;
    font-size: 1.1em;
  }
}
.fr-contents .border-hd {
  max-width: 100%;
  width: 14em;
  margin-bottom: 1em;
  background-color: var(--color-brown);
  color: #fff;
  font-size: min(1.55em, 7.4666666667vw);
}
.fr-contents .border-hd-sub {
  margin-bottom: 0.8em;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fr-contents .border-hd-sub {
    margin-bottom: 1em;
    text-align: center;
  }
}
.fr-contents .read-sub {
  margin-bottom: 3.7em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fr-contents .read-sub {
    margin-bottom: 6.5em;
    text-align: center;
    font-size: 0.9em;
    letter-spacing: 0.1em;
  }
}

.feature-title {
  font-family: var(--fr-font-gothic);
  margin-bottom: 0.8em;
  font-size: min(1.45em, 6.4vw);
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1000px) {
  .feature-title {
    font-size: 1.67em;
  }
}

.feature-lead {
  font-size: min(0.9em, 4.2666666667vw);
}

@media screen and (min-width: 768px) {
  .features-thumb-wrp {
    width: 92%;
  }
}
@media screen and (min-width: 768px) {
  .features-thumb-wrp .thumb {
    width: 92%;
    margin-inline: auto;
  }
}
.features-thumb-wrp .caption {
  font-size: min(0.8em, 3.7333333333vw);
}

.features-wrp {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .features-wrp {
    gap: 40px;
  }
}
.features-wrp.comfortable1 .img-box img {
  width: 630px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .features-wrp.comfortable1 .img-box img {
    width: auto;
    max-width: 100%;
  }
}
.features-wrp.comfortable1 .img-caption {
  font-size: min(0.67em, 3.2vw);
  font-weight: 300;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .features-wrp.comfortable1 .img-caption {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .features-wrp.comfortable2 {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .features-wrp + .features-wrp .feature-title,
  .features-wrp + .features-wrp .feature-lead,
  .features-wrp + .features-wrp .note li {
    text-align: right;
  }
}
.features-wrp:last-child {
  margin-bottom: 0;
}
.features-wrp .txt-box {
  padding-top: 2.5em;
}
@media screen and (min-width: 768px) {
  .features-wrp .txt-box {
    padding: 1em 0;
  }
}
.features-wrp .note {
  font-size: min(0.67em, 3.2vw);
}
@media screen and (min-width: 768px) {
  .features-wrp .img-box {
    width: 49%;
    aspect-ratio: 63/44;
  }
}
@media screen and (min-width: 1000px) {
  .features-wrp .img-box {
    width: 57%;
  }
}
@media screen and (min-width: 768px) {
  .features-wrp .txt-box {
    width: 44%;
  }
}
@media screen and (min-width: 1000px) {
  .features-wrp .txt-box {
    width: 37%;
  }
}
@media screen and (min-width: 768px) {
  .features-wrp .txt-box-inner {
    width: 100%;
  }
}

ul.note li {
  padding-left: 0;
}
ul.note li::before {
  content: "※";
  position: static;
}

.pattern-bg-rb {
  width: 87%;
  opacity: 1;
  bottom: 24.8%;
  right: -10%;
}
@media screen and (min-width: 768px) {
  .pattern-bg-rb {
    width: 40%;
    bottom: 150px;
    right: -10%;
  }
}

.fr-comfortable {
  overflow: clip;
}
.fr-comfortable .inner {
  padding-top: 4em;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .fr-comfortable .inner {
    padding-top: 80px;
    padding-bottom: min(2em, 5vw);
  }
}

.fr-technology {
  background-color: var(--fr-bg-color);
  padding-bottom: 1px;
}
.fr-technology .tech-img-wrp {
  padding-bottom: 0;
}
.fr-technology .img-box,
.fr-technology .img-wrp {
  aspect-ratio: 55/57;
}
.fr-technology .img-box img,
.fr-technology .img-wrp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fr-technology .img-box {
    aspect-ratio: 63/44;
  }
}
.fr-technology .img-box .modern {
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media screen and (min-width: 768px) {
  .fr-technology .img-box .modern {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
.fr-technology .img-box .factory {
  -o-object-position: 54% 50%;
     object-position: 54% 50%;
}
@media screen and (min-width: 768px) {
  .fr-technology .img-box .factory {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
@media screen and (min-width: 768px) {
  .fr-technology .img-wrp {
    aspect-ratio: unset;
  }
}

.fr-technology1 .inner {
  padding-block: min(80px, 8vw);
}

.fr-interior {
  background-color: var(--fr-bg-color);
}
.fr-interior .inner {
  max-width: 1290px;
  padding-top: min(80px, 8vw);
}
@media screen and (min-width: 768px) {
  .fr-interior .inner {
    padding-top: min(80px, 15vw);
  }
}

.fr-plan .point-box {
  display: block;
}
@media screen and (min-width: 768px) {
  .fr-plan .plan-info-wrp {
    width: 21%;
  }
}
@media screen and (min-width: 1000px) {
  .fr-plan .plan-info-wrp {
    width: 15%;
  }
}
.fr-plan .plan-info-wrp .plan-info td {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  padding: 0.5em 0.2em;
}
.fr-plan .point-container {
  position: relative;
}
.fr-plan .plan::after {
  left: 2.5em;
  bottom: 4em;
  width: 2.3em;
  height: 2.3em;
}
.fr-plan .plan.flor2::after {
  bottom: 1.5em;
  left: 2.5em;
}
@media screen and (min-width: 768px) {
  .fr-plan .plan.flor2::after {
    bottom: 4em;
    left: 1.5em;
  }
}
.fr-plan .flor2 img {
  max-width: 60%;
  margin: 0% auto 0% 25%;
}
@media screen and (min-width: 768px) {
  .fr-plan .flor2 img {
    max-width: 100%;
    margin-left: -25%;
  }
}
@media screen and (min-width: 768px) {
  .fr-plan .txt-box {
    padding: 0 0.3em;
  }
}
.fr-plan .point-title {
  font-size: min(1em, 4.8vw);
  font-weight: 500;
  letter-spacing: 0;
}
.fr-plan .point-lead {
  font-size: min(0.8em, 3.7333333333vw);
}
.fr-plan .slick-dots li button::before {
  background-color: #fff !important;
}
.fr-plan .slick-dots li.slick-active button::before {
  transform: scale(0.7);
  background-color: #cfbca3 !important;
}
.fr-plan .arrow-box {
  --border-width: 1.5px;
  position: absolute;
  left: 50%;
  bottom: -2.3em;
  top: unset;
  transform: translate(90px, 50%);
}
@media screen and (min-width: 768px) {
  .fr-plan .arrow-box {
    display: none;
  }
}
.fr-plan .arrow-box .slick-pause {
  width: min(1.2em, 8vw);
  height: min(1.2em, 8vw);
  font-size: min(1.5em, 5.8vw);
  border-radius: 100%;
  border: solid var(--border-width);
  color: #666;
  position: relative;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s 0s ease;
}
.fr-plan .arrow-box .slick-pause::before, .fr-plan .arrow-box .slick-pause::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 25%;
  aspect-ratio: 1/1.5;
  border-left: solid var(--border-width);
  border-right: solid var(--border-width);
  transform: translate(-50%, -50%);
}
.fr-plan .arrow-box .slick-pause::after {
  content: none;
  width: 33%;
  aspect-ratio: 1/1.2;
  background-color: currentcolor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-36%, -50%);
}
.fr-plan .arrow-box .slick-pause.paused::before {
  content: none;
}
.fr-plan .arrow-box .slick-pause.paused::after {
  content: "";
}

.fr-monitor {
  padding: 1.9em min(2em, 5vw) 1.9em;
  background-color: var(--fr-bg-color);
}
@media screen and (min-width: 768px) {
  .fr-monitor {
    padding-block: 5.6em 3.3em;
  }
}

@keyframes scroll-mark {
  0% {
    width: 0%;
    right: 160%;
  }
  40% {
    width: 160%;
    right: 0;
  }
  80% {
    width: 0%;
    right: 0;
  }
  100% {
    width: 0%;
    right: 160%;
  }
}
.fr-header {
  overflow-x: clip;
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .fr-header {
    padding: 3em 2.5em 2em;
  }
}
.fr-header .main-txt {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 100%;
  translate: 5% -60%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .fr-header .main-txt {
    width: auto;
    left: 50%;
    translate: -50% -60%;
  }
}
.fr-header .main-txt .btn {
  width: 74%;
  display: inline-block;
  margin-top: -5%;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .fr-header .main-txt .btn {
    margin-top: -10%;
  }
}
.fr-header .main-txt .btn:hover {
  opacity: 0.9;
}
.fr-header .main-scroll {
  position: absolute;
  bottom: 1em;
  left: 0;
  rotate: 90deg;
  font-family: var(--en);
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .fr-header .main-scroll {
    left: 7%;
    bottom: 4%;
  }
}
.fr-header .main-scroll .arrow {
  position: absolute;
  width: 160%;
  height: 0.5em;
  top: -0.2em;
  right: 0;
  overflow: hidden;
  animation: scroll-mark 2s linear infinite;
}
.fr-header .main-scroll .arrow::before, .fr-header .main-scroll .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #fff;
}
.fr-header .main-scroll .arrow::before {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fr-header .main-scroll .arrow::before {
    width: max(100%, 6vw);
  }
}
.fr-header .main-scroll .arrow::after {
  width: 1em;
  rotate: 45deg;
  transform-origin: bottom right;
}

.fr-contents .main-wrp {
  width: 100%;
  aspect-ratio: unset;
}
.fr-contents .main {
  aspect-ratio: unset;
}

.fr-introduction {
  background-color: var(--brand-color);
  padding: 1.5em 1.5em 2em;
}
@media screen and (min-width: 768px) {
  .fr-introduction {
    padding: 3em 3em 100px;
  }
}

.introduction-wrap {
  max-width: 900px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .introduction-wrap {
    border-radius: 20px;
  }
}

.introduction-heading {
  padding-block: 30px;
  border-bottom: 1px solid var(--fr-brand-red);
}
.introduction-heading .introduction-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.85em;
}
@media screen and (min-width: 768px) {
  .introduction-heading .introduction-list {
    flex-direction: row;
    align-items: center;
  }
}
.introduction-heading .introduction-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.1em;
  width: 9.5em;
  margin-inline: auto;
  font-size: 1.3em;
}
@media screen and (min-width: 768px) {
  .introduction-heading .introduction-list li {
    font-size: 20px;
    margin: 0;
  }
}
.introduction-heading .introduction-list li img {
  width: 1.5em;
}

.introduction-content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .introduction-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.7em;
    padding: 30px 50px;
  }
}
.introduction-content .introduction-content-item .introduction-content-item__name {
  width: 90%;
  margin-inline: auto;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .introduction-content .introduction-content-item .introduction-content-item__name {
    width: 96%;
  }
}
.introduction-content .introduction-content-item .introduction-content-item-price {
  color: #fff;
  padding-block: 0.5em;
  background-color: var(--fr-brand-red);
  border-radius: 20px;
  font-size: 1.6em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .introduction-content .introduction-content-item .introduction-content-item-price {
    padding-block: 0.7em;
    font-size: 26px;
  }
}
.introduction-content .introduction-content-item .introduction-content-item-price .tax {
  font-size: 0.65em;
}
.introduction-content .introduction-content-item .introduction-content-item__note {
  margin-top: 0.5em;
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .introduction-content .introduction-content-item .introduction-content-item__note {
    font-size: 12px;
  }
}

.introduction-example {
  position: relative;
  padding: 70px 15px 30px;
  background-color: var(--fr-bg-color);
}
@media screen and (min-width: 768px) {
  .introduction-example {
    padding: 70px 50px 30px;
  }
}
.introduction-example.dark {
  background-color: var(--color-brown);
}
.introduction-example.dark .introduction-example__note {
  color: #fff;
}
.introduction-example .introduction-example__text {
  position: absolute;
  top: 1.3em;
  left: 0;
  width: 100%;
  color: var(--color-gray);
  font-size: 1.4em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example__text {
    top: 0.8em;
  }
}
.introduction-example .introduction-example-content {
  background-color: #fff;
  padding: 35px 15px;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-content {
    padding: 35px 50px;
  }
}
.introduction-example .introduction-example-content .introduction-example-heading {
  position: relative;
}
.introduction-example .introduction-example-content .introduction-example__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-gray);
  color: var(--color-gray);
  font-size: 2em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-content .introduction-example__name {
    flex-direction: row;
    padding-bottom: 0.5em;
  }
}
.introduction-example .introduction-example-content .introduction-example__name .tag {
  display: inline-block;
  padding: 0em 0.9em 0.1em;
  border-radius: 10px;
  background-color: var(--color-gray);
  color: #fff;
  font-size: 0.6em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-content .introduction-example__name .tag {
    margin-top: 0.2em;
    font-size: 0.5em;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-content .introduction-example__name .tag {
    margin-top: 0.2em;
    font-size: 0.6em;
  }
}
.introduction-example .introduction-example-content .introduction-example_ldk {
  color: var(--color-gray);
  font-size: 2em;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-content .introduction-example_ldk {
    position: absolute;
    top: 0.15em;
    right: 0;
    margin-top: 0;
    font-size: 1.8em;
  }
}
.introduction-example .introduction-example-info {
  text-align: left;
  margin-top: 1.1em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info {
    display: grid;
    grid-template-columns: 52% 44%;
    grid-template-areas: "box1 side" "box2 side" "box3 side" ".    side";
    gap: 0 4%;
    margin-top: 35px;
  }
}
.introduction-example .introduction-example-info .introduction-example__read {
  width: 94%;
  margin-inline: auto;
  margin-bottom: 1.9em;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example__read {
    grid-area: box1;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-info .introduction-example__read {
    margin-bottom: 35px;
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-floor {
    grid-area: side;
  }
}
.introduction-example .introduction-example-info .introduction-example-area {
  grid-area: box2;
  margin-top: 1.4em;
  padding-top: 1em;
  border-top: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-area {
    width: 94%;
    margin-top: 0;
  }
}
.introduction-example .introduction-example-info .introduction-example-area li {
  font-size: 0.9em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-area li {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-info .introduction-example-area li {
    font-size: 14px;
  }
}
.introduction-example .introduction-example-info .introduction-example-price {
  grid-area: box3;
  margin-top: 1.8em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-price {
    margin-top: 35px;
  }
}
.introduction-example .introduction-example-info .introduction-example-price .tag {
  background-color: var(--fr-brand-red);
  border-radius: 16px;
  color: #fff;
  font-size: 1.75em;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  padding-block: 0.4em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-price .tag {
    border-radius: 20px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-info .introduction-example-price .tag {
    font-size: 26px;
  }
}
.introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-inner {
  width: 90%;
  margin-inline: auto;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-inner {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-inner {
    text-align: left;
  }
}
.introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-building {
  width: 6em;
  padding-block: 0.2em;
  border: 1px solid var(--fr-brand-red);
  color: var(--fr-brand-red);
  font-size: 1.45em;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-building {
    display: inline-block;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-building {
    font-size: 20px;
    padding-block: 0.4em;
  }
}
.introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-num {
  position: relative;
  color: var(--fr-brand-red);
  font-size: 3.8em;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-num {
    top: 0.15em;
    display: inline-block;
    font-size: max(34px, 4.4vw);
    margin-left: 0.1em;
    line-height: 1;
  }
}
@media screen and (min-width: 1000px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-num {
    top: 0.2em;
    font-size: 60px;
  }
}
.introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-num .yen {
  font-size: 0.5em;
  letter-spacing: 0.05em;
}
.introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-num .tax {
  position: absolute;
  right: 0.7em;
  bottom: -1.4em;
  font-size: 0.2em;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example-info .introduction-example-price .introduction-example-price-num .tax {
    right: 0;
  }
}
.introduction-example .introduction-example__note {
  margin-top: 1em;
  font-size: 0.8em;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .introduction-example .introduction-example__note {
    font-size: 12px;
  }
}

.introduction-cta {
  padding-block: 2.7em;
}
@media screen and (min-width: 768px) {
  .introduction-cta {
    padding-block: 40px;
  }
}

.cta-button {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 96%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta-button {
    flex-direction: row;
    justify-content: center;
  }
}
.cta-button .cta-link {
  position: relative;
  padding: 1em;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  color: var(--color-brown);
  font-size: 1.15em;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .cta-button .cta-link {
    width: 260px;
    font-size: 18px;
  }
}
.cta-button .cta-link::after {
  content: "";
  position: absolute;
  top: 51%;
  right: 1em;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--color-brown);
  border-right: 2px solid var(--color-brown);
  translate: 0 -50%;
  rotate: 45deg;
  transition: 0.3s ease all;
}
.cta-button .cta-link.reserve {
  color: #fff;
  border-color: var(--color-reserve);
  background-color: var(--color-reserve);
}
.cta-button .cta-link.reserve::after {
  border-color: #fff;
}
.cta-button .cta-link.catalog {
  color: #fff;
  border-color: var(--color-catalog);
  background-color: var(--color-catalog);
}
.cta-button .cta-link.catalog::after {
  border-color: #fff;
}
.cta-button .cta-link:hover {
  color: #fff;
  background-color: var(--color-brown);
}
.cta-button .cta-link:hover.reserve {
  color: var(--color-reserve);
  background-color: #fff;
}
.cta-button .cta-link:hover.catalog {
  color: var(--color-catalog);
  background-color: #fff;
}
.cta-button .cta-link:hover::after {
  border-color: currentColor;
}

.fr-selection {
  padding-bottom: 3.5em;
}
@media screen and (min-width: 768px) {
  .fr-selection {
    padding-bottom: 60px;
  }
}

.selection-image {
  position: relative;
}
.selection-image .selection-image__note {
  position: absolute;
  bottom: 1em;
  left: 6%;
  color: #fff;
  font-size: 2.9333333333vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-shadow: 0px 0px 1px rgb(0, 0, 0), 0px 0px 5px rgb(0, 0, 0);
}
@media screen and (min-width: 768px) {
  .selection-image .selection-image__note {
    left: 9.5%;
    font-size: 13px;
  }
}

.selection-wrp {
  padding-top: 1.9em;
  padding-inline: 1.5em;
}
@media screen and (min-width: 768px) {
  .selection-wrp {
    padding-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .selection-list {
    display: flex;
    justify-content: flex-start;
    max-width: 715px;
    width: 92.5%;
    margin-inline: auto;
    gap: 50px 75px;
  }
}
@media screen and (min-width: 1000px) {
  .selection-list {
    max-width: 745px;
    gap: 50px 115px;
  }
}
.selection-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .selection-list li {
    flex-direction: column;
    align-items: center;
    width: 170px;
    height: 100%;
    text-align: center;
  }
}
.selection-list li + li {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .selection-list li + li {
    margin-top: 0;
  }
}
.selection-list li .selection-list-image {
  display: grid;
  place-items: center;
  width: 8em;
  height: 8em;
  flex-shrink: 0;
  border-radius: 20px;
  background-color: var(--fr-bg-color);
}
@media screen and (min-width: 768px) {
  .selection-list li .selection-list-image {
    width: 9.4em;
    height: 9.4em;
  }
}
.selection-list li .selection-list-image.clock img {
  width: 42%;
}
.selection-list li .selection-list-image.cost img {
  width: 61%;
}
.selection-list li .selection-list-image.target img {
  width: 47%;
}
.selection-list li .selection-list__title {
  color: var(--color-brown);
  font-size: 1.3em;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .selection-list li .selection-list__title {
    margin-top: 15px;
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}
.selection-list li .selection-list__read {
  margin-top: 1em;
  font-size: 0.85em;
  line-height: 1.7;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .selection-list li .selection-list__read {
    margin-top: 1.2em;
    font-size: 14px;
    white-space: nowrap;
  }
}

.recomend-content {
  padding: 3em 0.7em 1em;
  background-color: var(--fr-bg-color);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .recomend-content {
    padding: 50px;
  }
}
.recomend-content + .recomend-content {
  padding-block: 1.5em 2em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .recomend-content + .recomend-content {
    margin-top: 40px;
    padding-block: 50px;
  }
}
.recomend-content .recomend-content-item {
  display: flex;
  flex-direction: column;
  gap: 2.2em;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .recomend-content .recomend-content-item {
    flex-direction: row;
    justify-content: space-between;
    gap: 3%;
  }
}
.recomend-content .recomend-content-item.reverse {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .recomend-content .recomend-content-item.reverse {
    flex-direction: row;
  }
}
.recomend-content .recomend-content-txt {
  width: 90%;
  margin-inline: auto;
  text-align: left;
}
.recomend-content .recomend-content-txt .recomend-content__title {
  color: var(--color-brown);
  font-size: 1.5em;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recomend-content .recomend-content-txt .recomend-content__title {
    font-size: 24px;
    line-height: 1.4;
  }
}
.recomend-content .recomend-content-txt .recomend-content__read {
  margin-top: 1.4em;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .recomend-content .recomend-content-txt .recomend-content__read {
    margin-top: 2em;
    font-size: 16px;
    line-height: 2.2;
  }
}
@media screen and (min-width: 768px) {
  .recomend-content .recomend-content-image {
    width: 45%;
    flex-shrink: 0;
  }
}
.recomend-content .introduction-wrap {
  margin-top: 1.85em;
}
@media screen and (min-width: 768px) {
  .recomend-content .introduction-wrap {
    margin-top: 40px;
  }
}

.fr-exterior {
  background-color: var(--fr-bg-color);
}
@media screen and (min-width: 768px) {
  .fr-exterior .title {
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  .fr-exterior .border-hd {
    margin-bottom: 2em;
  }
}

.exterior-selection-wrp {
  position: relative;
}
@media screen and (min-width: 768px) {
  .exterior-selection-wrp {
    margin-inline: min(-2em, -5vw);
  }
}
.exterior-selection-wrp .slick-slide {
  padding-inline: 10px;
  text-align: left;
}
.exterior-selection-wrp .slick-dots {
  width: 100%;
  padding-right: 2em;
}
@media screen and (min-width: 768px) {
  .exterior-selection-wrp .slick-dots {
    margin-top: 52px;
  }
}
.exterior-selection-wrp .arrow-box {
  --border-width: 1.5px;
  position: absolute;
  left: 50%;
  bottom: -2.3em;
  top: unset;
  transform: translate(85px, 50%);
}
@media screen and (min-width: 768px) {
  .exterior-selection-wrp .arrow-box {
    left: min(605px, 50%);
    bottom: -5.3em;
  }
}
.exterior-selection-wrp .arrow-box .slick-pause {
  width: min(1.2em, 8vw);
  height: min(1.2em, 8vw);
  font-size: min(1.5em, 5.8vw);
  border-radius: 100%;
  border: solid var(--border-width);
  color: #666;
  position: relative;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s 0s ease;
}
@media screen and (min-width: 768px) {
  .exterior-selection-wrp .arrow-box .slick-pause {
    font-size: min(1.4em, 2.3vw);
  }
}
.exterior-selection-wrp .arrow-box .slick-pause::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 25%;
  aspect-ratio: 1/1.5;
  border-left: solid var(--border-width);
  border-right: solid var(--border-width);
  transform: translate(-50%, -50%);
}
.exterior-selection-wrp .arrow-box .slick-pause::after {
  content: none;
  position: absolute;
  inset: 50%;
  width: 33%;
  aspect-ratio: 1/1.2;
  background-color: currentcolor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-36%, -50%);
  color: #666666;
}
.exterior-selection-wrp .arrow-box .slick-pause.paused::before {
  content: none;
}
.exterior-selection-wrp .arrow-box .slick-pause.paused::after {
  content: "";
}
.exterior-selection-wrp .exterior-type-hd {
  font-size: min(1em, 3.4vw);
}
@media screen and (min-width: 768px) {
  .exterior-selection-wrp .exterior-type-hd {
    font-size: 0.9em;
  }
}
.exterior-selection-wrp .exterior-type-txt {
  font-size: min(1.8em, 5.8vw);
}
@media screen and (min-width: 768px) {
  .exterior-selection-wrp .exterior-type-txt {
    font-size: min(1.6em, 5.2vw);
  }
}
.exterior-selection-wrp .exterior-type-txt .ja {
  font-size: 0.5em;
}

@media screen and (min-width: 768px) {
  .fr-interior .border-hd {
    margin-bottom: 2em;
  }
}

.interior-selection-wrp {
  max-width: 1290px;
}
@media screen and (min-width: 768px) {
  .interior-selection-wrp .interior {
    height: 100%;
  }
}
.interior-selection-wrp .interior-text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .interior-selection-wrp .interior-text {
    width: min(480px, 40%);
  }
}
.interior-selection-wrp .interior-text .interior-type {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .foot-cta {
    display: flex;
    justify-content: center;
  }
}

.foot-cta-link {
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .foot-cta-link {
    width: 50%;
  }
}
.foot-cta-link .foot-cta-txt {
  display: block;
  width: 21em;
  padding-block: 0.8em;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .foot-cta-link .foot-cta-txt {
    font-size: 16px;
  }
}
.foot-cta-link .foot-cta-link-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3.5em;
  padding: 1.6em;
  background-color: rgba(131, 119, 104, 0.8);
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .foot-cta-link .foot-cta-link-inner {
    gap: 1.5em;
  }
}
@media screen and (min-width: 1000px) {
  .foot-cta-link .foot-cta-link-inner {
    padding-block: 7vw 2em;
    gap: 0;
  }
}
@media screen and (min-width: 1280px) {
  .foot-cta-link .foot-cta-link-inner {
    padding-block: 10vw 5vw;
  }
}
@media screen and (min-width: 1000px) {
  .foot-cta-link .cta-button {
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) {
  .foot-cta-link .cta-link {
    width: 300px;
  }
}
.foot-cta-link:hover .foot-cta-link-inner {
  background-color: rgba(131, 119, 104, 0);
}
.foot-cta-link:hover .foot-cta-txt {
  background-color: rgba(131, 119, 104, 0.8);
  color: #fff;
}
.foot-cta-link:hover .cta-link {
  color: #fff;
  background-color: rgba(131, 119, 104, 0.8);
}
.foot-cta-link:hover .cta-link::after {
  border-color: currentColor;
}/*# sourceMappingURL=style.css.map */