@charset "UTF-8";
/* 共通部品 */
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #382710;
  background-color: #fcfaf2;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.u-wrapper {
  max-width: 1280px;
  padding: 20px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .u-wrapper {
    max-width: 390px;
    padding: 0 100px;
    margin: 0;
  }
}

.u-sectionHeading {
  font-size: 33px;
  padding-top: 40px;
}

.u-sectionText {
  font-size: 16px;
}

.u-date {
  font-size: 13px;
  padding: 5px 0;
}

.u-section__text {
  font-size: 15px;
  padding: 5px 0;
}

/* ここから記述します。 */
/* header----------------------- */
.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 100px;
}
@media screen and (max-width: 768px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 180px;
    padding: 10px 30px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 768px) {
  .header__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #f5ebca;
    padding: 10px 0;
    font-size: 14px;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* header----------------------- */
/* firstView-------------------- */
.firstview {
  background-image: url(../image/firstView-pc.png);
  background-position: center;
  background-size: cover;
  height: 500px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .firstview {
    background-image: url(../image/firstView-sp.png);
    height: 240px;
  }
}

.site__title {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8509803922);
  font-size: 40px;
  padding: 10px 50px;
}
@media screen and (max-width: 768px) {
  .site__title {
    font-size: 22px;
    padding: 3px 11px;
  }
}

/* firstView-------------------- */
/* container-------------------- */
.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 100px;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 20px;
  }
}

/* container-------------------- */
/* main     -------------------- */
.main {
  margin: 0 auto;
  padding: 60px 80px 20px;
}
@media screen and (max-width: 768px) {
  .main {
    padding: 0;
  }
}

.news__top {
  width: 88%;
}
@media screen and (max-width: 768px) {
  .news__top {
    width: 100%;
  }
}

.news__pickup {
  max-width: 580px;
  padding: 30px 0 5px;
}
@media screen and (max-width: 768px) {
  .news__pickup {
    width: 100%;
    padding: 30px 0;
  }
}

.main__sectionTitle {
  font-size: 15px;
}

.news__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .news__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news__flex {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .news__flex {
    width: 100%;
  }
}

.news__imgBottom {
  width: 100%;
}

/* special  -------------------- */
.special__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .special__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* special  -------------------- */
/* main     -------------------- */
/* aside    -------------------- */
.aside {
  width: 70%;
  margin: 0 auto;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .aside {
    width: 100%;
    padding: 0;
  }
}

/* category -------------------- */
.category_text {
  font-size: 1rem;
  padding: 5px 0;
}

.category__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.category__btn {
  border: 1px solid gray;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
}

.category__icon {
  width: 100%;
}

.category__iconText {
  font-size: 0.9rem;
}

.category__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
  border: 1px solid gray;
  height: 40px;
}

.search__input {
  width: 100%;
  background-color: #fff;
}

.search__submit {
  width: 20%;
  background-color: yellow;
  text-align: center;
}

.search__img {
  width: 100%;
}

/* category -------------------- */
/* popularity -------------------- */
.popularity__list {
  font-size: 0.8rem;
}

.popularity__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  border-top: 1px solid rgb(207, 207, 207);
  padding: 15px 0;
  font-size: 0.9rem;
}
.popularity__item:last-child {
  border-bottom: 1px solid rgb(207, 207, 207);
}

/* popularity -------------------- */
/* x          -------------------- */
.x {
  margin-bottom: 60px;
}

.x__sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* x          -------------------- */
/* aside    -------------------- */
/* footer    -------------------- */
.footer {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 100px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px;
    gap: 50px;
  }
}

.catch-text {
  padding: 20px 0;
}

.footer__shop_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 140px;
}
@media screen and (max-width: 768px) {
  .footer__shop_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.footer__heading {
  border-bottom: 1px solid brown;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.footer__text {
  padding-top: 10px;
}

.footer__item {
  padding-top: 10px;
}

/* footer    -------------------- */