@charset "utf-8";

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
header,
footer,
nav,
aside,
small,
abbr,
address,
code,
del,
img,
ins,
kbd,
q,
samp,
strong,
sub,
sup,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
dialog,
figure,
menu,
section,
time,
mark,
object,
audio,
video {
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  /*  font-family: inherit;*/
  margin: 0;
  padding: 0;
  word-break: break-all;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/*
img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}
*/

ul,
ol {
  list-style: none;
}

a {
  color: #474747;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

em {
  font-style: normal;
}

/*----------------------------------------------------
img(画像エフェクト)
----------------------------------------------------*/

a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

button img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

button:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

img.fade:hover {
  opacity: .8;
}

.rotate img {
  transition: 0.2s;
}

.rotate img:hover {
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  transform: rotate(3deg);
}

/*----------------------------------------------------
block (PC＆SP書き分け)
----------------------------------------------------*/

/* PC時"pc"のclassがついた要素を表示 */

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* SP時"sp"のclassがついた要素を表示 */

@media only screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/*----------------------------------------------------
.common (汎用)
----------------------------------------------------*/

.clear {
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}


.mb30 {
  margin-bottom: 30px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

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

.pt10 {
  padding-top: 10px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt3em {
  padding-top: 3em !important;
}

.tac {
  text-align: center !important;
}

.relative {
  position: relative;
}

.youtube {
  position: relative;
  width: 94%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 94% !important;
  height: 100% !important;
}

/* 点滅 */

.blinking {
  -webkit-animation: blink .7s ease-in-out infinite alternate;
  -moz-animation: blink .7s ease-in-out infinite alternate;
  animation: blink .7s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* フワフワアニメーション */

.fuwafuwa {
  -webkit-animation-name: fuwafuwa;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  /*-webkit-animation-direction:alternate;*/
  -webkit-animation-timing-function: ease;

  -moz-animation-name: fuwafuwa;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  /*-moz-animation-direction:alternate;*/
  -moz-animation-timing-function: ease;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}

@-moz-keyframes fuwafuwa {
  0% {
    -moz-transform: translate(0, 0);
  }
  50% {
    -moz-transform: translate(0, -10px);
  }
  100% {
    -moz-transform: translate(0, 0);
  }
}

/*----------------------------------------------------
form (フォームリセット)
----------------------------------------------------*/

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

select option {
  background-color: #fff;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input[type="submit"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="date"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */

::-webkit-input-placeholder {
  color: #a8a8a8;
  font-size: 1em;
}

/* Firefox 18- */

:-moz-placeholder {
  color: #a8a8a8;
  font-size: 1em;
  opacity: 1;
}

/* Firefox 19+ */

::-moz-placeholder {
  color: #a8a8a8;
  font-size: 1em;
  opacity: 1;
}

/* IE 10+ */

:-ms-input-placeholder {
  color: #a8a8a8;
  font-size: 1em;
}

/*
input::placeholder {
  text-align: center !important;
}
*/

/*----------------------------------------------------
【P-NEKU】
----------------------------------------------------*/

body {
  background: #fff;
  font-family: 'Yu Gothic', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  text-align: center;
  width: 100%;
  line-height: 1.4;
  font-weight: 500;
}

.wrapper {
  min-width: 1050px;
  overflow: hidden;
}

.mainimg {
  /*コンテンツ幅*/
  width: 1050px;
  margin: 0 auto;
}

.mainimgIn {
  /*両サイドのはみ出た部分*/
  margin: 0 -475px;
}

.fix1 {
  position: absolute;
  top: 500px;
  left: 0;
  right: 0;
  width: 1050px;
  margin: 0 auto;
}

.fix2 {
  position: absolute;
  bottom: 450px;
  left: 0;
  right: 0;
  width: 1050px;
  margin: 0 auto;
}

.fix1 img,.fix2 img{
  width: 386px;
}

/*----------------------------------------------------
estimate
----------------------------------------------------*/

.step {
    min-width: 1000px;
    overflow: hidden;
}

.step header {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  padding-top: 5px;
  border-bottom: solid 1px #ccc;
}

.container{
  width: 1000px;
  margin: 0 auto;
}

.estimate .container{
  height: 742px;
}

.step1-box{
  position: absolute;
  top: 0;
  background: #fff;
  height: 742px;
}

/*
.step ul{
  margin-top: 10px;
  margin-bottom: 30px;
}
*/

.step .container ul {
    width: 500px;
    margin: 10px auto 30px;
}

.step .container ul li {
  margin-bottom: 10px;
}

.step .container input {
  width: 470px;
  height: 50px;
  border: solid 1px #aaa;
  padding-left: 10px;
}

.step .container ul li:nth-child(3){
  margin-bottom: 60px;
}

#q2 p.return {
    text-align: left;
    font-size: 1.2em;
    width: 480px;
    margin: 0 auto;
}

p.return a {
  color: #999;
  font-weight: 400;
  cursor: pointer;
}

/* footer{
  background: #f3f3f3;
  margin-top: 100px;
} */

.estimate footer {
    background: #f3f3f3;
    margin-top: 70px;
}

.top footer.fix3 {
  position: absolute;
  /* bottom: 82px; */
  bottom: 105px;
  left: 0;
  right: 0;
  width: 1050px;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px black;
}

.footerIn{
    width: 950px;
    height: 350px;
    margin: 0 auto;
    padding: 0 25px;
}

.footerIn p{
  text-align: left;
  padding: 30px 0;
  font-size: 1.2em;
}

.footerIn a{
  color: #aaa;
  display: block;
}

.footerIn ul{
  text-align: left;
}

.footerIn ul li{
  width: 24%;
  display: inline-block;
  text-align: left;
  vertical-align: top;
}

.footerIn ul li a{
  margin-bottom: 15px;
}

.footerIn ul li:last-child{
padding-left: 20px;
}


/*----------------------------------------------------
apply
----------------------------------------------------*/

.apply_btn{
  margin-top: 30px;
  margin-bottom: 100px;
}


/*----------------------------------------------------
step1
----------------------------------------------------*/

.step1 .container {
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.step1 .container ul li{
  text-align: left;
  margin-bottom: 18px;
}

.step1 .container ul li input{
  margin-bottom: 8px;
}

.step.step1 .container ul li:nth-child(3) {
    margin-bottom: 5px;
}

.step.step1 .container ul li:nth-child(5){
  border: solid 1px #aaa;
  height: 50px;
  width: 470px;
  line-height: 50px;
  color: #a8a8a8;
  font-size: .9em;
  padding-left: 10px;
  margin-bottom: 10px;
}

.step.step1 .container ul li:nth-child(5) input {
  border: none;
  width: auto;
  height: auto;
  padding-left: 10px;
}

.step.step1 .container ul li:last-child{
  margin-top: 30px;
}


/*----------------------------------------------------
step4
----------------------------------------------------*/

.step.step4  .container ul {
    width: 500px;
    margin: 20px auto 100px;
}

.step.step4 .container ul li {
    margin-bottom: 10px;
    text-align: left;
}

.step.step4 .container ul li:nth-child(2) textarea{
  width: 460px;
  height: 350px;
  padding: 10px;
}

.step.step4 .container ul li:last-child {
    margin-top: 40px;
}



