
/*****************
responsive
******************/
@media (max-width: 1150px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* -------------------------------------------
スマホ (SP) 対応
------------------------------------------- */
@media (max-width: 768px) {
  .hero-btn-link {
    width: 80%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2%;
  }
  /* ホバー解除（スマホでタップした時に変に残らないように） */
  .hero-btn-link:hover {
    opacity: 1;
    transform: translateX(-50%);
  }
  .hero-btn-link:active {
    opacity: 0.8;
  }


  /****************************
  reservation
  ****************************/
  .reservation-btn-link {
    width: 80%;
  }

  /****************************
  media
  ****************************/
  .media {
    width: 100%;
    position: relative;
  }
  .media__bg {
    width: 100%;
    height: auto;
    aspect-ratio: 750 / 1660;
  }
  .media-container {
    padding: 20% 0;
    width: 96%;
    display: block;
  }
  .media-item {
    margin: 0 auto 10%;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    text-align: center;
  }
  .media-title img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
  }
  .media-wrapper {
    position: relative;
    width: 100%;
  }
  .base-image {
    width: 100%;
    height: auto;
    display: block;
  }
  .youtube-overlay {
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    margin: auto;
    width: 96%;
    height: auto;
    aspect-ratio: 16/9;
    z-index: 10;
  }
  .youtube-overlay iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .media-note {
    position: absolute;
    bottom: -30px;
    right: 10px;
    width: 100px;
    height: auto;
    z-index: 20;
  }

  /****************************
  voice
  ****************************/
  .voice-section {
    margin-top: -40px;
    background-color: rgba(0, 0, 0, 0);
    max-height: none;
  }
  .voice__bg {
    aspect-ratio: 750 / 3624;
  }
  .voice__container {
    padding: 27% 0 3%;
  }
  /* ビフォーアフターを2列にする */
  .ba-item {
    width: 48%; /* 2つ並び */
  }

  /* SociableKIT */
  .sk-ww-google-reviews {
    width: 95% !important;
  }
  body .sk-ww-google-reviews .sk-masonry-item:nth-child(n+3) {
    display: none !important;
  }


  /****************************
  pricing
  ****************************/
  .pricing__bg {
    aspect-ratio: 750 / 5185;
  }
  .pricing-grid {
    grid-template-columns: 1fr; /* 1列にする */
    gap: 15px;
  }

  /****************************
  faq-message-section
  ****************************/
  .faq-message-section {
    background-image: url('../img/bg_faq_message_sp.png');
    margin-top: -1400px;
    padding: 1440px 0 1000px;
  }
  .faq-container {
    width: 90%;
    margin: 0 auto 80px;
  }
  .faq-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .faq-grid {
    gap: 0;
  }
  .faq-image-wrap img {
    height: 40px;
  }
  .message-container {
    height: auto;
    justify-content: center;
  }
  .message-text {
    width: 100%;
    padding: 0 20px;
  }

}