@charset "utf-8";

.philosophy{
  margin:0 auto 0;
  padding:5rem 0 0;
  max-width:770px;
  position:relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow:hidden;
}

.ripple-box{
  width: 42%;
  bottom: 0%;
  left: 10%;
}

.philosophy-txt{
  max-width:530px;
  padding-top:10rem;
}

.philosophy-txt h3{
  font-size:clamp(1.5rem, 1.318rem + 0.61vw, 2rem);
  margin-bottom:5rem;
}

.philosophy-txt > p:last-child{
  margin-top:7.5rem;
  font-size:clamp(1.125rem, 0.989rem + 0.45vw, 1.5rem);
}

.philosophy-list{
  margin-bottom:3.5rem;
  font-size:clamp(0.875rem, 0.784rem + 0.3vw, 1.125rem);
  display:flex;
}

.company{
  padding:5rem 0 0;
}

.company-txt{
  margin:3rem 0 5rem;
}

.company-list{
  display:flex;
  padding:2rem 0;
  border-bottom:0.5px solid #848580;
}

.company-list p{
  line-height:2;
}

.company-list p strong{
  font-size:14px;
  display:block;
}

.company-list p:first-child{
  width:20%;
}

.company-list p:last-child{
  width:80%;
}

.company iframe{
  border:none;
  width:100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}



@media screen and (max-width: 1024px) {
  .header .hamBtn{
    display:none;
  }
  .ripple-box {
    width: 60%;
    left: 0%;
    bottom:-5%;
  }
}

@media screen and (max-width: 767px) {
  .philosophy{
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .philosophy-txt {
    padding-top: 0rem;
  }
  .philosophy-list{
    margin-bottom:2rem;
  }
  .philosophy-txt h3{
    margin-bottom:4rem;
  }
  .philosophy-txt > p:last-child {
    margin-top: 4rem;
  }
  .company{
    padding: 100px 0 0;
  }
  .ripple-box {
    width: 90%;
    bottom: auto;
    top: 20%;
    left: auto;
    right: -25%;
  }
  .company-list{
    flex-direction: column;
    gap: 0.5rem;
  }
  .company-list p:first-child,
  .company-list p:last-child{
    width: 100%;
  }
  .company-txt {
    margin: 0rem 0 2rem;
  }
  .company iframe{
    height:300px;
  }
}