@charset "UTF-8";

p {
  line-height: 1.8;
  margin-bottom: 20px;
  &:last-of-type {
    margin-bottom: 0;
  }
}

.special-contents {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 80px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 120px;

  @media screen and (max-width: 800px) {
    row-gap: 80px;
  }
  @media screen and (max-width: 600px) {
    margin-bottom: 60px;
  }
}

.special-main {
  .image {
    max-width: 100%;
    display: block;
    margin-inline: auto;
    width: fit-content;
    margin-bottom: 48px;
    border-radius: 10px;
  }

  .special-main_title {
    color: var(--color-primary);
    font-size: 3.2rem;
    line-height: 2;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: var(--font-family-eg);

    @media screen and (max-width: 800px) {
      text-align: left;
      font-size: 3rem;
      margin-bottom: 30px;
    }
  }

  .sub-title {
    font-size: 20px;
    display: block;

    @media screen and (max-width: 600px) {
      font-size: 18px;
    }
  }

  > p {
    font-size: 18px;

    @media screen and (max-width: 600px) {
      font-size: 16px;
    }
  }
}

.special-content_box {
  .title {
    font-size: 2.6rem;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-family: var(--font-family-eg);
  }

  .recommend-item {
    display: flex;
    gap: 30px 40px;
    margin-bottom: 60px;
    align-items: center;

    @media screen and (max-width: 600px) {
      flex-direction: column;
    }

    &:last-of-type {
      margin-bottom: 0;
    }

    .item-image {
      width: 35%;
      @media screen and (max-width: 600px) {
        width: 100%;
        max-width: 300px;
      }

      img {
        border-radius: 10px;
      }
    }
    .item-desc {
      flex: 1;

      .item-name {
        color: #d92223;
        font-size: 2.4rem;
        border-radius: 6px;
      }
      .item-point {
        margin-top: 5px;
        font-weight: bold;
      }
      .item-desc_text {
        margin-top: 20px;
        .link-block {
          margin-left: 0;
          margin-top: 50px;
        }
      }
    }
  }
}

.special-content_bottom {
  font-size: 18px;

  @media screen and (max-width: 600px) {
    font-size: 16px;
  }
}
