/* SNS */

footer .f_share {
  margin: 4.6875rem 0 3.4375rem;
}
@media screen and (max-width: 750px) {
  footer .f_share {
    margin: 0 0 6.25rem;
  }
}
footer .f_share .com-content {
  border-top: 1px solid #9B9B9B;
  border-bottom: 1px solid #9B9B9B;
  padding-block: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.6875rem;
}
@media screen and (max-width: 750px) {
  footer .f_share .com-content {
    padding-block: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
footer .f_share .com-content .p1 {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000;
}
@media screen and (max-width: 750px) {
  footer .f_share .com-content .p1 {
    font-size: 4vw;
  }
}
footer .f_share .com-content .f_share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 750px) {
  footer .f_share .com-content .f_share-list {
    gap: 10vw;
    justify-content: space-between;
  }
}
footer .f_share .com-content .f-share-item {
  width: 1.875rem;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  footer .f_share .com-content .f-share-item:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  footer .f_share .com-content .f-share-item {
    width: auto;
  }
}

.com-content {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .com-content {
    width: 90%;
  }
}

/*　シェアボタン　*/

.share_wrap {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  z-index: 100000;
}
@media screen and (max-width: 750px) {
  .share_wrap {
    bottom: 24vw;
    right: 3vw;
  }
}
.share_group {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  bottom: 2.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .share_group {
    bottom: 6.25rem;
  }
}
.share_group .share_btn + .share_btn {
  margin-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .share_group .share_btn + .share_btn {
    margin-top: 1rem;
  }
}
.share_group.active {
  bottom: 4.1875rem;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 750px) {
  .share_group.active {
    bottom: 16vw;
  }
}
.share_btn {
  display: block;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
}
@media screen and (max-width: 750px) {
  .share_btn {
    width: 12vw;
    height: 12vw;
  }
}
.share_btn .label {
  font-size: 0.625rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
  padding: 0.25rem 0.5rem 0.3125rem;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  position: absolute;
  white-space: nowrap;
  left: -0.625rem;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .share_btn .label {
    font-size: 1.25rem;
    padding: 0.625rem 1.25rem;
    left: -1.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .share_btn:hover .label {
    opacity: 1;
  }
}
.share_trigger {
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: rgba(23, 23, 23, 0.5);
}
@media screen and (max-width: 750px) {
  .share_trigger {
    width: 12vw;
    height: 12vw;
  }
}
.share_trigger img {
  width: 1.25rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .share_trigger img {
    width: 60%;
  }
}

.copy_notification {
  position: fixed;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.625rem 3.125rem;
  border-radius: 6px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 100000;
  font-size: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .copy_notification {
    font-size: 1.875rem;
    white-space: nowrap;
  }
}
.copy_notification.show {
  top: 20px;
  opacity: 1;
}