@charset "UTF-8";
/* ==========
floating-button
==========*/
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000; /* 他の要素より前に出したい時 */
  width: 100%;
}
.floating-btn-sp {
  display: none;
}
.floating-btn__list {
  display: flex;

  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.floating-btn__item {
  width: 25%;
}
.floating-btn__item a {
  display: block;
  width: 100%;
  padding: 8px;
  border: 1px solid #333333;
  font-size: 24px;
  text-align: center;
  transition: .5s;
}
.floating-btn__item a:hover {
  background-color: #a61449;
  color: #ffffff;
}
.floating-btn__item span {
  display: block;
  font-size: 12px;
  transition: .5s;
}
.floating-btn__item a:hover span {
  color: #ffffff;
}
@media screen and (max-width: 1100px) {
  .floating-btn__list {
    flex-wrap: wrap;
  }
  .floating-btn__item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .floating-btn-area {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99997;
    width: 260px;
    height: 400px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    background-color: rgba(255, 255, 255, .3);

    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  }
  .floating-btn__list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;

    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    gap: 20px;
  }
  .floating-btn__item {
    width: 100%;
  }
  .floating-btn__item a {
    border: none;
    border-bottom: 1px solid #a61449;
    font-size: 16px;
  }
  .floating-btn-area {
    display: none;
  }
  .floating-btn-sp {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 20px;
    z-index: 99998;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: linear-gradient(90deg, #db2f6e, #a7fcff, #f5dbff);
    background-size: 300% 300%;
    cursor: pointer;
    transition: .5s;
    animation: gradientShift 8s ease-in-out infinite;
  }
  .floating-btn-sp::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    content: "";
  }
  .floating-btn-sp::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    content: "";
    transition: .3s;
  }
  .open.floating-btn-sp {
    background: #a61449;
  }
  .open.floating-btn-sp::after {
    background-color: transparent;
  }
}

/* ==========
service contents
==========*/
.service-page__item {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
.service-page__item-image {
  width: 45%;
}
.service-page__item-contents {
  width: 55%;
  padding-left: 5%;
}
.heading__h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-heading--ja {
  display: inline-block;
  padding: 8px 0 24px;
  font-weight: normal;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .service-page__item {
    flex-direction: column;
  }
  .service-page__item-image, .service-page__item-contents {
    width: 100%;
    padding: 0;
  }
}
