/* ----------------------------------------------------
下層　共通
----------------------------------------------------- */

.l-container__under {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
}

.l-container__under .c-image {
  display: block;
  object-fit: cover;
}

.l-container__under .c-button {
  position: relative;
  display: flex;
  background-color: #d56939;
  color: #fff;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: letter-gothic-std, "Noto Sans JP", monospace;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
  font-size: 1.3rem;
  padding: 1rem 0;
}

.l-container__under .c-button::after {
  content: "+";
  color: #fff;
  position: absolute;
  top: 50%;
  right:  20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .l-container__under {
    padding: 0 7vw;
  }

  .l-container__under .c-button {
    width: 250px;
    font-size: 1.1rem;
  }
}

/* ----------------------------------------------------
ニュース　一覧
----------------------------------------------------- */
.p-contents__news {
  margin-top: 60px;
}

.p-contents__news .p-item {
  border-bottom: 1px solid #46251f;
  padding: 40px 5vw;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.p-contents__news .p-item:first-child {
  padding-top: 0;
}
.p-contents__news .p-title {
  margin-bottom: 1rem;
  color: #d56939;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
}

.p-contents__news .p-date {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.p-contents__news .p-read {
  font-size: 1rem;
  line-height: 2;
  text-decoration: none;

  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.p-contents__news .p-read > a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-contents__news .c-image {
  max-width: 350px;
  max-height: 300px;
  border-radius: 20px;
}

.p-paging {
  display: flex;
  margin: 100px auto;
  width: fit-content;
}
.p-paging a:hover {
  transition: opacity 0.3s;
}
.p-paging .p-back,
.p-paging .p-next,
.p-paging .p-number {
  background: #cbb8a3;
  color: #6d3c17;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: normal;
  margin: 0 2rem;
}

.p-null{
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 2rem;
}

.p-back.-hidden,
.p-next.-hidden{
  display: none;
}

.p-paging .p-number.u-active {
  background-color: #6d3c17;
  color: #fff;
}
.p-paging .p-number {
  margin: 0 0.5rem;
}

.c-button__paging {
  display: flex;
  width: 200px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #6d3c17;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  margin: 0 2rem;
}

@media screen and (max-width: 767px) {
  .p-contents__news {
    margin-top: 40px;
  }
  .p-contents__news .p-item {
    border-bottom: 1px solid #46251f;
    padding: 40px 0;
    display: block;
  }
  .p-contents__news .p-title {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .p-contents__news .p-date {
    font-size: 1rem;
  }
  .p-contents__news .p-read {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .p-contents__news .c-image {
    margin-top: 1rem;
  }

  .p-paging {
    margin: 40px auto 80px;
  }

  .p-paging .p-back,
  .p-paging .p-next,
  .p-paging .p-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    font-weight: bold;
    margin: 0 10px;
  }

  .p-paging .p-number {
    margin: 0 3px;
  }

  .c-button__paging {
    font-size: 1rem;
    margin: 0 5px;
    width: 180px;
  }
}
/* ----------------------------------------------------
ニュース　詳細
----------------------------------------------------- */
.p-newsDtail__article {
  max-width: 800px;
  padding-bottom: 4rem;
  margin: 0 auto;
  border-bottom: 1px solid #46251f;
}
.p-newsDtail__article .p-title {
  font-size: 1.4rem;
}
.p-newsDtail__article .p-date {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #46251f;
}

.p-newsDtail__article .p-read {
  margin-top: 4rem;
}

.p-newsDtail__article p{
  line-height: 2;
}

.p-contents__news .p-photo {
  width: 100%;
  display: block;
  height: fit-content;
  background: #ccc;
  border-radius: 20px;
}
.p-newsDtail__article .c-image {
  max-width: none;
  max-height: none;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-newsDtail__article .p-title {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .p-newsDtail__article .p-date {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .p-newsDtail__article .p-read {
    line-height: 1.8;
    margin-top: 2rem;
    font-size: 1rem;
  }
}

/* ----------------------------------------------------
商品一覧
----------------------------------------------------- */

.p-contents__products {
  margin-bottom: 100px;
}
.p-contents__products .p-description {
  color: #d56939;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 100px;
}
.p-contents__products .p-lineup__products .p-category {
  margin-bottom: 160px;
}
.p-contents__products .p-box_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto 100px;
  text-align: center;
}
.p-contents__products .p-box_heading .c-image {
  margin: 0 auto 20px;
  width: 60px;
}
.p-contents__products .p-box_heading .p-title {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-contents__products .p-box_heading .p-ja {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
.p-contents__products .p-box_heading .p-catch {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}
.p-contents__products .p-list__products {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 80px;
}

/* .p-itemImageList{
  height: 400px;
} */


.p-list__products .slide-items .c-image {
  margin-bottom: 0.5rem;
  object-fit: cover;
  width: 100%;
  position: relative;
  z-index: 0;
}

.p-list__products .p-tagList{
  display: flex;
  gap:5px;
}

.p-list__products .p-tag {
  color: #fff;
  background: #6d3c17;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  width: fit-content;
  margin-bottom: 1.2rem;
  display: block;
}

.p-list__products .p-name {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  min-height: 60px;
  line-height: 1.2;
}
.p-list__products .p-eng {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.p-list__products .p-read {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 80px;
}
.p-list__products .c-button {
  margin: auto;
}

.c-button.artist{
  margin-bottom: 10px;
  background-color:#8B6F42;
}

.p-category .p-item{
  width: calc((100% - 160px) / 3);
}


.p-list__products .c-image {
  margin-bottom: 2rem;
  /* height: 360px; */
}

.slick-prev:before,
.slick-next:before {
  color:#46251f;
}
.slide-items .slick-dots{
  position: static;
}

.slick-dots li button:before {
  font-size: 18px;
  top: 6px;
}

.slide-items .slick-prev:before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10%;
	color:#d56939;
  font-size: 24px;
}

.slide-items .slick-next:before{
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
	color:#d56939;
  font-size: 24px;
}

.slick-dots li button::before {
  line-height: 0!important;

}

.slick-dotted.slick-slider{
  margin-bottom: 0px!important;
}

@media screen and (max-width: 900px) {
  .p-category .p-item{
    width: calc((100% - 80px) / 2);}
  }
  


@media screen and (max-width: 767px) {
  .p-contents__products {
    margin-bottom: 60px;
  }
  .p-contents__products .p-description {
    font-size: 1.1rem;
    margin: 30px 0;
    line-height: 1.6;
  }
  .p-contents__products .p-lineup__products .p-category {
    margin-bottom: 80px;
  }
  .p-contents__products .p-box_heading {
    margin: 0 auto 60px;
  }
  .p-contents__products .p-box_heading .c-image {
    margin: 0 auto 10px;
    width: 50px;
  }
  .p-contents__products .p-box_heading .p-title {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
  }
  .p-contents__products .p-box_heading .p-title.u-oversize {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .p-contents__products .p-box_heading .p-ja {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
  }
  .p-contents__products .p-box_heading .p-catch {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .p-contents__products .p-list__products {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  .p-list__products .p-item {
    text-align: center;
    margin-inline: auto;
    width: 100%;
  }
  .p-list__products .c-image {
    max-width: 80%;
    margin: 0 auto 1rem;
  }

  .p-list__products .p-tagList{
    display: flex;
    gap:5px;
    justify-content: center;
  }
  
  .p-list__products .p-tag {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    margin: 0 auto 1rem;
  }
  
  .p-list__products .p-name {
    font-size: 1.4rem;
    letter-spacing: 0;
    height: 40px;
  }

  .p-list__products .p-name.sp {
    font-size: 1.4rem;
    letter-spacing: 0;
    height: 60px;
  }

  .p-list__products .p-eng {
    font-size: 1rem;
    letter-spacing: 0rem;
  }
  .p-list__products .p-read {
    font-weight: normal;
    font-size: 0.9rem;
    text-align: left;
    min-height: auto;
  }

  .p-list__products .p-read.sp{
    font-weight: normal;
    font-size: 0.9rem;
    text-align: left;
    min-height: auto;
  }

  .slick-prev{
    z-index: 999!important;
    left: 20px!important;
  }

  .slick-next{
    z-index: 999!important;
    left: 260px!important;
  }

  /* .p-itemImageList{
    height: 260px;
  }
   */

}


.slick-prev {
  left: -16px!important;
  z-index: 100!important;
}

.slick-next {
  right: -16px!important;
}