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

基本設定

============================================= */
@font-face {
  font-family: "futura";
  src: url("fonts/Futura Book font.ttf") format("truetype");
}
body {
  color: #020202;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

img {
  width: 100%;
  max-width: 100%;
}

.bold {
  font-weight: 700;
}

.center {
  text-align: center;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .br_sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .br_tab {
    display: none;
  }
}
@media (min-width: 1024px) {
  .br_tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

@media (max-width: 960px) {
  .flex {
    display: flex;
  }
}

.underline {
  background: linear-gradient(transparent 60%, #ffeaa9 50%);
}

.main__wrapper {
  padding: 0 16px;
}

.small {
  font-size: 14px;
}

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

ヘッダー

============================================= */
.header {
  background-color: white;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.header__inner .logo {
  width: 150px;
}

.header__title {
  width: 80px;
}

@media screen and (min-width: 960px) {
  .header__title {
    width: 120px;
  }
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}
.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .nav-items {
    width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .nav-items {
    width: 750px;
  }
}
@media screen and (min-width: 1440px) {
  .nav-items {
    width: 800px;
  }
}
.nav-items .header_menu_li {
  border-bottom: solid 1px #ffb102;
  font-size: 15px;
}
@media screen and (max-width: 959px) {
  .nav-items .header_menu_li {
    width: 300px;
  }
}
@media screen and (min-width: 960px) {
  .nav-items .header_menu_li {
    border: none;
  }
}
.nav-items .header_menu_li a {
  padding: 30px 0;
  display: block;
}
.nav-items .header_menu_li:hover {
  opacity: 0.5;
}
.nav-items .header_menu_li:nth-child(5) {
  border: none;
}
.nav-items .application {
  background-color: #ffb102;
  color: #fff;
  border-radius: 30px;
}
@media screen and (min-width: 960px) {
  .nav-items .application {
    border-radius: 40px;
  }
}
.nav-items .application a {
  padding: 20px 30px;
}
@media screen and (min-width: 768px) {
  .nav-items .application a {
    padding: 6px 30px;
  }
}
.nav-items .application:hover {
  opacity: 0.8;
}

@media screen and (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 50px;
  height: 50px;
}

.hamburger {
  background-color: #fedc5a;
  border-color: #fedc5a;
  z-index: 9999;
  padding: 11px 11px;
  border-radius: 50%;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

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

メインビュー

============================================= */
.mv {
  position: relative;
  margin-top: 70px;
  text-align: center;
}
.mv__btn {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  background: #20c602;
  border: solid 3px #fff;
  width: 320px;
  border-radius: 40px;
  font-size: 22px;
  padding: 7px 0 10px 0px;
  line-height: 27px;
  box-shadow: 3px 5px 2px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .mv__btn {
    width: 400px;
    bottom: 10px;
    border: solid 6px #fff;
    box-shadow: 6px 8px 2px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1024px) {
  .mv__btn {
    top: 78%;
    width: 520px;
    font-size: 30px;
    width: 520px;
    line-height: 35px;
    height: 100px;
    border-radius: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .mv__btn {
    max-width: 550px;
  }
}
.mv__btn .yellow {
  color: #fedc5a;
}
@media screen and (min-width: 768px) {
  .mv__btn .yellow {
    font-size: 23px !important;
  }
}
.mv__btn .big {
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .mv__btn .big {
    font-size: 32px;
  }
}
.mv__btn:hover {
  transform: scale(1.1, 1.1);
}

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

お悩み

============================================= */
.trouble {
  line-height: 2;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .trouble {
    margin: 50px 0;
  }
}
@media screen and (min-width: 768px) {
  .trouble_text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .trouble_text_big {
    font-size: 24px;
  }
}
.trouble .balloon__wrapper {
  position: relative;
  height: 70px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .trouble .balloon__wrapper {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .trouble .balloon__wrapper {
    margin-top: 80px;
  }
}
.trouble .balloon__wrapper .balloon__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .trouble .balloon__wrapper .balloon__img {
    width: 700px;
  }
}
.trouble .balloon__wrapper .balloon__text {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .trouble .balloon__wrapper .balloon__text {
    top: 28%;
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .trouble__img {
    width: 500px;
    margin: 0 auto;
    display: block;
  }
}

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

チェックボックス

============================================= */
.trouble__checkbox {
  background: #fff6d5;
  padding: 15px 0 30px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .trouble__checkbox {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
@media screen and (min-width: 1024px) {
  .trouble__checkbox {
    padding: 30px 0 40px;
    width: 960px;
    margin: 0 auto;
  }
}
.trouble__checkbox__list {
  margin: 0 auto;
  width: 325px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #2e2e2e;
}
@media screen and (min-width: 768px) {
  .trouble__checkbox__list {
    width: 520px;
    font-size: 23px;
  }
}
.trouble__checkbox__list .check__img {
  width: 20px;
  vertical-align: text-top;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .trouble__checkbox__list .check__img {
    margin-top: 10px;
  }
}

.trouble__checkbox:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -50px;
  border: 50px solid transparent;
  border-top: 30px solid #fff6d5;
}
@media screen and (min-width: 768px) {
  .trouble__checkbox:before {
    margin-left: -100px;
    border: 100px solid transparent;
    border-top: 50px solid #fff6d5;
  }
}

.trouble__bottom_text {
  text-align: center;
  font-size: 18px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .trouble__bottom_text {
    font-size: 32px;
    margin-top: 80px;
  }
}
.trouble .trouble__bottom_wrapper {
  text-align: center;
}
.trouble__bottom_big_text {
  text-align: center;
  font-size: 22px;
  color: #fa6a00;
  background: linear-gradient(transparent 60%, #fff795 50%);
  display: inline-block;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .trouble__bottom_big_text {
    font-size: 48px;
    line-height: 1.5;
    border: none;
  }
}

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

SNS広告メリット 01

============================================= */
.merit {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 10px 15px 70px 15px;
  position: relative;
  padding-top: 50px;
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .merit {
    padding: 10px 15px 100px 15px;
  }
}

.merit:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 160px);
  bottom: 0;
  left: 0;
  background: #fffbeb;
  z-index: -1;
}

.merit__wrapper {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
  box-shadow: 8px 10px 0 #dbdbdb;
  border-radius: 12px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__wrapper {
    margin-top: 80px;
  }
}

.merit__title {
  background: #fecc5a;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 100px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .merit__title {
    display: flex;
  }
}
.merit__title__left {
  display: flex;
  padding: 10px 15px;
}
@media screen and (min-width: 768px) {
  .merit__title__left {
    border-right: solid 1px #fff;
    padding: 10px 50px;
    margin: 20px;
  }
}
.merit__title__text {
  font-size: 10px;
  color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .merit__title__text {
    font-size: 15px;
    line-height: normal;
  }
}
.merit__title__number {
  font-size: 30px;
  color: #fff;
  margin-left: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .merit__title__number {
    margin-left: 20px;
    font-size: 41px;
  }
}
.merit__title__right {
  font-size: 32px;
  text-align: center;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .merit__title__right {
    line-height: 100px;
    padding-left: 30px;
    margin: 0;
  }
}
.merit .sparkling {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 50px;
}
@media screen and (min-width: 768px) {
  .merit .sparkling {
    top: -20px;
    width: 80px;
  }
}
.merit__inner__text {
  padding: 15px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .merit__inner__text {
    padding: 40px 40px 10px;
  }
}
.merit__inner .balloon__wrapper {
  position: relative;
  height: 70px;
}
@media screen and (min-width: 768px) {
  .merit__inner .balloon__wrapper {
    margin-top: 30px;
  }
}
.merit__inner .balloon__wrapper .balloon__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .merit__inner .balloon__wrapper .balloon__img {
    width: 500px;
  }
}
.merit__inner .balloon__wrapper .balloon__text {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .merit__inner .balloon__wrapper .balloon__text {
    top: 35%;
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .merit__inner .media {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
  }
}
.merit__inner .media__wrapper {
  padding: 10px 20px 20px;
}
@media screen and (min-width: 768px) {
  .merit__inner .media__wrapper {
    width: 31%;
    padding: 0;
  }
}
.merit__inner .media__wrapper__img {
  margin-bottom: 5px;
}
.merit__inner .media__wrapper__title {
  font-size: 16px;
}
.merit__inner .media__wrapper__price {
  text-align: right;
  margin-top: 5px;
  font-size: 23px;
  letter-spacing: 1px;
}
.merit__inner .media__wrapper__orange {
  color: #ff6d02;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .merit__inner .media__wrapper__orange {
    font-size: 16px;
  }
}
.merit__inner .arrow {
  position: relative;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .merit__inner .arrow {
    margin: 30px 0 10px;
  }
}
.merit__inner .arrow .dli-caret-down {
  display: inline-block;
  vertical-align: middle;
  color: #fff6d3;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 50px 120px;
  border-top-color: currentColor;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .merit__inner .arrow .dli-caret-down {
    border-width: 90px 180px;
  }
}
.merit__inner .arrow .dli-caret-down__text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
  color: #4a4a4a;
}
@media screen and (min-width: 768px) {
  .merit__inner .arrow .dli-caret-down__text {
    top: 40px;
    font-size: 26px;
  }
}
.merit__inner .sns_ad {
  padding: 20px;
  text-align: center;
}
.merit__inner .sns_ad__img {
  max-width: 500px;
  display: block;
  margin: 0 auto;
}
.merit__inner .sns_ad__price {
  color: #ff6d02;
  border-bottom: dotted 2px #ff6d02;
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 1px;
  margin: 5px 0 15px 0;
}
@media screen and (min-width: 768px) {
  .merit__inner .sns_ad__price {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.merit__inner .sns_ad__price .bold {
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  .merit__inner .sns_ad__price .bold {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .merit__inner .sns_ad__text {
    font-size: 23px;
  }
}
.merit__inner .sns_ad__red {
  color: #ff2902;
  font-size: 20px;
  display: inline-block;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .merit__inner .sns_ad__red {
    font-size: 28px;
    line-height: 45px;
  }
}
.merit__inner .sns_ad__red .sns_ad__big {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .merit__inner .sns_ad__red .sns_ad__big {
    font-size: 40px;
  }
}
.merit__inner .sns_ad__red .sns_ad__black {
  color: #020202;
}
.merit__inner .sns_ad__bottom_text {
  margin-top: 20px;
  text-align: left;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .merit__inner .sns_ad__bottom_text {
    text-align: center;
    margin: 20px;
  }
}

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

SNS広告メリット 02

============================================= */
.merit__wrapper .merit__inner .sp__text {
  padding: 20px 20px 10px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__text {
    padding: 30px;
  }
}
.merit__wrapper .merit__inner .sp {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp {
    position: relative;
    padding-bottom: 50px;
  }
}
.merit__wrapper .merit__inner .sp__wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper {
    height: 390px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__wrapper {
    display: flex;
    justify-content: space-evenly;
  }
}
.merit__wrapper .merit__inner .sp__wrapper__text {
  text-align: center;
  font-weight: 700;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper__left__text {
    position: absolute;
    top: 175px;
    left: 58px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper__right__text {
    position: absolute;
    right: 10px;
    top: 385px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__img {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__img-1 {
    top: 0;
    left: 15px;
    width: 180px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__img-1 {
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__img-2 {
    top: 190px;
    right: 15px;
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__img-2 {
    width: 270px;
  }
}
.merit__wrapper .merit__inner .sp__img-sp {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__img-sp {
    top: 480px;
    left: -25px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__middle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
  }
}
.merit__wrapper .merit__inner .sp__middle__text {
  padding: 60px 20px 15px 20px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__middle__text {
    width: 550px;
    padding: 20px 20px 10px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .merit__wrapper .merit__inner .sp__middle__text {
    width: 600px;
  }
}
.merit__wrapper .merit__inner .sp__wrapper-2 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper-2 {
    height: 370px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__wrapper-2 {
    display: flex;
    justify-content: space-evenly;
  }
}
.merit__wrapper .merit__inner .sp__wrapper-2__text {
  text-align: center;
  margin: 15px 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper-2__left__text {
    position: absolute;
    top: 195px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper-2__right__text {
    position: absolute;
    top: 435px;
    left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper-2 .sp__img-3 {
    width: 200px;
    top: 0;
    right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__wrapper-2 .sp__img-3 {
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__wrapper-2 .sp__img-4 {
    width: 180px;
    top: 260px;
    left: 15px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__wrapper-2 .sp__img-4 {
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__bottom {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__bottom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrapper .merit__inner .sp__bottom__img {
    position: absolute;
    width: 120px;
    top: 0;
    right: 10px;
  }
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__bottom__img {
    width: 130px;
  }
}
.merit__wrapper .merit__inner .sp__bottom__text {
  padding: 160px 20px 0 20px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__bottom__text {
    width: 550px;
    padding: 0 20px 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  .merit__wrapper .merit__inner .sp__bottom__text {
    width: 600px;
  }
}
.merit__wrapper .merit__inner .sp__button {
  text-align: center;
  display: table;
  margin: 20px auto 0 auto;
  transition: 0.2s;
}
.merit__wrapper .merit__inner .sp__button:hover {
  transform: scale(1.1, 1.1);
}
.merit__wrapper .merit__inner .sp__btn {
  color: #fff;
  background: #20c602;
  border: solid 3px #fff;
  width: 320px;
  border-radius: 40px;
  font-size: 22px;
  padding: 7px 0 10px 0px;
  line-height: 27px;
  box-shadow: 3px 5px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__btn {
    width: 400px;
    border: solid 6px #fff;
    box-shadow: 6px 8px 2px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1024px) {
  .merit__wrapper .merit__inner .sp__btn {
    max-width: 520px;
    font-size: 30px;
    width: 520px;
    line-height: 35px;
    height: 100px;
    border-radius: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .merit__wrapper .merit__inner .sp__btn {
    max-width: 550px;
  }
}
.merit__wrapper .merit__inner .sp__btn .yellow {
  color: #fedc5a;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .sp__btn .yellow {
    font-size: 23px !important;
  }
}
.merit__wrapper .merit__inner .sp__btn .big {
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .merit__wrapper .merit__inner .sp__btn .big {
    font-size: 32px;
  }
}
.merit__wrapper .merit__inner .target__text {
  margin: 20px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .target__text {
    margin: 30px 30px 20px 30px;
  }
}
.merit__wrapper .merit__inner .target__img {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .target__img {
    width: 600px;
    margin: 0 auto;
    display: block;
  }
}
.merit__wrapper .merit__inner .insta__text__wrapper {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .insta__text__wrapper {
    padding: 0 30px;
  }
}
.merit__wrapper .merit__inner .insta__text__wrapper .insta {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .insta__wrapper {
    display: flex;
  }
}
.merit__wrapper .merit__inner .insta__wrapper .insta__container {
  display: flex;
  font-size: 13px;
  justify-content: center;
}
.merit__wrapper .merit__inner .insta__wrapper .insta__container .insta__contents {
  font-size: 13px;
  padding: 3px 0px;
  border: solid 1px #ffbb02;
  border-radius: 20px;
  margin-right: 10px;
  width: 80px;
  text-align: center;
  margin-bottom: 10px;
}
.merit__wrapper .merit__inner .insta__wrapper__text {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .merit__wrapper .merit__inner .insta__wrapper__text {
    padding: 10px 0 30px 0;
  }
}

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

タイトル

============================================= */
.title {
  display: inline-block;
  position: relative;
  color: #ffb102;
  font-size: 27px;
  text-align: center;
  display: block;
  margin: 50px 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 40px;
    margin: 60px 0;
  }
}

.title:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 50px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  transform: translate(-50%);
  /*位置調整*/
  background-color: #ffb102;
  /*下線の色*/
}
@media screen and (min-width: 768px) {
  .title:before {
    width: 100px;
    /*下線の幅*/
  }
}

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

お申し込みの流れ

============================================= */
.flow {
  padding-top: 50px;
  margin-top: -50px;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-bottom: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .flow__flex-top {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .flow__flex-bottom {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
  }
}
.flow__flex-bottom .flow__wrapper:nth-child(1) {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .flow__flex-bottom .flow__wrapper:nth-child(1) .flow__contents__triangle {
    margin-left: 0;
    margin-right: 25px;
  }
}
.flow__flex-bottom .flow__wrapper:nth-child(2) {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .flow__flex-bottom .flow__wrapper:nth-child(2) .flow__contents__triangle {
    margin-left: 0;
    margin-right: 25px;
  }
}
.flow__wrapper {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .flow__wrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-left: 20px;
  }
}
.flow__wrapper__img {
  width: 200px;
  display: block;
  margin: 0 auto;
}
.flow__wrapper__title {
  color: #ffb102;
  text-align: center;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
}
.flow__wrapper__text {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .flow__wrapper__text {
    max-width: 500px;
    margin: 10px auto 25px auto;
  }
}
.flow__wrapper:nth-child(3) {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .flow__wrapper:nth-child(3) .flow__contents__triangle {
    display: none;
  }
}
.flow__contents {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .flow__contents {
    margin-top: 50px;
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .flow__contents__triangle {
    width: 8%;
    margin-top: 150px;
    margin-left: 25px;
  }
}
.flow__contents__triangle .triangle_bottom {
  width: 100px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .flow__contents__triangle .triangle_bottom {
    display: none;
  }
}
.flow__contents__triangle .triangle_right {
  width: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 1023px) {
  .flow__contents__triangle .triangle_right {
    display: none;
  }
}

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

料金について

============================================= */
.price {
  background-color: #f7f7f7;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 0 15px;
  padding: 30px 16px 80px 16px;
  padding-top: 70px;
  margin-top: -50px;
}
.price .title {
  margin: 0 0 50px 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price .title {
    margin: 30px 0 50px;
  }
}
.price__ad {
  position: relative;
  width: 330px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .price__ad {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px 0 30px 0;
  }
}
.price__ad__text {
  background: #fff;
  border: solid 2px #ffb102;
  border-radius: 5px;
  padding: 0 20px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .price__ad__text {
    margin-right: 10px;
  }
}
.price__ad__price {
  font-size: 42px;
  color: #ff9300;
  letter-spacing: 2px;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price__ad__price {
    font-size: 72px;
  }
}
.price__ad__small {
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .price__ad__small {
    font-size: 36px;
  }
}
.price__ad:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 25px solid #b5b5b5;
}
@media screen and (min-width: 768px) {
  .price__ad:before {
    margin-left: -40px;
    border: 40px solid transparent;
    border-top: 30px solid #b5b5b5;
  }
}
.price .opening {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .price .opening {
    font-size: 27px;
    margin-top: 50px;
  }
}
.price .opening__price {
  font-size: 24px;
  color: #ff0202;
  background: linear-gradient(transparent 60%, #fff795 50%);
  line-height: 45px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .price .opening__price {
    font-size: 53px;
    line-height: 90px;
  }
}
.price .opening__price-big {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price .opening__price-big {
    font-size: 90px;
  }
}
.price .plan {
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .price .plan {
    max-width: 600px;
    margin: 50px auto;
  }
}
@media screen and (min-width: 768px) {
  .price .plan {
    max-width: 700px;
    margin: 50px auto 80px auto;
  }
}
.price .plan__box {
  background: #fff;
  border: solid 2px #fedc5a;
  border-radius: 10px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .price .plan__box {
    padding: 15px 30px;
  }
}
.price .plan__right {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .price .plan__right {
    text-align: right;
  }
}
.price .normal__title {
  border-bottom: solid 1px #707070;
  padding-bottom: 5px;
  text-align: center;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .price .normal__title {
    font-size: 32px;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .price .normal__title {
    max-width: 850px;
  }
}
.price .normal__flex {
  position: relative;
}
@media screen and (min-width: 768px) {
  .price .normal__flex {
    display: flex;
    justify-content: center;
  }
}
.price .normal__flex:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 25px solid #b5b5b5;
}
@media screen and (min-width: 768px) {
  .price .normal__flex:before {
    margin-left: -40px;
    border: 40px solid transparent;
    border-top: 30px solid #b5b5b5;
  }
}
.price .normal__price-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .price .normal__price-top {
    margin: 40px 0;
  }
}
.price .normal__price-top .normal__price__left,
.price .normal__price-top .normal__price__right {
  background: #ffbb02;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
}
@media screen and (min-width: 768px) {
  .price .normal__price-top .normal__price__left,
.price .normal__price-top .normal__price__right {
    font-size: 20px;
  }
}
.price .normal__price-top .normal__price__middle {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .price .normal__price-top .normal__price__middle {
    font-size: 25px;
  }
}
.price .normal__price-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .price .normal__price-bottom {
    padding: 0;
  }
}
.price .normal__price-bottom .normal__price__left {
  margin-right: 20px;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .price .normal__price-bottom .normal__price__left {
    margin: 0 20px;
    font-size: 35px;
  }
}
.price .normal__price-bottom .normal__price__right {
  border: solid 2px #ffbb02;
  display: inline-block;
  padding: 5px 35px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .price .normal__price-bottom .normal__price__right {
    font-size: 20px;
  }
}
.price .normal__text {
  text-align: center;
  color: #fc0202;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .price .normal__text {
    margin-top: 60px;
  }
}
.price .normal__text__top {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price .normal__text__top {
    font-size: 38px;
    line-height: 50px;
  }
}
.price .normal__text__top-big {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .price .normal__text__top-big {
    font-size: 51px;
  }
}
.price .normal__text__bottom {
  font-size: 22px;
  background: linear-gradient(transparent 60%, #fff795 50%);
  display: inline-block;
  line-height: 40px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price .normal__text__bottom {
    font-size: 46px;
    line-height: 70px;
  }
}
.price .normal__text__bottom-big {
  font-size: 29px;
}
@media screen and (min-width: 768px) {
  .price .normal__text__bottom-big {
    font-size: 61px;
  }
}
.price .normal__button {
  text-align: center;
  display: table;
  margin: 40px auto 0 auto;
  transition: 0.2s;
}
.price .normal__button:hover {
  transform: scale(1.1, 1.1);
}
.price .normal__btn {
  color: #fff;
  background: #20c602;
  border: solid 3px #fff;
  width: 320px;
  border-radius: 40px;
  font-size: 22px;
  padding: 7px 0 10px 0px;
  line-height: 27px;
  box-shadow: 3px 5px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price .normal__btn {
    max-width: 520px;
    font-size: 30px;
    width: 520px;
    line-height: 35px;
    height: 100px;
    border-radius: 60px;
    border: solid 6px #fff;
    box-shadow: 6px 8px 2px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1440px) {
  .price .normal__btn {
    max-width: 550px;
  }
}
.price .normal__btn .yellow {
  color: #fedc5a;
}
@media screen and (min-width: 768px) {
  .price .normal__btn .yellow {
    font-size: 23px !important;
  }
}
.price .normal__btn .big {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .price .normal__btn .big {
    font-size: 32px;
  }
}

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

成約倍増計画！！

============================================= */
.more {
  background: #fffbeb;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: relative;
}
.more .balloon {
  width: 350px;
  margin: 10px 0 0 -5px;
}
@media screen and (min-width: 768px) {
  .more .balloon {
    width: 450px;
    margin: 40px 0 0 6px;
  }
}
@media screen and (min-width: 1024px) {
  .more .balloon {
    margin: 40px 0 0 -45px;
  }
}
.more__img__wrapper {
  padding: 0 20px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: auto;
  margin: 0 auto;
  max-width: 550px;
}
.more__plan {
  padding-top: 180px;
}
@media screen and (min-width: 768px) {
  .more__plan {
    padding-top: 250px;
  }
}
.more__plan__title {
  position: relative;
  padding: 15px 0 20px;
  background-color: #ff6d02;
  z-index: 1;
  font-weight: 700;
}
.more__plan__titletext {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 36px;
  text-align: center;
  line-height: 45px;
}
@media screen and (min-width: 768px) {
  .more__plan__titletext {
    font-size: 54px;
    line-height: 65px;
  }
}
.more__plan__titletext span {
  font-size: 24px;
  line-height: 35px;
  display: block;
}
@media screen and (min-width: 768px) {
  .more__plan__titletext span {
    font-size: 29px;
    line-height: 40px;
  }
}
.more__plan__title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: repeating-linear-gradient(-45deg, #fffbea, #fffbea 1px, transparent 0, transparent 10px);
  opacity: 0.4;
  z-index: 1;
}
.more__plan__text {
  padding: 0 20px;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .more__plan__text {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
  }
}
.more__lp {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0 16px;
}
.more__lp__graph {
  max-width: 600px;
  margin: 20px auto;
  display: block;
}
.more__cvr {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  margin-top: 30px;
}
.more__cvr__before {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 15px;
}
.more__cvr__before__text {
  font-size: 17px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .more__cvr__before__text {
    font-size: 25px;
    margin-top: 50px;
  }
}
.more__cvr__before__price {
  font-size: 17px;
  border-bottom: solid 1px #707070;
  text-align: center;
  margin: 0 auto;
  width: 320px;
}
@media screen and (min-width: 768px) {
  .more__cvr__before__price {
    font-size: 30px;
    width: 550px;
  }
}
.more__cvr__before__price .big {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .more__cvr__before__price .big {
    font-size: 40px;
  }
}
.more__cvr__before__bottom {
  text-align: center;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .more__cvr__before__bottom {
    font-size: 25px;
  }
}
.more__cvr__before__bottom .red {
  font-size: 27px;
  color: #ff6d02;
}
@media screen and (min-width: 768px) {
  .more__cvr__before__bottom .red {
    font-size: 40px;
  }
}
.more__cvr__before:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 25px solid #b5b5b5;
}
@media screen and (min-width: 768px) {
  .more__cvr__before:before {
    margin-left: -40px;
    border: 40px solid transparent;
    border-top: 30px solid #b5b5b5;
  }
}
.more__cvr__after {
  margin-top: 50px;
  max-width: 600px;
  margin: 60px auto 30px auto;
}
.more__cvr__after__price .big,
.more__cvr__after__price .red {
  color: #ff6d02;
}
.more__cvr__bottom-text {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .more__cvr__bottom-text {
    margin-top: 70px;
  }
}
.more__cvr__bottom-text .red {
  color: #ff6d02;
  font-weight: 700;
}
.more__how {
  padding: 0 16px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .more__how {
    max-width: 800px;
    padding: 0 16px;
    margin: 30px auto 0 auto;
    padding: 0 16px 70px 16px;
  }
}
.more__how .red {
  color: #ff6d02;
}

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

ヒートマップ

============================================= */
.heatmap__wrapper {
  background: #fffbeb;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding-bottom: 30px;
}

.heatmap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 10px 0;
}
@media screen and (min-width: 768px) {
  .heatmap {
    border-bottom: solid 1px #707070;
    text-align: center;
    margin: 0 auto 30px auto;
  }
}
@media screen and (min-width: 1024px) {
  .heatmap {
    max-width: 900px;
  }
}
.heatmap__down {
  width: 20px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .heatmap__title {
    display: inline;
    font-size: 18px;
    font-size: 21px;
  }
}
.heatmap__flex {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .heatmap__flex {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .heatmap__flex__left, .heatmap__flex__right {
    width: 45%;
  }
}
.heatmap__flex__left .red, .heatmap__flex__right .red {
  color: #ff6d02;
}
.heatmap__flex__left__text, .heatmap__flex__right__text {
  padding: 20px;
}
@media screen and (min-width: 1440px) {
  .heatmap__flex__left__text, .heatmap__flex__right__text {
    padding: 20px 40px;
  }
}
.heatmap__flex__left__text {
  margin-bottom: 20px;
}
.heatmap__flex__img {
  width: 180px;
  margin: 10px auto;
  display: block;
}

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

Q&A

============================================= */
.faq {
  padding-bottom: 30px;
  padding-top: 80px;
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-bottom: 50px;
  }
}
.faq__title {
  font-weight: 700;
  color: #ffbb02;
  font-size: 27px;
  text-align: center;
  letter-spacing: 3px;
  margin: 30px 0 15px;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .faq .s_01 .accordion_one {
    max-width: 850px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .faq .s_01 .accordion_one {
    max-width: 900px;
  }
}
.faq .accordion_header:before {
  content: "Q.";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 20px;
  color: #ffbb02;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .faq .accordion_header:before {
    font-size: 32px;
    top: 5px;
  }
}
.faq .s_01 .accordion_one .accordion_header {
  font-size: 16px;
  padding: 20px 11%;
  text-align: left;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-bottom: solid 1px #e8e8e8;
}
@media screen and (min-width: 768px) {
  .faq .s_01 .accordion_one .accordion_header {
    padding: 20px 0 20px 50px;
  }
}
.faq .s_01 .accordion_one .accordion_header:hover {
  opacity: 0.8;
}
.faq .s_01 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.faq .s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.faq .s_01 .accordion_one .accordion_header.open .i_box {
  transform: rotate(0deg);
}
.faq .s_01 .accordion_one .accordion_header .i_box .one_i:before,
.faq .s_01 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #ffbb02;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(0deg);
  transform-origin: center center;
}
.faq .s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.faq .s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.faq .s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  transform: rotate(-45deg);
}
.faq .s_01 .accordion_one .accordion_inner {
  display: none;
  padding: 0 15px;
  position: relative;
}
.faq .s_01 .accordion_one .accordion_inner .box_one {
  height: auto;
  padding: 7px 0 50px 17px;
}
.faq .s_01 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .faq .s_01 .accordion_one .accordion_inner p.txt_a_ac {
    font-size: 16px;
    padding-left: 20px;
  }
}
.faq .txt_a_ac:before {
  content: "A.";
  display: block;
  position: absolute;
  top: 0;
  left: 1px;
  font-size: 20px;
  color: #fa6a00;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .faq .txt_a_ac:before {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .faq .s_01 .accordion_one .accordion_header {
    font-size: 16px;
  }
  .faq .s_01 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .faq .s_01 .accordion_one .accordion_header {
    font-size: 14px;
    padding: 15px 60px 15px 30px;
    border-bottom: solid 1px #e8e8e8;
  }
}

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

お問い合わせ

============================================= */
.contact {
  max-width: 600px;
  margin: 30px auto;
  padding-top: 50px;
  margin-top: -50px;
}
.contact__title {
  font-weight: 700;
  color: #ffbb02;
  font-size: 27px;
  text-align: center;
  letter-spacing: 3px;
  margin: 30px 0 15px;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 40px;
  }
}
.contact__text {
  padding: 5px 0 25px 0;
}
@media screen and (min-width: 768px) {
  .contact__text {
    padding: 30px 0;
  }
}
.contact__check {
  display: flex;
}
.contact__check__img {
  width: 20px;
  margin-right: 15px;
}
.contact__check__bottom {
  color: #939393;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .contact__check__bottom {
    margin-bottom: 30px;
  }
}
.contact .form {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .contact .form {
    margin-bottom: 25px;
  }
}
.contact .form__input {
  padding: 10px 20px;
  font-size: 15px;
  border: solid 1px #b7b7b7;
  border-radius: 5px;
  display: block;
  width: 100%;
}
.contact .form__input:focus {
  outline: solid 1px #ffbb02;
}
.contact__campaign {
  color: #fc0202;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
}
@media screen and (min-width: 768px) {
  .contact__campaign {
    font-size: 25px;
  }
}
.contact__campaign .big {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .contact__campaign .big {
    font-size: 37px;
  }
}
.contact__gray {
  color: #696969;
  font-size: 14px;
  padding: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .contact__gray {
    text-align: center;
    padding: 20px 0 40px;
  }
}
.contact__agreement {
  text-align: center;
}
.contact__agreement .personal {
  color: #38a7ed;
  border-bottom: solid 1px #38a7ed;
  margin-right: 10px;
}
.contact__agreement .personal:hover {
  opacity: 0.8;
}

.contact .ECM_CheckboxInput {
  padding: 10px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact .ECM_CheckboxInput-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.contact .ECM_CheckboxInput-Input:focus + .ECM_CheckboxInput-DummyInput {
  border: dashed 2px #ffbb02;
}
.contact .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
  background: #ffbb02;
  border: none;
}
.contact .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 47%;
  left: 53%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #ffffff;
}
.contact .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 47%;
  left: 53%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #ffffff;
}
.contact .ECM_CheckboxInput-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: solid 2px #afafaf;
  background: #fff;
}
.contact .ECM_CheckboxInput-LabelText {
  margin-left: 12px;
  display: block;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}
.form .c-block-input__items {
  margin-bottom: 30px;
}
.form .c-block-input__title {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.form .c-block-input input[type=text] {
  font-size: 16px !important;
  width: 100%;
  border: 1px solid #999;
  outline: none !important;
  box-shadow: none;
  height: 55px;
  padding: 2px 16px;
  border-color: #999;
  border-radius: 4px;
}
.form .c-block-input textarea[type=text] {
  font-size: 16px !important;
  width: 100%;
  border: 1px solid #999;
  outline: none !important;
  box-shadow: none;
  height: 200px;
  padding: 2px 16px;
  border-color: #999;
  border-radius: 4px;
}
.form .c-block-input input:focus {
  border-color: #ffbb02;
}
.form .c-block-input ::-moz-placeholder {
  color: #ccc;
}
.form .c-block-input :-ms-input-placeholder {
  color: #ccc;
}
.form .c-block-input ::placeholder {
  color: #ccc;
}
.form .c-block-input ::-ms-input-placeholder {
  color: #ccc;
}
.form .c-block-input :-ms-input-placeholder {
  color: #ccc;
}

.form__btn__wrapper {
  margin: 0 auto;
  max-width: 500px;
}
.form__btn {
  background: #20c602;
  border-radius: 5px;
  color: #fff;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
}
.form__btn:hover {
  opacity: 0.8;
}

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

TOPへ

============================================= */
.top {
  position: relative;
  margin: 20px 0 30px;
}
.top__img {
  width: 40px;
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (min-width: 1024px) {
  .top__img {
    right: 100px;
    width: 60px;
  }
}
.top__text {
  font-size: 12px;
  color: #868686;
  position: absolute;
  top: 25px;
  right: 27px;
}
@media screen and (min-width: 768px) {
  .top__text {
    right: 24px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .top__text {
    top: 35px;
    right: 114px;
  }
}

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

フッター

============================================= */
.footer {
  background: #fedc5a;
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 150px;
  }
}
.footer__wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 16px;
}
.footer__logo {
  width: 200px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 250px;
  }
}
.footer p {
  color: #606060;
  font-size: 14px;
}
.footer__copy {
  margin-top: 40px;
}

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

個人情報取扱方針

============================================= */
.privacy__wrapper {
  max-width: 960px;
  padding: 0 16px;
  margin: 0 auto;
  font-size: 16px;
}
.privacy__wrapper .privacy-policy {
  margin: 100px auto 0 auto;
  font-size: 22px;
  line-height: 25px;
}
@media screen and (min-width: 768px) {
  .privacy__wrapper .privacy-policy {
    margin: 150px auto 0 auto;
  }
}
.privacy__wrapper .privacy-policy__small {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .privacy__wrapper .privacy-policy__small {
    margin-left: 30px;
  }
}
.privacy__wrapper .privacy__top {
  margin: 40px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .privacy__wrapper .privacy__top {
    margin: 60px auto 0 auto;
  }
}
.privacy__wrapper .privacy {
  margin: 60px auto 30px auto;
}
@media screen and (min-width: 768px) {
  .privacy__wrapper .privacy {
    margin: 100px auto 30px auto;
  }
}
.privacy__wrapper .privacy__title {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: solid 1px #bebebe;
}
.privacy__wrapper .privacy__text {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .privacy__wrapper .privacy__text {
    margin-bottom: 60px;
  }
}
.privacy__wrapper .privacy__contact {
  border: solid 2px #fedc5a;
  padding: 10px 20px;
}
@media screen and (min-width: 768px) {
  .privacy__wrapper .privacy__contact {
    padding: 20px 30px;
  }
}
.privacy__wrapper .privacy__contact__company {
  font-weight: 700;
  margin-bottom: 5px;
}
.privacy__wrapper .privacy__contact__tel {
  margin: 20px 0 3px 0;
}

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

サンクスページ

============================================= */
.thanks {
  padding: 0 16px;
  max-width: 900px;
  margin: 0 auto;
}
.thanks .thnaks__title {
  font-size: 20px;
  margin: 120px 0 30px 0;
  color: red;
}
@media screen and (min-width: 768px) {
  .thanks .thnaks__title {
    font-size: 28px;
    margin: 130px 0 50px 0;
  }
}
.thanks .thnaks__text {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .thanks .thnaks__text {
    text-align: center;
  }
}
.thanks .thanks__btn__wrapper {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks .thanks__btn__wrapper {
    margin-top: 60px;
  }
}
.thanks .thanks__btn {
  display: inline-block;
  border: solid 2px #ffb102;
  border-radius: 5px;
  padding: 10px 80px;
  color: #ffb102;
}
.thanks .thanks__btn:hover {
  background: #ffb102;
  color: #fff;
}/*# sourceMappingURL=style.css.map */