@charset "UTF-8";

/* 色の変数 */
:root {
    --cherry-red: #DD2051;  /* メインの赤 */
    --leaf-green: #7CB356;  /* サブの緑 */
    --dark-pink1: #F9EDEF;    /* 濃いピンク背景 */
    --dark-pink2: #FCF8F9;    /* 次に濃いピンク背景 */
    --bg-main: #FEFDFE;    /* 白背景風 */
    --white: #ffffff;   /* ボタン背景の白 */
    --main-text: #2A160A;   /* メインテキストカラー */
    --contact-btn:#F9EDF0; /*ハートコンタクトボタン */
}

.news__main .breadcrumb {
    margin-top: 4vw;
    padding-left: 60px;
}


.news-section {
  width: 800px;
  margin: 60px auto 200px;
}
@media (max-width: 768px) {
  .news-section {
    width: 100%;
    margin: 40px auto 80px;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px dashed #EADFD7;
}
@media (max-width: 768px) {
  .news-list {
    max-width: 582px;
    margin: 0 auto;
  }
}

.news-item {
  border-bottom: 2px dashed #EADFD7;
}

.news-item a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  gap: 1.66vw;
  transition: color 0.3s;
}

.news-item a:hover {
  color: var(--cherry-red);
}
@media (max-width: 600px) {
  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.news-item div:first-of-type {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .news-item div:first-of-type {
    margin: 0 4%;
  }
}

.news-item__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  width: 131px;
  height: 27px;
  border-radius: 8px;
}
.news-item__label--info {
  background-color: var(--leaf-green);
}
.news-item__label--recruit {
  background-color: var(--cherry-red);
}
@media (max-width: 768px) {
  .news-item__label {
    font-size: 1.4rem;
    width: 92px;
    height: 25px;
    border-radius: 6px;
  }
}

.news-item__date {
  font-family: "Wix Madefor Text";
  font-weight: 500;
  width: 70px;
}
@media (max-width: 768px) {
    .news-item__date {
        width: 23px;
    }
}


.news-item div:last-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 72%;
}
@media (max-width: 768px) {
  .news-item div:last-of-type {
    width: 92%;
    margin: 0 4%;
  }
}

.news-item__title {
  font-weight: bold;
  font-family: "Zen Maru Gothic";
  flex: 1;
}
@media (max-width: 768px) {
  .news-item__title {
    width: 100%;
  }
}

.news-item__arrow {
  background-image: url(../../assets/images/decorations/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 29px;
  height: 29px;
  display: inline-block;
}

.news-section__cta {
  margin-top: 110px;
  text-align: right;
}
@media (max-width: 768px) {
  .news-section__cta {
    margin-top: 20px;
    text-align: center;
  }
}

.news-section__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cherry-red);
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.news-section__cta img {
  width: 22px;
  height: auto;
}