@charset "UTF-8";

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

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

@media (hover: hover) {
}


/*------------------------------
 リノベ
------------------------------*/

.link-hover{
  transition: all .2s;
}

.fw-ex-light {
  font-weight: 200!important;
}

.fw-light {
  font-weight: 300!important;
}

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

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

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

.lh-130p{
  line-height: 130%;
}

.lh-140p{
  line-height: 140%;
}

.lh-160p{
  line-height: 160%;
}

.lh-165p{
  line-height: 165%;
}

.lh-180p{
  line-height: 180%;
}

body{
  background: linear-gradient(
          to right,
          #EFEAE2 0%,
          #EFEAE2 50%,
          #F3F3F3 50%,
          #F3F3F3 100%
  );
}

#wrapper {
  display: block;
  max-width: 442px;
  margin: 0 auto;
}

.header-logo-wrapper{
  display: none;
}

.header-wrapper-left,
.header-wrapper-right{
  display: none;
}

.fixed-btn{
  position: fixed;
  bottom: 32px;
  left: 50%;
  z-index: 5;
  max-width: 442px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 8px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}

.fixed-btn.is-show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .3s ease, transform .3s ease, visibility 0s;
}
@media screen and (min-width: 1280px) {

  .header-logo-wrapper {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 70px;
    left: 100px;
  }

  .header-logo>a{
    display: block;
    width:  180px;
    height: 22px;
  }

  .fixed-btn{
    display: none;
  }

}

@media screen and (min-width: 1280px) and (min-height: 746px) {

  .header-wrapper-left,
  .header-wrapper-right{
    display: flex;
    justify-content: center;
    min-height: 100vh;
    position: fixed;
    z-index: 999;
    width: calc(50vw - 221px);
  }

  .header-wrapper-left{
    top: 0;
    left: 0;
    padding-top: 140px;
  }

  .header-wrapper-right{
    top: 0;
    right: 0;
    padding-top: 33px;
  }

  @supports (height: 100dvh) {
    .header-wrapper-left,
    .header-wrapper-right {
      height: 100dvh;
    }
  }

  .header-wrapper-right>div{
    max-width: 342px;
  }

  .header-nav::before{
    content: "";
    width: 10px;
    height: 1px;
    background-color: var(--color-gray);
    position: absolute;
    top: 10px;
    left: 0;
  }

}

@media screen and (min-width: 1280px) and (min-height: 800px) {

  .header-wrapper-left,
  .header-wrapper-right{
    display: flex;
    align-items: center;
    padding-top: 0;
  }

}

.fv-img{
  margin: 0;
  height: 100vh;
}

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

.fv-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fv-ttl{
  top: 80px;
  left: 0;
  right: 0;
  z-index: 2;
}

.fv-swiper .swiper-slide {
  height: 100%;
}

.fv-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.marquee-track {
  width: max-content;
  will-change: transform;
  animation: marquee 42s linear infinite;
}

.marquee-list {
  gap: 32px;
  list-style: none;
  padding-right: 32px;
  flex: 0 0 auto;
}

.marquee-list img {
  height: 240px;
  width: 240px;
}

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

.text-underline{
  position: relative;
  display: inline-block;
  z-index: 0;
}

.text-underline::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 100%;
  height: 8px;
  background-color: rgba(175, 141, 86, 0.4);
  z-index: -1;
}

.concern-img-top{
  width: 426px;
  transform: translateX(-48px);
}

.concern-img-bottom{
  width: 402px;
}

.point-bg{
  padding-top: 115px;
}

.point-bg::before{
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 51;
  background-image: url(../images/renovation/point-bg-top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.text-marker{
  background-color: rgba(175, 141, 86, 0.29);
}

.point-list li::before{
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--color-beige);
  border-radius: 50rem;
  display: inline-block;
  margin-right: 8px;
}

.text-color-blue {
  color: #5582A5;
}

.text-color-red {
  color: #D86060;
}

.border-dashed-gray{
  border-bottom: 1px dashed rgba(106, 106, 106, 0.7);
}

#accordionColumn .accordion-item{
  border: 0;
  background: transparent;
}

#accordionColumn .accordion-button{
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: auto;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  color: var(--color-gray);
}

#accordionColumn .accordion-button::after{
  display: none !important;
  content: none !important;
}

#accordionColumn .accordion-button:focus{
  border-color: transparent;
  box-shadow: none;
}

#accordionColumn .accordion-button .column-trigger {
  position: relative;
  text-align: center;
  padding-right: 20px;
  cursor: pointer;
}

#accordionColumn .accordion-button .column-trigger::before,
#accordionColumn .accordion-button .column-trigger::after{
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: var(--color-gray);
  position: absolute;
}

#accordionColumn .accordion-button .column-trigger::before {
  top: 50%;
  right: 15px;
  transform: translate(100%, -50%) rotate(90deg);
  transition: .2s ease;
}

#accordionColumn .accordion-button:not(.collapsed) .column-trigger::before {
  opacity: 0;
}

#accordionColumn .accordion-button .column-trigger::after {
  top: 50%;
  right: 15px;
  transform: translate(100%, -50%);
  transition: .2s ease;
}

#accordionColumn .accordion-button:not(.collapsed) .column-trigger::after {
  transform: translate(100%, -50%) rotate(-180deg);
}

#accordionColumn .accordion-button:not(.collapsed)::before{
  opacity: 0;
}

.figcaption-text{
  color: #CCCCCC;
}

.circle-rotate{
  width: 158px;
  aspect-ratio: 1 / 1;
  position: absolute;
}

.spec-ttl-circle-rotate{
  top: -10px;
  right: 24px;
}

.spec-point02-circle-rotate{
  top: 16px;
  right: 24px;
}

.circle-rotate img{
  width: 100%;
  height: 100%;
  display: block;

  animation: spin 25s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes spin{
  to { transform: rotate(360deg); }
}

.circle-rotate-inner{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spec-point-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 12px;
}

.spec-point{
  aspect-ratio: 1 / 1;
  transition: .2s;
}

.spec-point::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:0;
  height:0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent var(--color-beige) transparent;
}

.spec-point-num{
  color: rgba(65, 65, 65, 0.5);
}

.spec-point:hover{
  opacity: 0.6;
}

/*spec フェードアニメ*/

.spec-title {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 200;
  color: rgb(65, 65, 65);
}

.spec-title::before {
  position: absolute;
  content: "";
  width: calc(100% - 115px - 10px);
  height: 1px;
  background-color: rgb(243, 243, 243);
  top: 0.5em;
  right: 0;
}

.spec-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.spec-text.before {
  color: var(--color-gray);
}

.spec-text.after {
  color: var(--color-beige);
}

.spec-text-gray.before {
  color: var(--color-gray);
}

.spec-image {
  position: relative;
  overflow: hidden;
}

.spec-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(0%);
  opacity: 1;
  pointer-events: none;
  will-change: transform, opacity;
}

.image-curtain-animation .spec-image.is-animated::after {
  transform: translateY(-100%);
  transition: transform 0.7s ease;/*アニメーション速度調整*/
}

.spec-image.is-animated .spec-image-inner,
.spec-image.is-animated .spec-floorplan-image-inner {
  filter: blur(0px);
}

.spec-image-inner,
.spec-floorplan-image-inner {
  filter: blur(12px);
  transition: filter 1.1s ease;
  will-change: filter;
}

.before.spec-image-inner img,
.after.spec-image-inner img {
  max-height: 41vh;
  object-fit: cover;
  object-position: center;
}

.before.spec-floorplan-image-inner img,
.after.spec-floorplan-image-inner img {
  object-fit: cover;
  object-position: center;
}

/*-----*/

.expertise-point-wrapper{
  height: 109.5vw;
}

.expertise-point{
  width: 47vw;
  aspect-ratio: 1 / 1;
}

.expertise-point01{
  top: 0;
  left: 0;
}

.expertise-point02{
  top: 28.57%;
  right: 0;
}

.expertise-point03{
  top: 57.15%;
  left: 0;
}

.flow-step-ttl{
  position: relative;
  margin-left: 24px;
}

.flow-step-ttl::before{
  content: "";
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.flow-step-desc{
  padding-left: 44px;
}

.flow-step-last{
  position: relative;
}

.flow-step-last::after{
  content: "";
  width: 1px;
  height: 15.5px;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: -24px;
  transform: translateX(-100%);
}

.faq-question{
  padding-right: 30px;
}

.faq-question::before{
  content: "Q";
  display: block;
  /*padding-top: 12px;*/
  padding-right: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 1.813rem !important;/* 29px */
  line-height: 1;
  color: var(--color-beige);
}

#accordionFaq .accordion-button:not(.collapsed) {
  background-color: unset !important;
  box-shadow: none !important;
  color: var(--color-gray)!important;
}

#accordionFaq .accordion-button:focus {
  border-color: unset !important;
  box-shadow: none !important;
}

#accordionFaq .accordion-item {
  border: none !important;
  background-color: transparent!important;
}

#accordionFaq .accordion-button::before {
  all: unset;
  position: absolute;
  content: "";
  background-color: var(--color-beige);
  width: 22px;
  height: 1px;
  right: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.1s;
  transform: rotate(-90deg);
}

#accordionFaq .accordion-button:not(.collapsed)::before {
  opacity: 0;
  visibility: hidden;
}

#accordionFaq .accordion-button::after {
  background-image: none !important;
  background-color: var(--color-beige);
  width: 22px;
  height: 1px;
}

#accordionFaq .accordion-button {
  background-color: transparent !important;
  padding: 0 !important;
}

#accordionFaq .accordion-header .accordion-faq-body .accordion-button{
  cursor: pointer;
  border-bottom: 1px solid var(--color-beige)!important;
  height: 100px;
}

.access-map{
  width: 100%;
  aspect-ratio: 342 / 265;
}

.common-link-btn{
  height: 72px;
  box-shadow: 0 4px 10px 0 rgba(155, 136, 104, 0.2);
}

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

.common-link-btn::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 7px solid var(--color-beige);
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
}

.form-btn{
  aspect-ratio: 195 / 66;
  width: 50%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
  cursor: pointer;
}

.form-btn-left{
  background-color: #EEE8E1;
}

.form-btn-right {
  background-color: var(--color-light-gray);
}

.form-btn.selected{
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.form-btn-left.selected::before{
  content: "";
  background-image: url(../images/renovation/form-tab-parts-beige.svg);
  background-size: cover;
  background-repeat: no-repeat;
  /*width: 4.57%;*/
  width: 16px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(100%, 0%);
  z-index: 2;
}

.form-btn-right.selected::before{
  content: "";
  background-image: url(../images/renovation/form-tab-parts-gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  /*width: 4.57%;*/
  width: 16px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 0%);
  z-index: 2;
}

.renovation-form{
  font-size: 1rem;
  line-height: 1;
}

.renovation-form input{
  height: 48px;
  border: none!important;
}

.renovation-form .form-marker::before{
  content: "";
  width: 7px;
  height: 7px;
  background-color: #AF8D56;
  border-radius: 50rem;
  display: block;
  margin-right: 5px;
}

.form-date {
  /*width: 300px;*/
  width: calc(100% - 60px);
  padding: 8px 8px;
}

.form-date::-webkit-calendar-picker-indicator {
  position: absolute;
  width: calc(100% + 36px);
  /*width: calc(100% - 16px);*/
  height: 100%;
  opacity: 0;
}

.date-test {
  position: relative;
  display: block;
}

.date-test::before {
  position: absolute;
  content: "";
  background-image: url("../images/common/icon_calendar.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 27px;
  height: 27px;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}

#consultation-time{
  width: calc(100% - 60px);
}

.form-area{
  /*background-color: #EEE8E1;*/
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.form-area.is-reservation {
  background-color: #EEE8E1;
}

.form-area.is-consultation {
  background-color: var(--color-light-gray);
}

.renovation-form select.form-select{
  height:48px;
  cursor: pointer;
}

.renovation-form select.form-select:invalid{
  opacity: .95;
}

.time-select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none !important;
  background-color: #AF8D56;
  color: #ffffff;
}

.btn-search{
  padding: 16px 12px;
  background-color: #b08a3c;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
}

.form-control-short{
  max-width: 124px;
}

.consent, .consent input{
  cursor: pointer;
}

#consultation-date {
  cursor: pointer;
}

.acceptance{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.link-underline{
  text-decoration-line: underline;
  text-decoration-color: var(--color-gray)!important;
}

.btn-submit{
  height: 80px;
  background-color: var(--color-beige);
  width: 100%;
  border-radius: 50rem;
  font-size: 20px;
  color: white;
}

.btn-submit-wrap{
  position: relative;
}

.btn:hover{
  background-color: var(--color-beige)!important;
}

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

.btn-submit-wrap::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 7px solid var(--color-beige);
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
}

.ols-minus-70 {
  letter-spacing: -0.07em !important;
}

.light-gray-text{
  color: rgba(65, 65, 65, 0.59);
}

.works-swiper .swiper-button-prev,
.works-swiper .swiper-button-next {
  width: 63px;
  height: 63px;
  background-image: url("../images/renovation/swiper-btn-next.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  position: absolute;
}

.works-swiper .swiper-button-prev {
  top: 27%;
  left: 8px;
  transform: translateY(-50%) scaleX(-1);
}

.works-swiper .swiper-button-next {
  top: 27%;
  right: 24px;
  transform: translateY(-50%);
}

.works-swiper .swiper-button-prev.is-active,
.works-swiper .swiper-button-next.is-active {
  opacity: 1;
  pointer-events: auto;
}

.works-swiper .swiper-button-prev::after,
.works-swiper .swiper-button-next::after {
  content: ""!important;
}

.works-swiper .swiper-button-prev:hover,
.works-swiper .swiper-button-next:hover {
  opacity: .8;
}

.swiper-button-next, .swiper-button-prev {
  svg {
    display: none!important;
  }
}

@media screen and (min-width: 442px) {
  .expertise-point-wrapper{
    height: 427px;
  }

  .expertise-point{
    width: 183px;
  }

  .expertise-point01{
    top: 0;
    left: 0;
  }

  .expertise-point02{
    top: 122px;
    right: 0;
  }

  .expertise-point03{
    top: 244px;
    left: 0;
  }

  .fv-img{
    margin: 0;
    height: auto;
  }

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

  .fv-img img{
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 808;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .concern-img-bottom{
    transform: translateX(50px);
  }

  .works-swiper .swiper-button-prev {
    top: 29%;
  }

  .works-swiper .swiper-button-next {
    top: 29%;
  }

}

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



/*アニメーション*/
/*.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;
}
