@charset "UTF-8";

.supportFlowKv__left {
  padding-right: 10px;
}

.supportFlowKv__right {
  max-width: 400px;
}

.kodomoStartIntro {
  display: flex;
  justify-content: space-between;
}

.kodomoStartIntro .kodomoStartIntro__txt {
  width: calc(100% - 340px);
}

.kodomoStartIntro .kodomoStartIntro__img {
  width: 300px;
}

.kodomoStartType {
  padding: 40px;
  background: var(--bgGray);
}

.kodomoStartType .kodomoStartType__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.8rem;
  line-height: 1.4;
}

.kodomoStartType .kodomoStartType__list li {
  padding: 0 0 0 37px;
  position: relative;
}

.kodomoStartType .kodomoStartType__list li .kodomoStartType__list--num {
  position: absolute;
  top: 4px;
  left: 0;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  color: var(--Main1);
  line-height: 1;
}

.kodomoStartType .kodomoStartType__list li .kodomoStartType__list--title {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 5px 0;
  padding: 7px 15px 9px;
  border-radius: 3px;
  color: var(--White);
  background: var(--Main1);
  line-height: 1;
}

.kodomoStartType .kodomoStartType__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 20px 40px;
  text-align: center;
}

.kodomoStartType .kodomoStartType__btn .balloon {
    display: inline-block;
    margin: 0 0 10px;
    padding: 3px 10px 3px;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--Yellow);
    border-radius: 10px;
    line-height: 1.4;
    position: relative
}

.kodomoStartType .kodomoStartType__btn .balloon::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 5px solid rgba(0,0,0,0);
    border-right: 5px solid rgba(0,0,0,0);
    border-top: 10px solid var(--Yellow);
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    transform: translateX(-50%)
}

.kodomoStartLearn {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.kodomoStartLearn .kodomoStartLearn__col {
  width: calc((100% - 60px) / 3);
  padding: 15px 15px 20px;
  border: 1px solid var(--lineColor);
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 4px 4px 0px rgba(15, 19, 80, .07);
}

@media screen and (min-width: 1025px) {
  .kodomoStartLearn .kodomoStartLearn__col {
    transition: all .2s ease;
  }
  .kodomoStartLearn .kodomoStartLearn__col:hover {
    border-color:var(--Main1);
    color: var(--Main1);
    box-shadow: none;
    transform: translateX(4px) translateY(4px)
  }
}

.kodomoStartLearn .kodomoStartLearn__col .kodomoStartLearn__col--img {
  margin: 0 0 10px;
}

.kodomoStartLearn .kodomoStartLearn__col .kodomoStartLearn__col--img img {
  border-radius: 10px;
}

.kodomoStartLearn .kodomoStartLearn__col .kodomoStartLearn__col--cmt {
  display: inline-block;
  margin: 0 0 7px;
  padding: 3px 10px;
  border-radius: 10px;
  background: #F3F6FA;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--Main1);
  line-height: 1.4;
  position: relative;
}

.kodomoStartLearn .kodomoStartLearn__col .kodomoStartLearn__col--cmt::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: calc(50% - 5px);
  border-top: 10px solid #F3F6FA;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.kodomoStartLearn .kodomoStartLearn__col .kodomoStartLearn__col--title {
  line-height: 1.4;
}

.componentBlockAbout {
  padding: 30px;
}

.componentBlockAbout>.item__inner {
    width: 100%;
    display: flex;
  gap: 40px;
  flex-direction: row-reverse;
}

.componentBlockAbout>.item__inner .item__textArea {
    width: 100%;
    max-width: 57%;
    min-width: 467px;
}

.componentBlockAbout>.item__inner .item__img {
    width: 400px;
}

@media screen and (max-width: 1024px) {
  .componentBlockAbout {
    padding: 15px;
  }
  .componentBlockAbout>.item__inner {
      width: 100%;
      display: block;
  }
  .componentBlockAbout>.item__inner .item__img {
      width: 100%;
    margin: 0 0 16px;
    text-align: center;
  }
  .componentBlockAbout>.item__inner .item__textArea {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
  }
}

.kodomoStartTokotoko {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-radius: 10px;
  background: var(--bgYellow);
}

.kodomoStartTokotoko .kodomoStartTokotoko__img {
  order: 1;
  max-width: 180px;
  width: 100%;
}

.kodomoStartTokotoko .kodomoStartTokotoko__img img {
  border: 1px solid var(--lineColor);
  border-radius: 10px;
}

.kodomoStartTokotoko .kodomoStartTokotoko__txt {
  order: 0;
  width: calc(100% - 220px);
}

@media screen and (min-width: 1025px) {
  .kodomoStartTokotoko .kodomoStartTokotoko__img img {
    transition: .2s;
  }

  .kodomoStartTokotoko .kodomoStartTokotoko__img a:hover img {
    opacity: .7;
  }
}

@media only screen and (max-width: 1024px) {

  .supportFlowKv__right {
    max-width: none;
  }

  .kodomoStartIntro {
    flex-direction: column;
    gap: 20px;
  }

  .kodomoStartIntro .kodomoStartIntro__txt {
    width: 100%;
  }

  .kodomoStartIntro .kodomoStartIntro__img {
    width: 100%;
    text-align: center;
  }

  .kodomoStartType {
    padding: 20px;
  }

  .kodomoStartType .kodomoStartType__list {
    gap: 10px;
    font-size: 1.6rem;
  }

  .kodomoStartType .kodomoStartType__list li {
    padding: 0 0 0 32px;
    position: relative;
  }

  .kodomoStartType .kodomoStartType__list li .kodomoStartType__list--num {
    top: 2px;
    font-size: 2.0rem;
  }

  .kodomoStartType .kodomoStartType__list li .kodomoStartType__list--title {
    padding: 5px 10px 7px;
  }

  .kodomoStartLearn {
    flex-direction: column;
    gap: 20px;
  }

  .kodomoStartLearn .kodomoStartLearn__col {
    width: 100%;
  }

  .kodomoStartLearn .kodomoStartLearn__col .kodomoStartLearn__col--img {
    text-align: center;
  }

  .kodomoStartTokotoko {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .kodomoStartTokotoko .kodomoStartTokotoko__img {
    order: 0;
    margin: 0 auto;
  }

  .kodomoStartTokotoko .kodomoStartTokotoko__txt {
    width: 100%;
  }

}