@charset "UTF-8";

.category_target {
  padding-top: 92px;
  margin-top: -92px;
}

.category_list {}

.category_item {
  padding: 32px 0;
}

.category_item+.category_item {
  border-top: 2px dotted #d7ccbc;
}

.category_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.category_link:hover {
  color: #654838;
  text-decoration: underline;
}

.category_link:hover .category_img {
  opacity: .7;
}

.category_img {
  width: 27%;
}

.category_text {
  width: 68.75%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 61.2%;
  grid-template-columns: 1fr 61.2%;
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
}

.category_text>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.category_text>*:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.category_text>*:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.category_text>*:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.category_text>*:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.category_text>*:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

.category_text .name {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / -1;
  margin-bottom: 20px;
  color: #654838;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: .05em;
}

.category_text .desc {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / -1;
  margin-bottom: 40px;
  color: #654838;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .05em;
}

.category_text .price {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  color: #654838;
  font-weight: bold;
}

.category_text .price .unit {
  font-size: 16px;
}

.category_text .price .num {
  font-size: 20px;
}

.num {
  margin-left: 0.5em;
}

.category_text .btn {
  -ms-grid-row: 3;
  grid-row: 3;
  grid-column: 2 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 404px;
  height: 56px;
  color: #654838;
  background-color: #f5f1ea;
  font-size: 20px;
  font-weight: bold;
}

.category_text .btn:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  background: url(/kodawari/img/category_arrow2.png) 0 0 / contain no-repeat;
  vertical-align: middle;
}

@media screen and (max-width: 1099px) {
  .category_text .price {
    grid-column: 1 / -1;
    text-align: center;
  }

  .category_text .btn {
    -ms-grid-row: 4;
    grid-row: 4;
    grid-column: 1 / -1;
    margin: 10px auto 0;
  }
}