@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

body.fixed {
  overflow: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.6;
}

/* img */
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catch {
  font-family: "Outfit", sans-serif;
}

/*
-----------------------------------
共通
-----------------------------------
*/
body {
  font-family: "Noto Sans JP", sans-serif;
}

.inner {
  padding: 0 20px;
}

.flex {
  display: flex;
}

.flex.one {
  justify-content: center;
}

/*アニメーション*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.--delay200 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeUp {
  opacity: 0;
}

/*ボタン*/
.btn {
  width: 100%;
  max-width: 335px;
  height: 100px;
}

@media (max-width: 375px) {
  .btn {
    max-width: 300px;
  }
}
.btn a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: #f89500;
  color: #fff;
  font-size: 1.125rem;
  line-height: 2.4444444444;
  font-weight: bold;
  border-radius: 100px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.btn span {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}

.btn span::before,
.btn span::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.btn span::before {
  top: 0;
  left: 0;
}

.btn span::after {
  transform: rotate(90deg);
  top: 5px;
  right: -5px;
}

.plus {
  width: 34px;
  height: 34px;
  position: relative;
  margin: 20px auto;
}

.plus::before,
.plus::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.plus::before {
  top: 50%;
  left: 0;
}

.plus::after {
  top: 50%;
  left: 0;
  transform: rotate(90deg);
}

.appeal {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  margin: auto;
  font-weight: bold;
}

.appeal::before,
.appeal::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.2rem;
  width: 1px;
  height: 1.8em;
  background-color: #fff;
}

.appeal::before {
  left: 0;
  transform: rotate(-30deg);
}

.appeal::after {
  right: 0;
  transform: rotate(30deg);
}

.attention {
  color: #8c8c8c;
}

.flex__item {
  width: 100%;
}

.flex__img {
  aspect-ratio: 158/158;
  border-radius: 10px;
  margin-bottom: 10px;
}

.flex__name {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flex__name span {
  font-size: 0.625rem;
}

.flex__item .attention {
  font-size: 0.625rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.flex__detail {
  font-size: 0.625rem;
  line-height: 2;
  font-weight: 500;
}

.bigImg {
  aspect-ratio: 375/250;
}

/*
-----------------------------------
LP本体
-----------------------------------
*/
.pcMv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.pcMv::before,
.pcMv::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  width: 36.9444444444%;
  height: 100%;
}

@media (max-width: 1440px) {
  .pcMv::before,
.pcMv::after {
    width: calc(50% - 187.5px);
  }
}
@media (max-width: 900px) {
  .pcMv,
.pcMv::before,
.pcMv::after {
    display: none;
  }
}
.pcMv::before {
  left: 0;
  background: no-repeat left top/cover url(../images/bg-left.jpg);
}

.pcMv::after {
  right: 0;
  background: no-repeat right top/cover url(../images/bg-right.jpg);
}

.pcMv__logo {
  position: fixed;
  top: 4vw;
  left: 3vw;
  width: 10vw;
}

.pcMv__catch {
  position: fixed;
  top: 9vw;
  left: 5vw;
  width: 26vw;
  max-width: 400px;
}

.pcMv__catch02 {
  position: fixed;
  top: 19vw;
  left: 5vw;
  width: 25vw;
  max-width: 380px;
}

@media (max-width: 1200px) {
  .pcMv__catch {
    width: 24vw;
  }
  .pcMv__catch02 {
    width: 23vw;
  }
}
.menu {
  position: fixed;
  bottom: 3vw;
  left: 4vw;
  width: 28vw;
  display: flex;
  gap: 2vw;
  align-items: end;
  justify-content: space-between;
  width: 28vw;
}

.pcMv__link {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

@media (max-width: 1140px) {
  .menu {
    flex-direction: column;
    align-items: start;
  }
  .pcMv__link {
    gap: 0.2vw;
  }
}
.pcMv__link li:first-child a {
  text-transform: uppercase;
}

.pcMv .btn {
  max-width: 190px;
  height: 60px;
}

.pcMv .btn a {
  border-radius: 5px;
  font-size: 0.9375rem;
  justify-content: start;
  padding-left: 20px;
}

.pcMv .btn a span {
  right: 20px;
}

/*
-----------------------------------
SPコンテンツ
-----------------------------------
*/
.main-content {
  width: 26.0416666667%;
  margin: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 1440px) {
  .main-content {
    min-width: 375px;
  }
}
@media (max-width: 900px) {
  .main-content {
    width: 100%;
    min-width: auto;
  }
}
.special {
  color: #fff;
  background-color: #3674b8;
  padding: 2.7777777778vw 0 5.5555555556vw;
}

.special__item {
  margin-bottom: 20px;
}

.special__item + .span {
  margin-top: 30px;
}

.special .appeal {
  font-size: 1rem;
  margin-bottom: 1.5em;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.special__img {
  margin-bottom: 10px;
}

.special__img img {
  border-radius: 20px;
}

.special__text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.special .btn {
  margin: auto;
}

.special .btn a {
  background-color: #134c8b;
  height: 60px;
}

.special .btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
  width: 30px;
  height: 30px;
  background: no-repeat center/contain url(../images/question.png);
}

/*
-----------------------------------
スライダー
-----------------------------------
*/
.slider {
  padding: 10px 0;
  background-color: #f0eee6;
}

.slider .swiper-wrapper {
  transition-timing-function: linear;
}

.slider .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 161/120;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider .slider__right {
  margin-bottom: 10px;
}

/*
-----------------------------------
reserve
-----------------------------------
*/
.reserve {
  padding: 16% 0 20%;
  background-color: #f0eee6;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 900px) {
  .reserve {
    padding: 15vw 0 20vw;
  }
}

.reserve::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1%;
  right: 0;
  width: 74%;
  height: 70%;
  background: no-repeat center/contain url(../images/bg-leaf01.png);
  z-index: -1;
}

.reserve__title {
  width: 95%;
  margin: auto;
  position: relative;
  margin-bottom: 20px;
}

.reserve__title::before {
  display: block;
  content: "";
  position: absolute;
  top: -78%;
  left: -19px;
  width: 10.8333333333vw;
  height: 3.0555555556vw;
  background: no-repeat center/contain url(../images/modelhouse.png);
}
@media (max-width: 900px) {
  .reserve__title::before {
    width: 36vw;
    height: 10vw;
  }
}

.reserve__text {
  font-size: 1.375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.reserve .btn {
  margin: auto;
}

/*
-----------------------------------
契約
-----------------------------------
*/
.contruct {
  padding: max(40px, 4vw) 0 max(50px, 4vw);
}

.contruct .appeal::before,
.contruct .appeal::after {
  background-color: #000;
}

.contruct__free {
  width: 95%;
  margin: 0 auto 2vw;
}

.contruct__img {
  aspect-ratio: 335/200;
  margin-bottom: 1vw;
  position: relative;
}

.contruct__img::before {
  display: block;
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 46px;
  height: 48px;
  background: no-repeat center/contain url(../images/01.png);
}

.contruct__img img {
  border-radius: 20px;
}

.contruct__desc {
  font-size: 1.25rem;
  line-height: 2.2;
  letter-spacing: 0em;
  font-weight: bold;
  text-align: center;
}

.contruct__desc span {
  border-radius: 5px;
  background-color: #3674b8;
  font-size: 1.375rem;
  line-height: 2;
  color: #fff;
  display: inline-block;
  padding: 0 6px 0;
  margin-left: 10px;
}

.contruct .attention {
  text-align: center;
  margin-bottom: 20px;
}

.contruct .btn {
  margin: auto;
  height: 60px;
}

.contruct .btn a {
  background-color: #f0eee6;
  color: #242121;
  font-size: 1rem;
}

.contruct .btn span::before,
.contruct .btn span::after {
  background-color: #242121;
}

.contruct .plus {
  margin: 30px auto 20px;
}

.contruct .plus::before,
.contruct .plus::after {
  background-color: #242121;
}

.contruct__select {
  font-size: 1.25rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-left: 36px;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .contruct__select {
    padding-left: 48px;
  }
}

.contruct__select::before {
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: -15px;
  width: 46px;
  height: 48px;
  background: no-repeat center/contain url(../images/02.png);
}
@media (max-width: 900px) {
  .contruct__select::before {
    left: -6px;
  }
}

.contruct__column {
  gap: 20px;
}

/*
-----------------------------------
points
-----------------------------------
*/
.points__title {
  position: relative;
  width: 95%;
  margin: 0 auto 20px;
}

.points__title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -2vw;
  right: -16px;
  width: 12.5vw;
  height: 4.1666666667vw;
  background: no-repeat center/contain url(../images/photovoltaic.png);
}
@media (max-width: 900px) {
  .points__title::after {
    bottom: -5vw;
    right: -16px;
    width: 40vw;
    height: 16vw;
  }
}

.points__lead {
  font-size: 1.25rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
}

.points__img {
  aspect-ratio: 335/200;
}

.points__img img {
  border-radius: 20px;
}

.points__text {
  background-color: #f7fafd;
  padding: 60px 20px 20px;
  margin-top: -40px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.points__text sup {
  display: inline-block;
  transform: translateY(4px);
  scale: 0.8;
}

.points p.attention {
  background-color: #f7fafd;
  padding: 0px 20px 0;
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-left: calc(35px + 1em);
  text-indent: -2.5em;
}

.points p.attention:last-of-type {
  padding-bottom: 40px;
}

.points p.attention span {
  margin-right: 1em;
}

/*
-----------------------------------
voice
-----------------------------------
*/
.voice {
  padding: 6vw 0 0;
}
@media (max-width: 900px) {
  .voice {
    padding: 18vw 0 0;
  }
}

.voice__title {
  position: relative;
  width: 60%;
  margin: 0 auto 20px;
}

.voice__title::before {
  display: block;
  content: "";
  position: absolute;
  top: -3vw;
  left: -3vw;
  width: 10.4166666667vw;
  height: 3.8194444444vw;
  background: no-repeat center/contain url(../images/customer.png);
}
@media (max-width: 900px) {
  .voice__title::before {
    top: -8vw;
    left: -11vw;
    width: 30vw;
    height: 13vw;
  }
}

.voice__lead {
  font-size: 1.25rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
}

.voice .flex__item {
  display: flex;
  flex-direction: column;
}

.voice .flex__img {
  width: calc(100% - 30px);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.voice .flex__name,
.voice .flex__detail {
  background-color: #e9e0d2;
}

.voice .flex__name {
  font-size: 0.8125rem;
  line-height: 2;
  margin-bottom: 0;
  padding: 50px 20px 10px;
  margin-top: -50px;
}

.voice .flex__item:nth-child(1) .flex__detail {
  padding: 0px 10px 40px 20px;
  flex: 1;
}

.voice .flex__item:nth-child(2) .flex__detail {
  padding: 0px 20px 40px 10px;
  flex: 1;
}

/*
-----------------------------------
modelhouse
-----------------------------------
*/
.modelhouse {
  padding: 5vw 0;
  background-color: #f6f6f6;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 900px) {
  .modelhouse {
    padding: 18vw 0;
  }
}

.modelhouse::before,
.modelhouse::after {
  display: block;
  content: "";
  position: absolute;
  width: 90%;
  height: 50%;
  z-index: -1;
}

.modelhouse::before {
  top: 0;
  left: 0;
  background: no-repeat left top/contain url(../images/bg-leaf02.png);
}
@media (max-width: 900px) {
  .modelhouse::before {
    top: 10%;
  }
}

.modelhouse::after {
  bottom: 0;
  right: 0;
  background: no-repeat right bottom/contain url(../images/bg-leaf03.png);
}

.modelhouse__title {
  margin-bottom: 20px;
}

.modelhouse__lead {
  font-size: 1.25rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
}

.modelhouse .appeal {
  margin-bottom: 20px;
}

.modelhouse .appeal::before,
.modelhouse .appeal::after {
  background-color: #242121;
}

.modelhouse__list {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

.modelhouse__list li a {
  display: block;
  background-color: #fff;
  padding: 13px;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modelhouse__list li a span {
  color: #f89500;
  display: inline;
}

.movie {
  position: relative;
  margin-bottom: 40px;
}

.movie::before,
.movie::after {
  display: block;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #242121;
  border-right: 2px solid #242121;
}

.movie::before {
  top: -10px;
  right: -10px;
}

.movie::after {
  bottom: -5px;
  left: -10px;
  transform: rotate(180deg);
}

.movie iframe {
  aspect-ratio: 335/188;
  width: 100%;
  height: auto;
}

/*
-----------------------------------
works
-----------------------------------
*/
.works {
  padding: 3vw 0 0;
}
@media (max-width: 900px) {
  .works {
    padding: 10vw 0 0;
  }
}

.works__title {
  font-size: 1.25rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
}

.works__title span {
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  color: #3674b8;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}

.works__illust {
  padding: 0 20px 0 10px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

.works__detail {
  background-color: #f6f6f6;
  position: relative;
}

.works__item.--1 .works__detail {
  padding-top: 87.3%;
}

.works__item.--2 .works__detail {
  padding-top: 109%;
}

.works__text,
.works__card,
.works .btn,
.works__icon {
  position: absolute;
}

.works__text {
  font-size: min(10px, 0.7vw);
  line-height: 2.4;
  z-index: 10;
}

@media (max-width: 900px) {
  .works__text {
    font-size: max(10px, 2.3vw);
  }
}
.works__text.--1 {
  top: 8%;
  left: 10%;
  transform: rotate(-3deg);
}

.works__text.--2 {
  bottom: 21%;
  right: 6%;
  transform: rotate(1.4deg);
}

.works__text.--3 {
  top: 8%;
  right: 6%;
  transform: rotate(4deg);
}

.works__text.--4 {
  bottom: 28%;
  left: 5%;
  transform: rotate(-3deg);
}

.works__card.--1 {
  width: 45%;
  top: -18%;
  right: 2%;
}

.works__card.--2 {
  width: 61%;
  bottom: 21%;
  left: 3%;
}

.works__card.--3 {
  width: 49%;
  top: -7%;
  left: 4%;
}

.works__card.--4 {
  width: 57%;
  bottom: 17%;
  right: 1%;
}

.works .btn {
  width: 162px;
  height: 44px;
}

.works .works__item.--1 .btn {
  bottom: 15%;
  left: 5%;
}

.works .works__item.--2 .btn {
  bottom: 15%;
  right: 5%;
}

.works .btn a {
  background-color: #000000;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
  padding-top: 3px;
}

.works__icon {
  position: absolute;
  width: 16%;
  bottom: 5%;
  left: 19%;
}

/*
-----------------------------------
modal
-----------------------------------
*/
.modal-contact {
  position: fixed;
  z-index: 20;
  width: 100%;
  max-width: 560px;
  height: 80vh;
  background: #fff;
  bottom: 0;
  left: 50%;
  color: #242121;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  transition: all 0.4s linear;
  transform: translate(-50%, 100%);
}

.modal-contact.open {
  top: 50%;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
  transform: translate(-50%, -50%);
}

.modal-contact-head {
  height: 70px;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.modal-contact-head_text.blue {
  color: #3674b8;
}

.modal-contact-button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 21px;
  width: 21px;
  height: 21px;
  transition: all 0.4s linear;
}

.modal-contact-button:hover {
  transform: rotate(180deg);
}

.modal-contact-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-contact-content {
  padding: 20px 20px 0px;
  height: calc(80vh - 70px);
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}

.modal-contact-content_inner {
  overflow-y: scroll;
  height: 100%;
}

.modal_title {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 10px;
}

.modal_title span.blue {
  color: #3674b8;
}

.modal_title span.orange {
  color: #f89500;
}

.modal_title em {
  font-style: normal;
  font-family: "Outfit", sans-serif;
}

.modal_text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 30px;
}

.modal_img {
  margin: 20px 0;
}

.modal-contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.modal-contact-background.open {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */

/*----------------------------------
2023-04-12 SP フローティングボタン設置
----------------------------------*/
.floating {
  display: none;
}
@media (max-width: 900px) {
  .floating {
    display: block;
    height: 60px;
    position: fixed;
    bottom: 5px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: all 0.6s;
  }
  .floating.btn a {
    border: 2px #fff solid;
  }
  .floating.active {
    opacity: 1;
  }
}