header {
  font-family: 'Lato', 'Noto Sans JP', 'noto-sans-cjk-jp';
  background: #fff;
  box-shadow: 0 3px 7px 0 #d3c588;
  position: fixed;
  width: 100%;
  min-height: 70px;
  z-index: 4;
}

header:before, header:after {
  display: table;
  content: "";
}

header:after {
  clear: both;
}

header .wrap {
  padding: 0;
}

/* テスト追加 */
.header-above-bg {
  min-height: 28px;
  background: #F2F2F2;
  width: 100%;
  display: none;
}

.header-above a {
  color: #707070;
  font-size: .875rem;
  height: 100%;
}

.header-above a:link {
  color: #707070;
}
.header-above a:visited {
  color: #707070;
}
.header-above a:hover, a:focus {
  color: #000000;
}
.header-above a:active {
  color: #707070;
}

.header-above>a:link {
  display: block;
  background-image: url(../images/arrow-left-line.png);
  background-position: left 0px center;
  background-repeat: no-repeat;
  padding-left: 24px;
}

.header-above-contents {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  font-weight: 400;
  min-height: 28px;
}

.header-above-contents a:link {
  position: relative;
  padding-left: 12px;
  margin-left: 20px;
}

.header-above-contents a::before {
  position: absolute;
  left: 0;
  top: 8px;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #707070;
  width: 0;
  height: 0;
  margin-top: 0;
  content: "";
  color: #707070;
}

.only-hamburger {
  display: flex;
  justify-content: center;
  list-style: none;
}

.only-hamburger a::before {
  position: absolute;
  left: 0;
  top: 16px;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #707070;
  width: 0;
  height: 0;
  margin-top: 0;
  content: "";
  color: #707070;
}

header nav[role="navigation"] ul .only-hamburger a:hover::before {
  border-left: 7px solid #fb744a;
  color: #fb744a;
}

@media (min-width: 768px) {
  .header-above-bg {
    display: block;
  }

  .only-hamburger {
    display: none;
  }

  header .header-above {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
  }

  header .wrap {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  header .wrap:after {
    content: " ";
    display: block;
    clear: both;
  }
}

header .logo {
  display: inline-block;
  padding-left: 8px;
  max-width: 240px;
}

header .logo img {
  /* width: 136px;
	height: auto;
  vertical-align: bottom;
  padding-top: 20px; */
  width: 100%;
  height: auto;
}

header #nav_btn {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  padding: 16px 10px 0 0;
  float: right;
}

@media (min-width: 768px) {

  header #nav_btn {
    display: none !important;
  }
}


header #nav_btn #nav_icon {
  display: inline-block;
  width: 17px;
  height: 1.2rem;
  position: relative;
  margin: 0;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 0.25s, ease-in-out;
}

header #nav_btn #nav_icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 0;
}

header #nav_btn #nav_icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

header #nav_btn #nav_icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
  left: 0;
}

header #nav_btn #nav_icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #56a57d;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s, ease-in-out;
}

header #nav_btn #nav_icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

header #nav_btn #nav_icon span:nth-child(2) {
  top: 5px;
  transform-origin: left center;
}

header #nav_btn #nav_icon span:nth-child(3) {
  top: 10px;
  transform-origin: left center;
}

header nav[role="navigation"] {
  width: 100%;
  overflow: hidden;
  display: none;
}

header nav[role="navigation"]:before, header nav[role="navigation"]:after {
  display: table;
  content: "";
}

header nav[role="navigation"]:after {
  clear: both;
}

@media (min-width: 768px) {

  header {
    min-height: 98px;
  }

  header nav[role="navigation"] {
    background: none;
    width: auto;
    overflow: visible;
    display: flex !important;
    justify-content: flex-end;
    flex: 1;
    padding-right: 10px;
  }

  header .logo img {
    padding-top: 0;
  }
}

@media (min-width: 1400px) {

  header nav[role="navigation"] {
    padding-right: 0px;
  }

  header .logo {
    padding-left: 0px;
  }
}

header nav[role="navigation"] ul {
  border-top: 1px solid #999999;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  header nav[role="navigation"] ul {
    border: 0;
    display: inline-block;
  }
}

@media (min-width: 768px) {
  header nav[role="navigation"] ul li {
    display: inline-block;
    vertical-align: middle;
  }
}

header nav[role="navigation"] ul a {
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #999999;
  text-decoration: none;
  padding: 10px;
  display: block;
  font-size: .812rem;
}

header nav[role="navigation"] ul a:hover {
  color: #fb744a;
}

header nav[role="navigation"] ul li i {
  font-size: 1rem;
  vertical-align: middle;
}

header nav[role="navigation"] ul li.action a {
  color: #56a57d;
  font-size: 1.125rem;
  text-align: left;
  padding: 10px;
}

header nav[role="navigation"] ul li.action span {
  color: #777;
  font-size: .875rem;
  font-weight: normal;
}

header nav[role="navigation"] ul li.btn-line {
  display: block;
  padding: 10px;
}

header nav[role="navigation"] ul .only-hamburger a {
  border-bottom: none;
  padding-right: 0;
  padding-left: 12px;
  margin: 0 8px;
  position: relative;
}


@media (min-width: 768px) {
  header nav[role="navigation"] ul a {
    background: none;
    border: 0;
    font-size: .875rem;
  }

  /* header nav[role="navigation"] ul li.action {
		padding: 0 0 5px;
	} */

  header nav[role="navigation"] ul li.action span {
    display: block;
  }

  header nav[role="navigation"] ul li.btn-line {
    display: inline-block;
    padding: 5px 0 5px;
  }

  /* header nav[role="navigation"] ul li.action a {
		padding: 0 5px 0 0;
	} */

  header nav[role="navigation"] ul li.on a {
    color: #fb744a;
  }

}

@media (max-width: 767px) {
  header .logo {
    max-width: 200px;
    margin-top: 24px;
  }
}

header nav[role="navigation"] ul a:hover {
  background-color: #f7f3df;
}

header nav[role="navigation"] ul .only-hamburger a:hover {
  background: none;
}

header nav[role="navigation"] ul .only-hamburger a:hover::before {
  border-left: 7px solid #fb744a;
  color: #fb744a;
}

@media (min-width: 768px) {
  header nav[role="navigation"] ul a:hover {
    background: none;
  }
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ヘッダーのボタン */
.btn {
  width: 400px;
  height: 70px;
  line-height: 70px;
  border-radius: 10px;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin: 0 1em;
}

.btn.small {
  padding: 0 24px;
  width: auto;
  min-width: 140px;
  /* 180pxから変更 */
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  font-size: .875rem;
}
.btn.important {
  color: #fff;
  background: #ff8400;
  background: linear-gradient(#ff8400, #fb744a);
  box-shadow: 0 3px 7px 0 #ff8400;
}

.btn.important:hover {
  color: #fff;
  background: #e74a19;
  background: linear-gradient(#fb744a, #e74a19);
}

header nav[role="navigation"] ul a.btn {
  margin: 0;
}

header nav[role="navigation"] ul a.btn.important {
  box-shadow: none;
}

header nav[role="navigation"] ul a.btn.default {
  box-shadow: none;
}

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

  .btn.small {
    width: auto;
  }
}



section {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  width: 100%;
  background-color: rgb(252, 250, 250);
  margin: 0 auto;
}

section h1 {
  display: none;
}

.top-area_container {
  background-image: url(../images/agency_learno-image/bg-top-hero50id.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fff;
  height: auto;
  padding-bottom: 30px;
  margin: auto 0;
}

.top-area_wrap-fv {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-area_wrap {
  padding-top: 160px;
  /* padding-top: 200px; */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* .top-area_text{
  max-width: 60%;
} */

.top-area_wrap .btn_container {
  margin-top: 40px;
}


.top-area_text .top-area_text-bg {
  /* width: 500px; */
  height: 300px;
  border-radius: 14px;
}

.top-area_text .top-area_text-bg h2 {
  height: 20%;
  text-align: left;
  font-size: 35px;
  color: #47322c;
  padding-left: 40px;
}

.top-area_text-large {
  font-size: 42px;
}

.top-area_text .top-area_text-bg h2 span:last-child {
  font-size: 46px;
  background: linear-gradient(transparent 80%, #fcb972 80%);
}

.top-area_text ul {
  padding-top: 70px;
  list-style: none;
  padding-left: 0;
  height: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  vertical-align: middle;
}

.top-area_text li {
  text-align: center;
  width: 140px;
  height: 140px;
  border-radius: 140px;
  background: #b9d69a;
  background-image: linear-gradient(#dae2ab, #b9d69a);
  margin-right: 20px;
}

.top-area_text li:last-child {
  margin-right: 0;
}

.top-area_text ul li p {
  margin-top: 38px;
  /* color: #fff; */
  font-weight: bold;
  font-size: 1.4em;
  color: #582e23;
}

.top-area_text ul li p span {
  font-weight: normal;
  font-size: 0.8em;
}

.top-area_img_wrap {
  padding-top: 100px;
}

.top-area_img {
  padding-top: 30px;
  max-width: 360px;
}

.top-area_img_tab-sp {
  display: none;
}



@media(max-width: 768px) {
  .top-area_wrap-fv {
    flex-direction: column;
  }

  .top-area_container {
    width: 100%;
    /* height: 500px; */
    height: auto;
  }

  .top-area_wrap {
    padding: 0;
    margin-top: 70px;
    flex-direction: column;
    align-items: center;
  }

  .top-area_wrap-fv {
    max-width: 768px;
  }

  .top-area_wrap .btn_container {
    margin-top: 30px;
  }

  .top-area_text {
    max-width: 100%;
  }

  .top-area_text .top-area_text-bg {
    width: 100%;
    height: auto;
  }

  .top-area_text .top-area_text-bg h2 {
    text-align: center;
    width: auto;
    padding-top: 20px;
    padding-left: 0;
    font-size: 32px;
  }

  .top-area_text ul {
    max-width: 600px;
    justify-content: space-between;
    height: 0;
  }

  .top-area_text li {
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: #FD801D;
    margin-top: 0;
  }

  .top-area_text ul li p {
    margin-top: 25px;
    /* color: #fff; */
    font-weight: bold;
    font-size: 1em;
  }

  .top-area_text ul li p span {
    font-weight: normal;
    font-size: 0.8em;
  }

  .top-area_img {
    display: none;
    height: auto;
  }

  .top-area_img_tab-sp {
    display: block;
    width: 227px;
    margin-top: 60px;
  }

  .top-area_img_wrap {
    padding-top: 0;
  }


}

@media(max-width:520px) {

  .top-area_text .top-area_text-bg h2 {
    text-align: left;
    margin-left: 20px;
    height: auto;
    font-size: 20px;
    line-height: 2.2em;
  }

  .top-area_text .top-area_text-bg h2 span {
    font-size: 28px;

  }

  .top-area_text ul {
    margin: 0 auto;

  }

}


.about-area_wrap {
  width: 100%;
  height: auto;
  background-image: url(../images/agency_learno-image/about-area-bg01.png);
  background-size: cover;
  padding: 40px 0;
}

.about-area_wrap h2 {
  padding-top: 24px;
  text-align: center;
  /* color: #707070; */
  color: #47322c;
  font-size: 32px;
  margin-bottom: 24px;
}

.about-area_text {
  background-color: #F5F1DA;
  width: 80%;
  max-width: 740px;
  height: auto;
  margin: 0 auto;
  padding: 24px 0;
  box-shadow: 3px 11px 8px -7px #c7c2bd;
  margin-bottom: 24px;
  border-radius: 10px;
}

.about-area_text p {
  text-align: center;
  line-height: 1.8em;
  font-size: 18px;
  color: #582e23;
}

.about-area_text p:nth-child(2) {
  padding-top: 16px;
  color: #df7240;
  font-weight: bold;
  font-size: 24px;
}

.about-area_img {
  margin: 0 auto;
  padding-bottom: 20px;
}

.about-area_img img:first-child {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}

.about-area_img img:last-child {
  display: none;
}
@media(max-width: 768px) {
  .about-area_wrap {
    width: 100%;
    height: auto;
    background-image: url(../images/agency_learno-image/about-area-bg01.png);
    background-size: cover;
    padding: 40px 0;
  }

  .about-area_text {
    background-color: #F5F1DA;
    width: 80%;
    padding: 20px 20px 20px 20px;
    height: auto;
    margin: 0 auto;
    box-shadow: 3px 11px 8px -7px #c7c2bd;
  }

  .about-area_img img:first-child {
    display: none;
  }

  .about-area_img img:last-child {
    padding-top: 40px;
    display: block;
    width: auto;
    margin: 0 auto;
    height: auto;
    max-height: 500px;
  }
}

@media(max-width: 520px) {
  .about-area_img img {
    max-width: 80%;
    margin: 0 auto;
  }
}


.logo-area_wrap {
  padding-bottom: 40px;
}

.logo-area_wrap h2 {
  padding-top: 24px;
  text-align: center;
  /* color: #707070; */
  color: #47322c;
  padding-bottom: 24px;
  font-size: 32px;
}

.logo-area_wrap h2:first-child {
  display: block;
}

.logo-area_wrap h2:nth-child(2) {
  display: none;
}

.logo-area_bg {
  background-color: #fff;
  width: auto;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  box-shadow: 3px 11px 46px -14px #9e9e9e;
}

.logo-area_wrap ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area_wrap ul li {
  padding: 24px 15px;
}

@media(max-width: 768px) {
  .logo-area_bg {
    width: 80%;
    max-width: 580px
  }

  .logo-area_wrap h2 {
    font-size: 28px;
  }

  .logo-area_wrap h2:first-child {
    display: none;
  }

  .logo-area_wrap h2:nth-child(2) {
    display: block;
  }

  .logo-area_bg ul {
    padding: 0;
  }

  .logo-area_bg ul li:first-child {
    width: 180px;
  }

  .logo-area_bg ul li:nth-child(2) {
    width: 120px;
  }

  .logo-area_bg ul li:nth-child(3) {
    width: 180px;
  }

  .logo-area_bg ul li:nth-child(4) {
    width: 100px;
  }

  .logo-area_bg ul li:nth-child(5) {
    width: 180px;
  }

  /* .logo-area_bg ul li:last-child{
    width: 190px;
  } */
  .logo-area_wrap ul li {
    padding: 11px 20px;
  }

}

/* @media(max-width: 520px){
  .logo-area_bg{
    max-width: 80%;
  }

} */

.manapla-area_wrap {
  width: 100%;
  height: auto;
  background-image: url(../images/agency_learno-image/about-area-bg01.png) !important;
  background-size: cover;
  padding-top: 20px;
}

.manapla-area_wrap .pcOnly {
  display: block;
}

.manapla-area_wrap .spOnly {
  display: none;
}

.manapla-area_wrap h2 {
  color: #47322c;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.balloon2 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 16px;
  min-width: 120px;
  max-width: 100%;
  color: #FA744A;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #FA744A;
  box-sizing: border-box;
  border-radius: 10px;
}

.balloon2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #FA744A;
  z-index: 1;
}

.balloon2 p {
  margin: 0;
  padding: 0;
}

.box-manapla {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 2em 2em;
}

.box-manapla .btn span {
  vertical-align: middle;
}

.box-manapla .btn.round {
  width: 280px;
  text-decoration: none;
}
.box-manapla ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box-manapla li {
  width: 30%;
  margin: 0 1.5% 2em;
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
}

.box-manapla li a {
  color: #333;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .3);
  background: #fff;
  display: block;
  width: 100%;
  text-decoration: none;
}

.box-manapla li a span {
  background: #fb744a;
  border-radius: 3px;
  color: #fff;
  font-size: .875rem;
  font-weight: normal;
  padding: 2px 5px;
  margin-right: 5px;
  display: inline-block;
}

.box-manapla li a:hover {
  color: #777;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
}

.thumb {
  height: 170px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.title {
  padding: 1em;
}

.manapla-area_wrap .btn_container {
  margin: 2em auto;
  width: 100%;
  text-align: center;
}

.btn.default {
  color: #56a57d;
  background: #fff;
  border: 1px solid #56a57d;
  box-shadow: 0 3px 7px 0 #56a57d;
}

.btn.round {
  width: 240px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .manapla-area_wrap .pcOnly {
    display: none;
  }

  .manapla-area_wrap .spOnly {
    display: block;
    font-size: 28px;
  }

  .box-manapla li {
    width: 100%;
    margin: 0 auto 2em;
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
  }
}



.features-area_wrap {
  background-color: #F5F1E2;
  padding: 40px 0;
}

.h2_wrap {
  width: 80%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 24px;
}

.features-area_wrap h2 {
  padding-top: 24px;
  color: #47322c;
  /* color: #707070; */
}

.features-area_wrap h2 img {
  padding-bottom: 12px;
  width: 300px;
  padding-right: 16px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

img.features-logo_img {
  width: 300px !important;
}

img.inspire_img {
  width: 110px !important;
}
.features-area_wrap-bg {
  max-width: 900px;
  margin: 0 auto
}

.features-area_wrap-bg ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.features-area_wrap-bg ul li {
  list-style: none;
  width: 250px;
  /* background-color: red;
    height: 200px; */
  margin-bottom: 40px;
  position: relative;
  margin-top: 70px;
}



.features-area_wrap-bg ul li .features-area_img-bg {
  position: absolute;
  bottom: 110px;
  left: 70px;
  margin: 0 auto;
  width: 110px;
  height: 110px;
  border-radius: 110px;
  background-color: #86C166;
  background: linear-gradient(#98c977, #86C166);

}

.features-area_wrap-bg ul li .features-area_txt-bg {
  width: 250px;
  height: 160px;
  background-color: #fff;
  border-radius: 8px;
  padding-top: 50px;
}

.features-area_wrap-bg ul li .features-area_txt-bg p {
  margin-top: 10px;
  text-align: center;
  color: #582e23;
}

.features-area_wrap-bg ul li .features-area_txt-bg p span {
  color: #FD801D;
  font-weight: bold;
  font-size: 26px;
}

.features-area_wrap-bg ul li .features-area_img-bg img {
  /* width: 60px; */
  height: auto;
  margin: 0 auto;
  padding-top: 30px;
}

.features-area_wrap-bg ul li:first-child .features-area_img-bg img {
  width: 40px;
  padding-top: 30px;
}

.features-area_wrap-bg ul li:nth-child(2) .features-area_img-bg img {
  width: 66px;
  padding-top: 19px;
}

.features-area_wrap-bg ul li:nth-child(3) .features-area_img-bg img {
  width: 60px;
  padding-top: 27px;
}

.features-area_wrap-bg ul li:nth-child(4) .features-area_img-bg img {
  width: 61px;
  padding-top: 33px;
}

.features-area_wrap-bg ul li:nth-child(5) .features-area_img-bg img {
  width: 61px;
  padding-top: 22px;
}

.features-area_wrap-bg ul li:last-child .features-area_img-bg img {
  width: 50px;
  padding-top: 31px;
}



.btn_container-wrap {
  max-width: 800px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

.features-area_wrap .btn_container {
  margin: 0 auto;
  padding: 2em 0 0;
}

.features-area-intro {
  max-width: 80%;
  margin: 0 auto;
  padding-top: 60px;
}

.features-area-intro h3 {
  color: #766d1c;
  font-size: 2rem;
  font-weight: bold;
  margin: 1em 0;
  text-align: center;
  padding-top: 20px;
}

.intro-pc_img {
  min-width: 700px;
  width: 80%;
  height: auto;
  margin: 0 auto;
  box-shadow: 3px 11px 16px -14px #5a5a5a;
}

.intro-tab_img, .intro-sp_img {
  display: none;
}

.btn {
  width: 300px;
  height: 70px;
  line-height: 70px;
  border-radius: 40px;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin: 0 1em;
}


.btn.primary, a.primary:link {
  color: #fff !important;
  background: #56a57d;
  background: linear-gradient(#86C166, #9AB95F);
  box-shadow: 0 3px 7px 0 #86C166;
  text-decoration: none;
}

a.primary:hover, a.primary:visited {
  background: linear-gradient(#56a57d, #86C166);
}

@media(max-width: 768px) {

  .features-area_wrap.h2_wrap {
    width: 80%;
    max-width: 600px;
  }

  .features-area_wrap h2 img {
    width: 240px;
  }

  img.features-logo_img {
    width: 240px !important;
  }

  img.inspire_img {
    width: 90px !important;
  }

  .features-area_wrap-bg ul {
    justify-content: space-around;
  }

  .features-area_wrap-bg ul li {
    width: 200px;
  }

  .features-area_wrap-bg ul li .features-area_img-bg {
    position: absolute;
    bottom: 110px;
    left: 40px;
    margin: 0 auto;
    width: 110px;
    height: 110px;
    border-radius: 110px;
    background-color: #86C166;

  }

  .features-area_wrap-bg ul li .features-area_txt-bg {
    width: 180px;
    height: 160px;
    background-color: #fff;
    padding-top: 50px;
  }

  .features-area_wrap-bg ul li .features-area_txt-bg p {
    margin-top: 10px;
    text-align: center;
  }

  .features-area_wrap-bg ul li .features-area_txt-bg p span {
    color: #FD801D;
    font-weight: bold;
    font-size: 26px;
  }

  .features-area_wrap-bg ul li .features-area_img-bg img {
    /* width: 60px; */
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
  }

  .features-area_wrap-bg ul li:first-child .features-area_img-bg img {
    width: 40px;
    padding-top: 30px;
  }

  .features-area_wrap-bg ul li:nth-child(2) .features-area_img-bg img {
    width: 66px;
    padding-top: 15px;
  }

  .features-area_wrap-bg ul li:nth-child(3) .features-area_img-bg img {
    width: 50px;
    padding-top: 31px;
  }

  .features-area_wrap-bg ul li:nth-child(4) .features-area_img-bg img {
    width: 61px;
    padding-top: 30px;
  }

  .features-area_wrap-bg ul li:nth-child(5) .features-area_img-bg img {
    width: 61px;
    padding-top: 21px;
  }

  .features-area_wrap-bg ul li:last-child .features-area_img-bg img {
    width: 50px;
    padding-top: 31px;
  }



  .intro-tab_img {
    display: block;
    box-shadow: 3px 11px 16px -14px #5a5a5a;
  }

  .intro-pc_img, .intro-sp_img {
    display: none;
  }

  .btn_container-wrap {
    flex-direction: column;
  }

  .btn {
    width: 400px;
    height: 70px;
    font-size: 20px;
    line-height: 70px;
  }

}


@media(max-width: 520px) {
  .features-area_wrap.h2_wrap {
    width: 80%;
    max-width: 300px;
  }

  .features-area_wrap h2 {
    font-size: 20px;
  }

  .features-area_wrap h2 img {
    padding-bottom: 12px;
    width: 123px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
  }

  img.features-logo_img {
    width: 180px !important;
  }

  img.inspire_img {
    width: 80px
  }

  .features-area_wrap-bg ul {
    /* width: 80%; */
    margin: 0 auto;
    padding: 0;
  }


  .features-area_wrap-bg ul li {
    width: 160px;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .features-area_wrap-bg ul li .features-area_img-bg {
    position: absolute;
    bottom: 70px;
    left: 45px;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background-color: #86C166;

  }

  /* .features-area_wrap-bg ul li .features-area_img-bg img{
    padding-top: 10px;
  } */

  .features-area_wrap-bg ul li:first-child .features-area_img-bg img {
    width: 22px;
    padding-top: 22px;
  }

  .features-area_wrap-bg ul li:nth-child(2) .features-area_img-bg img {
    width: 40px;
    padding-top: 13px;
  }

  .features-area_wrap-bg ul li:nth-child(3) .features-area_img-bg img {
    width: 40px;
    padding-top: 16px;
  }

  .features-area_wrap-bg ul li:nth-child(4) .features-area_img-bg img {
    width: 38px;
    padding-top: 21px;
  }

  .features-area_wrap-bg ul li:nth-child(5) .features-area_img-bg img {
    width: 38px;
    padding-top: 16px;
  }

  .features-area_wrap-bg ul li:last-child .features-area_img-bg img {
    width: 38px;
    padding-top: 17px;
  }

  .features-area_wrap-bg ul li .features-area_txt-bg {
    width: 160px;
    height: 120px;
    background-color: #fff;
    padding-top: 50px;
  }

  .features-area_wrap-bg ul li .features-area_txt-bg p {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
  }
  .features-area_wrap-bg ul li .features-area_txt-bg p span {
    font-size: 16px;
  }

  .intro-pc_img, .intro-tab_img {
    display: none;
  }

  .intro-sp_img {
    display: block;
    min-width: 320px;
    margin: 0 auto;
    box-shadow: 3px 11px 16px -14px #5a5a5a;
  }

  .btn {
    width: 300px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }

}


.faq-area_wrap {
  width: 100%;
  height: auto;
  background-image: url(../images/agency_learno-image/about-area-bg01.png);
  background-size: cover;
  padding: 40px 0;
}

.faq-area_wrap h2 {
  /* padding-top: 24px;
  text-align: center; */
  /* color: #707070; */
  /* padding-bottom: 24px;
  margin-bottom: 24px; */
  color: #47322c;
  font-size: 32px;
}

.faq-area_wrap h2 img {
  padding-bottom: 12px;
  width: 110px;
  padding-right: 16px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}

.faq-area_wrap h2 img:first-child {
  width: 56px !important;
  margin-right: 8px;
}

.faq-area_wrap h2 img:last-child {
  padding-right: 0;
  margin-left: 8px;
}





.faq-area_contents {
  max-width: 900px;
  margin: 0 auto;
}

.faq-area_contents ul {
  list-style: none;
  padding: 0;
}

.faq-area_contents ul li {
  background-color: #d5dbc5;
  padding: 20px 6px 5px 6px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.faq-area_contents ul li h3 {
  color: #582e23;
  padding-bottom: 10px;
  padding-left: 8px;
}

.faq-area_contents ul li p {
  background-color: #fffefa;
  padding: 15px 10px 15px 10px;
  border-radius: 3px 3px 10px 10px;
  color: #77544a;
  font-weight: bold;
}

.faq-area_contents .btn_container {
  margin: 0;
}

.btn.contact, a.contact:link {
  display: block;
  color: #fff !important;
  background: #ff8400;
  background: linear-gradient(#ff8400, #fb744a);
  box-shadow: 0 3px 10px 0 #ff8400;
  text-decoration: none;
  margin: 0 auto;
}

a.contact:hover, a.contact:visited {
  background: linear-gradient(#fb744a, #ff8400);
}


@media(max-width: 768px) {
  .faq-area_contents {
    width: 100%;
  }

  .faq-area_contents ul li {
    /* max-width: 400px; */
    width: 80%;
  }

  .faq-area_wrap h2 {
    font-size: 20px;
  }

}

footer a:link {
  color: #56a57d;
  text-decoration: none;
}
footer a:visited {
  color: #56a57d;
}
footer a:hover, a:focus {
  color: #3e8662;
}
footer a:active {
  color: #56a57d;
}

footer {
  font-family: 'Lato', 'Noto Sans JP', 'noto-sans-cjk-jp';
  background: #f7f7f7;
  text-align: center;
  width: 100%;
  padding: 2em 0 0;
}

footer h2 {
  font-weight: bold;
  padding: 0 0 .5em;
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

footer h5 {
  font-weight: bold;
  padding: 0 0 .5em;
  font-size: 1rem;
}

footer p {
  font-size: .875rem;
  padding: 0 0 1em;
}

footer p a {
  font-size: .875rem;
  padding: 0 0 2em;
  text-decoration: underline !important;
}

.box-inner p a img {
  margin: 0 auto;
}

footer p#copylight {
  color: #a59c6b;
  font-size: .75rem;
  line-height: 60px;
  height: 60px;
}

#go2top {
  margin-bottom: 0;
  padding-top: 0;
  width: 60px;
  height: 60px;
  text-align: left;
}

#go2top a {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: block;
  color: #fff;
  background: #86c166;
}

section.interview-area_wrap {
  padding-top: 10px;
}

.box-interview {}

.box-interview ul {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box-interview li {
  /* width: 30%; */
  margin: 0 1em 3em;
  list-style: none;
}

.box-interview li a .box-entry {
  background: #fff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .3);
  padding: 0 0 2em;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 1rem;
  text-align: center;
}

.box-interview li a h4 {
  color: #333;
  font-size: .875rem;
  font-weight: bold;
  margin: 1em 1em .5em;
}

.box-interview li a .category {
  color: #777;
  font-size: .8125rem;
  margin: 0 1em 2em;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.box-interview li a .more {
  border: 1px solid #56a57d;
  border-radius: 20px;
  color: #56a57d;
  font-size: .875rem;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  text-align: center;
  max-width: 200px;
}

.box-interview li a:hover .box-entry {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
  padding: 0 0 2em;
}

.box-interview li a:hover .more {
  background: #cce4d8;
  border: 1px solid #cce4d8;
}

.user-voice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.user-voice li {
  font-weight: bold;
  margin: 0 0 2em;
  width: 30%;
}

.user-voice li p {
  margin: 1em 0;
  text-align: center;
}

.icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: left top;
  margin: 0 auto;
}

blockquote {
  position: relative;
  padding: 30px 10px 30px 10px;
  box-sizing: border-box;
  font-style: italic;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4em;
  border-top: 4px solid #cce4d8;
  border-bottom: 4px solid #cce4d8;
  border-radius: 4px;
  margin-bottom: 1em;
  color: #56a57d;
}

blockquote:before,
blockquote:after {
  display: inline-block;
  position: absolute;
  text-align: center;
  font-family: serif;
  color: #cce4d8;
  font-size: 3rem;
  line-height: 1;
}

blockquote:before {
  top: 10px;
  left: -10px;
  content: "“";
}

blockquote:after {
  bottom: -10px;
  right: 20px;
  content: "“";
}


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

  .box-interview ul {
    display: block;
    padding-left: 0;
  }

  .box-interview li {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 3em;
  }

  .user-voice li {
    width: 45%;
    font-size: .875rem;
  }

}
a {
  text-decoration: none
}

.box-solino {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 2em 2em;
}

.box-manapla .btn span,
.box-solino .btn span {
  vertical-align: middle;
}

.box-manapla .btn.round,
.box-solino .btn.round {
  width: 280px;
}
.box-manapla ul,
.box-solino ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box-manapla li,
.box-solino li {
  width: 30%;
  margin: 0 1.5% 2em;
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
}

.box-manapla li a,
.box-solino li a {
  color: #333;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 8px 4px -1px rgba(215, 185, 142, 0.12), 0px 4px 4px 0px rgba(215, 185, 142, 0.84), 0px 4px 12px 0px rgba(215, 185, 142, 0.72);
  border-radius: 16px;
  background: #fff;
  display: block;
  width: 100%;
}

.box-manapla li a span,
.box-solino li a span {
  background: #fb744a;
  border-radius: 3px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  padding: 2px 5px;
  margin-right: 5px;
  display: inline-block;
}

.box-manapla li a:hover,
.box-solino li a:hover {
  color: #777;
  box-shadow: 0px 12px 8px -1px rgba(215, 185, 142, 0.12), 0px 8px 8px 0px rgba(215, 185, 142, 0.72), 0px 8px 16px 0px rgba(215, 185, 142, 0.56);
}

.box-solino li a .thumb {
  height: 200px;
}

@media screen and (max-width: 768px) {
  .box-manapla li,
  .box-solino li {
    width: 100%;
    margin: 0 auto 2em;
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
  }
}