@charset "UTF-8";

.section__about {
  padding: 80px 0;
}

.section__topic {
  margin-top: var(--headerHeight);
  padding: 0 var(--contentPadding);
}

.about__content {
  margin-top: 60px;
  width: 100%;
  height: auto;
  min-height: 531px;
  position: relative;
}

.about__content::after {
  content: "";
  display: block;
  width: 264px;
  height: 217px;
  opacity: 0.8;
  background-image: url(../images/dot.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 60px 60px;
  position: absolute;
  top: 153px;
  right: 0;
  z-index: 0;
}

.about__content:nth-of-type(2)::after {
  content: "";
  width: 264px;
  height: 217px;
  opacity: 0.8;
  background-image: url(../images/dot.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 60px 60px;
  position: absolute;
  top: 153px;
  left: 0;
  z-index: 0;
}

.about__img {
  display: block;
  width: 91.4%;
  max-width: 343px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.aboutText {
  background-color: var(--White);
  padding: 24px 16px;
  width: calc(100% - 15.2%);
  max-width: 318px;
  height: auto;
  margin-top: -30px ;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  z-index: 50;
}

.aboutText--right {
  margin-left: auto;
  margin-right: 0;
}

.aboutText__topic {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.aboutText__txt {
  margin-top: 20px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* about */
@media screen and (min-width: 1024px) {
  .section__about {
    padding: 0 0 80px;
  }
}