@charset "utf-8";
#root {
  position: relative;
}
.pg-top__box {
  margin-top: 0;
}
.company__bg {
      position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
    min-height: 1600px;
    object-fit: cover;
}

.greeting {
      width: clamp(32.5rem, -5.75rem + 79.69vw, 89.875rem);
    margin-left: auto;
    padding-top: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
}
.greeting__inner {
  padding-right: clamp(1.25rem, -5.917rem + 14.93vw, 12rem);
}
.greeting__content {
      margin-top: clamp(1.25rem, -0.417rem + 3.47vw, 3.75rem);
    display: flex;
    column-gap: clamp(1.25rem, -1.25rem + 5.21vw, 5rem);
}
.greeting__img {
      width: clamp(12.375rem, 3.292rem + 18.92vw, 26rem);
    height: auto;
    object-fit: cover;
    aspect-ratio: 416/484;
    border-radius: 5px;
  min-width: 198px;
}
.greeting__text {
      font-size: clamp(0.75rem, 0.417rem + 0.69vw, 1.25rem);
    font-weight: 500;
    line-height: 2;
}
.greeting__name {
  margin-top: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.greeting-name__1 {
      font-weight: 400;
    color: #2A60B6;
}
.greeting-name__2 {
      font-size: clamp(1.25rem, 0.917rem + 0.69vw, 1.75rem);
    font-weight: 700;
    color: #2A60B6;
}

.history {
      padding-top: clamp(3.75rem, -0.417rem + 8.68vw, 10rem);
    width: clamp(32.5rem, -5.75rem + 79.69vw, 89.875rem);
    margin-left: auto;
}
.history__inner {
  padding-right: clamp(2.5rem, -3.833rem + 13.19vw, 12rem);
}
.history__items {
  margin-top: clamp(1.75rem, -0.167rem + 3.99vw, 4.625rem);
  padding-left: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.history__item {
      display: flex;
    column-gap: 40px;
    align-items: baseline;
    padding-left: 40px;
  position: relative;
}
.history-item__left {
      font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
    font-weight: 700;
    color: #2A60B6;
  white-space: nowrap;
}
.history-item__left strong {
  font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
}
.history-item__right {
      font-size: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
    font-weight: 500;
    color: #2A60B6;
    padding-bottom: clamp(1.875rem, 0.625rem + 2.6vw, 3.75rem);
}
.history__item:before {
        content: '';
    width: 17px;
    height: 17px;
    background: #2A60B6;
    position: absolute;
    left: 0;
    top: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    border-radius: 50%;
}
.history__item:after {
        content: '';
    width: 1px;
    height: 100%;
    background: #2A60B6;
    position: absolute;
    left: 8px;
    top: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
}
.history__item:last-child::after {
  display: none;
}

.info {
      padding-top: clamp(3.75rem, -0.417rem + 8.68vw, 10rem);
    width: clamp(32.5rem, -5.75rem + 79.69vw, 89.875rem);
    margin-left: auto;
  padding-bottom: clamp(5rem, 3.333rem + 3.47vw, 7.5rem);
}
.info__inner {
  padding-right: clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
}
.info__items {
  margin-top: clamp(1.25rem, -0.417rem + 3.47vw, 3.75rem);
}
.info__item {
      display: flex;
    padding: clamp(0.75rem, 0.333rem + 0.87vw, 1.375rem) clamp(0.625rem, -0.5rem + 2.34vw, 2.313rem);
  border-radius: 3px;
}
.info__item:nth-child(2n+1) {
  background-color: #fff;
}
.info__left {
      width: 33%;
    font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    color: #2A60B6;
    font-weight: 500;
}
.info__right {
      width: 67%;
    font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    font-weight: 500;
    color: #2A60B6;
}
.info__right a {
      color: #2A60B6;
    transition: all 0.5s;
}
.info__right a:hover {
    opacity: 0.5;
}

@media (max-width: 767px) {
  .company__bg {
    min-height: 1800px;
  }
  .greeting {
    width: 100%;
  }
  .greeting__inner {
    padding-left: 20px;
  }
  .greeting__content {
        flex-direction: column;
    align-items: center;
    row-gap: 28px;
  }
  .greeting__text {
    font-size: 14px;
  }
  
  .history {
    width: 100%;
  }
  .history__inner {
    padding-left: 40px;
  }
  .history__item {
        flex-direction: column;
    row-gap: 3px;
    padding-left: 26px;
  }
  .history__item:before {
    width: 9px;
    height: 9px;
  }
  .history__item:after {
    left: 4px;
  }
  
  .info {
    width: 100%;
  }
  .info__inner {
    padding-left: 20px;
  }
  .info__container {
        max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 374px) {
  .greeting__text {
    font-size: 12px;
  }
  .history__items {
    padding-left: 0;
  }
  .history-item__right {
    font-size: 14px;
  }
}