@charset "UTF-8";
 @import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

 /*---------- 初期化css ----------*/

    * {
      -webkit-font-smoothing: antialiased;
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0px;
      height: 100%;
    }

    /* a blue color as a generic focus style */
    button:focus-visible {
      outline: 2px solid #4a90e2 !important;
      outline: -webkit-focus-ring-color auto 5px !important;
    }

    a {
      text-decoration: none;
    }

/*---------- PC版 ----------*/
.area-contents,
.area-contents * {
  font-family: "Noto Sans JP", sans-serif !important;
}

/* 各セクションタイトル */
.common-title {
  text-align: left;
  font-size: 26px;
  line-height: 1.2;
  color: #3f3f3f;
  font-weight: 700;
  margin: 0 0 16px 0;
  border-left: #ff7200 8px solid;
  padding: 2px 0 2px 18px;
}

/* コンテンツサイズ */
.skylark-official-sites,
.return-gift {
  width: 1056px;
  padding: 70px 0 0 0;
  margin: 0 auto;
}

/* 寄付先・商品選択 */
.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 32px;
  list-style: none;
  padding: 24px 0 0 0;
  margin: 0;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  margin-bottom: 35px;
  border-radius: 10px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.brand-icon img {
  width: 90%;
  height: auto;
}

.card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 0 16px;
}

.location {
  font-size: 15px;
  color: #959595;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.location .material-symbols-outlined {
  font-size: 18px;
  color: #999;
}

.product-name {
  font-size: 20px;
  font-weight: bold;
  color: #3f3f3f;
  margin-top: 0;
  margin-bottom: auto;
  padding-bottom: 20px;
  line-height: 1.2;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #ff7200;
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  margin: 0 15px;
  width: 100%;
  height: 46px;
  border-radius: 6px;
  transition: background-color 0.3s, opacity 0.3s;
}

.skylark-official-sites__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 26px;
  row-gap: 20px;
  max-width: 1056px;
  margin: 0 auto;
}

.skylark-official-sites__caption {
  font-size: 16px;
  line-height: 1.2;
  color: #3f3f3f;
  padding-bottom: 32px;
}

.shop-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #707070 !important;
  background-color: #fff;
  border: 2px solid #ff7200;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 76px;
  padding-right: 50px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

.skylark-official-sites__list .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background-color: #ff7200;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.skylark-official-sites__list .icon img {
  width: 22px;
  height: auto;
}

/* ホバー */
.shop-item,
.btn {
  transition: opacity 0.3s ease;
}

.shop-item:hover,
.btn:hover {
  opacity: 0.8;
}

/*---------- タブレット版3列　----------*/
@media screen and (min-width: 599px) and (max-width: 768px) {

  /* 各セクションタイトル */
  .common-title {
    font-size: 24px;
  }

  /* コンテンツサイズ */
  .skylark-official-sites,
  .return-gift {
    width: 100%;
    padding: 60px 15px 0;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* 寄付先・商品選択 */
  .card-image-wrapper {
    height: auto;
  }

  .card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 32px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-img {
    aspect-ratio: 167 / 123;
    width: 100%;
    height: auto;
  }

  .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .product-name {
    margin-bottom: auto;
    padding-bottom: 15px;
  }

  .btn {
    width: 100%;
    height: 36px; 
    font-size: 14px; 
    transition: background-color 0.3s ease, opacity 0.3s ease;
  
  }

  /* 外部ポータルサイト */
  .skylark-official-sites__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }

  .shop-item {
    font-size: 18px;
    height: 64px;
  }
}

/*---------- SP版2列 ----------*/
@media screen and (max-width: 599px) {

  .skylark-official-sites,
  .return-gift,
  .card-body {
    box-sizing: border-box;
  }

  /* 各セクションタイトル */
  .common-title {
    font-size: 20px;
    margin: 0 0 16px 0;
    border-left: #ff7200 5px solid;
    padding: 2px 0 2px 14px;
  }

  /* コンテンツサイズ */
  .skylark-official-sites,
  .return-gift {
    width: 100% !important;
    padding: 40px 15px 0 15px;
    margin: 0 auto;
  }

  /* 寄付先・商品選択 */
  .return-gift {
    width: 100%;
  }

  .card-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 20px;
  }

  .card-image-wrapper {
    height: auto;
    margin-bottom: 25px;
  }

  .card-body {
    padding: 0 10px;
  }

  .product-img {
    aspect-ratio: 167 / 123;
    width: 100%;
    height: auto;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
    bottom: -22px;
  }

  .location {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .location-icon {
    width: 12px;
  }

  .product-name {
    font-size: 15px;
    padding: 0 0 16px 0;
    margin-bottom: auto;
  }

  .btn {
    width: 100%;
    max-height: 32px;
    font-size: 12px;
    max-width: none;
  }

  /* 外部ポータルサイト */
  .skylark-official-sites__list {
    grid-template-columns: repeat(1, 100%);
    gap: 14px;
  }

  .skylark-official-sites__caption {
    font-size: 14px;
    padding-bottom: 24px;
  }

  .shop-item {
    font-size: 16px;
    height: 54px;
    padding-right: 40px;
  }

  .skylark-official-sites__list .icon img {
    width: 16px;
  }

}