@charset "UTF-8";


.page-about__index {
  padding: 10rem 0;
}

.page-about__index-toptext {
  text-align: left;
  font-size: 1.8rem;
}

.page-about__index-container {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about__index-container.show {
  opacity: 1;
  transform: translateY(0);
}

.page-about__index-container:not(:first-of-type) {
  margin-top: 12rem;
}

.page-about__index-container.--reverse {
  flex-direction: row-reverse;
}

.page-about__index-container-left {
  box-shadow: 2rem 2rem 0 0rem #53cbe0;
  position: relative;
  z-index: 1;
  margin-right: -12rem;
}

.page-about__index-container-left.--reverse {
  margin-left: -12rem;
  margin-right: 2rem;
}

.page-about__index-container-right {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  padding: 2.4rem;
  max-width: 49rem;
  min-height: 27rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.page-about__index-container-right-ttl {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.right-ttl-number {
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: 6.4rem;
}

.right-ttl-text {
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 1;
}

.right-ttl-text span {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.page-about__index-container-right-text {
  margin-top: 2.4rem;
  margin-left: 9rem;
  font-size: 1.5rem;
}

.page-about__index-company {
  text-align: center;
  max-width: 70rem;
  margin: auto;
  margin-top: 14rem;
}

.page-about__index-company-ttl {
  font-size: 6.4rem;
  font-weight: bold;
  font-family: "Fugaz One", serif;
  font-weight: 400;
  text-align: center;
  color: #050408;
  line-height: 1;
}

.page-about__index-company-container {
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about__index-company-container.show {
  opacity: 1;
  transform: translateY(0);
}

.page-about__index-company-container-list {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #050408;
}

.page-about__index-company-container-list:first-of-type {
  border-top: 1px solid #050408;
}

.page-about__index-company-container-list-left {
  width: 50%;
  font-weight: bold;
  font-size: 1.6rem;
}

.page-about__index-company-container-list-right {
  width: 50%;
  font-size: 1.6rem;
}


@media (max-width: 768px) {

  .page-about__index {
    padding: 5rem 0;
    font-size: 1.6rem;
  }

  .page-about__index-container {
    display: block;
    box-shadow: 1rem 1rem 0 0rem #53cbe0;
  }

  .page-about__index-container-left.--reverse {
    margin: 0;
    box-shadow: none;
  }

  .page-about__index-container-left{
    margin: 0;
    box-shadow: none;
  }

  .page-about__index-container-right-text {
    margin-left: 0;
  }

  .right-ttl-number{
    font-size: 4.8rem;
  }

  .right-ttl-text{
    font-size: 2.2rem;
  }
  
  .page-about__index-container:not(:first-of-type){
    margin-top: 4rem;
  }
  
  .page-about__index-container-right{
    padding: 2.4rem 1.2rem;
  }

  .page-about__index-company{
    margin-top: 4rem;
  }

  .page-about__index-company-ttl{
    font-size: 4.8rem;
  }

  .page-about__index-company-container-list{
    padding: 1rem 0;
    gap: 1rem;
  }

  .page-about__index-company-container-list-left{
    width: 25%;
  }

  .page-about__index-company-container-list-right{
    width:75%;
    text-align: left;
  }

}