@charset "UTF-8";

/********************
共通
********************/
body {
  background: #fcca1e;
}

main {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans", sans-serif;
  color: #231815;

  @media (min-width: 426px) {
    max-width: 600px;
  }

  @media (min-width: 768px) {
    max-width: 1200px;
  }
}

img {
  width: 100%;
}

.section_ttl {
  font-weight: bold;
  font-size: 30px;
  text-align: center;

  @media (min-width: 768px) {
    font-size: 60px;
  }
}

.section_txt {
  margin-top: 1.5vw;
  padding: 0 5%;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;

  @media (min-width: 768px) {
    font-size: 24px;
  }
}

/********************
メインビジュアル 
********************/

.main-visual {
  padding: 3vw 5%;
  margin: 0 auto;
}

.benefits {
  display: block;
  width: 100%;
}

.benefits {
  margin-top: 3vw;
}

.benefits_ttl {
  font-weight: bold;
  font-size: 21px;
  text-align: center;

  @media (min-width: 768px) {
    font-size: 30px;
  }
}

.benefits img[alt="お店によって特典はさまざま！"] {
  width: 90%;
  margin: 25px auto 0;
  display: block;
}

.benefits
  img[alt="SUMMERBLASTのリストバンドを装着したお客様に独自のサービス！"] {
  width: 70%;
  margin: 25px auto 0;
  display: block;

  @media (min-width: 768px) {
    width: 700px;
  }
}

/********************
地図
********************/

iframe {
  width: 90%;
  height: 400px;
  margin: 20px auto 0;
  display: block;

  @media (min-width: 768px) {
    height: 600px;
  }
}

/********************
協力店一覧
********************/

.store-list {
  margin-top: 8vw;
}

.store-list_gojuon {
  text-align: right;
  font-size: 12px;
  margin: 10px 5% 0 0;
}

.store-list ul {
  margin: 20px auto 0;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5%;

  @media (min-width: 768px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.store-list li {
  grid-column: span 1;
}

.store-list_a {
  padding: 5px 5px 10px;
  background: #ffffff;
  border: 1px solid #d8a12a;
  position: relative;
  background: white;
  width: 100%;
  display: block;
}
.store-list_a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 11%;
  height: 12%;
  background: #d8a12a;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 2;
}

.store-list_a img {
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;

  @media (min-width: 768px) {
    height: 187px;
  }
}

.store-list li p {
  font-size: 14px;
  margin-top: 9px;
  text-align: center;

  @media (min-width: 768px) {
    font-size: 18px;
  }
}

/********************
モーダル用
********************/

.store-detail {
  width: 90%;
  max-width: 500px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  padding: 10vw 5% 5%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background: url("https://summer-blast.com/wp-content/themes/SUMMER_BLAST/img/supporting-bar/img_service_bg.png"),
    #ffe8a1;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: 8px;

  @media (min-width: 768px) {
    padding: 50px 5% 30px;
  }
}

.store-detail h2 {
  width: 90%;
  margin: 0 auto;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  transform: rotate(-2deg);
}

.store-detail h2 + p {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
}

.store-detail h3 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.store-detail img {
  margin-bottom: 10px;
  width: 70%;
}

.store-detail_sns a {
  width: 100%;
  margin-top: 20px;
  padding: 17px 0;
  background: #fcca1b;
  border-radius: 5px;
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: bold;
  font-family: roboto, sans-serif;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 15px;
    width: 36px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  &:nth-of-type(1)::before {
    background-image: url("https://summer-blast.com/wp-content/themes/SUMMER_BLAST/img/supporting-bar/icn_googlemap.png");
  }

  &:nth-of-type(2)::before {
    background-image: url("https://summer-blast.com/wp-content/themes/SUMMER_BLAST/img/supporting-bar/icn_x.png");
  }

  &:nth-of-type(3)::before {
    background-image: url("https://summer-blast.com/wp-content/themes/SUMMER_BLAST/img/supporting-bar/icn_instagram.png");
  }
}

.store-detail .close {
  width: 70px;
  height: 70px;
  display: block;
  margin: 30px auto 0;
}

/* 背景を暗くするオーバーレイ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  cursor: pointer;
}

/********************
フッタ
********************/
footer {
  width: 100vw;
  padding: 10px 0;
  margin: 240px auto 0;
  display: block;
  text-align: center;
  background: #d8a12a;
  color: white;

  @media (min-width: 426px) {
    margin: 320px auto 0;
  }

  @media (min-width: 768px) {
    margin: 280px auto 0;
  }
}
