@charset "UTF-8";
/* --------------------
        設定
-------------------- */
html {
  font-size: 62.5%;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値) */
:root {
  --c-txt: #333;
  --c-bg: #F4F4F4;
  --mb--40: 10.6666666667vw;
  --mb--80: 21.3333333333vw;
  --mb--100: 100px;
}

/* --------------------
        #contents
-------------------- */
#contents {
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--c-txt);
  margin: 30px auto 0;
}
@media screen and (min-width: 1000px) {
  #contents {
    font-size: 1.4rem;
  }
}
#contents li,
#contents a {
  transition: all 0.4s;
}
#contents a {
  display: block;
  text-align: center;
  font-weight: 600;
}
#contents a:hover {
  opacity: 0.8;
}
#contents img {
  width: 100%;
  height: auto;
}
#contents .--bold {
  font-weight: 600;
}

/* --------------------
        .header
-------------------- */
.header {
  margin-bottom: var(--mb--80);
}
@media screen and (min-width: 768px) {
  .header {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1000px) {
  .header {
    margin-bottom: var(--mb--100);
  }
}
.header__kv {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .header__kv {
    max-width: 1200px;
  }
}
.header__txt {
  width: 80vw;
  margin: 13.3333333333vw auto var(--mb--40);
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .header__txt {
    margin: 50px auto 40px;
  }
}
@media screen and (min-width: 1000px) {
  .header__txt {
    max-width: 720px;
    margin: var(--mb--100) auto 60px;
    font-size: 1.4rem;
  }
}
.header__txt p:first-of-type {
  margin-bottom: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .header__txt p:first-of-type {
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .header__txt p:first-of-type {
    margin-bottom: 40px;
  }
}
.header__desc {
  width: 80vw;
  margin: 0 auto;
  padding: var(--mb--40);
  background-color: var(--c-bg);
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .header__desc {
    padding: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .header__desc {
    max-width: 720px;
    padding: 40px;
    font-size: 1.4rem;
  }
}
.header__desc--txt {
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 768px) {
  .header__desc--txt {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .header__desc--txt {
    margin-bottom: 16px;
  }
}
.header .attention__list {
  font-weight: 400;
}

.txt__marker {
  padding-bottom: 0.1em;
  background: linear-gradient(transparent 50%, rgba(255, 202, 57, 0.4) 70%);
}

/* --------------------
        .sec (main)
-------------------- */
.sec {
  width: 80vw;
  margin: 0 auto var(--mb--80);
}
@media screen and (min-width: 768px) {
  .sec {
    margin: 0 auto 80px;
  }
}
@media screen and (min-width: 1000px) {
  .sec {
    max-width: 720px;
    margin: 0 auto 80px;
  }
}
.sec__ttl {
  margin-bottom: var(--mb--40);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sec__ttl {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .sec__ttl {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

/* --------------------
        .category
-------------------- */
.category__list--wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4.8vw;
  width: 80vw;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .category__list--wrapper {
    gap: 40px;
    width: 100%;
  }
}
.category__list {
  width: 37.6vw;
  background-color: #FAFAF8;
  border-radius: 3px;
  box-shadow: rgba(51, 51, 51, 0.1) 2px 2px 10px;
}
@media screen and (min-width: 1000px) {
  .category__list {
    width: calc(50% - 20px);
    max-width: 340px;
  }
}
.category__list:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}
@media screen and (max-width: 999px) {
  .category__list:hover {
    transform: none;
  }
}
.category__btn a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 80vw;
  height: 16vw;
  margin: var(--mb--40) auto 0;
  border-radius: 3px;
  color: #fff;
  background-color: #651017;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .category__btn a {
    height: 70px;
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 1000px) {
  .category__btn a {
    width: 500px;
    height: 70px;
    margin: 80px auto 0;
    font-size: 1.4rem;
  }
}

.link__txt {
  display: block;
  padding: 4.8vw 0;
}
@media screen and (min-width: 768px) {
  .link__txt {
    padding: 18px 0;
  }
}
@media screen and (min-width: 1000px) {
  .link__txt {
    padding: 23px 0;
  }
}

/* --------------------
        .attention
-------------------- */
.attention {
  padding: var(--mb--40);
  background-color: var(--c-bg);
}
@media screen and (min-width: 768px) {
  .attention {
    padding: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .attention {
    padding: 40px;
  }
}
.attention__ttl {
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.18;
  text-align: start;
  text-indent: -0.5em;
  margin-bottom: 4px;
}
@media screen and (min-width: 1000px) {
  .attention__ttl {
    font-size: 1.4rem;
  }
}
.attention__list {
  text-indent: -1em;
  padding-left: 1em;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.18;
}
@media screen and (min-width: 1000px) {
  .attention__list {
    font-size: 1.2rem;
  }
}
.attention__list::before {
  content: "※";
  margin-right: 0.1em;
}
.attention__list__link {
  display: inline !important;
  font-weight: 600;
  text-decoration: underline;
}

/* --------------------
    reset.css / event page
-------------------- */
.container {
  width: auto !important;
}

.block-event-page {
  width: 100% !important;
  padding: 0 !important;
}

.block-event-page--header-img {
  display: none;
}

.block-event-page--comment-bot {
  padding: 0 !important;
  background-color: transparent;
}

.block-footer-download {
  display: none !important;
}

.block-event-page--goods {
  padding: 0 20px;
}
@media screen and (min-width: 1000px) {
  .block-event-page--goods {
    padding: 0;
    width: 1200px !important;
    margin: 0 auto !important;
  }
}/*# sourceMappingURL=260925_onlinestore_lifegoodsfair_style.css.map */