@charset "UTF-8";
/* CSS Document */
/*----------ヒーローセクション----------*/
.section-top {
  background: #edc14f url("../about_img/hero_img.png");
  background-size: 58% auto;
  background-repeat: no-repeat;
  background-position: center;
  height: 800px;
  margin: 3px auto 60px;
  position: relative;
}
.section-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 62px;
  background: url("../top_img/top-nami_line.png") repeat-x left top;
  background-size: 100% auto;
}
.section-top h2 {
  font-family: Kiwi Maru;
  font-size: 5.2rem;
  color: #FFF;
  padding-top: 60px;
  padding-left: 10vw;
}
/*----------tablet版ヒーローセクション----------*/
@media (min-width: 881px) and (max-width: 1100px) {
  .section-top {
    background: #edc14f url("../about_img/hero_img.png");
    background-size: 65% auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 680px;
    margin: 3px auto 60px;
    position: relative;
  }
  .section-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: -12px;
    width: 100%;
    height: 62px;
    background: url("../top_img/top-nami_line.png") repeat-x left top;
    background-size: 100% auto;
  }
  .section-top h2 {
    padding: 35px 0 0 0;
    font-size: 3.6rem;
    padding-top: 60px;
    padding-left: 10vw;
  }
}
@media (min-width: 451px) and (max-width: 880px) {
  .section-top {
    background: #edc14f url("../about_img/hero_img.png");
    background-size: 65% auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 580px;
    margin: 3px auto 60px;
    position: relative;
  }
  .section-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: -12px;
    width: 100%;
    height: 62px;
    background: url("../top_img/top-nami_line.png") repeat-x left top;
    background-size: 100% auto;
  }
  .section-top h2 {
    padding: 35px 0 0 0;
    font-size: 3.6rem;
    padding-top: 45px;
    padding-left: 10vw;
  }
}
/*----------mobile版ヒーローセクション----------*/
@media(max-width: 450px) {
  .section-top {
    background: #edc14f url("../about_img/mobile-hero_img.png");
    background-size: 62% auto;
    background-repeat: no-repeat;
    background-position: center 30vw;
    height: 550px;
    margin: 3px auto 60px;
    position: relative
  }
  .section-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 100%;
    height: 62px;
    background: url("../top_img/top-nami_line.png") repeat-x left top;
    background-size: 100% auto;
  }
  .section-top h2 {
    padding: 30px 0 0 0;
    font-size: 3.6rem;
    width: 290px;
    margin: 0 auto;
  }
}
/*----------メニューセクション----------*/
/* ボタン共通設定 */
.section-about_menu ul {
  display: flex;
  justify-content: space-evenly;
  margin: 60px;
}
.section-about_menu ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn03 {
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  text-align: center;
  background: transparent;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
}
/*hoverをした後のボタンの形状*/
.btn03:hover {
  border-color: transparent;
}
/*ボタンの中のテキスト*/
.btn03 span {
  position: relative;
  z-index: 2; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  background: #2a9eb8;
  font-family: Kiwi Maru;
  border-radius: 15px;
  font-size: 1.6rem;
  line-height: 1.5em;
  width: 185px;
  height: 60px;
  color: #FFF;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}
/*== 下に押し込まれる（立体が平面に） */
/*影の設定*/
.pushdown:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: #e8652b;
}
/*hoverの際にY軸に4pxずらす*/
.pushdown:hover span {
  background-color: #035589;
  color: #fff;
  transform: translateY(4px);
}
/*----------モバイル版メニューセクション----------*/
@media(max-width: 920px) {
  .btn03 span {
    width: 132px;
  }
  .section-about_menu ul {
    display: grid;
    width: fit-content;
    column-gap: 2em;
    grid-template-columns: repeat(2, auto);
    margin: 0 auto 45px;
  }
  .section-about_menu ul li {
    font-size: 1.3rem;
    width: 150px;
    padding: 4px 0px 5px 15px;
    margin-bottom: 15px;
  }
  .voice_of-guardian {
    font-size: 1.6rem;
    padding-top: 8px;
  }
}
/*----------あゆみセクション----------*/
.section-history {
  margin: 60px;
}
.section-history ul li {
  display: flex;
  padding: 60px 5vw;
  font-size: 1.5rem;
}
.section-history ul li span {
  font-size: 2.0rem;
}
.history1 {
  background-image: url("../about_img/ayumi-bg1.png");
  width: 100%;
}
.history1 img {
  padding-right: 60px;
  padding-left: 5vw;
  height: 100%;
}
.history1 p {
  width: 46vw;
}
.history2 {
  background-image: url("../about_img/ayumi-bg2.png");
  position: relative;
  flex-direction: row-reverse;
  align-items: center;
}
.history2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1vw;
  width: 100%;
  height: 50px;
  background: url("../about_img/cream-nami.png")repeat-x left top;
  background-size: 100% auto;
}
.history2 img {
  width: 30vw;
  padding-left: 3vw;
}
.history3 {
  background-image: url("../about_img/ayumi-bg3.png");
  position: relative;
  align-items: center;
}
.history3::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1vw;
  width: 100%;
  height: 50px;
  background: url("../about_img/cream-nami.png")repeat-x left top;
  background-size: 100% auto;
}
.history3 img {
  width: 30vw;
  padding-right: 3vw;
}
.history4 {
  background-image: url("../about_img/ayumi-bg4.png");
  position: relative;
  flex-direction: row-reverse;
  align-items: center;
}
.history4::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1vw;
  width: 100%;
  height: 50px;
  background: url("../about_img/cream-nami.png")repeat-x left top;
  background-size: 100% auto;
}
.history4 img {
  width: 30vw;
  padding-left: 1vw;
}
.pc-hidden_img {
  display: none;
}
/*----------モバイル版あゆみセクション----------*/
@media(max-width: 768px) {
  .section-history {
    margin: 10px 0 30px 0;
  }
  .section-history ul li {
    display: block;
    padding: 60px 10vw;
    font-size: 1.5rem;
    line-height: 2.0;
  }
  .section-history ul li span {
    font-size: 1.8rem;
  }
  .section-history ul li p {
    width: 80vw;
    margin: 0 auto;
  }
  .history1 img {
    padding: 0;
    width: 65px;
    margin: 0 33vw 100px 35vw;
  }
  .pc-hidden_img {
    display: block;
  }
  .mobile-hidden {
    display: none;
  }
  .history2 img, .history3 img, .history4 img {
    width: 85vw;
    max-width: 335px;
    margin: 0 auto 40px;
  }
}
/*----------継承日本語教育セクション----------*/
.section-education {
  margin-bottom: 120px;
}
.section-education_outline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.section-education_title {
  width: 87px;
  padding-right: 13vw;
}
.section-education_subtitle {
  color: #fd6800;
  font-size: 3.6rem;
  font-family: Kiwi Maru;
  padding-bottom: 20px;
}
.section-education-description {
  width: 43vw;
  padding-right: 1vw;
}
.section-education-description1 {
  font-size: 1.6rem;
}
.section-education-description1 span {
  font-size: 2.0rem;
  color: #2a9eb8;
}
.section-education_img {
  width: 300px;
  padding: 0 5px;
  text-align: center;
}
.section-education_img p {
  text-align: left;
  font-size: 1.3rem;
  padding-top: 1vw;
  width: 238px;
  margin: 0 auto;
}
.section-education_img img {
  width: 240px;
}
.button-elementary {
  text-align: right;
  margin-right: 10vw;
}
.btn {
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  border: 2px solid #fd6800;
  border-radius: 30px;
  font-family: Kiwi Maru;
  color: #fd6800;
  font-size: 2.3rem;
  padding: 4px 32px 4px 27px;
}
.btn:hover span {
  color: #035589;
  border: 2px solid #035589;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #edc14f; /*背景色*/
  border-radius: 30px;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.keisho-nihongo {
  width: 84vw;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: left;
  padding: 40px 0 35px;
  line-height: 1.8;
}
.keisho-nihongo_link {
  color: #fd6800;
  font-size: 1.5rem;
}
/*----------モバイル版継承日本語教育セクション----------*/
@media(max-width: 768px) {
  .section-education {
    margin-bottom: 60px;
  }
  .section-education_outline {
    display: block;
    margin-bottom: 100px;
  }
  .section-education_title {
    margin: 20px auto 0;
  }
  .section-education-description {
    width: 85vw;
    margin: 0 auto;
  }
  .section-education_subtitle {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
    width: 220px;
    padding-bottom: 0;
    text-align: right;
    border-bottom: solid 2px #2a9eb8;
  }
  .section-education-description1 {
    font-size: 1.5rem;
    text-align: left;
    padding-bottom: 35px;
  }
  .section-education-description1 span {
    font-size: 1.7rem;
  }
  .section-education_img {
    text-align: center;
    margin: 0 auto;
  }
  .section-education_img img {
    margin-bottom: 15px;
  }
  .section-education_img p {
    font-size: 1.3rem;
  }
  .button-elementary a {
    font-size: 1.5rem;
  }
  .btn span {
    font-size: 1.6rem;
    padding: 2px 32px 2px 27px;
  }
  .bgleft:before {
    height: 96%;
  }
}
/*----------先生セクション----------*/
.section-teachers_top {
  background: #2a9eb8;
}
.section-teachers_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 65px;
}
.section-teachers_title h2 {
  font-size: 3.6rem;
  color: #FFF;
  font-family: Kiwi Maru;
  text-decoration: underline;
  text-decoration-color: #edc14f;
  margin-bottom: 50px;
}
.section-teachers_title img {
  width: 125px;
  height: 100%;
  padding-left: 8px;
}
.simons-shinobu-description {
  display: flex;
  justify-content: center;
  padding-bottom: 75px;
}
.simons-shinobu {
  width: 26vw;
  height: 100%;
  border-radius: 300px;
}
.pc-hidden {
  display: none;
}
.shinobu-description {
  color: #FFF;
  padding-left: 5vw;
  object-fit: cover;
}
.shinobu-name {
  font-size: 3.0rem;
  font-family: Kiwi Maru;
  padding-bottom: 20px;
}
.shinobu-message {
  width: 34vw;
  font-size: 1.6rem;
}
.shinobu-career {
  width: 34vw;
  font-size: 1.5rem;
  padding-top: 30px;
}
.preschool-area {
  background-color: #f9eccb;
}
.preschool-area h3, .elementary-area h3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 0 30px 0;
}
.preschool-area h3 p {
  color: #2a9eb8;
  font-size: 3.6rem;
  font-family: Kiwi Maru;
  padding-right: 2vw;
}
.elementary-area {
  background-color: #caedf5;
}
.elementary-area h3 p {
  color: #fd6800;
  font-size: 3.6rem;
  font-family: Kiwi Maru;
  padding-right: 2vw;
}
.teacher1, .teacher2, .teacher3, .teacher4, .teacher5, .teacher6 {
  width: 56vw;
  margin: 0 auto;
}
.teachers-name {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.shinobu-name span {
  font-size: 2.4rem;
}
.teachers-name p {
  font-size: 1.6rem;
  font-family: Kiwi Maru;
  letter-spacing: 0.3em;
  padding-left: 20px;
}
.teachers-name span {
  font-size: 2.0rem;
}
.circle-icon {
  width: 33px;
  height: 33px;
}
.teachers-message {
  padding-bottom: 50px;
}
.teacher5 {
  padding-bottom: 20px;
}
.sea-animals {
  width: 95px;
  height: 100%;
}
.sea-penguin {
  width: 60px;
  height: 100%;
}
/*----------モバイル版先生セクション----------*/
@media(max-width: 768px) {
  .section-teachers_title {
    display: block;
    margin: 0 auto;
    width: 245px;
    padding-top: 50px;
  }
  .section-teachers_title h2 {
    font-size: 2.4rem;
  }
  .simons-shinobu-description {
    display: block;
    text-align: center;
  }
  .mobile-hidden {
    display: none;
  }
  .shinobu-name {
    font-size: 2.4rem;
  }
  .shinobu-name span {
    font-size: 1.6rem;
  }
  .shinobu-message {
    font-size: 1.6rem;
  }
  .shinobu-career {
    font-size: 1.4rem;
  }
  .simons-shinobu {
    width: 50%;
    margin: 0 auto;
    max-width: 348px;
  }
  .pc-hidden {
    display: block;
    width: 95px;
    height: 100%;
    opacity: 0.4;
  }
  .shinobu-name_img {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .shinobu-message {
    width: 86vw;
    font-size: 1.6rem;
    padding-bottom: 30px;
    text-align: left;
  }
  .shinobu-career {
    width: 86vw;
    font-size: 1.4rem;
    text-align: left;
    padding-top: 0;
  }
  .preschool-area h3 {
    padding-left: 25vw;
  }
  .preschool-area h3 p {
    font-size: 2.8rem;
  }
  .preschool-area h3 img {
    width: 95px;
    height: 100%;
  }
  .teacher1, .teacher2, .teacher3, .teacher4, .teacher5, .teacher6 {
    width: 75vw;
    margin: 0 auto;
  }
  .teachers-name {
    font-family: 2.0rem;
    align-items: flex-start;
    margin: 0 auto
  }
  .circle-icon {
    width: 23px;
    height: 100%;
    padding-top: 6px;
  }
  .teachers-name p {
    line-height: 1.6em;
  padding-left: 10px;
    letter-spacing: 0.1em;
}
  
  .teachers-name span {
    font-weight: bold;
  }
  .teachers-message {
    line-height: 2.0em;
    width: 78vw;
  }
  .elementary-area h3 {
    padding-left: 25vw;
  }
  .elementary-area h3 p {
    font-size: 2.8rem;
  }
  .elementary-area h3 img {
    width: 95px;
    height: 100%;
  }
  }
/*----------保護者の声セクション----------*/
.section-voice {
  background-color: #dbf7eb;
  padding-bottom: 2px;
}
.section-voice_title {
  padding-top: 60px;
  text-align: left;
  width: 398px;
  margin: 0 auto;
}
.section-voice_title p {
  font-size: 3.6rem;
  color: #5a5858;
  font-family: Kiwi Maru;
}
.slick-slide_voice {
  padding: 60px 0 123px 0;
  display: flex;
  flex-wrap: wrap;
  width: 82vw;
  margin: 0 auto;
}
.slick-dots {
  background-color: #dbf7eb;
  padding-bottom: 70px;
  bottom: 0;
  
}
.slick-prev:before, .slick-next:before {
  font-size: 45px;
  color: #2a9eb8;
}
.slick-dots li button:before {
  font-size: 17px;
  color: #035589;
}
.slick-prev {
  left: -50px;
}
.slick-next {
  right: -16px;
}
.slick-initialized .slick-slide {
  margin-right: 10px;
}

/*.voice1-3 {
  display: flex;
  padding-bottom: 30px;
  justify-content: center;
}
.voice4-5 {
  display: flex;
  justify-content: center;
}*/
.voice1, .voice3, .voice5 {
  border: solid 3px #7bdcab;
  border-radius: 20px;
  width: 24vw;
  background-color: #FFF;
}
.voice2, .voice4 {
  border: solid 3px #2a9eb8;
  border-radius: 20px;
  width: 24vw;
  background-color: #FFF;
}
.voice1, .voice2, .voice3, .voice4, .voice5 {
  margin-right: 10px;
}
.voice1-title, .voice2-title, .voice3-title, .voice4-title, .voice5-title {
  display: flex;
  padding: 25px 8px 20px 10px;
}
.voice1-title, .voice3-title, .voice5-title {
  border-bottom: solid 1px #7bdcab;
}
.voice2-title, .voice4-title {
  border-bottom: solid 1px #2a9eb8;
}
.voice1-title p, .voice3-title p, .voice5-title p {
  font-size: 1.5rem;
  color: #2a9eb8;
  padding-left: 10px;
}
.voice2-title p, .voice4-title p {
  font-size: 1.5rem;
  color: #e8652b;
  padding-left: 10px;
}
.slick-slide_voice img {
  width: 87px;
  height: 108px;
}
.voice-description {
  padding: 25px 15px 25px 15px;
}
/*----------モバイル版保護者の声セクション----------*/
@media(max-width: 900px) {
  .section-voice {
    position: relative;
  }
  .section-voice::before {
    content: "";
    position: absolute;
    left: 0;
    top: -18px;
    width: 100%;
    height: 62px;
    background: url("../about_img/mobile-nami_blue.png") repeat-x left top;
    background-size: 100% auto;
  }
  .section-voice_title {
    width: 295px;
    margin: 0 auto;
  }
  .section-voice_title p {
    font-size: 2.4rem;
  }
  .section-voice_title img {
    width: 106px;
  }
  .voice1, .voice2, .voice3, .voice4, .voice5 {
    width: 86vw;
  }
  .slick-slide_voice {
  width: 75vw;
  margin: 0 auto;
}
}