@charset "UTF-8";
/*==============================================================================================

    common css

    ※※※※※ブラウザ対応※※※※※

    safari:9以上
    chrome:63以上
    firefox:43以上
    opera:43以上
    edge:12以上
    IE:10以上


    ※※※※※ベンダープレフィックスを付けるプロパティ※※※※※

    -moz-transform
    -webkit-transform
    transform

    -moz-transition
    -webkit-transition
    transition
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -moz-animation
    -webkit-animation
    animation

    display: -webkit-flex;
    display: flex;

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

    }

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

    }
    

==============================================================================================*/

/*==============================================================================================

	body要素

==============================================================================================*/

body {
  position: relative;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contents_contain {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 0;
}

.txc {
  text-align: center;
}

.mt0 {
  margin-top: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.spb {
  display: none;
}

@media screen and (max-width: 768px) {
  .contents_contain {
    max-width: 400px;
  }

  .spb {
    display: block;
  }

  .pcb {
    display: none;
  }
}

/*==============================================================================================

	mv要素

==============================================================================================*/

#mv_section {
  padding: 20px 0 40px;
  background-color: #fffded;
  line-height: 1.2;
}

.logo {
  width: 160px;
  margin-bottom: 20px;
}

.mv_title {
  width: 400px;
  margin: 50px 0 10px;
}

#mv_section p {
  font-size: 64px;
  font-weight: bold;
  color: #515151;
  letter-spacing: 2px;
}

#mv_section p span {
  display: block;
  padding-top: 10px;
  font-size: 28px;
}

#mv_section a {
  width: 40%;
  min-width: 300px;
  height: 50px;
  background: #ffc300;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  border-radius: 25px;
  margin-top: 20px;
  font-size: 23px;
}

#mv_section a:hover {
  opacity: 0.6;
}

.mv_pop {
  width: 180px;
  height: 180px;
  background: #009c84;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 20px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  padding-top: 20px;
  font-weight: bold;
}

.mv_pop span {
  font-size: 36px;
}

.mv_bg {
  position: absolute;
  top: -20px;
  left: 50%;
  width: auto;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 980px) {
  .mv_title {
    width: 360px;
    margin: 40px 0 10px;
  }

  #mv_section p {
    font-size: 54px;
  }

  #mv_section p span {
    font-size: 23px;
  }

  #mv_section a {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  #mv_section {
    padding: 20px 0 30px;
  }

  .logo {
    width: 120px;
  }

  .mv_title {
    width: 160px;
    margin: 20px 0 10px;
  }

  #mv_section p {
    font-size: 24px;
  }

  #mv_section p span {
    font-size: 14px;
  }

  #mv_section a {
    margin: 20px auto 0;
    font-size: 14px;
  }

  .mv_pop {
    width: 95px;
    height: 95px;
    bottom: 20px;
    right: 10px;
    font-size: 10px;
    padding-top: 10px;
  }

  .mv_pop span {
    font-size: 16px;
  }

  .mv_bg {
    height: 90%;
    left: auto;
    right: 0;
  }
}

/*==============================================================================================

	worries要素

==============================================================================================*/

#worries_section {
  padding: 80px 0 8%;
  background: url(../img/worries_bg.png);
  position: relative;
  background-size: 38px;
}

#worries_section .contents_contain {
  padding: 0 10px;
}

.worries_arrow {
  width: 140%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#worries_section h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

.worries_contain {
  padding: 40px 0 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}
.worries_contain li {
  margin-top: 26px;
  position: relative;
  padding-left: 40px;
}

.worries_contain li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/worries_check.png);
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.worries_contain li span {
  position: relative;
}

.worries_contain li span:before {
  content: "";
  width: 100%;
  height: 50%;
  background: #fcff00;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#worries_section p {
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

#worries_section p span {
  font-size: 43px;
}

@media screen and (max-width: 980px) {
  #worries_section {
    padding: 70px 0 8%;
  }

  #worries_section h2 {
    font-size: 28px;
  }

  .worries_contain {
    padding: 30px 0 50px;
    font-size: 20px;
  }

  .worries_contain li::before {
    width: 26px;
    height: 26px;
  }

  #worries_section p {
    font-size: 36px;
  }

  #worries_section p span {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  #worries_section {
    padding: 40px 0 5%;
    background-size: 30px;
  }

  #worries_section h2 {
    font-size: 24px;
  }

  .worries_contain {
    padding: 30px 10px 50px;
    font-size: 16px;
  }
  .worries_contain li {
    padding-left: 30px;
    line-height: 1.2;
  }
  .worries_contain li::before {
    width: 20px;
    height: 20px;
  }

  #worries_section p {
    font-size: 20px;
    padding-bottom: 30px;
  }

  #worries_section p span {
    font-size: 26px;
  }
}

/*==============================================================================================

	mv要素

==============================================================================================*/

#set_section {
  padding: 40px 0;
  background: #fff7b5;
}

#set_section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 56px;
  letter-spacing: 2px;
}

#set_section h2 span {
  font-size: 64px;
}

#set_section h2 div {
  font-size: 100px;
  color: #f6375c;
  padding-top: 50px;
}
#set_section h2 span.emphasis {
  font-size: 100px;
  position: relative;
}

#set_section h2 span.emphasis::before {
  content: "・";
  display: block;
  position: absolute;
  top: -35px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 66px;
}

.set_text {
  text-align: center;
  padding: 50px 0 20px;
  font-size: 23px;
}

.set_contain {
  background: #fff7b5;
  padding: 30px;
}

.set_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.set_inner {
  width: calc(100% / 3 - 20px);
  border: 2px solid #ea718e;
  background: #ffffff;
  margin: 10px;
  padding: 20px 10px 20px 20px;
  line-height: 1.4;
  font-weight: normal;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.set_inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 34px 34px 0;
  border-color: transparent #ea718d transparent transparent;
}

.set_inner img {
  width: 52px;
}

.set_inner p{
  width: calc(100% - 52px);
  padding-left: 16px;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  #set_section h2 {
    font-size: 46px;
  }

  #set_section h2 span {
    font-size: 50px;
  }
  #set_section h2 div {
    font-size: 80px;
    padding-top: 40px;
  }
  #set_section h2 span.emphasis {
    font-size: 80px;
  }

  #set_section h2 span.emphasis::before {
    top: -24px;
    font-size: 54px;
  }

  .set_text {
    text-align: center;
    padding: 50px 0 20px;
    font-size: 18px;
  }

  .set_contain {
    padding: 24px;
  }

  .set_inner img {
    width: 46px;
  }
  
  .set_inner p{
    width: calc(100% - 46px);
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  #set_section {
    padding: 30px 0;
  }

  #set_section h2 {
    font-size: 28px;
  }

  #set_section h2 span {
    font-size: 32px;
  }
  #set_section h2 div {
    font-size: 52px;
    padding-top: 30px;
  }
  #set_section h2 span.emphasis {
    font-size: 52px;
  }

  #set_section h2 span.emphasis::before {
    top: -20px;
    font-size: 38px;
  }

  .set_text {
    padding: 30px 0 20px;
    font-size: 16px;
    line-height: 1.4;
  }

  .set_contain {
    background: #fff7b5;
    padding: 20px;
  }

  .set_inner {
    width: calc(100% / 2 - 5px);
    padding: 10px;
    font-size: 12px;
    margin: 2px;
  }

  .set_inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 18px 18px 0;
    border-color: transparent #ea718d transparent transparent;
  }
  

  .set_inner img {
    width: 30px;
  }
  
  .set_inner p{
    font-size: 10px;
    width: calc(100% - 30px);
    padding-left: 8px;
  }
}

/*==============================================================================================

	feature要素

==============================================================================================*/

#feature_section {
  padding-bottom: calc(5% + 80px);
  position: relative;
}

.feature_title {
  background: #009c84;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 42px;
  font-weight: bold;
}

.feature_title span {
  font-size: 68px;
}

.feature_wrap {
  padding: 130px 10px 0;
}

.feature_wrap dt {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 60px;
}

.feature_wrap dt .feature_num {
  color: #adadad;
  width: 94px;
  border-right: 1px solid #adadad;
  text-align: right;
  padding-right: 20px;
  font-size: 42px;
}

.feature_wrap dt .feature_num + div {
  width: calc(100% - 110px);
  color: #009c84;
  font-size: 22px;
}

.feature_wrap dt .feature_num + div span {
  display: block;
  color: #333333;
  font-size: 48px;
  font-weight: bold;
  padding-top: 10px;
}


.feature_wrap .feature_text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.feature_wrap .feature_text span {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #6b6b6b;
  padding-top: 10px;
}

.feature_wrap .feature_text span.txc {
  color: #333333;
}

.feature_topic {
  background-color: #f66184;
  color: #ffffff;
  font-weight: bold;
  padding: 15px;
  font-size: 24px;
  letter-spacing: 2px;
  margin-top: 30px;
}

.feature_inner {
  background: #fffded;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
}

.inner2 > div {
  width: calc(100% / 3 - 10px);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 12px;
  padding: 10px;
  line-height: 1.4;
}

.inner2 > div img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.inner2 > div span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
}

.inner4 > div {
  width: calc(100% / 4 - 10px);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  line-height: 1.4;
}

.inner4 > div img {
  width: 80px;
  margin: 0 auto 10px;
}

.inner61 {
  padding: 30px;
  -webkit-align-items: center;
  align-items: center;
}

.inner62 {
  padding: 30px;
}

.inner61 > div {
  width: calc(100% - 240px);
  padding-right: 30px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 2px;
}

.inner61 > img {
  width: 240px;
  height: auto;
}

.inner62 > div {
  width: 50%;
  padding-right: 20px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 2px;
}

.inner62 > img {
  width: 50%;
  height: auto;
}

.inner7 {
  background: none;
  padding: 10px 0;
  line-height: 1.4;
}

.inner7 > div {
  background: #fffded;
  width: calc(100% / 3 - 10px);
  padding: 20px;
}

.inner7 > div span {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  display: block;
}

.inner7 > div img {
  margin: 10px 0;
}

.img07 {
  margin-top: 20px;
}

@media screen and (max-width: 980px) {
  #feature_section {
    padding-bottom: calc(5% + 65px);
  }

  .feature_title {
    padding: 15px;
    font-size: 32px;
  }

  .feature_title span {
    font-size: 56px;
  }

  .feature_wrap {
    padding: 90px 10px 0;
  }

  .feature_wrap dt {
    padding-bottom: 40px;
  }

  .feature_wrap dt .feature_num {
    width: 76px;
    font-size: 36px;
  }

  .feature_wrap dt .feature_num + div {
    width: calc(100% - 94px);
    font-size: 20px;
  }

  .feature_wrap dt .feature_num + div span {
    font-size: 32px;
  }

  .feature_wrap .feature_text {
    font-size: 16px;
  }

  .feature_wrap .feature_text span {
    font-size: 22px;
  }

  .feature_topic {
    font-size: 22px;
    margin-top: 50px;
  }

  .inner2 > div {
    width: calc(100% / 3 - 10px);
    font-size: 10px;
    padding: 7px;
  }

  .inner2 > div img {
    width: 40px;
  }

  .inner61 > div {
    width: calc(100% - 180px);
    font-size: 16px;
  }

  .inner61 > img {
    width: 180px;
  }

  .inner62 > div {
    font-size: 16px;
  }

  .inner7 {
    background: none;
    padding: 10px 0;
    line-height: 1.4;
  }

  .inner7 > div {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  #feature_section {
    padding-bottom: calc(5% + 50px);
  }

  .feature_title {
    padding: 15px;
    font-size: 22px;
  }

  .feature_title span {
    font-size: 38px;
  }

  .feature_wrap {
    padding: 90px 0 0;
  }

  .feature_wrap dt {
    padding-bottom: 30px;
  }

  .feature_wrap dt .feature_num {
    width: 40px;
    font-size: 30px;
    padding-right: 10px;
  }

  .feature_wrap dt .feature_num + div {
    width: calc(100% - 50px);
    font-size: 14px;
  }

  .feature_wrap dt .feature_num + div span {
    font-size: 20px;
  }

  .feature_wrap .feature_text {
    font-size: 14px;
    padding: 10px;
  }

  .feature_wrap .feature_text span {
    font-size: 18px;
  }

  .feature_topic {
    padding: 10px;
    font-size: 14px;
    margin-top: 30px;
    line-height: 1.4;
  }

  .inner2 > div {
    width: calc(100% / 2 - 10px);
    display: block;
    font-size: 10px;
    padding: 10px 0;
  }

  .inner2 > div img {
    width: 40px;
    margin: 0 auto 10px;
  }

  .inner2 > div span {
    font-size: 14px;
    padding-bottom: 5px;
    text-align: center;
  }

  .inner4 > div {
    width: calc(100% / 2 - 10px);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    line-height: 1.4;
  }

  .inner4 > div img {
    width: 60px;
    margin: 0 auto 10px;
  }

  .inner61,
  .inner62 {
    padding: 20px;
  }

  .inner61 > div {
    width: 100%;
    padding: 0 0 20px;
    font-size: 14px;
  }

  .inner61 > img {
    width: 240px;
    height: auto;
  }

  .inner62 > div {
    width: 100%;
    padding: 0 0 20px;
    font-size: 14px;
  }

  .inner62 > img {
    width: 100%;
    height: auto;
  }

  .inner7 {
    display: block;
  }

  .inner7 > div {
    width: 100%;
    padding: 20px;
  }

  .inner7 > div + div {
    margin-top: 10px;
  }

  .inner7 > div span {
    font-size: 16px;
  }

  .inner7 > div img {
    max-width: 200px;
    margin: 10px auto;
  }

  .img07 {
    margin-top: 10px;
  }
}

/*==============================================================================================

	cover要素

==============================================================================================*/
#cover_section {
  padding-top: 60px;
  padding-bottom: calc(5% + 80px);
  background: #fff7b5;
  position: relative;
}

#cover_section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 38px;
  letter-spacing: 2px;
}

#cover_section h2 div {
  font-size: 54px;
  color: #ee3c84;
  padding-top: 20px;
}

.cover_contain {
  background: #ffffff;
  padding: 30px;
  max-width: 800px;
  margin: 50px auto 0;
}

.cover_wrap {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cover_inner {
  width: calc(100% / 3 - 20px);
  border: 2px solid #ffd755;
  background: #ffffff;
  margin: 10px;
  padding: 20px;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}

.cover_inner::before {
  content: "";
  display: block;
  width: 30px;
  height: 40px;
  border-left: 2px solid #ffd755;
  background: #ffffff;
  position: absolute;
  top: -18px;
  right: -14px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cover_inner img {
  width: 64px;
  margin: 0 auto 10px;
}

#cover_section h3 {
  text-align: center;
  font-weight: bold;
  font-size: 58px;
  letter-spacing: 2px;
  margin-top: 100px;
  line-height: 1.6;
}

#cover_section h3 div {
  font-size: 150px;
  color: #ee3c84;
  line-height: 1;
}

#cover_section h3 div span {
  font-size: 84px;
}

.cover_img {
  width: 100%;
  max-width: 800px;
  margin: 100px auto 0;
}

@media screen and (max-width: 980px) {
  #cover_section {
    padding-top: 70px;
    padding-bottom: calc(5% + 65px);
  }

  #cover_section h2 {
    font-size: 28px;
  }

  #cover_section h2 div {
    font-size: 42px;
  }

  #cover_section h3 {
    margin-top: 80px;
  }

  .cover_img {
    margin: 80px auto 0;
  }
}

@media screen and (max-width: 768px) {
  #cover_section {
    padding-top: 60px;
    padding-bottom: calc(5% + 50px);
  }

  #cover_section h2 {
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1.4;
  }

  #cover_section h2 div {
    font-size: 34px;
    color: #ee3c84;
    padding-top: 0;
  }

  .cover_contain {
    padding: 20px;
    margin: 30px auto 0;
  }

  .cover_inner {
    width: calc(100% / 2 - 20px);
    padding: 20px 0;
    font-size: 12px;
  }

  .cover_inner img {
    width: 48px;
  }

  #cover_section h3 {
    font-size: 28px;
    margin-top: 60px;
  }

  #cover_section h3 div {
    font-size: 130px;
  }

  #cover_section h3 div span {
    font-size: 72px;
  }

  .cover_img {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
  }
}

/*==============================================================================================

	easy要素

==============================================================================================*/
#easy_section {
  padding: 60px 0;
  position: relative;
  background: #f2faf8;
}

#easy_section h2 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1.4;
}

#easy_section h2 div {
  width: calc(60% - 20px);
}

#easy_section h2 div span {
  display: block;
  color: #009a81;
  font-size: 42px;
}

#easy_section h2 img {
  width: 40%;
  height: auto;
}

.easy_contain {
  padding-top: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.easy_wrap {
  width: calc(50% - 10px);
  border: 2px solid #009a81;
  background: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.easy_wrap:last-child {
  width: 100%;
  padding: 40px;
}

.easy_wrap .easy_img {
  width: 80px;
}

.easy_wrap p + .easy_img {
  width: 100%;
  margin-top: 40px;
}

.easy_wrap p {
  width: 100%;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.easy_wrap .easy_img + p {
  width: calc(100% - 80px);
  padding-left: 20px;
}

.easy_wrap p span {
  font-weight: bold;
  font-size: 26px;
  display: block;
}

.easy_wrap:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #009a81 transparent transparent;
  position: absolute;
  top: -2px;
  right: -2px;
}

@media screen and (max-width: 980px) {
  #easy_section {
    padding: 50px 0;
  }

  #easy_section h2 {
    font-size: 38px;
  }

  #easy_section h2 div span {
    font-size: 32px;
  }

  .easy_wrap:last-child {
    padding: 30px;
  }

  .easy_wrap .easy_img {
    width: 60px;
  }

  .easy_wrap .easy_img + p {
    width: calc(100% - 60px);
  }

  .easy_wrap p + .easy_img {
    margin-top: 30px;
  }

  .easy_wrap p {
    font-size: 16px;
  }

  .easy_wrap p span {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  #easy_section {
    padding: 40px 0;
  }

  #easy_section h2 {
    font-size: 22px;
  }

  #easy_section h2 div {
    width: calc(100% - 100px);
  }

  #easy_section h2 div span {
    font-size: 18px;
  }

  #easy_section h2 img {
    width: 80px;
  }

  .easy_contain {
    padding-top: 40px;
    display: block;
  }

  .easy_wrap {
    width: 100%;
    padding: 20px;
  }

  .easy_wrap:last-child {
    padding: 20px;
  }

  .easy_wrap .easy_img {
    width: 40px;
  }

  .easy_wrap p + .easy_img {
    margin-top: 20px;
  }

  .easy_wrap p {
    font-size: 14px;
  }

  .easy_wrap .easy_img + p {
    width: calc(100% - 40px);
    padding-left: 20px;
  }

  .easy_wrap p span {
    font-size: 18px;
  }
}

/*==============================================================================================

	banner要素

==============================================================================================*/
#banner_section {
  padding: 20px 0;
  position: relative;
  background: url(../img/banner_bg.png) bottom center;
  background-size: cover;
}

.banner_contain {
  display: -webkit-flex;
  display: flex;
}

.banner_img {
  width: 25%;
  position: relative;
}

.banner_img img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: calc(100% + 40px);
}

.banner_wrap {
  width: 50%;
  text-align: center;
  color: #ffffff;
  line-height: 1.6;
  font-size: 20px;
}

.banner_wrap h2 {
  color: #fcff00;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
}

.banner_wrap a {
  width: 300px;
  height: 60px;
  background: #fcff00;
  color: #333333;
  text-align: center;
  position: relative;
  margin: 20px auto 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 40px;
  font-weight: bold;
}

.banner_wrap a:before {
  content: "無料";
  display: block;
  width: 40px;
  height: 40px;
  background: #df1962;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #ffffff;
}

.banner_wrap a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 980px) {
  .banner_img {
    width: 25%;
    position: relative;
  }

  .banner_wrap {
    font-size: 16px;
  }

  .banner_wrap h2 {
    font-size: 26px;
  }

  .banner_wrap a {
    height: 50px;
  }

  .banner_wrap a:before {
    top: 5px;
    left: 5px;
  }
}

@media screen and (max-width: 768px) {
  #banner_section {
    padding: 10px 0;
    background: #009a81;
  }

  .banner_img {
    width: 30%;
  }

  .banner_img:nth-child(1) {
    width: 0;
  }

  .banner_img img {
    position: absolute;
    bottom: -10px;
    right: -40px;
    width: calc(100% + 40px);
  }

  .banner_wrap {
    width: 70%;
    line-height: 1.6;
    font-size: 10px;
  }

  .banner_wrap h2 {
    font-size: 18px;
  }

  .banner_wrap a {
    width: calc(100% - 20px);
    height: 40px;
    margin: 10px auto 0;
    padding-left: 30px;
    font-size: 14px;
  }

  .banner_wrap a:before {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
    font-size: 10px;
  }
}

/*==============================================================================================

	book要素

==============================================================================================*/
#voice_section {
  padding: 80px 0;
}

#voice_section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 2px;
}

.voice_contain {
  margin-top: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.4);
}

.voice_wrap {
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 30px;

  line-height: 1.6;
}

.voice_wrap:nth-child(1),
.voice_wrap:nth-child(4),
.voice_wrap:nth-child(5) {
  background: #f7f7f7;
}

.voice_wrap > div {
  width: 120px;
  text-align: center;
  letter-spacing: 2px;
}

.voice_wrap img {
  margin-bottom: 10px;
}

.voice_wrap > p {
  width: calc(100% - 120px);
  padding-left: 20px;
  font-size: 18px;
}

.voice_wrap > p span {
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  #voice_section {
    padding: 60px 0;
  }

  #voice_section h2 {
    font-size: 28px;
  }

  .voice_wrap > p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  #voice_section {
    padding: 50px 0;
  }

  #voice_section h2 {
    font-size: 20px;
  }

  .voice_contain {
    margin-top: 30px;
    display: block;
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.4);
  }

  .voice_wrap {
    width: 100%;
    padding: 20px;
  }

  .voice_wrap:nth-child(odd) {
    background: #f7f7f7;
  }

  .voice_wrap:nth-child(even) {
    background: #ffffff;
  }

  .voice_wrap > div {
    width: 90px;
    font-size: 10px;
  }

  .voice_wrap img {
    margin-bottom: 5px;
  }

  .voice_wrap > p {
    width: calc(100% - 90px);
    font-size: 14px;
  }
}

/*==============================================================================================

	book要素

==============================================================================================*/
#book_section {
  padding: 80px 0;
  background: #f2faf8;
}

.book_contain {
  background: #ffffff;
  position: relative;
  padding: 30px;
}

.book_contain h2 {
  position: absolute;
  top: 0;
  left: 60px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.book_contain h2 div {
  color: #00917b;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 2px;
  background: #ffffff;
  border: 3px solid #56c4b6;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.book_contain h2 span {
  background: #56c4b6;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -4px;
  right: -4px;
}
.book_wrap {
  display: -webkit-flex;
  display: flex;
  padding: 0 30px 30px;
}
.book_inner {
  width: calc(100% - 220px);
  padding: 30px 20px 0 0;
  line-height: 1.6;
}
.book_inner span {
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 2px;
}

.book_inner p {
  padding-top: 20px;
  font-size: 24px;
}

.book_img {
  width: 220px;
}

.book_info {
  background: #d7f7f2;
  padding: 20px 20px 20px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.book_info > p {
  width: calc(100% - 220px);
  font-size: 18px;
  line-height: 2;
}

.book_info > p span {
  font-size: 22px;
  display: block;
}

.book_info > div {
  width: 220px;
}

@media screen and (max-width: 980px) {
  #book_section {
    padding: 70px 0;
  }

  .book_wrap {
    display: -webkit-flex;
    display: flex;
    padding: 0 30px 30px;
  }
  .book_inner {
    width: calc(100% - 180px);
  }
  .book_inner span {
    font-size: 32px;
  }

  .book_inner p {
    font-size: 22px;
  }

  .book_img {
    width: 180px;
  }

  .book_info {
    background: #d7f7f2;
    padding: 20px 20px 20px 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .book_info > p {
    width: calc(100% - 180px);
    font-size: 16px;
  }

  .book_info > p span {
    font-size: 20px;
  }

  .book_info > div {
    width: 180px;
  }
}

@media screen and (max-width: 768px) {
  #book_section {
    padding: 60px 0;
  }

  .book_contain {
    padding: 20px;
  }

  .book_contain h2 {
    left: 20px;
  }

  .book_contain h2 div {
    font-size: 20px;
  }

  .book_wrap {
    padding: 20px 0px;
  }
  .book_inner {
    width: calc(100% - 100px);
    padding: 0px 10px 0 0;
    line-height: 1.6;
  }
  .book_inner span {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
  }

  .book_inner p {
    padding-top: 10px;
    font-size: 14px;
  }

  .book_img {
    width: 100px;
  }

  .book_info {
    background: #d7f7f2;
    padding: 10px 20px 20px;
    display: block;
  }

  .book_info > p {
    width: 100%;
    font-size: 12px;
    line-height: 2;
    padding-bottom: 20px;
  }

  .book_info > p span {
    font-size: 16px;
    display: block;
  }

  .book_info > div {
    width: 220px;
    margin: 0 auto;
  }
}

/*==============================================================================================

	qa要素

==============================================================================================*/
#qa_section {
  padding: 80px 0;
}

#qa_section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 2px;
  padding-bottom: 30px;
  position: relative;
}

#qa_section h2:after {
  content: "";
  background: url(../img/qa_title.png) no-repeat;
  display: block;
  height: 8px;
  width: 90px;
  margin: 30px auto 0;
}
.qa_contain dt {
  color: #009c87;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.6;
}
.qa_contain dd {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.qa_contain dt:before {
  content: "";
  background: url(../img/qa_img-q.png) center/100% no-repeat;
  height: 34px;
  width: 34px;
  display: block;
  margin-right: 10px;
}

.qa_contain dd:before {
  content: "";
  background: url(../img/qa_img-a.png) center/100% no-repeat;
  height: 34px;
  width: 34px;
  display: block;
  margin-right: 10px;
}

.qa_contain p {
  width: calc(100% - 45px);
}

@media screen and (max-width: 980px) {
  #qa_section {
    padding: 70px 0;
  }

  #qa_section h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  #qa_section {
    padding: 60px 0;
  }

  #qa_section h2 {
    font-size: 22px;
    padding-bottom: 20px;
  }

  #qa_section h2:after {
    content: "";
    background: url(../img/qa_title.png) no-repeat;
    display: block;
    background-size: 100% 100%;
    height: 6px;
    width: 60px;
    margin: 20px auto 0;
  }

  .qa_contain dt:before,
  .qa_contain dd:before {
    height: 28px;
    width: 28px;
  }

  .qa_contain p {
    width: calc(100% - 40px);
  }
}

/*==============================================================================================

	footer要素

==============================================================================================*/
footer {
  background: #009c87;
  color: #fff;
  padding-bottom: 60px;
}

.footer-wrap {
  margin: 0px auto 0px;
  padding: 50px 0 30px;
  max-width: 1000px;
  display: flex;
}

.footer-main {
  width: 63%;
  margin-right: 2.5%;
}

.footer-logo {
  margin: 0 0 40px;
}

.footer-main__list dl {
  display: flex;
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.4;
}

.footer-main__list dt {
  width: 17%;
  margin-right: 3%;
  text-align: center;
}

.footer-main__list dd {
  width: 80%;
}

.footer-main__list dd .text {
  float: left;
  margin-right: 0.5em;
}

.footer-food {
  width: 34.5%;
}

.footer-food__box {
  border: 2px solid #fff;
  padding: 7.5%;
}

.footer-food__box h4 {
  font-size: 1.25rem;
  letter-spacing: 0;
  margin-bottom: 0.75em;
}

.footer-food__box .img {
  margin-bottom: 0.75em;
}

.footer-food__box .text {
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.8;
}

.copyright {
  font-size: 0.875rem;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .footer-wrap {
    display: block;
  }

  .footer-main {
    width: 100%;
  }

  .footer-main__list dl {
    font-size: 12px;
  }

  .footer-main__list dt {
    width: 22%;
  }

  .footer-main__list dd {
    width: 78%;
  }

  .footer-food {
    width: 100%;
  }
}

/*==============================================================================================

	fix要素

==============================================================================================*/
.fix_contain {
  position: fixed;
  bottom: -70px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #ffffff94;
  -moz-transition: bottom 0.3s ease;
  -webkit-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.fix_contain.fix_view {
  bottom: 0;
}

.fix_contain a {
  width: 300px;
  height: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  border-radius: 25px;
  font-size: 23px;
  margin: 0 10px;
}

.fix_contain a:nth-child(1) {
  background: #FFFFFF;
  border: 2px solid #ffc300;
  color: #ffc300;
}
.fix_contain a:nth-child(2) {
  background: #ffc300;
  color: #ffffff;
}
.fix_contain a:nth-child(1):hover {
  color:#ffe48a;
}
.fix_contain a:nth-child(2):hover {
  background:#ffe48a;
}

@media screen and (max-width: 768px) {
  .fix_contain a {
    font-size: 12px;
    width: 50%;
    max-width: 200px;
    height: 40px;
    margin: 0 5px;
  }
}


.nyukyoshaboshu_ {
  font-size: 34px;
  padding: 50px 0;
  text-align: center;
  font-weight: 900;
}
