@charset "utf-8";

.container {
  width: 100%;
  margin: 0 auto;
}

.home {
  width: 100%;
  margin: 0 auto;
}

/* ここからページタイトル */
.page_title {
  font-size: 3.2rem;
  font-family: "BIZ UDPMincho", serif;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 1);
}

.page_title .nonpc {
  display: none;
}

/* ここまでページタイトル */

/* ここから背景画像・タイトル・文章*/
#home {
  background-image: url(../images/index/main_bg.webp);
  min-height: 100vh;
}

.big-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.home_content {
  text-align: center;
  padding-top: 10%;
}

.home_category {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;

}

.home_badge {
  display: inline-block;
  padding: 0.4em 1.4em;
  border: 3px solid #9b7b4a;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  font-style: normal;
}

.home_text {
  font-size: 3rem;
  color: #b00e0e;
  font-family: "BIZ UDPMincho", serif;
  font-weight: bold;
  font-style: normal;
  margin-top: 70px;
  text-shadow:1px 1px 0 #fff, 
  -1px -1px 0 #fff,
  -1px 1px 0 #fff,
  1px -1px 0 #fff;
}

.home_text span {
  font-size: 2rem;
}

.home_category h2 {
  font-size: 2rem;
  color: #333;
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 100px;

}

/* ここからボタン */
.button {
  display: inline-block;
  padding: 0.8em 2.4em;
  outline: 1px solid #fff;
  outline-offset: -4px;
  box-sizing: border-box;
  border-radius: 4px;
  text-decoration: none;
  background-color: #65420f;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-top: 70px;
}

.button:hover {
  background: #333;
  color: aliceblue;
}

/* ここまでボタン */



/* ニュースここから */
.main {
  width: 100%;
}

#news {
  width: 90%;
  margin: 0 auto;
  background-color: #f5f7f8;
  padding: 20px;
  margin-top: 50px
}

#news h2 {
  text-align: center;
  color: #111827;
}

#news ul {
  list-style-type: none;
  padding-left: 0;
}

#news ul li {
  padding: 20px 0 20px 175px;
  border-bottom: 1px dotted #111827;
  color: #111827;
  text-indent: -175px;

}

#news ul li time {
  display: inline-block;
  width: 175px;
  font-weight: bold;
  color: #111827;
  text-indent: 0;
}

#news ul li a {
  text-decoration: none;
  color: inherit;
}

/* ニュースここまで */

/* ここから商品項目 */
.recommended {
  padding-top: 45px;
  padding-bottom: 55px;
}

.recommended h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.recommended h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.item_list {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  overflow: scroll;
}

.item_list li {
  flex-shrink: 0;
  width: 300px;
  margin-left: 75px;
}

.item_list li:first-child {
  margin-left: 0;
}

.item_list dl {
  margin-top: 20px;
}

.item_list dt {
  font-weight: bold;
}

.item_list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.link_button_area {
  text-align: center;
}

/* ここまで商品項目 */

/* ここからフッター */

/* ここまでフッター */


@media (max-width:768px) {
  .container {
    width: 100%;
    box-sizing: border-box;
  }

  .contents {
    width: 90%;
    padding: 0 16px;
  }

  #home {
    background-image: url(../images/index/main_bg_sp.webp);
    min-height: 100vh;
    margin-top: 60px;
  }

  .big-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .home_content {
    padding-top: 24%;
    margin-top: 15px;
  }

  .home_text {
    font-size: 2.5rem;
    text-shadow: 0 0 10px #fff;
    margin-top: 70px;
    font-weight: bold;
    text-shadow:  1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff;
}

  .page_title {
    font-size: 2.5rem;
  }

  .page_title .nonpc {
    display: inline-block;
  }

  .home_category h2 {
    font-size: 1.5rem;
  }

  .home_badge {
    padding: 0.2em 0.7em;
  }

  .button {
    margin: 50px;
  }

  .info {
    width: 90%;
  }

  #news ul li time {
    display: block;
    width: auto;
  }

  #news ul li {
    padding: 15px 0;
    text-indent: 0;
  }

  .item_list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item_list li {
    width: 220px;
    margin-left: 30px;
  }
}