@charset "UTF-8";
/* CSS Document */

.flow__ul__li {
  display: flex;
  height: 400px;
}

.flow__ul__li:last-child {
  height: auto;
}

.flow__ul__li__number {
  width: 185px;
  line-height: 1;
}

.flow__ul__li__number small {
  display: block;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--green);
}

.flow__ul__li__number p {
  font-weight: 900;
  font-size: 10rem;
  color: var(--green);
}

.flow__ul__li__line {
  position: relative;
  width: 70px;
  height: 100%;
}

.flow__ul__li__line::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 14.5px;
  top: 80px;
  background: #898989;
}

.flow__ul__li__line::after {
  content: "";
  display: block;
  width: 4px;
  height: 0%;
  position: absolute;
  left: 13px;
  top: 80px;
  background: var(--green);
  transition: 2.5s;
}

.line-scroll__active .flow__ul__li__line::after {
  height: 100%;
}

.flow__ul__li__line span {
  position: relative;
  z-index: 1;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 55px;
  background: var(--green);
}

.flow__ul__li:last-child .flow__ul__li__line::before,
.flow__ul__li:last-child .flow__ul__li__line::after {
  content: none;
}

.flow__ul__li__text {
  flex: 1;
  text-align: left;
  margin-top: 35px;
}

.flow__ul__li__text h3 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

.flow__ul__li__text p {
  margin-top: 20px;
  font-size: 2rem;
  line-height: 2;
}
.flow{
  margin-top: 100px;
}
@media (max-width: 1025px) {
  .flow {
    /* border-radius: 50px 50px 0 0; */
    padding: 100px 0 150px;
    background: #F4F4F4;
    position: relative;
    z-index: 1;
margin-top:0px;
  }

  .flow__ul {
    width: 90%;
    margin: 0 auto;
  }

  .flow__ul__li {
    height: 200px;
  }
    .flow__ul__li:nth-child(3) {
    height: 300px;
  }

  /* .flow__ul__li:nth-child(4) {
    height: 400px;
  } */

  .flow__ul__li__number {
    width: 100px;
  }

  .flow__ul__li__number small {
    font-size: 2rem;
  }

  .flow__ul__li__number p {
    font-size: 5.5rem;
  }

  .flow__ul__li__line {
    width: 40px;
  }

  .flow__ul__li__line span {
    width: 20px;
    height: 20px;
    margin-top: 40px;
  }

  .flow__ul__li__line::after {
    left: 8px;
    top: 50px;
    width: 3px;
  }

  .flow__ul__li__line::before {
    left: 9.5px;
    top: 55px;
  }

  .flow__ul__li__text h3 {
    font-size: 2.4rem;
  }

  .flow__ul__li__text p {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}



.faq {
  padding: 250px 0 0;
}

.faq__dl {
  position: relative;
}

.faq__dl::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #F4F4F4;
  position: absolute;
  bottom: 0;
  left: 0;
}

.faq__dl::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--green);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: 0.5s;
}

.faq__dl:hover::after {
  width: 100%;
}

.faq__dl__active::after {
  width: 100%;
}

.faq__dl__dt {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 50px 0;
  cursor: pointer;
}

.faq__dl__dt__first {
  padding-top: 0;
}

.faq__dl__dt p {
  font-size: 10rem;
  color: var(--green);
  font-weight: 900;
  width: 130px;
  margin-top: -30px;
}

.faq__dl__dt h3 {
  font-size: 2.8rem;
  flex: 1;
}

.faq__dl__dt div {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 3px var(--green);
  background: var(--green);
  margin-left: 20px;
  transition: 0.5s;
}

.faq__dl__dt:hover div {
  transform: scale(1.2);
}

.faq__dl__dt div::before {
  content: "";
  width: 25px;
  height: 3px;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  position: absolute;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}

.faq__dl__dt div::after {
  content: "";
  width: 3px;
  height: 25px;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  position: absolute;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}

.faq__dl__active .faq__dl__dt div {
  background: #FFFFFF;
}

.faq__dl__active .faq__dl__dt div::before {
  background: var(--green);
}

.faq__dl__active .faq__dl__dt div::after {
  background: var(--green);
  transform: translate(-50%, -50%) rotate(90deg);
}



.faq__dl__dd {
  text-align: left;
  background: #F4F4F4;
  padding: 50px 0;
  display: flex;
}

.faq__dl__dd span {
  display: block;
  width: 130px;
}

.faq__dl__dd p {
  flex: 1;
  padding-right: 20px;
  font-size: 2rem;
  line-height: 2;
}

@media (max-width: 1025px) {
  .faq {
    border-radius: 50px 50px 0 0;
    padding: 100px 0 0px;
    background: #FFFFFF;
    margin-top: -50px;
    position: relative;
    z-index: 1;
  }

  .faq__dl {
    width: 90%;
    margin: 0 auto;
  }

}

@media (max-width: 599px) {
  .faq__dl__dt p {
    font-size: 4rem;
    width: 50px;
    margin-top: -10px;
  }

  .faq__dl__dt h3 {
    font-size: 1.6rem;
  }

  .faq__dl__dt div {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .faq__dl__dt div::before {
    width: 20px;
  }

  .faq__dl__dt div::after {
    height: 20px;
  }

  .faq__dl__dd span {
    width: 50px;
  }

  .faq__dl__dd p {
    font-size: 1.6rem;
  }
}

/* topMessege */
/* .topMessege {
  padding-top: 180px;
} */

.topMessege .fade strong {
  font-size: 8.2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.2rem;
  margin-bottom: 25px;
}

.topMessege__contents__background__text strong {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  letter-spacing: normal;
  margin-bottom: 0;
}

.topMessege h2 {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 100px;
}

.topMessege__contents {
  position: relative;
}

.topMessege__contents__background {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  padding: 200px 0;
  /* width: 80%; */
  height: 100%;
  background: var(--green);
  margin-left: auto;
  border-radius: 100px 0 0 0;
}

@media (max-width: 600px) {
  .topMessege__contents__background {

    padding: 0px 0;
    /* width: 80%; */

  }
  }


.topMessege__contents__background__image {
  position: sticky;
  margin-right: -100px;
  height: 100%;
  top: 175px;
  width: 35%;
  min-width: 350px;
  transform: translateX(-50%);
}

.topMessege__contents__background__image div {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
  margin-bottom: 50px;
}

.topMessege__contents__background__image div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.topMessege__contents__background__image p {
  margin-left: 50px;
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  color: #FFFFFF;
}

.topMessege__contents__background__image p span {
  display: block;
  font-size: 2.8rem;
}

.topMessege__contents__background__image div img {
  object-fit: cover;
}

.topMessege__contents__background__text {
  text-align: left;
  margin-left: 10%;
  margin-right: 23%;
  width: 60%;
  color: #FFFFFF;
}

.topMessege__contents__background__text h3 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 100px;
  letter-spacing: 0.2rem;
}

.topMessege__contents__background__text p {
  font-size: 2.4rem;
  line-height: 2;
  margin-bottom: 100px;
  font-weight: 400;
  /* word-break: auto-phrase; */
  text-align: justify;
}

.topMessege__contents__background__button a {
  font-size: 3.2rem;
  display: block;
  margin-left: auto;
  width: 400px;
  padding: 30px 0;
  background: #FFFFFF;
  border-radius: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--green);
  transition: 0.5s;
}

.topMessege__contents__background__button a:hover {
  transform: scale(1.05);
}

.topMessege__contents__background__button a .arrow {
  width: 25px;
  height: 25px;
  border-right: solid 3.5px var(--green);
  border-bottom: solid 3.5px var(--green);
  transform: rotate(45deg);
}

.topMember {
  position: relative;
  z-index: 1;
  /* border-radius: 100px 100px 0 0; */
  /* padding: 200px 0 300px; */
  /* margin-top: -100px; */
  background: var(--green);
  overflow-x: hidden;
}

.topMember strong {
  font-size: 8.2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.2rem;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.topMember h2 {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 100px;
  color: #FFFFFF;
}

.topMember__ul {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.topMember__ul__li__image {
  width: 90%;
  margin: 0 auto;
}

.topMember__ul__li__image div {
  position: relative;
  width: 90%;
  border-radius: 100px;
  overflow: hidden;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
}

.topMember__ul__li:nth-child(even) .topMember__ul__li__image div {
  margin-left: auto;
}

.topMember__ul__li__image div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.topMember__ul__li__contents {
  display: block;
  width: 70%;
  max-width: 900px;
  margin-left: auto;
  background: #FFFFFF;
  border-radius: 100px 0 0 100px;
  padding: 100px 0;
  margin-top: -5%;
  position: relative;
}

@media (max-width: 600px) {
  .topMember__ul__li__contents {
width:90%;
  }
}

.topMember__ul__li:nth-child(even) .topMember__ul__li__contents {
  margin-left: 0;
  border-radius: 0 100px 100px 0;
}

.topMember__ul__li__contents__text {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 2.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.topMember__ul__li__contents div {
  display: flex;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  justify-content: right;
  gap: 30px;
  align-items: center;
}

.topMember__ul__li__contents div p {
  font-size: 2.2rem;
  text-align: left;
}

.topMember__ul__li__contents div span {
  position: relative;
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  transition: 0.5s;
}

.topMember__ul__li__contents div span::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-right: solid 4px var(--white);
  border-bottom: solid 4px var(--white);
  position: absolute;
  top: 37.5%;
  left: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.topMember__ul__li__contents:hover div span {
  transform: scale(1.1);
}

@media (max-width: 1290px) {
  .topMessege__contents__background {
    width: 100%;
    flex-direction: column;
    padding-top: 0;
    margin-top: 40%;
    /* border-radius: 0; */
  }

  .topMessege__contents__background__image {
    position: relative;
    transform: none;
    margin-left: auto;
    width: 80%;
    max-width: 500px;
    top: 0;
    margin-top: -25%;
    margin-right: unset;
  }

  .topMessege__contents__background__image div {
    border-radius: 40px 0 0 40px;
  }

  .topMessege__contents__background__image p {
    position: absolute;
    top: 10%;
    right: 5%;
    writing-mode: vertical-rl;
  }

  .topMessege__contents__background__text {
    width: 90%;
    margin: 0 auto;
  }

  .topMessege__contents__background__button a {
    margin: 0 auto;
  }

  .topMember__ul__li__image {
    width: 100%;
  }

  .topMember__ul__li__image div {
    width: 100%;
    border-radius: 0;
  }

  .flow {
    /* margin-top: -50px; */
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 1025px) {
  .topMessege__contents__background {
    border-radius: 0;
  }
}

@media (max-width: 599px) {
  .topMessege {
    padding-top: 150px;
  }

  .topMessege .fade strong {
    font-size: 2.6rem;
  }

  .topMessege__contents__background__text strong {
    font-size: inherit;
  }

  .topMessege h2 {
    font-size: 1.6rem;
  }

  .topMessege__contents__background__image p {
    font-size: 1.4rem;
  }

  .topMessege__contents__background__image p span {
    font-size: 1.8rem;
  }

  .topMessege__contents__background__text h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .topMessege__contents__background__text p {
    font-size: 1.6rem;
  }

  .topMessege__contents__background__button a {
    font-size: 1.8rem;
    width: 100%;
    max-width: 400px;
  }

  /* .topMember {
    padding: 100px 0 200px;
    border-radius: 50px 50px 0 0;
  } */

  @media (max-width: 599px) {
    .topMember {
      padding: 0px 0 0px;
      border-radius: 0px 0px 0 0;
    }
  }

  .topMember strong {
    font-size: 2.6rem;
  }

  .topMember h2 {
    font-size: 1.6rem;
    margin-bottom: 80px;
  }

  .topMember__ul__li__contents {
    padding: 30px 0;
    border-radius: 30px 0 0 30px;
  }

  .topMember__ul__li:nth-child(even) .topMember__ul__li__contents {
    border-radius: 0 30px 30px 0;
  }

  .topMember__ul__li__contents__text {
    font-size: 1.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .topMember__ul__li__contents div p {
    font-size: 1.4rem;
  }

  .topMember__ul__li__contents div span {
    width: 40px;
    height: 40px;
  }

  .topMember__ul__li__contents div span::after {
    width: 15px;
    height: 15px;
    border-right: solid 3px var(--white);
    border-bottom: solid 3px var(--white);
    top: 33%;
  }

  /* .inner-lec--lower{
    grid-template-columns: 22% 2% 1fr !important;
} */
  .inner-lec--lower p {
    font-size: 1.3rem !important;
    padding: unset;
  }

  .inner-lec--upper {
    padding: 2%;
  }

  .inner-lec--upper h3:after {
    padding: 0.6rem 1.4rem;
    font-size: 2rem;
  }
}

.spacer_15rem {
  height: 15rem;
}

.inner-lec--upper h3 {
  font-size: clamp(3rem, 2.5146rem + 2.0712vw, 3.8rem) !important;
}

.inner-lec--lower p {
  font-size: clamp(1rem, 0.3472rem + 1.3356vw, 1.4rem);
  padding: unset;
}

.inner-lec--lower {
  display: grid;
  grid-template-columns: 22% 2% 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  place-items: start;
  padding: 2% 8%;

}


