@charset "UTF-8";
.greet-h2 {
  font-size: min(40px, calc(2 * var(--vw1)));
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .greet-h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .greet-h2 {
    font-size: 18px;
  }
}

.sec-basic-greet {
  font-family: "STIX Two Text", "Zen Old Mincho", serif, "メイリオ", "MS Pゴシック", sans-serif;
}

.greet-sec-content {
  max-width: 970px;
}

.greet-text {
  line-height: 1.8em;
  margin-bottom: min(60px, calc(3 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .greet-text {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 640px) {
  .greet-text {
    margin-bottom: 28px;
  }
}

.greet-writing {
  display: flex;
  justify-content: flex-end;
  font-weight: 500;
  margin-bottom: 48px;
  gap: min(15px, calc(0.75 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .greet-writing {
    margin-bottom: 48px;
    gap: 12px;
  }
}
@media screen and (max-width: 640px) {
  .greet-writing {
    margin-bottom: 28px;
    gap: 8px;
  }
}

.greet-writing-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 500;
  gap: min(7.5px, calc(0.375 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .greet-writing-data {
    gap: 6px;
  }
}
@media screen and (max-width: 640px) {
  .greet-writing-data {
    gap: 4px;
  }
}

.greet-writing-data-date,
.greet-writing-data-job {
  font-size: min(20px, calc(1 * var(--vw1)));
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .greet-writing-data-date,
  .greet-writing-data-job {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .greet-writing-data-date,
  .greet-writing-data-job {
    font-size: 14px;
  }
}

.greet-writing-name {
  display: flex;
  align-items: center;
  font-size: min(45px, calc(2.25 * var(--vw1)));
  line-height: 1em;
}
@media screen and (max-width: 1600px) {
  .greet-writing-name {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .greet-writing-name {
    font-size: 28px;
  }
}

.img-wrap-greet-prof {
  width: 100%;
  height: 300px;
  background-image: url(../img/top_greeting.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 640px) {
  .img-wrap-greet-prof {
    height: auto;
    aspect-ratio: 4/3;
    background-position: 55%;
  }
}/*# sourceMappingURL=greet.css.map */