@charset "UTF-8";

.sig {
  display: block;
  margin-top: 2rem;
  text-align: right;
}
/* PC */
.container p {
  font-size: 1.6rem;
  line-height: 2;
}

/* SP */
@media screen and (max-width: 767px) {
  .container p {
    font-size: 1.5rem;
  }
}
.container .wrap.reverse {
  align-items: center;
  gap: 5rem;
}

.container .wrap.reverse figure {
  width: 42%;
}

.container .wrap.reverse > div {
  width: 53%;
}

.container .wrap.reverse figure img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .container .wrap.reverse {
    flex-direction: column;
    gap: 3rem;
  }

  .container .wrap.reverse figure,
  .container .wrap.reverse > div {
    width: 100%;
  }
}
/*  ----------------------------------------------------------

float shop btn

----------------------------------------------------------  */
/*  
.fixed-shop-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 310px;
  height: 80px;

  background: #5f7751;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;

  border-radius: 999px;

  box-shadow: 0 6px 18px rgba(111, 138, 95, 0.15), 0 1px 4px rgba(0, 0, 0, 0.05);

  z-index: 9999;

  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fixed-shop-btn:hover {
  background: #6f8a5f;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(111, 138, 95, 0.22);
  opacity: 1 !important;
  transform: translateY(-4px);
}
.fixed-shop-btn::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.fixed-shop-btn:hover::after {
  transform: translateX(4px);
}
@media screen and (max-width: 768px) {
  .fixed-shop-btn {
    width: calc(100% - 24px);
    max-width: 360px;

    height: 64px;

    right: 12px;
    bottom: 12px;

    font-size: 2.4rem;
  }
}
*/

.fixed-shop-btn {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 9999;

  width: 180px;
  -webkit-filter: drop-shadow(0 8px 18px rgba(111, 98, 92, 0.15));
  filter: drop-shadow(0 12px 28px rgba(111, 98, 92, 0.22));

  transition: all 0.3s ease;
}

.fixed-shop-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.fixed-shop-btn:hover {
  transform: translateY(-4px);
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .fixed-shop-btn {
    width: 125px;
    right: 1.2rem;
    bottom: 1.2rem;
  }
}
