.c-layout__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 8px;
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .c-layout__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 4vw auto 10vw auto;
    width: 90%;
    padding: 0;
  }
}
.c-layout__grid .c-layout__card-title a {
  color: #000;
  font-size: 16px;
}
.c-layout__grid .c-layout__card-meta * {
  color: #666;
  font-size: 14px;
}
.c-layout__grid .c-layout__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #FF605C;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(44, 31, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: inherit;
}
.c-layout__grid .c-layout__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(44, 31, 15, 0.14);
}
.c-layout__grid .c-layout__card-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.c-layout__grid .c-layout__card-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-layout__grid .c-layout__card-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #2c1f0f;
}
.c-layout__grid .arrow-line {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.c-layout__grid .c-layout__card-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px 12px;
  padding-top: 12px;
  border-top: 1px solid #f2ece6;
}
.c-layout__grid .c-layout__card-detail .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 24px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  background-color: #E7312D;
  letter-spacing: 0.03em;
}
.c-layout__grid .c-layout__card-detail .label.sien {
  color: #fff;
  background-color: #000;
}
.c-layout__grid .c-layout__card-detail .text {
  font-size: 14px;
  line-height: 1.65;
  word-break: break-word;
}

@media screen and (max-width: 768px) {
  .c-layout__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 0;
  }
  .c-layout__grid .c-layout__card {
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
  }
  .c-layout__grid .c-layout__card-company {
    font-size: 16px;
  }
  .c-layout__grid .arrow-line {
    width: 18px;
    min-width: 18px;
    height: 18px;
  }
  .c-layout__grid .c-layout__card-detail {
    gap: 8px 10px;
    padding-top: 10px;
  }
  .c-layout__grid .c-layout__card-detail .label {
    min-width: 62px;
    height: 22px;
    font-size: 11px;
    padding: 0 8px;
  }
  .c-layout__grid .c-layout__card-detail .text {
    font-size: 13px;
    line-height: 1.6;
  }
}
.l-content .content-box .bg-type02.no:before {
  display: none;
}

.bg-type03 {
  background-color: #EEE;
}
.bg-type03.type2:after {
  content: "";
  height: 15px;
  width: 100%;
  display: block;
  background-color: #EEE;
  background-image: url(../img/bg_pink.webp);
}
.bg-type03:after {
  content: "";
  height: 15px;
  width: 100%;
  display: block;
  background-color: #EEE;
  background-image: url(../img/about/bf_bg.webp);
}
.bg-type03 .inner {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .bg-type03 .inner {
    padding: 40px 0;
  }
}

.l-content .content-box .bg-type02.grey:after {
  background-image: url(../img/bg_grey.webp);
}

.price-box {
  max-width: 1000px;
  margin: 44px auto 0;
  padding: 28px;
  background: #fff;
  border-radius: 10px;
}
.price-box .price-item {
  padding: 22px 24px;
  background: linear-gradient(145deg, #fff9f4 0%, #fff 100%);
  border: 1px solid #eee4da;
  border-radius: 8px;
  text-align: center;
}
.price-box .price-item-title {
  margin-bottom: 14px;
}
.price-box .price-item-title p {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #2c1f0f;
  letter-spacing: 0.01em;
}
.price-box .price-item-title span {
  display: inline-block;
  margin: 0 2px;
  font-size: 1.5em;
  font-style: normal;
  color: #e7312d;
  line-height: 1;
  font-weight: 800;
}
.price-box dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin: 0;
}
.price-box dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0;
  border-radius: 999px;
  background: #2c1f0f;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.price-box dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #3d352b;
}
.price-box > p {
  margin: 16px 0 0;
  padding: 0 4px;
  font-size: 13px;
  line-height: 1.9;
  color: #6c6257;
}
@media screen and (max-width: 768px) {
  .price-box {
    width: 90%;
    margin-top: 9vw;
    padding: 16px;
    border-radius: 12px;
  }
  .price-box .price-item {
    padding: 14px;
    border-radius: 10px;
  }
  .price-box .price-item-title {
    margin-bottom: 10px;
  }
  .price-box .price-item-title p {
    font-size: 22px;
    line-height: 1.35;
  }
  .price-box dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .price-box dt {
    justify-content: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 10px;
  }
  .price-box dd {
    font-size: 14px;
    line-height: 1.75;
  }
  .price-box > p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.8;
    padding: 0;
  }
}/*# sourceMappingURL=add.css.map */