@charset "UTF-8";
/*------------------------------
 common
------------------------------*/
html.is-fixed {
  height: 100%;
  overflow: hidden;
  scrollbar-gutter: stable !important;
}

button {
  color: #333 !important;
}

.z-index-9 {
  z-index: 9;
}

.z-index-99 {
  z-index: 99;
}

.z-index-999 {
  z-index: 999;
}

.link-hover {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.link-disabled {
  pointer-events: none;
}

.text-mb-0 > * {
  margin-bottom: 0;
}

.text-ellipsis-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis-2,
.text-ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis-2 {
  -webkit-line-clamp: 2;
}

.text-ellipsis-3 {
  -webkit-line-clamp: 3;
}

.scrollbar-disabled {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-disabled::-webkit-scrollbar {
  display: none;
}

.icon-external-link {
  object-fit: contain;
  width: 1em;
}

.external-links-dark,
.external-links-white {
  position: relative;
  padding-left: 1.5em;
}

.external-links-dark::after,
.external-links-white::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: -0.5em;
  width: 1em;
  height: 1em;
  transform: translateY(-55%);
}

.external-links-dark::after {
  background-image: url("../images/common/external_links.svg");
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.external-links-white::after {
  background-image: url("../images/common/external_links_white.svg");
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.link-button-more {
  position: relative;
  border: 1px solid #1c1c1c;
  border-radius: 100vmax;
  max-width: 254px;
  width: 100%;
  text-align: center;
  padding-block: 15px;
}

.link-button-more::before {
  position: absolute;
  content: "";
  border-right: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  width: 0.5em;
  height: 0.5em;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
}

.white.link-button-more,
.white.link-button-more::before {
  border-color: #fff;
}

.single-content-container,
.single-user-interview-container {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.single-content-container mark {
  padding: 0 !important;
}

.single-content-container p {
  margin-bottom: 1rem !important;
}

.single-content-container h1 {
  font-size: 48px;
  font-weight: bold;
  padding-top: 50px;
  margin-bottom: 30px;
}

.single-content-container h2 {
  font-size: 26px;
  font-weight: bold;
  border-bottom: 2px solid #333333;
  padding-top: 50px;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.single-content-container h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  padding-top: 24px;
  margin-bottom: 32px;
}

.single-content-container h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  padding-top: 1.25em;
  margin-bottom: 1.75em;
}

.single-content-container h5 {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  padding-top: 1.5em;
  margin-bottom: 1.5em;
}

.single-content-container h6 {
  font-size: 12px;
  font-weight: bold;
  line-height: 2;
  padding-top: 1.5em;
  margin-bottom: 1em;
}

.single-content-container figure {
  margin-bottom: 30px;
}

.single-content-container ul,
.single-content-container ol {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 35px;
}

.single-content-container ul li {
  list-style-type: disc !important;
}

.single-content-container ol li {
  list-style-type: decimal !important;
}

.single-user-interview-container h2 {
  position: relative;
  font-size: 20px !important;
  letter-spacing: 0.1em;
  font-family: "FOT-筑紫ゴシック Pro B", "TsukuGoPro-B", sans-serif;
  line-height: 1.75;
  padding-top: 2em;
  margin-bottom: 30px !important;
}

.single-user-interview-container h2::before {
  position: absolute;
  content: "Q";
  height: 100%;
  font-family: "FOT-筑紫ゴシック Pro B", "TsukuGoPro-B", sans-serif;
  line-height: 1.75;
  font-size: 20px !important;
  top: 0;
  left: 0;
  /* transform: translateY(-50%); */
}

.single-user-interview-container p {
  font-size: 16px !important;
  line-height: 1.875em;
  margin-bottom: 50px !important;
}

.single-user-interview-container figure {
  margin-bottom: 32px;
}

.single-user-interview-container figure img {
  width: 100% !important;
}

@media (hover: hover) {
  .link-hover:hover {
    opacity: 0.6;
  }

  .hover-pointer:hover {
    cursor: pointer;
  }
}

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

  .text-lg-nowrap {
    white-space: nowrap;
  }

  .text-ellipsis-lg-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .text-ellipsis-lg-2 {
    -webkit-line-clamp: 2;
  }

  .text-ellipsis-lg-3 {
    -webkit-line-clamp: 3;
  }

  .single-content-container h2 {
    font-size: 32px;
  }

  .single-content-container h3 {
    font-size: 22px;
  }

  .single-user-interview-container h2 {
    padding-left: 2em;
    padding-top: 0;
  }

  .single-user-interview-container h2,
  .single-user-interview-container h2::before {
    line-height: 1.5;
  }

  .single-user-interview-container h2::before {
    height: 100%;
    top: 0;
    left: 0;
  }
}

/*------------------------------
 privacy-policy
------------------------------*/
#privacyPolicy ul,
#privacyPolicy ul li {
  list-style-type: disc !important;
}

#privacyPolicy ol,
#privacyPolicy ol li {
  list-style-type: decimal !important;
}

#privacyPolicy ol {
  padding-left: 1.25rem !important;
}

#privacyPolicy ol li ol {
  padding-left: 2rem !important;
}

/*------------------------------
 main
------------------------------*/

.cta-btn-sp{
  position: fixed;
  bottom: 16px;
  left: 50%;
  /*right: 0;*/
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.cta-btn-sp.is-show{
  opacity: 1;
  pointer-events: auto;
}

.cta-btn-sp:hover{
  opacity: .6;
}

.fv{
  background-image: url("../images/fv-img-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  max-height: 880px;
}

@supports (height: 100dvh) {
  .fv{
    height: 100dvh;
  }
}

.fv-copy{
  padding-top:10.5vh;
  gap: 14px;
}

.fv-copy span{
  letter-spacing: 0.38em;
}

.vertical-text{
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.px-12{
  padding-left: 12px;
  padding-right: 12px;
}

.info-wrapper{
  background-image: url("../images/info-bg-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 110px 12px;
}

.info-inner{
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}

.cta-btn{
  max-width: 250px;
  background-color: #AF8D56;
  padding: 12px;
}

.cta-btn::before{
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.cta-btn::after{
  content: "";
  width: 8px;
  height: 8px;
  background: #AF8D56;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translate(-50%, -50%);
}

.vr-ttl{
  writing-mode: vertical-rl;
  text-orientation: sideways;
  letter-spacing: 1em;
}

.spec-wrapper{
  height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.spec-wrapper-ceil{
  background-image: url("../images/spec-ceil-bg-sp.jpg");
}

.spec-wrapper-wall{
  background-image: url("../images/spec-wall-bg-sp.jpg");
}

.spec-wrapper-vent{
  background-image: url("../images/spec-vent-bg-sp.jpg");
}

.baqool-ttl{
  margin-top: -32px;
}

.ols-1000{
  letter-spacing: 1em;
}

.gallery-section{
  height: 100vh;
  min-height: 660px;
  margin-bottom: 100px;
  overflow: hidden;
  position: relative;
}

@supports (height: 100svh) {
  .gallery-section{
    height: 100svh;
  }
}

@supports (height: 100dvh) {
  .gallery-section{
    height: 100dvh;
  }
}

/*.gallery-wrapper {*/
/*  height: 100%;*/
/*  display: flex;*/
/*}*/

.gallery-slider {
  display: flex;
  height: 100%;
  will-change: transform;
  transform: translateZ(0);
}

.gallery-section .gallery-slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
}

.gallery-slide01{
  background-image: url("../images/gallery-01-sp.jpg");
}

.gallery-slide02{
  background-image: url("../images/gallery-02-sp.jpg");
}

.gallery-slide03{
  background-image: url("../images/gallery-03-sp.jpg");
}

.gallery-image-wrapper{
  width: 100%;
}

.gallery-image-inner{
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 401 / 868;
}

.gallery-image-inner figure{
  position: absolute;
  display: block;
}

.gallery-image01 {
  top: calc(0 / 868 * 100%);
  left: calc(0 / 401 * 100%);
  width: calc(216 / 401 * 100%);
  height: calc(144 / 868 * 100%);
}

.gallery-image02 {
  top: calc(108 / 868 * 100%);
  right: calc(0 / 401 * 100%);
  width: calc(144 / 401 * 100%);
  height: calc(103 / 868 * 100%);
}

.gallery-image03 {
  top: calc(200 / 868 * 100%);
  left: calc(45 / 401 * 100%);
  width: calc(156 / 401 * 100%);
  height: calc(104 / 868 * 100%);
}

.gallery-image04 {
  top: calc(286 / 868 * 100%);
  right: calc(31 / 401 * 100%);
  width: calc(131 / 401 * 100%);
  height: calc(197 / 868 * 100%);
}

.gallery-image05 {
  top: calc(406 / 868 * 100%);
  left: calc(23 / 401 * 100%);
  width: calc(145 / 401 * 100%);
  height: calc(218 / 868 * 100%);
}

.gallery-image06 {
  top: calc(559 / 868 * 100%);
  right: calc(0 / 401 * 100%);
  width: calc(194 / 401 * 100%);
  height: calc(129 / 868 * 100%);
}

.gallery-image07 {
  top: calc(725 / 868 * 100%);
  left: calc(18 / 401 * 100%);
  width: calc(214 / 401 * 100%);
  height: calc(143 / 868 * 100%);
}

.works-bg{
  background-color: #FAFAFA;
}

.works-carousel {
    width: max-content;
    animation: loop-scroll 40s linear infinite;
}

.works-carousel-item {
    padding: 0 4px;
}

.works-carousel-item img {
    height: 130px;
}

@keyframes loop-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.read-more::after{
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #222;
}

.read-more:focus,
.read-more:focus-visible {
  outline: none!important;
  box-shadow: none!important;
}

.modal-close {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50rem;
  cursor: pointer;
}

.modal.show .modal-close {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 1060;
}

.modal-close::before{
  content: "";
  width: 35px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after{
  content: "";
  width: 35px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close-bottom{
  border-bottom: 2px solid #222;
}

.flow-list li{
  border: 0.5px solid #000;
  padding: 20px;
}

.qa-accordion-question{
  cursor: pointer;
}

.py-12{
  padding-top: 12px;
  padding-bottom: 12px;
}

.qa-accordion-trigger {
  position: relative;
  padding-right: 40px;
}

.qa-accordion-trigger:focus,
.qa-accordion-trigger:focus-visible {
  outline: none!important;
  box-shadow: none!important;
}

.qa-accordion-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 2px;
  border-radius: 1px;
  background: #222;
  transform: translateY(-50%);
  transition: all .4s;
}

.qa-accordion-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 2px;
  border-radius: 1px;
  background: #222;
  transform: translateY(-50%) rotate(90deg);
  transition: all .4s;
}

.qa-accordion-trigger:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
}

.qa-accordion-item{
  padding-bottom: 36px;
}

.qa-accordion-item .accordion-collapse{
  padding-top: 14px;
  padding-bottom: 12px;
}

.foot_logo{
  max-width: 260px;
}

@media screen and (min-width: 992px) {

  .cta-btn-pc{
    position: fixed;
    background-color: #AF8D56;
    top: 42%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
  }

  .cta-btn-pc.is-show{
    opacity: 1;
    pointer-events: auto;
  }

  .fv{
    background-image: url("../images/fv-img-pc.jpg");
    max-height: 1024px;
  }

  .fv-copy{
    padding-top:12.5vh;
    gap: 32px;
  }

  .px-lg-12{
    padding-left: 12px!important;
    padding-right: 12px!important;
  }

  .info-wrapper{
    background-image: url("../images/info-bg-pc.jpg");
    padding: 290px 12px;
  }

  .spec-wrapper{
    height: 960px;
  }

  .spec-wrapper-ceil{
    background-image: url("../images/spec-ceil-bg-pc.jpg");
  }

  .spec-wrapper-wall{
    background-image: url("../images/spec-wall-bg-pc.jpg");
  }

  .spec-wrapper-vent{
    background-image: url("../images/spec-vent-bg-pc.jpg");
  }

  .baqool-ttl{
    margin-top: 0;
  }

  .baqool-floorplan{
    max-width: 700px;
  }

  .gallery-section{
    margin-bottom: 300px;
  }

  .gallery-slide01{
    background-image: url("../images/gallery-01-pc.jpg");
  }

  .gallery-slide02{
    background-image: url("../images/gallery-02-pc.jpg");
  }

  .gallery-slide03{
    background-image: url("../images/gallery-03-pc.jpg");
  }

  .gallery-image-wrapper{
    padding-left: 6.532%;
    padding-right: 9.597%;
  }

  .gallery-image-inner{
    max-width: 1240px;
    aspect-ratio: 1240 / 2126;
  }

  .gallery-image01{
    top: calc(0/ 2126 * 100%);
    left: calc(0 / 1240 * 100%);
    width: calc(648 / 1240 * 100%);
    height: calc(432 / 2126 * 100%);
  }

  .gallery-image02{
    top: calc(172/ 2126 * 100%);
    right: calc(0 / 1240 * 100%);
    width: calc(468 / 1240 * 100%);
    height: calc(312 / 2126 * 100%);
  }

  .gallery-image03{
    top: calc(540/ 2126 * 100%);
    left: calc(227 / 1240 * 100%);
    width: calc(466 / 1240 * 100%);
    height: calc(311 / 2126 * 100%);
  }

  .gallery-image04{
    top: calc(719/ 2126 * 100%);
    right: calc(38 / 1240 * 100%);
    width: calc(392 / 1240 * 100%);
    height: calc(589 / 2126 * 100%);
  }

  .gallery-image05{
    top: calc(960/ 2126 * 100%);
    left: calc(90 / 1240 * 100%);
    width: calc(436 / 1240 * 100%);
    height: calc(654 / 2126 * 100%);
  }

  .gallery-image06{
    top: calc(1495/ 2126 * 100%);
    right: calc(22 / 1240 * 100%);
    width: calc(579 / 1240 * 100%);
    height: calc(386 / 2126 * 100%);
  }

  .gallery-image07{
    top: calc(1823/ 2126 * 100%);
    left: calc(50 / 1240 * 100%);
    width: calc(454 / 1240 * 100%);
    height: calc(303 / 2126 * 100%);
  }

  .works-carousel-item {
    padding: 0 8px;
  }

  .works-carousel-item img {
      height: 262px;
  }

  .works-comment-img01{
    box-sizing: content-box;
    padding-right: 58px;
    max-width: 286px;
  }

  .works-case-txt{
    padding-left: 72px;
  }

  .modal.show .modal-close {
    top: 24px;
    right: 7%;
  }

  .flow-list li{
    padding: 34px 50px;
  }

  .qa-accordion-item .accordion-collapse{
    padding-top: 12px;
  }

  .qa-accordion-item .accordion-collapse{
    padding-top: 6px;
    padding-bottom: 28px;
  }

  .flow-title-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .flow-row {
    align-items: flex-start;
  }

  .w-lg-50{
    width: 50%!important;
  }

}

@media screen and (min-width: 1200px) {
  .align-items-xl-stretch{
    align-items: stretch!important;
  }
}

@media screen and (min-width: 1400px) {
  .omb-xxl-34{
    margin-bottom: 20rem!important;
  }
}


/*アニメーション*/
/*.js-fade-item{ will-change: opacity, transform; }*/

/* 共通：アニメ対象（単体もグループ内もこれ） */
.reveal-item {
  opacity: 0;

  transition-property: opacity, transform, filter, -webkit-filter;
  transition-duration: var(--dur, 0.8s);
  transition-timing-function: var(--ease, cubic-bezier(0.25, 0.25, 0.75, 0.75));
  transition-delay: calc(var(--delay, 0.2s) + (var(--stagger, 0.2s) * var(--i, 0)));

  will-change: opacity, transform, filter, -webkit-filter;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal-item.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  -webkit-filter: none;
}

/* ブラー＋フェード */
.reveal-blur {
  filter: blur(var(--blur, 0.3em));
  -webkit-filter: blur(var(--blur, 0.3em));
}

/* スライドアップ+フェード */
.reveal-up {
  transform: translateY(var(--up, 1rem));
}

/* ポップ+フェード */
.reveal-pop {
  transform: scale(var(--pop-from, 0.92));
}

/* フェード単体 */
.reveal-fade {
  transform: none;
}

/*------------------------------
 (name)
------------------------------*/

@media screen and (min-width: 992px) {
}

@media (hover: hover) {
}
