.greeting {
  display: flex;
  margin-top: 5rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .greeting {
    flex-direction: column-reverse;
  }
}
.greeting__left {
  flex: 0 0 800px;
}
@media screen and (max-width: 1400px) {
  .greeting__left {
    flex: 0 0 60%;
  }
}
@media screen and (max-width: 1024px) {
  .greeting__left {
    padding-top: 5rem;
  }
}
.greeting__right {
  flex: 1;
  text-align: center;
}
.greeting__right img {
  max-width: 100%;
}
@media screen and (max-width: 1400px) {
  .greeting__right {
    flex: 0 0 40%;
  }
}
.greeting__large-text {
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: var(--font-size30);
  color: #000;
}
@media screen and (max-width: 480px) {
  .greeting__large-text br {
    display: none;
  }
}
.greeting__small-text {
  font-size: var(--font-size16);
  line-height: 1.64;
  color: #000;
}
.greeting__small-text + .greeting__small-text {
  margin-top: 1rem;
}

.business {
  position: relative;
  margin-top: 5rem;
}
.business__image {
  margin-top: 2.4rem;
}
@media screen and (max-width: 800px) {
  .business__image {
    margin-top: 6.25vw;
  }
}
.business__image img {
  width: 100%;
}
.business__text {
  margin-top: 2rem;
  font-size: var(--font-size20);
  color: #000;
}
.business__items {
  position: relative;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .business__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .business__items {
    margin-top: 6.25vw;
  }
}
@media screen and (max-width: 640px) {
  .business__items {
    grid-template-columns: 1fr 1fr;
  }
}
.business__item {
  position: relative;
}
.business__item img {
  width: 100%;
}
.business__item__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  font-weight: 600;
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 4px 5px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1400px) {
  .business__item__text {
    font-size: calc(var(--font-size26) * 0.8);
  }
}
@media screen and (max-width: 800px) {
  .business__item__text {
    font-size: calc(var(--font-size26) * 0.7);
    padding: 2rem;
  }
}

.objectives {
  position: relative;
  margin-top: 5rem;
}
.objectives__image img {
  width: 100%;
}
.objectives__slogn {
  position: relative;
  z-index: 2;
  /*margin-top:-6.9rem;*/
  padding: 0;
}
@media screen and (max-width: 640px) {
  .objectives__slogn {
    padding: 0 2rem;
  }
}
.objectives__slogn p {
  /*padding:4.6rem 20px 0;*/
  background-color: #fff;
  font-weight: 700;
  font-size: 3.6rem;
  text-align: center;
  color: #000;
}
.objectives__text {
  margin-top: 3rem;
  font-size: var(--font-size20);
  line-height: 1.5;
  text-align: center;
  color: #000;
}
.objectives__text p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .objectives__text {
    margin-top: 0;
  }
}

.ci {
  position: relative;
  margin-top: 5rem;
}
.ci__top {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.ci__top__image {
  position: relative;
  width: 40%;
}
.ci__top__image img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .ci__top__image {
    width: 100%;
  }
}
.ci__top__content {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .ci__top__content {
    width: 100%;
    margin-top: 3rem;
    justify-content: inherit;
    align-items: flex-start;
  }
}
.ci__top__title {
  font-weight: 700;
  font-size: var(--font-size30);
  text-align: left;
  color: #000;
}
.ci__top__text {
  margin-top: 2rem;
  font-size: var(--font-size16);
  line-height: 1.5;
  text-align: left;
  color: #000;
}
.ci__combination {
  position: relative;
  margin-top: 5rem;
}
.ci__combination__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 800px) {
  .ci__combination__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .ci__combination__items {
    grid-template-columns: 1fr 1fr;
  }
}
.ci__combination__items > div img {
  width: 100%;
}

.history-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.history {
  position: relative;
  height: 100%;
  margin-top: 5rem;
}
.history__bar {
  position: absolute;
  left: 0.5rem;
  top: 2.6rem;
  width: 1px;
  height: 100%;
  background-color: rgba(232, 232, 232, 0.7);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .history__bar {
    height: calc(100% - 159px);
  }
}
@media screen and (max-width: 480px) {
  .history__bar {
    left: 0;
    height: calc(100% - 213px);
  }
}
.history__bar__on {
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #519812;
}
.history__bar__pointer {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  z-index: 2;
  background-color: #519812;
  border-radius: 50%;
  box-shadow: 0 12px 16px 0 rgba(32, 200, 90, 0.24);
  left: -0.7rem;
  bottom: 0;
}
.history__bar__pointer::before {
  display: block;
  position: absolute;
  content: "";
  width: 3rem;
  height: 3rem;
  background-color: #519812;
  border-radius: 50%;
  left: -1rem;
  top: -1rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: wave 2s cubic-bezier(1, 2, 0.66, 3) infinite;
}
.history .year {
  position: relative;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  padding-bottom: 5rem;
}
.history .year::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0.4rem;
  width: 1px;
  height: 100%;
  background-color: rgba(232, 232, 232, 0.7);
}
.history .year:last-child::before {
  display: none;
}
@media screen and (max-width: 480px) {
  .history .year {
    padding-left: 0;
  }
}
.history .year--even {
  text-align: right;
  padding-left: 0;
  padding-right: calc(50% + 3rem);
}
.history .year--even .year__title::before {
  left: auto;
  right: -3.7rem;
}
@media screen and (max-width: 480px) {
  .history .year--even .year__title::before {
    right: auto;
    left: -3.7rem;
  }
}
@media screen and (max-width: 480px) {
  .history .year--even {
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
  }
}
.history .year__title {
  flex: none;
  position: relative;
  font-weight: 700;
  font-size: var(--font-size30);
  color: #519812;
  padding-left: 2rem;
}
.history .year__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #519812;
  border-radius: 50%;
  top: 1.2rem;
  left: 0;
}
@media screen and (max-width: 800px) {
  .history .year__title::before {
    top: 0.85rem;
  }
}
.history .year__items {
  margin-top: 0;
  padding-left: 2rem;
}
.history .year__items li {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.history .year__items li + li {
  margin-top: 1rem;
}
.history .year__items .date {
  flex: none;
  display: block;
  font-size: 1.8rem;
  color: #b8b8b8;
  min-width: 5rem;
}
.history .year__items .text {
  margin-left: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: #000;
  line-height: 1.43;
}
.history__image {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 410px;
  gap: 10px;
  margin-top: 5px;
}
.history__image__item img {
  width: 100%;
}

@keyframes wave {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.1);
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}
.organization {
  margin-top: 5rem;
}
.organization__chat {
  position: relative;
  width: 100%;
  max-width: 1137px;
  margin: 0 auto;
  text-align: center;
}
.organization__chat img {
  max-width: 100%;
}
.organization__top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.organization .department {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 24.7rem;
  height: 7rem;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
}
.organization .department--ceo {
  background-color: #286705;
}
.organization__etc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .organization__etc {
    grid-template-columns: 1fr;
  }
}
.organization__etc__item {
  padding: 2rem;
  border: 1px solid #ccc;
  font-size: var(--font-size16);
  color: #000;
  line-height: 1.5;
}
.organization__etc__item .sub-title {
  margin-bottom: 1.5rem;
}

.vision {
  position: relative;
  margin-top: 5rem;
}
.vision__text1 {
  font-size: 3.6rem;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.vision__text2 {
  font-size: 2rem;
  color: #000;
  margin-top: 1.6rem;
}
.vision__box {
  position: relative;
  margin-top: 5rem;
  text-align: center;
}
.vision__round-text {
  position: relative;
  display: inline-block;
  width: 28rem;
  height: 6rem;
  background: linear-gradient(90deg, rgb(81, 152, 18) 0%, rgb(47, 91, 7) 100%);
  color: #fff;
  border-radius: 21rem;
  text-align: center;
  line-height: 6rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.vision__slogn {
  position: relative;
  margin-top: 3rem;
  font-size: 3.6rem;
  color: #000;
  font-weight: 700;
}
.vision__image {
  position: relative;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 702px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.vision__image img {
  width: 100%;
}