@charset "UTF-8";
/* ===========================
  News__Top
=========================== */

.News__Fv {
    display: block;
    padding-top: 120px;
    width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.20);
    background-image: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
}

.News__container {
    margin: 64px 7px 0;
    background-color: var(--Primary__LightBlue);
    border: 3px solid var(--Primary__MidBlue);
    border-radius: 20px;
}

.News__titleGroup {
    margin-top: 32px;
}

.News__outer {
    margin: 32px 10px 0;
}

.News__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    column-gap: 16px;
    margin: 0 auto;
    max-width: 550px;
}

.News__item {
  background: var(--Primary__White);
  width: 100%;
  max-width: 262px;
  box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.15);
}

.News__img {
  width: 100%;
  max-width: 262px;
  height: auto;
}

.News__itemTxtBox {
    margin: 16px 6px 26px;
}

.News__date {
  font-family: "Comfortaa";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--Primary__DeepGray);
}

.News__title {
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.5;
}

.News__title:hover {
  color: var(--Primary__Orange);
}

.Btnsub {
  margin: 48px auto 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--Primary__Mint);
  width: 140px;
}

.Btnsub__arrow {
    transform: rotate(180deg);
}

.Btnsub__Txt {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1; /* 14px */
}

.Btnsub__Txt:hover {
    color: var(--Primary__Mint);
}

/* NewsTop__Pc */
@media screen and (min-width: 769px) {
    .News__Fv {
        display: block;
        padding-top: 160px;
        width: 100%;
        height: 100%;
        max-height: 580px;
        object-fit: cover;
        border-radius: 0 0 50px 50px;
        box-shadow: 0 6px 4px 0 rgba(32, 33, 36, 0.20);
    }

    .News__containerBox {
        margin: 0 48px;
    }

    .News__container {
        margin: 100px auto 0;
        border-radius: 30px;
        max-width: 1160px;
    }

    .News__titleGroup {
        margin-top: 64px;
    }

    .News__outer {
        margin: 64px 32px 0;
    }

    .News__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 56px;
        column-gap: 30px;
        max-width: 100%;
        flex: 1;
    }

    .News__item {
        width: 100%;
        max-width: 660px;
    }

    .News__img {
        width: 100%;
        max-width: 660px;
        height: auto;
    }

    .News__itemTxtBox {
        margin: 24px 12px 34px;
    }

    .News__date {
        font-size: 1.4rem;
    }

    .News__title {
        font-size: 1.6rem;
        margin-top: 12px;
        line-height: 1.5;
    }

    .Btnsub {
        margin: 64px auto 64px;
        width: 172px;
    }

    .Btnsub__Txt {
        font-size: 2.4rem;
    }
}

/* ===========================
  News
=========================== */

.News__writeBox {
    margin: 32px 9px 0;
}

.News__writedate {
  font-family: "Comfortaa";
  font-size: 1.2rem;
  color: var(--Primary__DeepGray);
}

.news__tag {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1; /* 12px */
  color: var(--Primary__White);

  background-color: var(--Primary__Orange);
  border-radius: 14px;
  border: 2px solid var(--Primary__White);
  padding: 0 6px;
  margin-left: 6px;
}

.News__writetitle {
    margin-top: 12px;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5; 
}

.News__txt {
    margin-top: 24px;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
}

.News__txtLink {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 4px;
    color: var(--Primary__MidBlue);
}

.News__txtLink:hover {
    color: var(--Primary__Orange);
}

.News__writeImg , .News4__writeImg {
    margin-top: 32px;
    border-radius: 6px;
}

/* News__Pc */
@media screen and (min-width: 769px) {
    .News__writeBox {
        max-width: 78%;
        margin: 64px auto 0;
    }

    .News__writedate {
        font-size: 1.6rem;
    }

    .news__tag {
        padding: 3px 15px;
        font-size: 1.6rem;
        border-radius: 15px;
    }

    .News__writetitle {
        margin-top: 32px;
        font-size: 3.2rem;
    }

    .News__txt {
        margin-top: 32px;
        font-size: 1.6rem;
    }

    .News__txtLink {
        font-size: 2rem;
    }

    .News__writeImg {
        margin-top: 48px;
        border-radius: 8px;
    }

    .News4__writeImg {
        display: block;
        margin: 48px auto 0;
        width: 600px;
    }
}