@charset "UTF-8";
/* CSS Document */

/* .philosophy__top {
  position: relative;
  width: 90%;
  margin: 180px auto 0;
  overflow: hidden;
  border-radius: 100px;
  margin-bottom: 20px;
}

.philosophy__top__image {
  min-height: 350px;
  object-fit: cover;
}

.philosophy__top::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.philosophy__top h2 {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 1rem;
  color: #FFFFFF;
}

.pan {
  width: calc(90% - 200px);
  margin: 0 auto 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
}

.pan span {
  display: block;
  font-size: 2.6rem;
}

.pan__current {
  color: var(--green);
}

.pan a {
  transition: 0.5s;
}

.pan a:hover {
  color: var(--green);
}

.philosophy__contents {
  width: 90%;
  max-width: 1280px;
  padding: 0 0 300px;
  margin: 0 auto;
}

.philosophy__contents strong {
  font-size: 8.2rem;
  font-weight: 700;
  color: var(--green);
}

.philosophy__contents h2 {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 80px;
} */

.philosophy__contents__ul {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 50px;
}

.philosophy__contents__ul__li {
  width: calc(100% / 2 - 25px);
  border: solid 5px #6CB047;
  border-radius: 0 100px 0 100px;
  overflow: hidden;
}

.philosophy__contents__ul__li:nth-child(2) {
  border: solid 5px #239F4B;
}

.philosophy__contents__ul__li:nth-child(3) {
  border: solid 5px #007C47;
}

.philosophy__contents__ul__li:nth-child(4) {
  border: solid 5px #00603E;
}

.philosophy__contents__ul__li h3 {
  padding: 20px 0 20px 5%;
  background: #6CB047;
  color: #FFFFFF;
  text-align: left;
  font-size: 3rem;
}

.philosophy__contents__ul__li:nth-child(2) h3 {
  background: #239F4B;
}

.philosophy__contents__ul__li:nth-child(3) h3 {
  background: #007C47;
}

.philosophy__contents__ul__li:nth-child(4) h3 {
  background: #00603E;
}

.philosophy__contents__ul__li p {
  text-align: center;
  width: 90%;
  padding: 80px 0;
  margin: 0 auto;
  font-size: 2.8rem;
  line-height: 2;
  color: #6CB047;
  font-weight: 700;
}

.philosophy__contents__ul__li:nth-child(2) p {
  color: #239F4B;
}

.philosophy__contents__ul__li:nth-child(3) p {
  color: #007C47;
}

.philosophy__contents__ul__li:nth-child(4) p {
  color: #00603E;
}

.philosophy__contents__ul__li ul {
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  gap: 20px
}

.philosophy__contents__ul__li ul li {
  width: calc(100% / 2 - 10px);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #00603E;
  list-style: disc;
}

@media (max-width: 1025px) {
  .philosophy__top {
    margin-top: 100px;
    width: 100%;
    border-radius: 0;
  }

  .pan {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .philosophy__contents__ul__li {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .philosophy__top h2 {
    font-size: 2.6rem;
    text-align: center;
    width: 100%;
    left: 0;
  }

  .pan {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }

  .pan span {
    font-size: 1.2rem;
  }

  .philosophy__contents strong {
    font-size: 2.8rem;
  }

  .philosophy__contents h2 {
    font-size: 1.6rem;
  }

  .philosophy__contents__ul__li h3 {
    font-size: 2.8rem;
  }

  .philosophy__contents__ul__li p {
    font-size: 2.2rem;
    padding: 40px 0;
  }

  .philosophy__contents__ul__li ul li {
    font-size: 1.5rem;
  }

  .philosophy__contents {
    padding-bottom: 200px;
  }
}