@charset "UTF-8";
/*================================
	common
=================================*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #707071;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
.br::before {
  content: "\a";
  white-space: pre;
}

.spbr::before {
  content: "\a";
  white-space: pre;
}

.sptbbr::before {
  content: "\a";
  white-space: pre;
}

@media screen and (min-width: 768px) {
  .spbr::before {
    content: "";
    white-space: unset;
  }
  .tbpcbr::before {
    content: "\a";
    white-space: pre;
  }
}
@media screen and (min-width: 1025px) {
  .sptbbr::before {
    content: "";
    white-space: unset;
  }
  .pcbr::before {
    content: "\a";
    white-space: pre;
  }
}
.talk__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.talk__left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.balloon__right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 18px 20px;
  min-width: 120px;
  width: 100%;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 1px #555;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: 4px 4px 4px 0px #C6FFFD;
}
.balloon__right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #FFF;
  z-index: 2;
}
.balloon__right:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #555;
  z-index: 1;
}
.balloon__right--photo {
  width: 20%;
}
.balloon__right p {
  margin: 0;
  padding: 0;
}

.balloon__left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 18px 20px;
  min-width: 120px;
  width: 100%;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 1px #555;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: 4px 4px 4px 0px #FFFFBC;
}
.balloon__left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}
.balloon__left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #555;
  z-index: 1;
}
.balloon__left--photo {
  width: 20%;
}
.balloon__left p {
  margin: 0;
  padding: 0;
}

/*アコーディオンタイトル*/
dl {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  margin-bottom: 3%;
}

.title {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}
.title::before, .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  border-top: 1px dashed #707070;
  margin-left: 3%;
  margin-right: 3%;
  padding: 3%;
  padding-top: 2%;
}

.headline {
  position: relative;
}

.headline:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 12px;
  background-color: rgba(136, 189, 74, 0.3);
  transition: all 1s;
}

.headline.isActive:after {
  width: 100%;
}

/*inputを非表示*/
.on-off1 {
  opacity: 0;
  display: none;
}

/*ラベル（「開く」ボタン）*/
.label-open1 {
  margin: 0 1.5em;
  padding: 0.8em;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 0 2px #aaa;
  background: #fcae11;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.1s;
}
.label-open1:active {
  box-shadow: 0 0 0 0;
}
.label-open1:hover {
  background: -webkit-linear-gradient(bottom, #fff4e0 1%, orange 80%);
  background: #fcbe11;
}
.label-open1::after {
  content: "開く";
}

.open1 {
  padding: 0 1em;
  height: 0;
  opacity: 0;
  display: none;
  transition: 0.5s;
}

/*「開く」をタップで表示*/
.on-off1:checked ~ .open1 {
  padding: 1.5em 1em;
  height: auto;
  opacity: 1;
  display: block;
}

.on-off1:checked ~ .label-open1::after {
  content: none;
  content: "閉じる";
}

@media screen and (min-width: 768px) {
  .label-open1 {
    margin-bottom: 30px;
  }
}
.on-off2 {
  opacity: 0;
  display: none;
}

/*ラベル（「開く」ボタン）*/
.label-open2 {
  margin: 0 1.5em;
  padding: 0.8em;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 0 2px #aaa;
  background: #fcae11;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.1s;
}
.label-open2:active {
  box-shadow: 0 0 0 0;
}
.label-open2:hover {
  background: -webkit-linear-gradient(bottom, #fff4e0 1%, orange 80%);
  background: #fcbe11;
}
.label-open2::after {
  content: "開く";
}

.open2 {
  padding: 0 1em;
  height: 0;
  opacity: 0;
  display: none;
  transition: 0.5s;
}

/*「開く」をタップで表示*/
.on-off2:checked ~ .open2 {
  padding: 1.5em 1em;
  height: auto;
  opacity: 1;
  display: block;
}

.on-off2:checked ~ .label-open2::after {
  content: none;
  content: "閉じる";
}

@media screen and (min-width: 768px) {
  .label-open2 {
    margin-bottom: 30px;
  }
}
.on-off3 {
  opacity: 0;
  display: none;
}

/*ラベル（「開く」ボタン）*/
.label-open3 {
  margin: 0 1.5em;
  padding: 0.8em;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 0 2px #aaa;
  background: #fcae11;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.1s;
}
.label-open3:active {
  box-shadow: 0 0 0 0;
}
.label-open3:hover {
  background: -webkit-linear-gradient(bottom, #fff4e0 1%, orange 80%);
  background: #fcbe11;
}
.label-open3::after {
  content: "開く";
}

.open3 {
  padding: 0 1em;
  height: 0;
  opacity: 0;
  display: none;
  transition: 0.5s;
}

/*「開く」をタップで表示*/
.on-off3:checked ~ .open3 {
  padding: 1.5em 1em;
  height: auto;
  opacity: 1;
  display: block;
}

.on-off3:checked ~ .label-open3::after {
  content: none;
  content: "閉じる";
}

@media screen and (min-width: 768px) {
  .label-open3 {
    margin-bottom: 30px;
  }
}
.on-off4 {
  opacity: 0;
  display: none;
}

/*ラベル（「開く」ボタン）*/
.label-open4 {
  margin: 0 1.5em;
  padding: 0.8em;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 0 2px #aaa;
  background: #fcae11;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.1s;
}
.label-open4:active {
  box-shadow: 0 0 0 0;
}
.label-open4:hover {
  background: -webkit-linear-gradient(bottom, #fff4e0 1%, orange 80%);
  background: #fcbe11;
}
.label-open4::after {
  content: "開く";
}

.open4 {
  padding: 0 1em;
  height: 0;
  opacity: 0;
  display: none;
  transition: 0.5s;
}

/*「開く」をタップで表示*/
.on-off4:checked ~ .open4 {
  padding: 1.5em 1em;
  height: auto;
  opacity: 1;
  display: block;
}

.on-off4:checked ~ .label-open4::after {
  content: none;
  content: "閉じる";
}

@media screen and (min-width: 768px) {
  .label-open4 {
    margin-bottom: 30px;
  }
}
.on-off5 {
  opacity: 0;
  display: none;
}

/*ラベル（「開く」ボタン）*/
.label-open5 {
  margin: 0 1.5em;
  padding: 0.8em;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 0 2px #aaa;
  background: #fcae11;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.1s;
}
.label-open5:active {
  box-shadow: 0 0 0 0;
}
.label-open5:hover {
  background: -webkit-linear-gradient(bottom, #fff4e0 1%, orange 80%);
  background: #fcbe11;
}
.label-open5::after {
  content: "開く";
}

.open5 {
  padding: 0 1em;
  height: 0;
  opacity: 0;
  display: none;
  transition: 0.5s;
}

/*「開く」をタップで表示*/
.on-off5:checked ~ .open5 {
  padding: 1.5em 1em;
  height: auto;
  opacity: 1;
  display: block;
}

.on-off5:checked ~ .label-open5::after {
  content: none;
  content: "閉じる";
}

@media screen and (min-width: 768px) {
  .label-open5 {
    margin-bottom: 30px;
  }
}
.label-open1::after {
  content: "コース受講前にいただく質問";
}

.label-open2::after {
  content: "コース受講中にいただく質問";
}

.label-open3::after {
  content: "キャンセルに関するよくある質問";
}

.label-open4::after {
  content: "卒業後について・サポートに関してよくいただくご質問";
}

.label-open5::after {
  content: "開業に関してよくいただくご質問";
}

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.bgcolor__green {
  background-color: #88BD4A;
  color: white;
}
.bgcolor__lightgreen {
  background-color: #F7FFF8;
}

/*================================
	kv
=================================*/
/*================================
	introduction
=================================*/
.introduction {
  padding: 30px 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .introduction {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .introduction {
    font-size: 2rem;
  }
}
/*================================
	talk
=================================*/
.talk {
  padding-left: 3%;
  padding-right: 3%;
  max-width: 850px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
}

/*================================
	about
=================================*/
.about {
  padding-top: 30px;
  padding-left: 3%;
  padding-right: 3%;
  background-color: #F7FFF8;
}
.about h2 {
  text-align: center;
  margin-bottom: 10px;
}
.about__header--pc {
  display: none;
}
.about__description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__description img {
  width: 75%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.about__title--main {
  color: #2AAA20;
  font-size: 3.4rem;
  display: inline-block;
}
.about__title--sub {
  font-size: 1.6rem;
  display: block;
}
.about__title--sub:first-of-type {
  text-align: left;
}
.about__title--sub:last-of-type {
  text-align: right;
}
.about__wrap {
  padding-left: 3%;
  padding-right: 3%;
  max-width: 970px;
  margin: 0 auto;
  background: url(../images/about_02.png) no-repeat;
  background-position: right bottom;
  background-size: 250px;
  padding-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .about__wrap {
    background-size: 300px;
    padding-bottom: 130px;
  }
  .about__header--pc {
    display: block;
  }
  .about__header--sp {
    display: none;
  }
  .about__description {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .about__description img {
    width: 100%;
  }
  .about__description--left {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .about__wrap {
    background-size: 350px;
    padding-bottom: 100px;
  }
}
/*================================
	difference
=================================*/
.difference {
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F7FFF8;
}
.difference__wrap {
  max-width: 970px;
  margin: 0 auto;
}
.difference__wrap h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.difference__emp {
  color: #2AAA20;
  font-size: 3.4rem;
  display: inline-block;
  font-size: 4rem;
}
.difference__emp--sub {
  font-size: 2.4rem;
}
.difference__table--sp {
  position: relative;
}
.difference__table--sp::before {
  content: " ";
  width: 150px;
  height: 200px;
  display: block;
  position: absolute;
  top: -200px;
  right: 0;
  background: url(../images/diff_01.png) no-repeat 100% 100%;
  background-size: auto 100%;
}
.difference__table--pc {
  display: none;
}
.difference__table th {
  border-radius: 5px 5px 0 0;
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
}
.difference__table--header {
  background-color: #ACACAC;
}
.difference__table--headerY {
  width: 10%;
  background-color: #ACACAC;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  border-radius: 5px 0 0 5px;
  padding: 10px 0;
}
.difference__table--headerY span {
  display: inline-block;
}
.difference__table--headerMain {
  background-color: #88BD4A;
  border: 10px solid #88BD4A;
}
.difference__table--body {
  width: 30%;
  background-color: white;
}
.difference__table--body ul {
  padding-left: 0;
  list-style: inside;
  padding: 10px;
}
.difference__table .transparent {
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .difference__emp {
    color: #2AAA20;
    font-size: 3.4rem;
    display: inline-block;
    font-size: 6rem;
  }
  .difference__emp--sub {
    font-size: 3.6rem;
  }
  .difference__table--sp {
    display: none;
  }
  .difference__table--pc {
    display: block;
    position: relative;
  }
  .difference__table--pc::before {
    content: " ";
    width: 274px;
    height: 280px;
    display: block;
    position: absolute;
    top: -280px;
    right: 0;
    background: url(../images/diff_01.png) no-repeat 100% 100%;
    background-size: auto 100%;
  }
  .difference__table--headerY {
    writing-mode: horizontal-tb;
    padding: 10px 5px;
  }
  .difference__table--body ul {
    padding: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .difference__table--body ul {
    padding: 20px;
  }
}
/*================================
	teacher
=================================*/
.teacher {
  padding-left: 3%;
  padding-right: 3%;
  background-color: #F7FFF8;
  padding-bottom: 40px;
}
.teacher h2 {
  text-align: center;
  margin-bottom: 10px;
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 3rem;
  transform: rotate(7deg);
}
.teacher__emp {
  color: #2AAA20;
  font-size: 3.4rem;
  display: inline-block;
}
.teacher__description {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.teacher__description--left {
  width: 60%;
  margin-bottom: 10px;
}
.teacher__description--right {
  width: 90%;
}
.teacher__description--right ul {
  list-style-type: disc;
  list-style: inside;
  margin-bottom: 20px;
  padding-left: 0;
}
.teacher__wrap {
  position: relative;
  margin: 0 3%;
  background-color: white;
  border: 10px solid #FBFFD0;
  border-radius: 15px;
  max-width: 730px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
.teacher__name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .teacher {
    padding-top: 20px;
  }
  .teacher__wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
  .teacher h2 {
    font-size: 3.8rem;
    top: -10px;
    right: -50px;
  }
  .teacher__description {
    flex-direction: row;
    align-items: flex-end;
  }
  .teacher__description--left {
    margin-bottom: 0px;
  }
  .teacher__description--right {
    padding: 40px 10px 20px;
  }
}
/*================================
	aboutschool
=================================*/
.aboutschool {
  background: linear-gradient(180deg, white 0%, white 30%, #F7FFF8 30%, #F7FFF8 100%);
}
.aboutschool h2 {
  text-align: left;
  margin-bottom: 12px;
}
.aboutschool__description {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 3%;
  padding-right: 3%;
  max-width: 970px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.aboutschool__description p {
  margin-bottom: 10px;
}
.aboutschool__description img {
  width: 75%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .aboutschool__description {
    flex-direction: row-reverse;
  }
  .aboutschool__description--left {
    width: 60%;
  }
  .aboutschool__description--right {
    width: 40%;
  }
}
/*================================
	point
=================================*/
.point {
  background-color: #F7FFF8;
}
.point__wrap {
  padding-top: 30px;
}
.point h2 {
  text-align: center;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}
.point h2 img {
  width: 80%;
  margin: 0 auto;
  max-width: 400px;
}
.point__list {
  padding-left: 3%;
  padding-right: 3%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  top: -30px;
  margin: 3%;
  padding: 5%;
  padding-top: 30px;
  border-radius: 10px;
}
.point__list--item {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
}
.point__list--item h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.point__list--itemNum {
  width: 40%;
  margin-left: -10px;
  max-width: 180px;
}

@media screen and (min-width: 768px) {
  .point__list {
    max-width: 970px;
    margin: 0 auto;
    padding-top: 70px;
  }
  .point__list--item {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    justify-content: center;
  }
  .point__list--item img {
    width: 60%;
  }
  .point__list--item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .point__list--item h3 {
    font-size: 2.2rem;
  }
  .point h2 img {
    width: 400px;
  }
  .point h3 {
    text-align: center;
  }
}
/*================================
	support
=================================*/
.support {
  background: url(../images/support.jpg) no-repeat 100%;
  background-size: 100% auto;
  background-position: bottom;
  padding-top: 50px;
}
.support__wrap {
  max-width: 970px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
  padding-bottom: 50px;
}
.support__wrap h2 {
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
  position: relative;
}
.support__wrap h2 img {
  width: 60%;
  margin: 0 auto;
  max-width: 300px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.support__wrap p {
  text-align: center;
}
.support__attention {
  color: #2AAA20;
}
.support__description {
  padding-bottom: 20px;
}
.support__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  align-items: center;
  margin: 0 auto;
  margin-top: 10px;
}
.support__list--item {
  background-color: rgba(136, 189, 74, 0.8);
  font-weight: 700;
  padding: 20px;
  color: #ffffff;
  width: 70%;
  text-align: center;
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 6px #88BD4A;
  margin-bottom: 0;
}
.support__list--item dt {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.support__list--item--sub {
  color: #707070;
  padding: 10px;
  text-align: left;
}
.support__list--item--sub dt {
  font-size: 1.6rem;
}
.support__list--plus {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .support__list {
    flex-direction: row;
    align-items: stretch;
    -moz-column-gap: 40px;
         column-gap: 40px;
    width: 80%;
  }
  .support__list--item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .support__list--plus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    height: auto;
  }
  .support__wrap {
    max-width: 970px;
    margin: 0 auto;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 50px;
  }
  .support__wrap h2 {
    font-size: 3.2rem;
  }
  .support__wrap h2 img {
    top: -10px;
  }
}
/*================================
	flow
=================================*/
.flow {
  max-width: 970px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
}
.flow__wrap {
  margin-top: 70px;
  margin-bottom: 70px;
}
.flow__wrap h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.8rem;
}
.flow__wrap h2 .headline:after {
  bottom: 0px;
}
.flow__list {
  margin-bottom: 40px;
  position: relative;
}
.flow__list:not(:last-child) {
  border-bottom: 4px solid #88BD4A;
}
.flow__list:not(:last-child)::before {
  position: absolute;
  left: 50%;
  bottom: -60px;
  border: solid transparent;
  content: " ";
  border-top-color: #88BD4A;
  border-width: 30px;
  margin-left: -30px;
}
.flow__list > dt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.flow__list > dd {
  margin-bottom: 10px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.flow__list > dd img {
  width: 50%;
  margin: 0 auto;
  max-width: 230px;
}
.flow__list--sub {
  width: 33%;
  background-color: #F7F7F7;
}
.flow__list--sub dt {
  background-color: #88BD4A;
  font-weight: 700;
  text-align: center;
  padding: 4px 0;
  color: #ffffff;
}
.flow__list--sub ul {
  padding-left: 0;
  margin: 10px;
}
.flow__list--sub ul li {
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .flow__wrap {
    margin-top: 100px;
    margin-bottom: 120px;
  }
  .flow__wrap h2 {
    margin-bottom: 30px;
    font-size: 3.4rem;
  }
  .flow__list {
    min-height: 230px;
  }
  .flow__list > dt {
    position: relative;
  }
  .flow__list > dd {
    width: calc(100% - 230px);
  }
  .flow__list > dd img {
    position: absolute;
    right: 0;
    top: 0;
  }
}
/*================================
	voice
=================================*/
.voice {
  background-color: #D3F5D4;
}
.voice__wrap {
  max-width: 970px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 30px;
  padding-bottom: 50px;
  max-width: 1000px;
  position: relative;
}
.voice__wrap h2 {
  color: #2AAA20;
  position: absolute;
  font-size: 3rem;
  top: -2.2rem;
  left: 20px;
}
.voice__movie--pc {
  display: none;
}
.voice__description {
  display: flex;
  flex-direction: column;
  background-color: #FFFFF5;
  position: relative;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}
.voice__description p {
  margin-bottom: 10px;
}
.voice__description ::before {
  content: " ";
  position: absolute;
  background-image: url(../images/voice_bg.png);
  background-size: 100%;
  width: 46px;
  height: 46px;
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.voice__description--left a {
  display: block;
  background-color: #FFF5B9;
  text-decoration: none;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  color: #707070;
  padding: 8px 0;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .voice__wrap {
    padding-top: 40px;
  }
  .voice__wrap h2 {
    font-size: 3.6rem;
    top: -2.6rem;
    left: 40px;
  }
  .voice__movie--sp {
    display: none;
  }
  .voice__movie--pc {
    display: block;
  }
  .voice__description {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 60px;
  }
  .voice__description--left {
    width: 50%;
  }
  .voice__description--left p {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 14px;
  }
  .voice__description--name {
    font-size: 3rem;
  }
  .voice__description--right {
    width: 50%;
  }
}
/*================================
	contact
=================================*/
.contact {
  margin-bottom: 50px;
}
.contact__wrap {
  margin: 30px 20px 10px;
  text-align: center;
  border: 10px solid #2AAA20;
  padding: 20px 10px;
  max-width: 800px;
  background-color: #FFFDEF;
  position: relative;
}
.contact__wrap::after {
  content: " ";
  width: 150px;
  height: 200px;
  display: block;
  position: absolute;
  bottom: -10px;
  right: 0px;
  background: url(../images/contact_yuko.png) no-repeat 100% 100%;
  background-size: auto 100%;
}
.contact__wrap h2 {
  margin-bottom: 10px;
}
.contact__wrap h2 .color__pink {
  color: #FF7E9A;
}
.contact small {
  display: block;
  text-align: center;
  font-size: 1.3rem;
}
.contact__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  margin-bottom: 20px;
  max-width: 700px;
  margin: 0 auto 10px;
}
.contact__button a {
  text-decoration: none;
  padding: 20px;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  width: calc(100% - 150px);
  justify-content: center;
  transition: 0.2s;
}
.contact__button a:hover {
  opacity: 0.6;
}
.contact__button--line {
  background-color: #40CB0E;
  color: #ffffff;
}
.contact__button--mail {
  background-color: #4D98FF;
  color: white;
}

@media screen and (min-width: 768px) {
  .contact__wrap {
    margin: 0 auto;
    padding: 30px 30px;
  }
  .contact__button {
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-right: 150px;
  }
}
/*================================
	faq
=================================*/
.faq {
  background: url(../images/faq_bg.jpg) no-repeat 100%;
  background-size: cover;
  background-position: bottom;
}
.faq h2 {
  text-align: center;
  margin-bottom: 10px;
}
.faq__wrap {
  max-width: 970px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 50px;
  padding-bottom: 70px;
}

@media screen and (min-width: 768px) {
  .faq__wrap {
    padding: 100px 0 120px;
  }
  .faq h2 {
    margin-bottom: 30px;
  }
}
/*================================
	footer
=================================*/
footer {
  background-color: #88BD4A;
  color: #ffffff;
  text-align: center;
}
footer address {
  margin-bottom: 10px;
  font-style: normal;
}
footer .footer__info {
  display: flex;
  flex-direction: column;
  max-width: 970px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 20px;
  padding-bottom: 30px;
}
footer .footer__info--logo {
  margin: 0 auto;
  margin-bottom: 10px;
}
footer .footer__copylight {
  background-color: #2AAA20;
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
}
footer iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@media screen and (min-width: 768px) {
  footer {
    text-align: left;
  }
  footer .footer__info {
    flex-direction: row;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  footer .footer__info--left {
    width: 100%;
  }
  footer .footer__info--right {
    width: 100%;
  }
  footer .footer__info--logo {
    margin: 0;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */