/* About */

.about-main-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 238, 255);
  padding: 10px;
  border-radius: 10px;
}
.about-main-title-img {
  flex: 1;
}
.about-main-title-text {
  padding: 10px;
  font-size: 18px;
  flex: 2;
  font-family: 'Noto Sans JP';
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.about-midashi-p {
  font-size: 20px;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .about-main-title-wrapper {
    flex-direction: column;
    padding: 20px;
  }
  .about-main-title-img {
    width: 60%;
    flex: 1;
  }
  .about-main-title-text {
    font-size: 16px;
    flex: 1;
  }
  .about-h2 {
    text-align: center;
    font-size: 22px;
  }
  .about-midashi-p {
    font-size: 16px;
    margin-top: 10px;
  }
}
.about-main-title-wrapper2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.about-main-title-img2 {
  flex: 3;
}
.about-main-title-text2 {
  padding: 10px;
  font-size: 18px;
  flex: 5;
  font-family: 'Noto Sans JP';
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 10px;
}
@media (max-width: 768px) {
  .about-main-title-wrapper2 {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .about-main-title-img2 {
    width: 100%;
    flex: 1;
  }
  .about-main-title-text2 {
    font-size: 16px;
    flex: 1;
    padding: 0;
    align-items: center;
  }
  .about-main-title-text2 h2 {
    text-align: center;
    font-size: 22px;
  }
}
.about-graph-wrapper {
  display: flex;
  gap: 20px;
}

.about-graph-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 20px;
}
.about-graph-title {
  width: 94%;
  background-color: gray;
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  text-align: center;
}
.graph-text {
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .about-graph-wrapper {
    flex-direction: column;
  }
}

.about-list-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(206, 235, 250);
  padding: 30px;
}
.about-list-wrapper ul {
  width: 100%;
  margin: 0 auto;
}
.about-list-item-text {
  font-size: 20px;
  padding: 10px 0;
  font-weight: bold;
  border-bottom: 1px solid #ffffff;
}
.about-list-image {
  width: 45%;
}
.effect-img {
  width: 100%;
  background-image: url(../images/effect_01.jpg);
  height: 300px;
  background-size: cover;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .effect-img {
    height: 220px;
  }
}
