.greeting {
  display: flex;
  flex-direction: row-reverse;
  gap: 64px;
  align-items: center;
}
@media (max-width: 767px) {
  .greeting {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.greeting__img {
  width: 360px;
  height: 480px;
  flex-shrink: 0;
  background: #d9d9d9 center/cover no-repeat;
}
@media (max-width: 767px) {
  .greeting__img {
    width: 200px;
    height: 267px;
  }
}
.greeting__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (max-width: 767px) {
  .greeting__body {
    width: 100%;
  }
}
.greeting__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.greeting__text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #222222;
}
.greeting__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #222222;
  text-align: right;
}

.overview__row {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  box-shadow: inset 0 -1px 0 rgba(22, 94, 131, 0.3);
}
.overview__row:first-child {
  padding-top: 8px;
}
@media (max-width: 767px) {
  .overview__row {
    flex-direction: column;
    gap: 0;
    padding: 0 0 16px;
    margin-bottom: 16px;
  }
  .overview__row:first-child {
    padding-top: 0;
  }
  .overview__row:last-child {
    margin-bottom: 0;
  }
}
.overview__row dt {
  width: 200px;
  flex-shrink: 0;
  padding: 0 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #222222;
}
@media (max-width: 767px) {
  .overview__row dt {
    width: 100%;
    padding: 8px 12px;
  }
}
.overview__row dd {
  width: 760px;
  flex-shrink: 0;
  padding: 0 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #222222;
}
@media (max-width: 1000px) {
  .overview__row dd {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .overview__row dd {
    width: 100%;
    padding: 8px 12px;
  }
}

.history {
  position: relative;
  overflow: hidden;
  background: #165e83;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .history {
    padding: 64px 0;
  }
}
.history__watermark {
  position: absolute;
  top: -96px;
  left: 257px;
  transform: translateX(-50%);
  font-family: "Moon Dance", cursive;
  font-size: 240px;
  line-height: normal;
  color: #ffffff;
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .history__watermark {
    left: 200px;
    font-size: 180px;
    top: -72px;
  }
}
@media (max-width: 767px) {
  .history__watermark {
    left: -8px;
    top: -24px;
    font-size: 120px;
    transform: none;
  }
}
.history__ttl {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .history__ttl {
    margin-bottom: 32px;
  }
}

.timeline {
  position: relative;
}
.timeline__row {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  box-shadow: inset 0 -1px 0 rgba(238, 120, 0, 0.3);
}
.timeline__row:first-child {
  padding-top: 8px;
  min-height: 80px;
}
@media (max-width: 767px) {
  .timeline__row {
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
  }
  .timeline__row:first-child {
    padding-top: 8px;
    min-height: 0;
  }
}
.timeline__row dt {
  width: 200px;
  flex-shrink: 0;
  padding: 0 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 1.2px;
  color: #ee7800;
}
@media (max-width: 767px) {
  .timeline__row dt {
    width: 100%;
  }
}
.timeline__row dd {
  width: 760px;
  flex-shrink: 0;
  padding: 6px 16px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
}
@media (max-width: 1000px) {
  .timeline__row dd {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .timeline__row dd {
    width: 100%;
  }
}

.access {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media (max-width: 767px) {
  .access {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
}
.access__map {
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  background: #d9d9d9;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: auto;
    aspect-ratio: 342/240;
  }
}
.access__info {
  width: 416px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .access__info {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}
.access__name {
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  color: #165e83;
  margin-bottom: 32px;
}
.access__addr {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #222222;
  margin-bottom: 16px;
}
.access__detail {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #222222;
}

.company > section.section--tight:first-of-type {
  padding-top: 120px;
}
.company .history {
  margin: 72px 0;
}
.company .reserve {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .company > section.section--tight:first-of-type {
    padding-top: 64px;
  }
  .company .history {
    margin: 40px 0;
  }
  .company .reserve {
    margin-top: 40px;
  }
}
