* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Sans CJK JP', sans-serif;
  color: #000000;
  margin: 0;
}

@media (min-width: 768px) {
  body {
    min-width: 1100px;
    font-size: 18px;
  }
}

p {
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

picture {
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

input, textarea {
  border: none;
  outline: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.only-pc, .only-pc-inline {
  display: none;
}

@media (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
  .only-pc {
    display: block;
  }
  .only-pc-inline {
    display: inline;
  }
}

.wrapper {
  width: 100%;
  position: relative;
  padding: 20px 10px;
}

@media (min-width: 768px) {
  .wrapper {
    padding: 60px calc((100% - 1000px)/2);
  }
}

.wrapper-sub {
  width: 100%;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .wrapper-sub {
    padding: 0 10%;
  }
}

@media (min-width: 1600px) {
  .wrapper-sub {
    max-width: 1520px;
    padding: 0;
    margin: 0 auto;
  }
}

.h2-title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin: 0 -2.5px 20px;
}

@media (min-width: 768px) {
  .h2-title {
    font-size: 32px;
  }
}

.h2-title.yellow {
  color: #F2E825;
  margin: 0 0 20px;
}

.h2-img {
  margin-bottom: 20.5px;
}

@media (min-width: 768px) {
  .h2-img {
    margin-bottom: 40.5px;
  }
}

.h2-img img {
  display: block;
}

.Not-found {
  background-color: #F2E825;
  height: 100vh;
  text-align: center;
}

.Not-found .text {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .Not-found .text {
    font-size: 32px;
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .Not-found .btn {
    width: 510px;
    margin: 0 auto;
  }
}

.scroll-y {
  opacity: 0;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.scroll-y.active-y {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.scroll-x {
  opacity: 0;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.scroll-x.active-x {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.poyoyon {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

.active-poyoyon {
  -webkit-animation: poyoyon 0.7s linear forwards;
          animation: poyoyon 0.7s linear forwards;
}

@-webkit-keyframes poyoyon {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes poyoyon {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes cta-anime {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(1.05, 1.05);
            transform: scale(1.05, 1.05);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  75% {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes cta-anime {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(1.05, 1.05);
            transform: scale(1.05, 1.05);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  75% {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.Thanks {
  background-color: #F2E825;
}

@media (min-width: 768px) {
  .Thanks {
    padding-bottom: 190px;
  }
}

.Thanks .content {
  background-image: url(../img/thanks/thanks-sp.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  border-radius: 4px;
  padding: 20px 0 215px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Thanks .content {
    background-image: url(../img/thanks/thanks-pc.jpg);
    text-align: left;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 76px;
  }
}

.Thanks .title {
  font-size: 24px;
  font-weight: 900;
  color: #F2E825;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Thanks .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.Thanks .text {
  font-weight: lighter;
  color: white;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .Thanks .text {
    width: 630px;
    margin-bottom: 35px;
  }
}

.Thanks .text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .Thanks .text.mb {
    margin-bottom: 70px;
  }
}

.Thanks .text a {
  color: #F2E825;
}

@media (min-width: 768px) {
  .Thanks .btn {
    width: 510px;
    margin: 0 auto;
  }
}

.Header {
  height: 51px;
}

@media (min-width: 768px) {
  .Header {
    height: auto;
  }
}

.Header .header-inner {
  width: 100%;
  background-color: #000000;
}

.Header .header-inner.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.Header .header-top {
  height: 10px;
  background-image: url(../img/header/header-top-sp.png);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .Header .header-top {
    height: 26px;
    background-image: url(../img/header/header-top-pc.png);
  }
}

.Header .header-bottom {
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .Header .header-bottom {
    height: auto;
    padding-top: 37px;
    padding-bottom: 37px;
  }
}

.Header .logo {
  width: 93px;
}

@media (min-width: 768px) {
  .Header .logo {
    width: 15%;
    max-width: 231px;
  }
}

.Header .logo a {
  display: block;
  line-height: 0;
}

.Header .hum-btn {
  width: 22px;
  height: 16px;
  cursor: pointer;
  position: relative;
}

.Header .hum-btn span {
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #F2E825;
  border-radius: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: 0;
}

.Header .hum-btn span:nth-child(1) {
  top: 0;
}

.Header .hum-btn span:nth-child(2) {
  top: 8px;
}

.Header .hum-btn span:nth-child(3) {
  top: 16px;
}

.Header .hum-btn.active span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.Header .hum-btn.active span:nth-child(2), .Header .hum-btn.active span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.Header .items {
  width: 100vw;
  height: calc(100vh - 51px);
  background-color: #F2E825;
  text-align: center;
  position: absolute;
  top: 51px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 100;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .Header .items {
    width: auto;
    height: auto;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    opacity: 1;
    pointer-events: auto;
    padding-top: 0;
    padding-left: 20px;
  }
}

.Header .items.active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .Header .item {
    border-right: 1px solid #F2E825;
  }
  .Header .item:last-child {
    border-right: none;
  }
}

.Header .item a {
  display: block;
  font-weight: 500;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .Header .item a {
    color: #F2E825;
    font-size: 12px;
    padding: 0 12px;
    margin-bottom: 0;
  }
}

@media (min-width: 1350px) {
  .Header .item a {
    font-size: 13px;
    padding: 0 13px;
  }
}

@media (min-width: 768px) {
  .Header .btn {
    width: 22%;
    max-width: 340px;
  }
}

.Fv {
  background-image: url(../img/fv/back-sp.jpg);
  background-position: center;
  background-size: cover;
  padding: 16px 0 10px;
}

@media (min-width: 768px) {
  .Fv {
    background-image: url(../img/fv/back-pc.jpg);
    padding: 75px 0;
  }
}

@media (min-width: 768px) {
  .Fv .content {
    width: 58%;
    max-width: 881px;
    margin-left: auto;
  }
}

.Fv .title {
  text-align: center;
}

.Fv .text1 {
  color: white;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .Fv .text1 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1350px) {
  .Fv .text1 {
    font-size: 28px;
  }
}

.Fv .text2 {
  display: block;
  width: 96%;
  height: 34px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 4px;
}

@media (min-width: 768px) {
  .Fv .text2 {
    width: 100%;
    height: 68px;
    font-size: 26px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1350px) {
  .Fv .text2 {
    font-size: 32px;
  }
}

.Fv .text2 .red {
  color: #E50000;
}

.Fv .title-img {
  margin-bottom: 176px;
}

@media (min-width: 768px) {
  .Fv .title-img {
    margin-bottom: 44px;
  }
}

.Fv .items li {
  margin-bottom: 10px;
}

.Fv .items li:last-child {
  margin-bottom: 0;
}

.Cta {
  background-color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .Cta {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.Cta .discount {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .Cta .discount {
    width: 510px;
    margin: 0 auto 11px;
  }
}

.Cta .btn {
  -webkit-animation-name: cta-anime;
          animation-name: cta-anime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@media (min-width: 768px) {
  .Cta .btn {
    width: 510px;
    margin: 0 auto;
  }
}

.Worry {
  background-color: #F2E825;
}

@media (min-width: 768px) {
  .Worry {
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .Worry .title-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.Worry .title {
  height: 76px;
  font-size: 20px;
  background-color: #000000;
  color: #F3001C;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .Worry .title {
    width: calc(100%/3);
    height: 87px;
    font-size: 24px;
    cursor: pointer;
  }
}

.Worry .title::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.Worry .title:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .Worry .title.passive {
    background-color: transparent;
    color: #000000;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }
  .Worry .title.passive::after {
    display: none;
  }
}

.Worry .scroll-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.Worry .items-wrap {
  overflow-x: scroll;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Worry .items-wrap {
    display: none;
    overflow-x: auto;
    margin-bottom: 40px;
  }
  .Worry .items-wrap.active {
    display: block;
  }
}

.Worry .items {
  width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  .Worry .items {
    width: 100%;
  }
}

.Worry .item {
  width: 32%;
}

.Worry .img {
  width: 68%;
  margin: 0 auto 15px;
}

.Worry .arrow {
  width: 11%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .Worry .arrow {
    width: 4%;
  }
}

.Worry .text {
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .Worry .text {
    font-size: 18px;
  }
}

.Solve {
  background-image: url(../img/solve/back-sp.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .Solve {
    background-image: url(../img/solve/back-pc.jpg);
    padding-top: 60px;
    padding-bottom: 168px;
  }
}

.Solve .h2-title {
  color: white;
  font-size: 35px;
}

@media (min-width: 768px) {
  .Solve .h2-title {
    font-size: 45px;
  }
}

.Solve .h2-title img {
  width: 72%;
  margin: 0 auto 13px;
}

@media (min-width: 768px) {
  .Solve .h2-title img {
    width: 480px;
    vertical-align: bottom;
    margin: 0 -6px 0 0;
  }
}

.Solve .h2-title span {
  display: inline-block;
  color: #F2E825;
  position: relative;
}

.Solve .h2-title span::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background-color: #F2E825;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .Solve .h2-title span::before {
    width: 9px;
    height: 9px;
  }
}

.Solve .top-text {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Solve .top-text {
    margin-bottom: 40px;
  }
}

.Solve .top-text span {
  color: #F2E825;
  font-weight: bold;
}

.Solve .box {
  height: 68px;
  background-color: #F2E825;
  color: #000000;
  font-size: 20px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Solve .box {
    width: 480px;
    height: 88px;
    font-size: 24px;
    position: absolute;
    margin-bottom: 0;
  }
  .Solve .box.width {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  .Solve .box.box1 {
    bottom: 60px;
    left: calc((100% - 1000px)/2);
  }
  .Solve .box.box2 {
    top: 602px;
    right: calc((100% - 1000px)/2);
  }
  .Solve .box.box3 {
    bottom: 60px;
    right: calc((100% - 1000px)/2);
  }
}

.Solve .about {
  height: 74px;
  background-color: white;
  border: 3px solid #F2E825;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .Solve .about {
    width: 340px;
    position: absolute;
  }
  .Solve .about.trader {
    top: 494px;
    left: calc((100% - 1000px)/2 + 140px);
  }
  .Solve .about.cancel {
    top: 737px;
    right: calc((100% - 1000px)/2);
  }
  .Solve .about.new {
    top: 864px;
    right: calc((100% - 1000px)/2);
  }
}

.Solve .about:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.Solve .about .logo {
  width: 25%;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Solve .about .logo img {
  width: 58px;
}

.Solve .about .about-box {
  width: 75%;
  padding: 7px 0 0 15px;
}

.Solve .about .title {
  font-size: 20px;
  font-weight: 900;
}

.Solve .about .text {
  font-weight: 900;
  text-decoration: underline;
}

.Solve .popup {
  width: calc(100% - 30px);
  background-color: #F2E825;
  position: fixed;
  top: 15px;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow-y: scroll;
  padding: 15px;
}

@media (min-width: 768px) {
  .Solve .popup {
    width: 1000px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 30px;
  }
}

.Solve .popup.active {
  opacity: 1;
  pointer-events: auto;
}

.Solve .close {
  width: 30px;
  cursor: pointer;
  margin: 0 0 15px auto;
}

@media (min-width: 768px) {
  .Solve .close {
    width: 59px;
    margin-bottom: 30px;
  }
}

.Solve .close:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.Solve table {
  border-collapse: collapse;
}

.Solve th, .Solve td {
  border: 1px solid #898989;
}

.Solve th {
  height: 88px;
  line-height: 0;
  background-color: #000000;
  color: #F2E825;
  font-size: 20px;
  font-weight: 900;
}

@media (min-width: 768px) {
  .Solve th {
    font-size: 24px;
  }
}

.Solve th:first-child {
  width: 34%;
}

@media (min-width: 768px) {
  .Solve th:first-child {
    width: 210px;
  }
}

.Solve th:last-child {
  width: 66%;
}

@media (min-width: 768px) {
  .Solve th:last-child {
    width: 730px;
  }
}

.Solve th img {
  width: 86px;
}

@media (min-width: 768px) {
  .Solve th img {
    width: 102px;
  }
}

.Solve td {
  background-color: white;
}

.Solve td:first-child {
  text-align: center;
  font-weight: bold;
}

.Solve td:last-child {
  padding: 10px;
}

.Solve td p {
  text-indent: -1em;
  padding-left: 1em;
}

.Solve td span {
  color: #AE0000;
}

.Solve .arrow {
  width: 24px;
  margin: 0 auto 10px;
}

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

.Solve .no-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 10px;
}

.Solve .case {
  height: 58px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.Solve .case.no {
  background-color: white;
  color: #000000;
  margin-bottom: 10px;
}

.Solve .case.yes {
  border: 3px solid #F2E825;
  background-color: #000000;
  color: #F2E825;
  margin-bottom: 10px;
}

.Solve .case img {
  width: 10px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.Solve .case-content {
  display: none;
}

@media (min-width: 768px) {
  .Solve .case-content {
    display: block;
  }
}

.Solve .case-content.active {
  display: block;
}

.Solve .arrow-pc {
  width: 637px;
  margin-left: 8px;
}

.Possible {
  background-image: url(../img/possible/back-sp.jpg);
  background-position: center;
  background-size: cover;
  padding-bottom: 230px;
}

@media (min-width: 768px) {
  .Possible {
    background-image: url(../img/possible/back-pc.jpg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

.Possible .text {
  font-size: 30px;
  font-weight: 900;
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .Possible .text {
    font-size: 45px;
    text-align: left;
  }
}

.Possible .text img {
  width: 258px;
}

@media (min-width: 768px) {
  .Possible .text img {
    width: 363px;
    vertical-align: bottom;
  }
}

.Success {
  background-color: #F2E825;
}

.Success .item {
  border-bottom: 1px solid #898989;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Success .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.Success .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .Success .box {
    width: 480px;
    margin-bottom: 30px;
  }
}

.Success .top-title {
  height: 46px;
  font-size: 20px;
  font-weight: 900;
  background-color: #000000;
  color: #F2E825;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Success .top-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.Success .title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Success .title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

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

@media (min-width: 768px) {
  .Success .img {
    width: 480px;
    margin-bottom: 30px;
  }
}

.Success .text {
  margin-bottom: 20px;
}

.Success .text span {
  color: #AE0000;
  font-weight: bold;
}

@media (min-width: 768px) {
  .Success .content {
    width: 480px;
  }
}

.Success .content.before {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Success .content.before {
    margin-bottom: 0;
  }
}

.Success .content .content-title {
  height: 50px;
  font-size: 20px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .Success .content .content-title {
    font-size: 24px;
  }
}

.Success .content .content-title.before {
  color: #696969;
  background-color: #D5D5D5;
}

.Success .content .content-title.after {
  background: -webkit-gradient(linear, left top, right top, from(#A7702C), color-stop(50%, #FAE89B), to(#865724));
  background: linear-gradient(to right, #A7702C 0%, #FAE89B 50%, #865724 100%);
}

.Success .content .content-inner {
  text-align: center;
  border-top: none !important;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .Success .content .content-inner {
    padding: 30px 0 36px;
  }
}

.Success .content .content-inner.before {
  background-color: #F0F0F0;
  border: 4px solid #D5D5D5;
}

.Success .content .content-inner.after {
  background-color: white;
  border: 4px solid #E0C680;
  font-weight: bold;
}

.Success .content .content-items {
  display: inline-block;
  text-align: left;
}

.Success .content .content-items li {
  font-size: 15px;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

@media (min-width: 768px) {
  .Success .content .content-items li {
    line-height: 1.5;
    font-size: 20px;
  }
}

.Success .arrow {
  width: 68px;
  margin: 0 auto 10px;
}

@media (min-width: 768px) {
  .Success .arrow {
    width: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        align-self: center;
    margin: 0;
  }
}

.Consult {
  background-image: url(../img/consult/back-sp.jpg);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .Consult {
    background-image: url(../img/consult/back-pc.jpg);
  }
}

.Consult .item {
  margin-bottom: 20px;
}

.Consult .item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .Consult .item {
    margin-bottom: 40.5px;
  }
}

@media (min-width: 768px) {
  .Consult .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
}

.Consult .alart {
  width: 81px;
  position: relative;
  margin: 0 auto 10px;
  z-index: 1;
}

@media (min-width: 768px) {
  .Consult .alart {
    margin: 0 20px 0 0;
  }
}

.Consult .alart .blink {
  display: block;
  width: 35.6px;
  height: 34px;
  border-top-left-radius: 17.8px;
  border-top-right-radius: 17.8px;
  position: absolute;
  top: 26px;
  left: 22px;
  overflow: hidden;
  z-index: 1;
}

.Consult .alart .blink::before {
  content: "";
  width: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: -100px;
  left: 0;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: blink 1s ease-in-out infinite;
          animation: blink 1s ease-in-out infinite;
}

@-webkit-keyframes blink {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: .5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: .5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.Consult .title {
  font-size: 20px;
  font-weight: bold;
  color: white;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 10px 0;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .Consult .title {
    width: calc(100% - 101px);
    font-size: 24px;
    padding: 16px 0;
    margin-bottom: 0;
  }
}

.Consult .text {
  color: white;
}

.Consult .text .fs {
  font-size: 14px;
}

.Consult .text .yellow {
  display: inline-block;
  color: #F2E825;
  font-weight: bold;
  text-indent: -1em;
  padding-left: 1em;
}

.Need {
  background-color: #F2E825;
}

.Need .item {
  background-color: white;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  padding: 15px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Need .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    margin-bottom: 30px;
  }
}

.Need .item:last-child {
  margin-bottom: 0;
}

.Need .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.Need .num {
  width: 62px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 15px;
}

.Need .title {
  font-size: 20px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .Need .title {
    font-size: 24px;
  }
}

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

@media (min-width: 768px) {
  .Need .img {
    width: 370px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin: 0 30px 0 0;
  }
}

.Need .text {
  font-weight: lighter;
}

.Need .text span {
  font-weight: bold;
}

.Feature {
  background-image: url(../img/feature/back-sp.jpg);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .Feature {
    background-image: url(../img/feature/back-pc.jpg);
  }
}

.Feature .item {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Feature .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
}

.Feature .item:last-child {
  margin-bottom: 0;
}

.Feature .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .Feature .content {
    width: 580px;
  }
}

.Feature .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.Feature .num {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  color: white;
  font-size: 24px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}

.Feature .title {
  font-size: 21px;
  font-weight: 900;
  color: white;
}

@media (min-width: 768px) {
  .Feature .title {
    font-size: 28px;
    margin-right: -22px;
  }
}

.Feature .img {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .Feature .img {
    width: 380px;
  }
}

.Feature .text {
  color: white;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .Feature .text {
    padding: 20px 0;
  }
}

.Flow {
  background-image: url(../img/flow/back-sp.jpg);
  background-position: center;
  background-size: cover;
  background-color: #000000;
}

@media (min-width: 768px) {
  .Flow {
    background-image: url(../img/flow/back-pc.jpg);
  }
}

.Flow .box {
  background-color: #F2E825;
  padding: 15px 19px 15px 15px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Flow .box {
    padding: 30px;
    margin-bottom: 60px;
  }
}

.Flow .text1 {
  width: 93%;
  margin-bottom: 18.5px;
}

@media (min-width: 768px) {
  .Flow .text1 {
    width: 88.5%;
    margin-bottom: 19.4px;
  }
}

.Flow .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .Flow .content {
    display: block;
  }
}

.Flow .arrow {
  width: 9%;
  max-width: 30px;
}

@media (min-width: 768px) {
  .Flow .arrow {
    width: 830px;
    max-width: none;
    margin: 0 auto 40px;
  }
}

.Flow .num-items {
  width: 34%;
  max-width: 123px;
}

@media (min-width: 768px) {
  .Flow .num-items {
    width: 100%;
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 23px 0 45px;
    margin-bottom: 53px;
  }
}

.Flow .num-item {
  text-align: center;
  margin-bottom: 78px;
}

@media (min-width: 768px) {
  .Flow .num-item {
    margin-bottom: 0;
  }
}

.Flow .num-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .Flow .num-item:first-child {
    margin-right: 30px;
  }
}

.Flow .num-img {
  height: 43px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Flow .num-img {
    margin-bottom: 15px;
  }
}

.Flow .num-img img {
  height: 100%;
}

.Flow .num-text {
  font-weight: bold;
  color: #F2E825;
  margin: 0 -3px;
}

@media (min-width: 768px) {
  .Flow .num-text {
    font-size: 22px;
    margin: 0;
  }
}

.Flow .balloon-items {
  width: 57%;
  max-width: 202px;
}

@media (min-width: 768px) {
  .Flow .balloon-items {
    width: 100%;
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.Flow .balloon-item {
  position: relative;
  margin-bottom: 34px;
}

@media (min-width: 768px) {
  .Flow .balloon-item {
    width: 180px;
    margin-bottom: 0;
  }
}

.Flow .balloon-item:last-child {
  margin-bottom: 0;
}

.Flow .balloon-text {
  color: #F2E825;
  position: absolute;
  top: 50%;
  left: 27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 7px;
}

@media (min-width: 768px) {
  .Flow .balloon-text {
    width: 150px;
    font-size: 16px;
    top: 37px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0;
  }
}

.Fee {
  background-color: #F2E825;
}

.Fee .item {
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Fee .item {
    margin-bottom: 30px;
  }
}

.Fee .item:last-child {
  margin-bottom: 0;
}

.Fee .content {
  background-color: white;
  padding: 15px;
}

@media (min-width: 768px) {
  .Fee .content {
    padding: 30px;
  }
}

.Fee .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}

@media (min-width: 768px) {
  .Fee .block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 9px 15px 10px;
  }
}

.Fee .block.trader {
  background-color: #0AA6EA;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Fee .block.trader {
    margin-bottom: 50px;
  }
}

.Fee .block.cancel {
  background-color: #1364B5;
}

.Fee .block.new {
  background-color: #173969;
}

.Fee .num {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .Fee .num {
    margin-right: 30px;
  }
}

.Fee .num.trader {
  color: #0AA6EA;
}

.Fee .num.cancel {
  color: #1364B5;
}

.Fee .num.new {
  color: #173969;
}

.Fee .title {
  font-size: 21px;
  font-weight: bold;
  color: white;
  margin-right: -20px;
}

@media (min-width: 768px) {
  .Fee .title {
    font-size: 28px;
    margin-right: 0;
  }
}

.Fee .title .slash {
  font-weight: 500;
}

@media (min-width: 768px) {
  .Fee .title .slash {
    margin: 0 15px;
  }
}

.Fee .title .vale {
  font-size: 22px;
}

@media (min-width: 768px) {
  .Fee .title .vale {
    font-size: 35px;
  }
}

.Fee .title .yen {
  font-size: 18px;
}

@media (min-width: 768px) {
  .Fee .title .yen {
    font-size: 23px;
  }
}

.Fee .title .tax {
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .Fee .title .tax {
    font-size: 14px;
  }
}

.Fee .campaign {
  margin: 0 0 5px -2px;
}

@media (min-width: 768px) {
  .Fee .campaign {
    margin: 0 0 20px;
  }
}

.Fee .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
}

@media (min-width: 768px) {
  .Fee .box {
    padding: 13px 30px 14px;
  }
}

.Fee .box:nth-child(2n) {
  background-color: #EDEDED;
}

.Fee .box:nth-child(2n+1) {
  background-color: white;
}

.Fee .text {
  font-size: 18px;
}

@media (min-width: 768px) {
  .Fee .text {
    font-size: 22px;
  }
}

.Fee .text span {
  font-size: 14px;
  letter-spacing: -0.013em;
}

@media (min-width: 768px) {
  .Fee .text span {
    font-size: 16px;
    letter-spacing: 0;
    margin-left: 30px;
  }
}

.Fee .check {
  width: 21px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media (min-width: 768px) {
  .Fee .check {
    width: 32px;
  }
}

.Example {
  background-color: #E5E5E5;
}

.Example .content {
  background-color: white;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  padding: 15px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Example .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px;
    margin-bottom: 50px;
  }
}

.Example .profile-img {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .Example .profile-img {
    width: 370px;
    margin-bottom: 30px;
  }
}

.Example .logo {
  height: 53px;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Example .logo img {
  width: 140px;
}

.Example .text-box {
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .Example .text-box {
    width: 540px;
  }
}

.Example .profile-text {
  font-size: 20px;
  font-weight: 900;
  border-bottom: 1px solid #898989;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Example .profile-text {
    font-size: 24px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.Example .history-title {
  font-size: 18px;
}

@media (min-width: 768px) {
  .Example .history-title {
    font-size: 22px;
  }
}

.Example .history-text {
  font-size: 14px;
  text-indent: -60px;
  padding-left: 60px;
}

@media (min-width: 768px) {
  .Example .history-text {
    font-size: 18px;
    text-indent: -77px;
    padding-left: 77px;
  }
}

.Example .bottom-text {
  background-color: #F4F4F4;
  padding: 15px;
}

@media (min-width: 768px) {
  .Example .bottom-text {
    width: 100%;
    padding: 30px;
  }
}

.Example .bottom-text span {
  color: #AE0000;
  font-weight: bold;
}

@media (min-width: 768px) {
  .Example .consultant {
    width: 396px;
    margin: 0 auto 40px;
  }
}

.Example .scroll-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.Example .scroll-wrap {
  overflow-x: scroll;
}

.Example .items {
  width: 1590px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.Example .item {
  width: 310px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
}

.Example .item .item-text-box {
  padding: 15px;
}

@media (min-width: 768px) {
  .Example .item .item-text-box {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .Example .item .profile-text {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.Example .item .history-text {
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}

@media (min-width: 768px) {
  .Example .item .history-text {
    font-size: 16px;
  }
}

.Faq {
  background-image: url(../img/faq/back-sp.jpg);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .Faq {
    background-image: url(../img/faq/back-pc.jpg);
  }
}

.Faq .question {
  border: 1px solid #F2E825;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 10px 15px 11px 49px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Faq .question {
    padding: 18px 20px 18px 59px;
    margin-bottom: 15px;
  }
}

.Faq .question .text {
  width: 84%;
  font-size: 20px;
  color: #F2E825;
  font-weight: bold;
  position: relative;
}

@media (min-width: 768px) {
  .Faq .question .text {
    width: auto;
    font-size: 24px;
  }
}

.Faq .question .text::before {
  content: 'Q';
  color: #F2E825;
  position: absolute;
  left: -33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 768px) {
  .Faq .question .text::before {
    left: -40px;
    top: -2px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.Faq .question .btn {
  width: 28px;
  height: 28px;
  border: 1px solid #F2E825;
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
}

.Faq .question .btn span {
  display: block;
  width: 19px;
  height: 1px;
  background-color: #F2E825;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.Faq .question .btn span.line {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.Faq .question .btn span.line.active {
  display: none;
}

.Faq .answer {
  display: none;
  background-color: white;
  border-radius: 4px;
  padding: 10px 10px 11px 49px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .Faq .answer {
    padding: 20px 59px;
    margin-bottom: 20px;
  }
}

.Faq .answer.active {
  display: block;
}

.Faq .answer .text {
  position: relative;
}

.Faq .answer .text::before {
  content: 'A';
  font-size: 20px;
  font-weight: 900;
  color: #E50000;
  position: absolute;
  top: 0;
  left: -30px;
}

@media (min-width: 768px) {
  .Faq .answer .text::before {
    font-size: 24px;
    top: -2px;
    left: -36px;
  }
}

.Contact {
  background-color: #F2E825;
}

.Contact .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #898989;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Contact .item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.Contact .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.Contact .data {
  min-width: 132px;
}

@media (min-width: 768px) {
  .Contact .data {
    min-width: 165px !important;
  }
}

.Contact .data.date {
  min-width: 77px;
}

.Contact .required, .Contact .optional {
  width: 65px;
  height: 27px;
  border-radius: 4px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .Contact .required, .Contact .optional {
    font-size: 16px;
    margin: 0 40px 0 0;
  }
}

.Contact .required {
  background-color: #E50000;
}

.Contact .optional {
  background-color: #0072E5;
}

.Contact input, .Contact select {
  width: 100%;
  height: 50px;
  font-size: 16px;
  background-color: white;
  border-radius: 4px;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .Contact input {
    width: 730px;
  }
}

@media (min-width: 768px) {
  .Contact select {
    width: 241px;
  }
}

.Contact input[type="checkbox"] {
  display: none;
}

.Contact .service p:not([class]) {
  width: 100%;
  margin-bottom: -10px;
}

@media (min-width: 768px) {
  .Contact .service p:not([class]) {
    width: 730px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
  }
}

.Contact .service .required {
  margin-top: 10px;
  margin-bottom: 31px;
}

@media (min-width: 768px) {
  .Contact .service .required {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.Contact .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.Contact .mwform-checkbox-field-text {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  color: #898989;
  background-color: white;
  border: 3px solid white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .Contact .mwform-checkbox-field-text {
    width: 230px;
    margin-bottom: 0;
  }
}

.Contact .mwform-checkbox-field-text::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #000000;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.Contact .mwform-checkbox-field-text:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.Contact input[type="checkbox"]:checked + .mwform-checkbox-field-text {
  color: #000000;
  border: 3px solid #000000;
}

.Contact input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.Contact .date-text {
  width: 100%;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .Contact .date-text {
    margin-bottom: 20px;
  }
}

.Contact .date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Contact .date-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
}

.Contact .date-wrap:last-child {
  margin-bottom: 0;
}

.Contact .date p:nth-child(3), .Contact .date p:nth-child(4) {
  width: 48%;
  position: relative;
}

@media (min-width: 768px) {
  .Contact .date p:nth-child(3), .Contact .date p:nth-child(4) {
    width: 241px;
  }
}

.Contact .date p:nth-child(3)::after, .Contact .date p:nth-child(4)::after {
  content: '';
  display: block;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  top: 25px;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.Contact .date p:nth-child(3) {
  margin-right: 4%;
}

@media (min-width: 768px) {
  .Contact .date p:nth-child(3) {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .Contact .date input {
    width: 100%;
  }
}

.Contact .time {
  color: #757575;
}

.Contact .time.black {
  color: #000000;
}

@media (min-width: 768px) {
  .Contact .detail {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.Contact textarea {
  width: 100%;
  height: 210px;
  font-size: 16px;
  border-radius: 4px;
  padding: 10px;
}

@media (min-width: 768px) {
  .Contact textarea {
    width: 730px;
  }
}

.Contact input[type="submit"] {
  height: 70px;
  background-image: url(../img/common/form-btn.png);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  -webkit-animation-name: cta-anime;
          animation-name: cta-anime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .Contact input[type="submit"] {
    display: block;
    width: 510px;
    height: 100px;
    margin: 0 auto 50px;
  }
}

.Contact input[type="submit"]:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.Contact .error-box {
  margin-bottom: -16px;
}

@media (min-width: 768px) {
  .Contact .date .date-wrap.first .error-box {
    margin-bottom: -10px !important;
  }
}

.Contact .error-box input, .Contact .error-box select, .Contact .error-box textarea {
  border: 3px solid #F3001C;
}

.Contact .privacy {
  height: 230px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #898989;
  overflow-y: scroll;
  font-size: 14px;
  padding: 15px;
}

@media (min-width: 768px) {
  .Contact .privacy {
    padding: 20px;
  }
}

.Bottom-menu {
  width: 100vw;
  display: none;
  background-color: rgba(0, 0, 0, 0.65);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  padding: 10px;
}

.Bottom-menu.active {
  display: block;
}

.Popup {
  width: 320px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 200;
}

@media (min-width: 768px) {
  .Popup {
    width: 660px;
  }
}

.Popup.active {
  opacity: 1;
  pointer-events: auto;
}

.Popup .close {
  width: 30px;
  position: absolute;
  top: 25px;
  right: 25px;
}

@media (min-width: 768px) {
  .Popup .close {
    width: 59px;
  }
}

.Mask {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 140;
}

.Mask.active {
  opacity: 1;
  pointer-events: auto;
}

.Footer {
  height: 50px;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 90px;
}

@media (min-width: 768px) {
  .Footer {
    margin-bottom: 0;
  }
}

.Footer .copyright {
  font-size: 12px;
  color: white;
}

@media (min-width: 768px) {
  .Footer .copyright {
    font-size: 14px;
  }
}
/*# sourceMappingURL=main.css.map */