@charset "utf-8";
/* CSS Document */
.main-wrap,
.news_d1,
.news_d1 .cate_wrap,
.news_d1 .width-1280-max {
  overflow: visible;
}

.news_d1 .width-1280-max {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 5vw, 80px);
}

.news_d1 .cate-wrap {
  flex: 0 0 220px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  z-index: 2;
}

.news_d1 .cate-wrap .titlebox {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #9A836C;
}

.news_d1 .cate-wrap .titlebox p {
  line-height: 1;
}

.news_d1 .cate-wrap .catebox {
  display: flex;
  flex-direction: column;
}

.news_d1 .cate-wrap .catebox .item {
  display: block;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: .3s;
}

.news_d1 .cate-wrap .catebox .item p {
  color: #4A4745;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  letter-spacing: .08em;
  transition: .3s;
}

.news_d1 .cate-wrap .catebox .item:hover p,
.news_d1 .cate-wrap .catebox .item.active p {
  color: #9A836C;
  padding-left: 8px;
}

.news_d1 .contents {
  flex: 1;
  min-width: 0;
  gap: clamp(40px, 6vw, 90px);
}

.news_d1 .boxwrap {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 70px);
    width: 100%;
}

.news_d1 .boxwrap.is-hidden {
  display: none;
}

.news_d1 .boxwrap .rightbox {
  width: clamp(260px, 34vw, 380px);
  flex: none;
  margin: auto;
}

.news_d1 .boxwrap .rightbox .imgbox {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #D9D6D2;
}

.news_d1 .boxwrap .rightbox .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.news_d1 .boxwrap .leftbox {
  flex: 1;
  min-width: 0;
  margin: auto;
}

.news_d1 .boxwrap .leftbox .txtbox {
  max-width: 520px;
}

.news_d1 .boxwrap .leftbox .entitle4 {
  color: #9A836C;
  line-height: 1.2;
  margin-bottom: 8px;
}

.news_d1 .boxwrap .leftbox h3 {
  font-weight: 500;
  letter-spacing: .08em;
}

.news_d1 .boxwrap .leftbox .price_txt {
  color: #4A4745;
  letter-spacing: .08em;
  line-height: 1.8;
}

.txtbox .catename {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 50px;
  background: #4A4745;
  color: #fff;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .08em;
}

@media screen and (max-width: 1080px) {
  .news_d1 .cate-wrap {
    flex: 0 0 180px;
  }

  .news_d1 .boxwrap {
    flex-direction: column;
  }

  .news_d1 .boxwrap .rightbox {
    width: 100%;
    max-width: 520px;
  }
}

@media screen and (max-width: 576px) {
  .news_d1 .width-1280-max {
    flex-direction: column;
  }

  .news_d1 .cate-wrap,
  .news_d1 .contents {
    width: 100%;
    flex: none;
  }

  .news_d1 .cate-wrap {
    position: relative;
    top: 0;
  }

  .news_d1 .cate-wrap .catebox {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .news_d1 .cate-wrap .catebox .item {
    width: auto;
    padding: 6px 0;
  }

  .news_d1 .boxwrap {
    flex-direction: column;
    gap: 24px;
  }

  .news_d1 .boxwrap .rightbox,
  .news_d1 .boxwrap .leftbox {
    width: 100%;
    max-width: 400px;
  }

  .news_d1 .boxwrap .leftbox .txtbox {
    max-width: none;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

