@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);
@font-face {
  font-family: "HGPSoeiKakugothicUB-02";
  src: url("../font/HGPSoeiKakugothicUB-02.woff") format("woff"), url("../font/HGPSoeiKakugothicUB-02.eot") format("eot");
}

/*================================================
 *  CSSリセット
 ================================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*================================================
 *  変数
 ================================================*/
/*================================================
 *  一般・共通設定
 ================================================*/
html {
  height: 100%;
}

body {
  font-size: 16px;
  font-family: "HGPSoeiKakugothicUB-02", sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  /* コピー禁止 */
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  height: 100%;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#contents {
  margin: 0 auto;
}

header {
  margin: 0 auto;
}

a {
  color: #3f3f3f;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

p {
  margin: 0 0 1em 0;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  /* コピー禁止 */
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  /* 右クリック禁止 */
  pointer-events: none;
}

h1 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  background: #000000;
  margin: 0 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.4vw;
  }
}

.req-mark {
  color: #f5707c;
}

/*================================================
 *  アニメーション
 ================================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeLeft {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeRight {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/*================================================
 *  inner
 ================================================*/
.inner {
  margin: 0 auto;
  max-width: 1100px;
  height: 100%;
  position: relative;
}

@media (min-width: 1921px) {
  .inner {
    max-width: 3200px;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .inner {
    max-width: 600px;
  }
}

.inner1100 {
  margin: 0 auto;
  max-width: 1100px;
  height: 100%;
  position: relative;
}

@media (min-width: 1921px) {
  .inner1100 {
    max-width: 3200px;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .inner1100 {
    max-width: 600px;
  }
}

.inner1400 {
  margin: 0 auto;
  max-width: 1400px;
  height: 100%;
  position: relative;
}

@media (min-width: 1921px) {
  .inner1400 {
    max-width: 3200px;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .inner1400 {
    max-width: 600px;
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
.header {
  background: url(../images/fv_bk.jpg);
  background-repeat: no-repeat;
  background-position: 90% center;
  background-size: cover;
  width: 100%;
  font-size: 8px;
  text-align: center;
  padding: 0 50% 0 0;
}

.header img {
  width: 50%;
}

.to_solutioton {
  text-align: center;
  margin: 5% auto 0;
  width: 70%;
  max-width: 600px;
}

.to_solutioton a {
  display: block;
}

.to_solutioton :hover {
  opacity: 0.7;
}

/*================================================
 *  ボタンデザイン
 ================================================*/
.btn {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  outline: none;
  border: none;
  background: none;
}

.btn:hover {
  top: 3px;
}

.btn a {
  display: inline-block;
}

.form-to-btn {
  width: 30%;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .form-to-btn {
    width: 60%;
  }
}

.form-to-btn a {
  display: inline-block;
}

.btn-send {
  width: 30%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .btn-send {
    width: 50%;
  }
}

.btn-send-cre {
  width: 50%;
  margin: 0 auto;
}

/*================================================
 *  TOPビュー
 ================================================*/
.Area_main {
  background: url(../images/fv_bk.jpg);
  background-size: cover;
  background-position: 55% bottom;
  width: 100%;
  height: 80%;
  display: inline-block;
  position: relative;
}

.Area_main img {
  width: 100%;
  border: none;
}

@media (max-width: 767px) {
  .Area_main {
    height: 120vw;
    background-size: cover;
    background-position: 50% bottom;
  }
}

.Area_main .logo {
  position: absolute;
  width: 50%;
  top: 2%;
  z-index: 3;
}

@media (max-width: 767px) {
  .Area_main .logo {
    width: 70%;
    top: -20%;
  }
}

.Area_main .top1 {
  position: relative;
  z-index: 2;
  width: 40%;
  margin: 0 5% 0 auto;
  max-width: 40vh;
}

@media (max-width: 767px) {
  .Area_main .top1 {
    margin: 30% 2% 0 auto;
  }
}

.arrow {
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: "";
  position: absolute;
  top: 0%;
  left: -50%;
  border-bottom: 45vw solid rgba(255, 255, 255, 0.2);
  /* 好みで高さ色を変えてください */
  border-left: 200vw solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1;
}

.arrow::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: -30%;
  border-bottom: 50vw solid rgba(255, 255, 255, 0.2);
  /* 好みで高さ色を変えてください */
  border-left: 200vw solid transparent;
  -webkit-transform: rotate(-310deg);
          transform: rotate(-310deg);
  z-index: 1;
}

@-webkit-keyframes furufuru {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(-51%, -51%) rotateZ(1deg);
            transform: translate(-51%, -51%) rotateZ(1deg);
  }
  50% {
    -webkit-transform: translate(-50%, -51%) rotateZ(0deg);
            transform: translate(-50%, -51%) rotateZ(0deg);
  }
  75% {
    -webkit-transform: translate(-51%, -50%) rotateZ(-1deg);
            transform: translate(-51%, -50%) rotateZ(-1deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
}

@keyframes furufuru {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(-51%, -51%) rotateZ(1deg);
            transform: translate(-51%, -51%) rotateZ(1deg);
  }
  50% {
    -webkit-transform: translate(-50%, -51%) rotateZ(0deg);
            transform: translate(-50%, -51%) rotateZ(0deg);
  }
  75% {
    -webkit-transform: translate(-51%, -50%) rotateZ(-1deg);
            transform: translate(-51%, -50%) rotateZ(-1deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
}

/*================================================
 *  new
 ================================================*/
.Area_new {
  background-color: #4d4d4d;
  margin: -20vw auto 0;
  padding: 0 0 2% 0;
}

.Area_new .new_t {
  width: 100%;
  padding: 0 2% 0 2%;
  position: relative;
  z-index: 2;
}

.Area_new .new_flex {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 80%;
  padding: 5% 0 5% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.Area_new .new_flex .new1 {
  width: 30%;
  padding: 0 2% 0 2%;
}

.Area_new .new4 {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}

/*================================================
 *  voice
 ================================================*/
.Area_voice {
  margin: 0 auto;
  background-color: #feda18;
  padding: 2% 0 0 0;
}

.Area_voice .voice_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.Area_voice .voice_flex .voice1 {
  width: 25%;
  padding: 0 2% 0 2%;
}

@media (max-width: 767px) {
  .Area_voice .voice_flex .voice1 {
    width: 50%;
    padding: 0 1% 2% 1%;
  }
}

.Area_voice .voice5 {
  width: 60%;
  margin: -7% auto 0 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .Area_voice .voice5 {
    width: 75%;
    margin: 0 auto 0 0;
  }
}

/*================================================
 *  mobile
 ================================================*/
.Area_mobile {
  background: -webkit-gradient(linear, left top, left bottom, from(#feda18), color-stop(20%, #feda18), color-stop(20%, #4d4d4d), to(#4d4d4d));
  background: linear-gradient(180deg, #feda18 0%, #feda18 20%, #4d4d4d 20%, #4d4d4d 100%);
  margin: -15% auto 0;
  padding: 0 2% 0% 2%;
}

.Area_mobile .mobile_t {
  width: 70%;
  margin-left: auto;
}

.Area_mobile .mobile1 {
  position: absolute;
  width: 40%;
  top: 20%;
  left: -5%;
}

/*================================================
 *  release
 ================================================*/
.Area_release {
  background: url(../images/release_bk.jpg);
  background-size: cover;
  background-position: 80% top;
  margin: -10% auto 0;
}

.Area_release .release1 {
  width: 70%;
  margin: 0 2% 0 auto;
}

.Area_release .release2 {
  width: 80%;
  margin: 0 auto;
}

/*================================================
 *  STEP
 ================================================*/
.Area_step {
  margin: -10% auto 0;
  padding: 10% 0 2% 0;
  background-color: #4d4d4d;
}

.Area_step .step_t {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 7% 0;
}

@media (max-width: 767px) {
  .Area_step .step_t {
    width: 95%;
  }
}

.Area_step .step_flex {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 767px) {
  .Area_step .step_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.Area_step .step_flex .step1 {
  width: 33%;
  padding: 0 2% 0 2%;
}

@media (max-width: 767px) {
  .Area_step .step_flex .step1 {
    width: 80%;
    margin: 0 auto;
  }
}

.Area_step .step_flex .step_ar {
  width: 10%;
  margin: 0 auto;
  padding: 0 0 5% 0;
}

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

.Area_step .step4 {
  width: 70%;
}

/*================================================
 *  income
 ================================================*/
.Area_income {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d4d4d), color-stop(30vw, #4d4d4d), color-stop(30vw, #fff), to(#fff));
  background: linear-gradient(180deg, #4d4d4d 0%, #4d4d4d 30vw, #fff 30vw, #fff 100%);
  margin: -28vw auto 0;
  padding: 0 0 0 0;
}

.Area_income .income1 {
  width: 50%;
  margin: 0 0 0 auto;
}

.Area_income .income2 {
  top: 80%;
  left: 15%;
  width: 80%;
  margin: -5vw auto 0;
}

/*================================================
 *  Q&A
 ================================================*/
.Area_q {
  background-color: #4d4d4d;
  text-align: center;
  margin: 0 auto 0;
  padding: 2% 0 0 0;
  position: relative;
}

.Area_q .q1 {
  width: 65%;
  margin: 0 5% 0 auto;
  position: relative;
  z-index: 2;
}

.Area_q .q1 .q1_1 {
  position: absolute;
  width: 50%;
  top: -13%;
  left: -40%;
}

.Area_q .q1 .q1_2 {
  position: absolute;
  width: 50%;
  top: -5%;
  right: -5%;
}

.Area_q .q2 {
  position: absolute;
  width: 40%;
  top: 20%;
  left: 5%;
  z-index: 3;
}

.Area_q .q3 {
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .Area_q .q3 {
    width: 80%;
  }
}

.arrow2 {
  position: relative;
  overflow: hidden;
}

.arrow2::before {
  content: "";
  position: absolute;
  top: 0%;
  left: -50%;
  border-bottom: 45vw solid rgba(0, 0, 0, 0.3);
  /* 好みで高さ色を変えてください */
  border-left: 200vw solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1;
}

.arrow2::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: -30%;
  border-bottom: 50vw solid rgba(0, 0, 0, 0.3);
  /* 好みで高さ色を変えてください */
  border-left: 200vw solid transparent;
  -webkit-transform: rotate(-310deg);
          transform: rotate(-310deg);
  z-index: 1;
}

.Area_q2 {
  background-color: #fff;
  margin: -10% auto 0;
  position: relative;
  z-index: 2;
  padding: 10% 0 0 0;
}

.Area_q2 .q4 {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .Area_q2 .q4 {
    padding: 5% 0 5% 0;
  }
}

.Area_q2 .q5 {
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.acd-check {
  display: none;
}

.acd-label {
  width: 95%;
  background: #4d4d4d;
  color: #feda18;
  display: block;
  position: relative;
  font-size: 1em;
  line-height: 1em;
  padding: 1% 1% 1% 8%;
  z-index: 3;
}

.acd-label::before {
  width: 1.2em;
  height: 1.2em;
  content: "";
  background: url(../images/koe.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 1%;
  top: 5%;
  z-index: 20;
}

@media (min-width: 768px) {
  .acd-label {
    width: 100%;
    font-size: 2.6vw;
  }
}

.acd-label:after {
  background: url(../images/q1.png);
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  display: block;
  font-family: "Font Awesome 5 Free";
  width: 1em;
  height: 1em;
  position: absolute;
  right: 2%;
  top: 10%;
  z-index: 3;
}

@media (min-width: 768px) {
  .acd-label:after {
    width: 3vw;
    height: 3vw;
  }
}

.acd-content,
.acd-content2 {
  width: 100%;
  margin: 0 auto;
  font-size: 2vw;
  color: #fff;
  background-color: #4d4d4d;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  border-top: 0.5vw dotted #fff;
  position: relative;
  z-index: 3;
}

.acd-content p,
.acd-content2 p {
  width: 100%;
  margin-left: auto;
}

.acd-content .koe2,
.acd-content2 .koe2 {
  width: 10%;
}

@media (max-width: 767px) {
  .acd-content,
  .acd-content2 {
    font-size: 1em;
    width: 95%;
  }
}

.acd-check:checked + .acd-label:after {
  background: url(../images/q2.png);
  background-size: cover;
}

.acd-check:checked + .acd-label + .acd-content {
  height: 18vw;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}

@media (max-width: 767px) {
  .acd-check:checked + .acd-label + .acd-content {
    height: 30vw;
  }
}

.acd-check:checked + .acd-label + .acd-content2 {
  height: 33vw;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}

@media (max-width: 767px) {
  .acd-check:checked + .acd-label + .acd-content2 {
    height: 50vw;
  }
}

.red {
  color: #feda18;
}

/*================================================
 *  Sele
 ================================================*/
.Area_sale {
  background: url(../images/fv_bk.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.Area_sale img {
  width: 100%;
}

.Area_sale .sale1 {
  padding: 2% 2% 2% 2%;
  position: relative;
}

.Area_sale .sale1 .sale1_1 {
  position: absolute;
  top: 8%;
  left: 2%;
  width: 50%;
}

/*================================================
 *  フォーム
 ================================================*/
.Area_form {
  background-color: #4d4d4d;
  background-position: top center;
  color: #4d4d4d;
  padding: 2%;
  margin-top: -3px;
}

.Area_form img {
  width: 100%;
}

.Area_form .container {
  overflow: hidden;
  border-radius: 2vw;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  padding: 0 auto;
  width: 100%;
  text-align: center;
  clear: both;
}

@media (max-width: 767px) {
  .Area_form .container {
    font-size: 25px;
    border-radius: 0;
  }
}

.Area_form .container .cp_iptxt {
  position: relative;
  width: 80%;
  margin: 50px auto;
}

@media (max-width: 767px) {
  .Area_form .container .cp_iptxt {
    width: 95%;
  }
}

.Area_form .container .cp_iptxt input[type="text"],
.Area_form .container .cp_iptxt input[type="tel"],
.Area_form .container .cp_iptxt input[type="email"],
.Area_form .container .form_select {
  -webkit-appearance: none;
  border-radius: 0;
  font: 1.6vw/2.4vw "HGPSoeiKakugothicUB-02";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  letter-spacing: 0.1vw;
  padding-left: 5em;
}

@media (max-width: 767px) {
  .Area_form .container .cp_iptxt input[type="text"],
  .Area_form .container .cp_iptxt input[type="tel"],
  .Area_form .container .cp_iptxt input[type="email"],
  .Area_form .container .form_select {
    font-size: 16px;
    padding: 0 0 0 20%;
  }
}

.Area_form .container .form_select {
  color: #4d4d4d;
  font: 1.6vw/2.4vw "HGPSoeiKakugothicUB-02";
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0 0 0 30%;
  width: 70%;
  padding: 10em;
}

@media (max-width: 767px) {
  .Area_form .container .form_select {
    font: 16px/24px "HGPSoeiKakugothicUB-02";
  }
}

.Area_form .container .cp_iptxt input[type="text"]:focus,
.Area_form .container .cp_iptxt input[type="tel"]:focus,
.Area_form .container .cp_iptxt input[type="email"]:focus,
.Area_form .container .form_select {
  outline: none;
}

.Area_form .container .ef {
  position: relative;
  z-index: 20;
  padding: 0.7vw 1.5vw;
  border: 0;
  border-bottom: 1px solid #1b2538;
  background: transparent;
}

@media (max-width: 767px) {
  .Area_form .container .ef {
    padding: 2px;
  }
}

.Area_form .container .ef ~ .focus_bg {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: transparent;
}

.Area_form .container .ef:focus {
  border-bottom: 0.2vw solid #e94c55;
}

.Area_form .container .ef:focus ~ .focus_bg,
.Area_form .container .cp_iptxt.ef ~ .focus_bg {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #4d4d4d;
}

.Area_form .container .ef ~ label {
  font-size: 1.4vw;
  position: absolute;
  z-index: 22;
  top: 10%;
  left: -10%;
  width: 25%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.5px;
  color: #aaaaaa;
}

@media (max-width: 767px) {
  .Area_form .container .ef ~ label {
    font-size: 16px;
    width: 30%;
    top: 22%;
  }
}

.Area_form .container .ef:focus ~ label,
.Area_form .container .cp_iptxt.ef ~ label {
  font-size: 1.2vw;
  top: -1.6vw;
  left: -10%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #e94c55;
  z-index: 20;
}

label {
  display: block;
  margin: 0 auto 0% !important;
  text-align: left !important;
  font-family: "HGPSoeiKakugothicUB-02";
  padding: 0 0 0 10%;
}

.btn-flat {
  margin: 0 auto 5%;
  display: block;
  width: 25%;
  padding: 0.8vw 0;
  border-radius: 1.4vw;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffec26), color-stop(50%, #ffec26), color-stop(50%, #f5707c), to(#f5707c));
  background-image: linear-gradient(to right, #ffec26 0%, #ffec26 50%, #f5707c 50%, #f5707c 100%);
  -webkit-box-shadow: 0 3px 10px black;
          box-shadow: 0 3px 10px black;
  -webkit-transition: background-position ease 0.4s;
  transition: background-position ease 0.4s;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 2vw;
  outline: none;
}

.btn-flat:hover {
  background-position: 0 0;
  color: #705644;
}

@media (max-width: 767px) {
  .btn-flat {
    width: 160px;
    font-size: 27px;
  }
}

.miseinen_check {
  font-size: 1.4vw;
  color: #4d4d4d;
  font-family: "HGPSoeiKakugothicUB-02";
  padding: 0 0 0 20%;
}

@media (max-width: 767px) {
  .miseinen_check {
    font-size: 16px;
  }
}

input.big {
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
}

@media (max-width: 767px) {
  input.big {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (min-width: 1921px) {
  input.big {
    -webkit-transform: scale(4);
            transform: scale(4);
  }
}

input[type="checkbox"] {
  position: relative;
  left: -1.5%;
}

.plan_form {
  background-color: rgba(255, 255, 255, 0);
  background: none;
}

.btn-clear {
  margin: 0 auto;
}

.btn-clear input[type="button"] {
  background-color: #4d4d4d;
  font-size: 1.6vw;
  font-family: "HGPSoeiKakugothicUB-02";
  color: #4d4d4d;
  padding: 0.2vw 0.5vw 0.2vw 0.5vw;
  cursor: pointer;
}

.btn-clear input[type="button"]:hover {
  opacity: 0.7;
}

/*================================================
 *  プラン一覧画面デザイン
 ================================================*/
.Area_support {
  text-align: center;
  color: #4d4d4d;
  background-color: #feda18;
  background-image: url(/images/pt04.png);
  z-index: 1;
}

.Area_support .Area_form h1 {
  background-color: #4d4d4d;
  color: #4d4d4d;
}

.Area_support img {
  width: 100%;
}

.err_msg {
  background-color: #e94c55;
  font-size: 3vw;
  color: #fff;
  width: 100%;
  margin: 0 auto;
}

.inner_support {
  padding: 0 2% 0 2%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 767px) {
  .inner_support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.inner_support a {
  width: 48%;
  margin: 2% auto 0;
}

@media (max-width: 767px) {
  .inner_support a {
    width: 100%;
    margin: 10px auto 0;
  }
}

.supprot_box {
  position: relative;
  width: 100%;
  height: 100%;
  border: solid 0.3vw #e94c55;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.supprot_box h1 {
  font-size: 1.3em;
  background-color: #e94c55;
  padding: 2% 0 1% 0;
}

.supprot_box h2 {
  color: #ffffff;
  font-size: 1em;
  background-color: #feda18;
  padding: 2% 0 1% 0;
}

.supprot_box table {
  margin: 30px auto;
  text-align: center;
  width: 80%;
}

.supprot_box td {
  width: 40%;
  border-bottom: dashed 2px #e94c55;
}

.supprot_box p {
  margin: 5px auto 0;
  width: 80%;
  text-align: left;
}

.plan_00 {
  width: 48%;
  margin: 2% auto 0;
}

@media (max-width: 767px) {
  .plan_00 {
    width: 100%;
    margin: 10px auto 0;
  }
}

.plan_af {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: none;
  z-index: 30;
}

.chice_plan p {
  width: 25%;
  background-color: #e94c55;
  margin: 2% auto;
  color: #fff;
  font-size: 1.4em;
  border-radius: 1.4vw;
}

.chice_plan #plan_view,
.chice_plan #price_view {
  background-color: rgba(255, 255, 255, 0);
  color: #4d4d4d;
  font-size: 2.4em;
  width: 100%;
}

/* ボタン */
.btn_plan {
  padding: 5px 0 5px 0;
  position: absolute;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  bottom: 0%;
  left: 50%;
  z-index: 99;
}

.yellow {
  color: #ffec26;
}

.checkmark {
  list-style: none;
}

.checkmark li {
  position: relative;
  width: 80%;
  margin: 0.5vw auto;
  text-align: left;
}

.checkmark li:before {
  position: absolute;
  content: "";
  width: 0.5vw;
  height: 1vw;
  border-right: 0.2vw solid #e94c55;
  border-bottom: 0.2vw solid #e94c55;
  display: inline-block;
  left: -8%;
  top: 20%;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

/*================================================
 *  銀振ページ
 ================================================*/
.ginfuri {
  height: 80%;
}

/*================================================
 *  各プラン申し込み画面デザイン
 ================================================*/
.supprot_box2 {
  margin: 20px auto;
  width: 95%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 0 0 0;
}

@media (max-width: 767px) {
  .supprot_box2 {
    margin: 10px auto;
  }
}

/*================================================
 *  フッター
 ================================================*/
footer {
  clear: both;
  padding: 0.8% 0 0.8%;
  margin: 0 0 0;
  font-size: 1vw;
  color: #fff;
  text-align: center;
  background: #4d4d4d;
}

@media (max-width: 767px) {
  footer {
    font-size: 12px;
    padding: 0 0 100px 0;
  }
}

footer a {
  color: #fff;
}

.copy {
  font-size: 0.6vw;
  letter-spacing: 0.08em;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.top_up {
  width: 5%;
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 999;
}

.top_up img {
  width: 100%;
}

@media (max-width: 767px) {
  .top_up {
    width: 8%;
    bottom: 1%;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .top_up {
    width: 10%;
    bottom: 2%;
  }
}

.top_up a {
  display: block;
  text-decoration: none;
}

.top_up :hover {
  opacity: 0.4;
}

.form_to {
  width: 20%;
  position: fixed;
  bottom: 0%;
  z-index: 999;
}

.form_to img {
  width: 100%;
}

@media (max-width: 767px) {
  .form_to {
    width: 50%;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .form_to {
    display: block;
  }
}

.form_to a {
  display: block;
  text-decoration: none;
}

.form_to :hover {
  opacity: 0.4;
}

/*================================================
 *  特商デザイン
 ================================================*/
.Area_tokusyo {
  font-size: 1em;
  color: #4d4d4d;
  padding: 2% 0 2% 0;
  background-color: #4d4d4d;
  background-position: top center;
  z-index: 1;
}

.tokusyo_inner {
  width: 95%;
  margin: 0 auto;
  padding: 0 0 2% 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.tokusyo_inner h1 {
  background-color: #4d4d4d;
  color: #fff;
  padding: 0.4vw 0 0.4vw 0;
  margin: 0 0 5% 0;
}

.tokusyo_inner dt {
  margin-bottom: 0.5em;
  color: #feda18;
  border-bottom: 1px dotted #ddd;
  padding: 0 0 0 2%;
}

.tokusyo_inner dd {
  margin: 1em 1em 2em;
  font-size: 90%;
}

.tokusyo_inner p.short {
  margin: 0 1em 1em;
}

/*================================================
 *  新フォーム
 ================================================*/
.Form {
  margin: 0 auto;
  padding: 0 2% 0 2%;
}

.Form h1 {
  background: #4d4d4d;
  font-family: "HGPSoeiKakugothicUB-02";
  color: #fff;
}

@media (max-width: 767px) {
  .Form h1 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}

.Form-Item {
  color: #fff;
  margin: 0 auto;
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .Form-Item {
    font-size: 16px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 20%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 767px) {
  .Form-Item-Label {
    width: 100%;
    max-width: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 20%;
  display: inline-block;
  text-align: center;
  background: #eb2b64;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 767px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 10%;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-right: 2%;
  padding-left: 1em;
  padding-right: 1em;
  height: 2em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 1em;
}

@media (max-width: 767px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 5px;
    height: 40px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 16px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  margin: 2vw auto;
  border-radius: 2.2vw;
  padding: 1% 0 1% 0;
  width: 30%;
  display: block;
  letter-spacing: 0.05em;
  background: #feda18;
  color: #fff;
  font-weight: bold;
  font-size: 2.4vw;
  outline: none;
  border: none;
}

.Form-Btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

/*================================================
 *  確認画面デザイン
 ================================================*/
.Area_confirmation {
  text-align: center;
  color: #fff;
  background-color: #4d4d4d;
  z-index: 1;
  padding: 2% 0 5% 0;
}

.confirmation_box {
  padding: 2% 5% 2% 5%;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 767px) {
  .confirmation_box {
    padding: 0 2% 1% 2%;
  }
}

.confirmation_box h1 {
  font-size: 1.4em;
  margin: 0.6vw auto;
  background-color: #e94c55;
  padding: 0.4vw 0 0.2vw 0;
}

.confirmation_box h2 {
  text-align: center;
  font-size: 1em;
  margin: 2vw auto;
  padding: 0.4vw 0 0.2vw 0;
  border-bottom: solid 0.3vw #e94c55;
}

.field_conf {
  color: #feda18;
}

label.disp-value {
  color: #fff;
  line-height: 1.2em;
  border-bottom: dotted 0.3vw #e94c55;
}

.kiyaku {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #3f3f3f;
  font-size: 0.6em;
  text-align: left;
  height: 10vw;
  overflow-y: scroll;
  background-color: #ffffff;
  padding: 10px;
}

/* 承諾チェック */
.kiyaku-checkbox {
  text-align: left;
  margin: 2% 0 0 0;
  width: 100%;
  color: #fff;
  border-bottom: dotted 0.3vw #eb2b64;
}

.kiyaku-checkbox label {
  color: #fff;
  padding: 0 0 0 5%;
}

.kiyaku-checkbox > label {
  display: inline-block;
}

.err-msg,
.err-msg2 {
  display: none;
  color: #4d4d4d;
  background-color: #feda18;
  border-radius: 1vw;
  padding: 2%;
  margin: 2% 2% 5% 2%;
}

/* ボタン並び */
.btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_herf {
  margin: 2%;
  padding: 1% 0 1% 0;
  font-size: 2.4vw;
}

@media (max-width: 767px) {
  .btn_herf {
    font-size: 22px;
  }
}

/* 修正ボタン */
.syusei {
  color: #fff;
  background-color: none;
}

.syusei:hover {
  opacity: 0.7;
}

/*================================================
 *  サンクスページデザイン FE+BE共通
 ================================================*/
.Area_complete {
  text-align: center;
  color: #4d4d4d;
  background-color: #4d4d4d;
  z-index: 1;
  padding: 2% 0 5% 0;
}

.inner_complete {
  display: inline-block;
  margin: 0 auto;
  width: 95%;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.inner_complete h1 {
  background-color: #eb2b64;
  color: #ffffff;
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .inner_complete h1 {
    font-size: 20px;
  }
}

.inner_complete h2 {
  width: 80%;
  background-color: #eb2b64;
  color: #ffffff;
  padding: 6px 0 0 0;
  margin: 20px auto;
  font-size: 1.4em;
}

@media (max-width: 767px) {
  .inner_complete h2 {
    font-size: 20px;
  }
}

.inner_complete h3 {
  width: 70%;
  background-color: #4d4d4d;
  color: #4d4d4d;
  padding: 6px 0 0 0;
  margin: 20px auto;
  font-size: 1.2em;
}

@media (max-width: 767px) {
  .inner_complete h3 {
    font-size: 16px;
    width: 90%;
  }
}

.inner_complete p {
  display: inline-block;
  text-align: left;
  padding: 0.1vw 0 0 0;
  width: 90%;
}

/* 振込先 */
.box_bank {
  background-color: #ffe119;
  width: 80%;
  margin: 0 auto;
  max-width: 400px;
}
/*# sourceMappingURL=style.css.map */