:root {
  --primary: #f6e9e6;
  --secondary: #e6c0bd;
}

img {
  width: 100%;
  height: auto;
}

.footerWrap {
  background-color: #fff;
  padding-top: 1rem;
}

.firstAbout {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.firstAbout h1 {
  padding: 2.5rem 0;
  font-size: 1.5rem;
  letter-spacing: 0.25rem;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .firstAbout h1 {
    padding: 4rem 0;
    font-size: 2rem;
  }
}

.FV {
  background-color: var(--primary);
  display: flex;
  flex: 1;
  flex-direction: column;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .FV {
    flex-direction: row;
  }
}
.FV .Pic {
  flex: 1;
  opacity: 0;
  transform: translateX(-10%);
}
.FV .Pic.animation {
  opacity: 1;
  transform: translateX(0);
  transition: 0.5s;
}
.FV .Text {
  font-size: 0.9rem;
  line-height: 1.5rem;
  text-align: center;
  padding: 2rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .FV .Text {
    align-items: flex-start;
  }
}
.FV .Text .title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
}
@media (min-width: 1024px) {
  .FV .Text .title {
    font-size: 2rem;
    line-height: 3rem;
    text-align: left;
  }
}
.FV .Text .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .FV .Text .content p {
    text-align: left;
  }
}

.sectionBlock {
  background-color: white;
}
.sectionBlock .sectionWrap {
  padding: 2rem 0 5rem;
  margin: auto;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  row-gap: 1rem;
}
@media (min-width: 1024px) {
  .sectionBlock .sectionWrap {
    max-width: 1000px;
    padding: 5rem 0;
  }
}
.sectionBlock .sectionWrap .textBox {
  flex: 1;
  padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10%);
}
.sectionBlock .sectionWrap .textBox.animation {
  opacity: 1;
  transform: translateX(0);
  transition: 0.5s 0.5s;
}
.sectionBlock .sectionWrap .textBox h6 {
  font-weight: bold;
}
.sectionBlock .sectionWrap .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}
.sectionBlock .sectionWrap .picBox {
  margin: auto;
  width: 80%;
}
@media (min-width: 1024px) {
  .sectionBlock .sectionWrap .picBox {
    width: 50%;
  }
}
.sectionBlock:last-child .picBox {
  width: 50%;
}
@media (min-width: 1024px) {
  .sectionBlock:last-child .picBox {
    width: 30%;
  }
}
.sectionBlock:nth-child(even) {
  background-color: var(--primary);
}
.sectionBlock:nth-child(even) .sectionWrap {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .sectionBlock:nth-child(even) .sectionWrap {
    flex-direction: row-reverse;
  }
}
.sectionBlock:nth-child(even) .sectionWrap .picBox {
  opacity: 0;
  transform: rotate(0deg);
}
.sectionBlock:nth-child(even) .sectionWrap .picBox.animation {
  opacity: 1;
  transition: 0.5s;
  transform: rotate(15deg);
}
.sectionBlock:nth-child(odd) .sectionWrap {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .sectionBlock:nth-child(odd) .sectionWrap {
    flex-direction: row;
  }
}
.sectionBlock:nth-child(odd) .picBox {
  opacity: 0;
  transform: rotate(0deg);
}
.sectionBlock:nth-child(odd) .picBox.animation {
  opacity: 1;
  transition: 0.5s;
  transform: rotate(-15deg);
} /*# sourceMappingURL=about.css.map */
