@charset "utf-8";

.l-inner {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}

.js-fade-trigger {
  opacity: 0;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.c-heading {
  display: flex;
  gap: 22px;
  align-items: center;

  @media (width < 768px) {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}

.c-heading__en {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-quicksand);
  color: var(--color-blue);
  font-size: 60px;
  line-height: 0.87;
  letter-spacing: 0;
}

.c-heading__en::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #75c6d2;
  border-radius: 50%;
}

.c-heading__ja {
  margin-top: 0.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 0.08em;
}

.c-heading__ja::before,
.c-heading__ja::after {
  content: "-";
  font-size: 15px;
}

.c-sub-heading {
  font-family: var(--font-quicksand);
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.c-contact-btn {
  width: 152px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #72d4c7 0%, #77b6de 100%);

  p {
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
  }
}

.c-contact-btn:hover {
  opacity: 0.7;
}

.c-contact-btn::before {
  content: "";
  width: 14px;
  height: 12px;
  background: url("https://saikorokohak.com/system_panel/uploads/images/icon-mail.svg") no-repeat center center / contain;
}

.c-btn {
  background: linear-gradient(90deg, #73d2c8 0%, #78b6de 100%);
  border-radius: 5px;
  padding: 0 12px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 245px;
  height: 50px;
  position: relative;

  .c-btn__text {
    text-align: center;
    color: #fff;
    letter-spacing: 0em;
  }
}

.c-btn:hover {
  opacity: 0.7;
}

.c-btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  content: "";
  width: 26px;
  height: 26px;
  background: #fff url("https://saikorokohak.com/system_panel/uploads/images/arrow-right-blue.svg") no-repeat center center / 40%;
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.c-blog-item {
}

.c-blog-item__head {
  width: 100%;
  aspect-ratio: 354/250;
  overflow: hidden;
  border-radius: 10px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.c-blog-item__body {
  margin-top: 18px;
}

.c-blog-item__tags {
  display: flex;
  gap: 12px;
  align-items: center;
}

.c-date {
  font-family: var(--font-quicksand);
  font-size: 12px;
  line-height: normal;
  color: #8d8d8d;
}

.c-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--color-blue);
  font-size: 12px;
  line-height: 0.83;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.c-blog-item__title {
  margin-top: 9px;
  color: #484848;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  min-height: 60px;
}

.c-blog-item__link {
  margin-top: 4px;
  text-align: end;
}

.c-blog-item__link a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: normal;
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 0.1em;
}

.c-blog-item__link a::after {
  content: "";
  width: 8px;
  height: 10px;
  background: url("https://saikorokohak.com/system_panel/uploads/images/arrow-right-green.svg") no-repeat center center / contain;
  transition: all 0.3s ease;
}

.c-blog-item__link a:hover {
  border-bottom: 1px solid var(--color-base);
}

.c-blog-item__link a:hover::after {
  filter: brightness(0.7);
}

.c-page-top {
  position: fixed;
  width: 102px;
  aspect-ratio: 1;
  bottom: 116px;
  right: 106px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  z-index: 10;
  border: 1px solid #f4f5f5;
  transition: all 0.3s ease;

  @media (width < 1120px) {
    right: 20px;
  }

  @media (width < 768px) {
    right: 20px;
    width: 70px;
    gap: 10px;
    bottom: 80px;
  }

  img {
    margin-top: 12px;
    width: 8px;
    aspect-ratio: 9/6;
    object-fit: contain;
    transition: all 0.3s ease;
  }

  p {
    text-align: center;
    font-family: var(--font-quicksand);
    color: var(--color-blue);
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;

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

.gjs-dashed *[data-highlightable] .c-page-top {
  opacity: 1;
  visibility: visible;
}

.c-page-top.is-show {
  opacity: 1;
  visibility: visible;
}
