@charset "UTF-8";

/* 関数定義 =============================================================================== */
:root {
  --base-color: #fff;
  --text-color: #000;
  --main-color: #096944;
  --accent-color: #FFF043;
}

/* jQuery =============================================================================== */
.fadeInTop {
  transform: translate3d(0, -10px, 0);
  transition: 1.0s;
  opacity: 0;
}
.fadeInTop.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* PC
=============================================================================== */
main {
  color: var(--text-color);
  background: var(--base-color);
  font-size: 16px;
  /* フォント指定
  font-family: ; */
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
img {
  max-width: 100%;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/* メインビジュアル_mv */
.mv {
  display: block;
  width: 1040px;
  margin: 0 auto 45px;
}

/* h2セクションタイトル_content-title */
.content-title {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 3px #b7ebb2;
  position: relative;
}
.content-title::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 3px #48b43e;
  bottom: -3px;
  width: 20%;
}

/* h3見出し_heading */
.heading {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.heading::before {
  content: "";
  display: block;
  width: 8px;
  height: 30px;
  background-color: #009B0F;
  margin-right: 10px;
}

/* キャンペーン詳細 */
.campaign {
  width: 1040px;
  margin: 0 auto 45px;
}
.shiagari {
  width: 1040px;
  margin: 10px auto 30px;
}
.shiagari-list {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}
.shiagari-item {
  width: 320px;
}

/* カテゴリリンク_ボトムスを探す */
.item-link {
  width: 1040px;
  margin: 0 auto 60px;
}
.bottoms-list {
  display: flex;
}
.bottoms-item {
  display: block;
  width: calc((100% - 75px) / 6);
  margin-right: 15px;
}
.bottoms-item:last-of-type {
  margin-right: 0;
}

/* リンクボタン_link-btn */
.link-btn_01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  width: 350px;
  height: 50px;
  background-color: var(--main-color);
  color: var(--base-color) !important;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none !important;
}
/* トップページへ_return-btn */
.return-btn {
  display: block;
  width: 850px;
  height: 60px;
  margin: 150px auto 0;
}
.return-btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 15px;
  background: #009B0F;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.return-btn a::before {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 34px;
  transition-duration: 0.3s;
  z-index: 1;
}

/* SP
=============================================================================== */
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  /* メインビジュアル_mv */
  .mv {
    width: 100%;
  }

  /* h2セクションタイトル_content-title */
  .content-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
 
  /* h3見出し_heading */
  .heading {
    width: 100%;
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .heading::before {
    content: "";
    display: block;
    width: 8px;
    height: 25px;
    margin-right: 7px;
  }

  /* キャンペーン詳細 */
  .campaign {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 15px;
  }
  .shiagari {
    width: 100%;
    margin: 10px auto 30px;
    padding: 0 15px;
  }
  .shiagari-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto 30px;
  }
  .shiagari-item {
    width: 50%;
  }

  /* カテゴリリンク_ボトムスを探す */
  .item-link {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .bottoms-list {
    display: flex;
    overflow-x: scroll;
  }
  .bottoms-item {
    width: 28%;
    margin-right: 10px;
    margin-bottom: 30px;
    flex-shrink: 0;
  }
  .bottoms-item:last-of-type {
    margin-right: 0;
  }

  /* リンクボタン_link-btn */
  .link-btn_01 a {
    margin: 0 auto 10px;
    width: 300px;
    height: 40px;
    font-size: 14px;
  }

  /* RETURN-BTN */
  .return-btn {
  width: 100%;
  height: 45px;
  margin: 60px auto 0;
  padding: 0 15px;
  }
  .return-btn a {
    margin-top: 15px;
    padding-top: 10px;
  }
  .return-btn a::before {
    right: 18px;
  }
  .return-btn a:active {
    opacity: 0.7;
  }

}

/*# sourceMappingURL=style.css.map */