@charset "utf-8";

.is-pc {
  @media (width < 768px) {
    display: none !important;
  }
}

.is-sp {
  @media (width >= 768px) {
    display: none !important;
  }
}

.l-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 30px 0 268px;

  @media (width < 1120px) {
    padding: 0 20px 0 200px;
  }

  @media (width < 768px) {
    padding: 0 20px;
  }
}

.js-fade-up-trigger {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up {
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gjs-dashed *[data-highlightable] .js-fade-up-trigger {
  opacity: 1;
  transform: translateY(0);
}

.c-logo {
  display: flex;
  gap: 5px;
  align-items: start;

  img {
    width: 45px;
    aspect-ratio: 1;
    flex-shrink: 0;
    object-fit: cover;
  }
}

.c-logo__text {
  p {
    font-weight: 700;
    letter-spacing: 0;
  }

  div:nth-of-type(1) {
    p {
      font-size: 8px;
      line-height: 1.375;
      letter-spacing: -0.05em;
    }
  }

  div:nth-of-type(2) {
    p {
      margin-top: -1px;
      font-size: 20px;
      line-height: 1;
    }
  }

  div:nth-of-type(3) {
    p {
      margin-top: 1px;
      font-family: var(--font-lato);
      font-size: 6px;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: 0.02em;
    }
  }

  div:nth-of-type(4) {
    p {
      font-size: 6px;
      line-height: 1.1;
    }
  }
}

.c-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;

  .c-heading__en {
    font-size: 79px;
    font-weight: 400;
    line-height: 1.063;
    letter-spacing: 0.02em;
    color: var(--color-green);
    font-family: var(--font-noto-en);

    @media (width < 768px) {
      font-size: 68px;
    }
  }

  .c-heading__ja {
    font-weight: 600;
    line-height: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.06em;
  }

  .c-heading__ja::before {
    content: "";
    width: 31px;
    height: 1px;
    background: #a2b36b;
  }
}

.c-subheading {
  display: flex;
  flex-direction: column;
  gap: 10px;

  .c-subheading__en {
    color: #a2b36b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    font-family: var(--font-noto-en);
  }

  .c-subheading__ja {
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.06em;
  }
}

.c-arrow-btn {
  background: linear-gradient(90deg, #99c067 0%, #5fb38d 100%);
  border-radius: 8px;
  max-width: 300px;
  width: 100%;
  height: 60px;
  padding-right: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 13px;
  position: relative;
  transition: all 0.3s ease;

  p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    color: #fff;
  }
}

.c-arrow-btn::after {
  content: "";
  position: absolute;
  right: 0;
  width: 24%;
  max-width: 60px;
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  background: url("https://do-and-be.jp/system_panel/uploads/images/arrow-right-white.svg") no-repeat center center / 10px;
  border-left: 1px solid #fff;
  transition: all 0.3s ease;
}

.c-arrow-btn:hover {
  filter: hue-rotate(20deg);

  p {
    color: #fff;
  }
}

.c-date-wrap {
  display: flex;
  align-items: center;
  gap: 21px;
  width: fit-content;
  min-width: 28%;
  flex-shrink: 0;
}

.c-date {
  width: 80px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #696969;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.c-category {
  background: var(--color-l-green);
  border-radius: 12px;
  padding: 4px 9px;
  color: #ffffff;
  font-size: 12px;
  width: fit-content;
  min-width: 80px;
  padding: 4px 10px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.3;
  flex-shrink: 0;
  text-align: center;
}

.c-breadcrumb {
  display: flex;
  justify-content: end;
  gap: 43px;
  align-items: center;

  p {
    color: #848484;
    font-weight: 400;
    font-size: 13px;
    position: relative;
  }

  a:hover {
    opacity: 0.7;
  }
}

.c-breadcrumb div:not(:last-of-type) {
  p::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    transform: translateY(-50%);
    right: -28px;
    background: #848484;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
