/* Basic Styles
----------------------------------------------------------- */
*{box-sizing: border-box;}
html {
  font-size:62.5%;
  height: 100%;
  scroll-padding-top:80px;
}
body,h1, h2, h3, h4, h5, h6, h7, p, address, div, ul, ol, li, dl, dt, dd, table, th, td, caption, img, form,video,article{
	margin:0;
	padding:0;
}
h2, h3 {text-align: center;}
body {
  color: #333;
  font: 1.6rem "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.contents {flex: 1;}
img {
  height: auto;
  max-width: 100%;
}
header, footer, article, section {
  display: block;
}
ul, li {list-style: none;}
a {
  text-decoration: none;
  outline: none;
}
.vlink::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  padding-top: 80px;
}

/*余白*/
.mb20{margin-bottom:20px;}
.mb25{margin-bottom:25px;}
.mb30{margin-bottom:30px;}
.mb35{margin-bottom:35px;}
.mb40{margin-bottom:40px;}
.mb45{margin-bottom:45px;}
.mb50{margin-bottom:50px;}
.p20 {padding: 20px;}
.f13{font-size:1.3rem;}
.f14{font-size:1.4rem;}
.f16{font-size:1.6rem;}
.f20{font-size:2rem;}
.f30{font-size:3rem;}
.f48{font-size:4.8rem;}

.bold {font-weight: bold;}

.tar{text-align: right;}
.tal{text-align: left;}
.tac{text-align: center;}
.center {
  margin-right: auto;
  margin-left: auto;
}
.flex {display: flex;}
.fl-items {align-items: center;}
.fl-between {justify-content: space-between;}
.fl-serif {align-self: center;}
.fl-wrap {flex-wrap: wrap;}
.forange {color: #f08300;}
.fblue {color: #1f2d6e;}
.fblack {color: #333;}
.bg-gray {background-color: #f7f7f7;}
.bg-blue {background-color: #edf1f7;}
.bg-orange {background-color: #fff2d8;}
.box {
  background-color: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 6px 10px rgba(85,85,85,.1));
  width: 100%;
}
.under {text-decoration: underline;}
.inner, .inner-s {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
h2 small {
  font-size: 1.4rem;
  font-weight: normal;
}
h3 {text-align: center;}
.btn {
  background-color: #f70;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  height: 80px;
  line-height: 80px;
  width: 246px;
  border-bottom: 5px solid #b84c00;
}
.btn:hover {background-color: #fdba7e;}
.btn a {
  color: #fff;
  display: block;
  text-align: center;
}
input.btn {color: #fff;}
.btn img {margin-right: 20px;}
.btn-wrap {text-align: center;}
.btn-wrap .btn {margin-top: 10px;}
.btn02, .btn03 {
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  text-align: center;
  width: 255px;
}
.btn02 {
  border: 1px solid #f73;
  color: #f73;
}
.btn02:hover {
  background-color: #FB7722;
  color: #fff;
}
.btn03 {
  background: url(img/ico-target.svg) no-repeat 95% 50%;
  border: 1px solid #1f2d6e;
  color: #1f2d6e;
  margin-top: 20px;
}
.btn03:hover {
    background: url(img/ico-target_white.svg) no-repeat 95% 50% #1f2d6e;
  color: #fff;
}
.btn04 {
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #f73 !important;
  color: #f70;
  font-size: 2rem;
  font-weight: bold;
  height: 78px;
}
.btn04:hover {opacity: .7;}

/**header**/
.header {
  left: 0;
  padding: 4px 0;
  position: fixed;
  top: 0;
  z-index: 102;
  width: 100%;
}
.htel {
  right: 46px;
  position: absolute;
  top: 0;
  width: 168px;
}
.head-right {
  position: absolute;
  right: 6px;
  top: 24px;
}
.global-nav {
  background-color: #fff;
  padding-top: 80px;
  position: fixed;
  left: 0;
  top: -200%;
  transition:.3s ease-in-out;
  z-index: 100;
  width: 100%;
}
.gnav-on {top: 0;}
.global-nav li {
  background: url(img/ico-li.png) no-repeat 0 50%;
  border-bottom: 1px solid #f7f7f7;
  line-height: 46px;
  padding-left: 26px;
}
.global-nav ul a {color: #333;}
.global-nav .bg-orange {padding: 20px 0;}
.global-nav .btn {margin-top: 10px;}

.nav-toggle {
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  height: 36px;
  position: relative;
  width: 36px;
}
.nav-toggle span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  width: 18px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
}
.nav-toggle span:nth-of-type(1) {top: 10px;}
.nav-toggle span:nth-of-type(2) {top: 18px;}
.nav-toggle span:nth-of-type(3) {top: 25px;}

.nav-toggle span::before {
  position: absolute;
  top: 0;
  left: -6px;
  content: '';
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
}
.nav-toggle.menu-on span {
  left: 0;
  width: 100%;
}
.nav-toggle.menu-on span::before {content: none;}
.nav-toggle.menu-on span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.nav-toggle.menu-on span:nth-of-type(2) {opacity: 0;}
.nav-toggle.menu-on span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
.fixed {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
}
.mv {
  background: url(img/mainvisual01.png) no-repeat;
  background-size: cover;
  padding-top: 100px;
  position: relative;
}
.mv-txt01 {width: 93.7%;}
.mv-txt02 {width: 100%;}
.btn-first {padding: 70px 0 40px;}
#archive {padding: 1px 0 46px;}

#how {padding: 1px 0 45px;}
.how h2 {margin-bottom: 20px;}
.how h2 img {margin-bottom: -4px;}

.step h2 img {
  height: 60px;
  margin-right: 16px;
}
.task-wrap {margin-bottom: 15px;}
.task-box {
  border-radius: 8px;
  padding: 35px 20px;
  width: 100%;
}
.task-box ul {
  display: inline-block;
  text-align: left;
}
.task-box li {margin-bottom: 10px;}
.task-box img {
  display: block;
  margin: auto;
}
#merit {padding: 1px 0 40px;}
.merit01 {margin-bottom: 35px;}
.merit01 .box {padding: 40px 20px 14px;}
.merit01 .box img {display: block;}
#attribute {padding: 1px 0 20px;}
.attribute .box img {
  height: 218px;
  position: relative;
  width: auto;
}
.attribute .box::before {
  border: 1px solid #f73;
  border-radius: 4px;
  color: #f73;
  font-size: 1.9rem;
  font-weight: bold;
  left: 10px;
  line-height: 1;
  padding: 4px 6px 2px;
  position: absolute;
  top: 10px;
}
.attribute .box:nth-of-type(1)::before {content: "01";}
.attribute .box:nth-of-type(2)::before {content: "02";}
.attribute .box:nth-of-type(3)::before {content: "03";}
.attribute .box:nth-of-type(4)::before {content: "04";}
.attribute .box:nth-of-type(3) img {margin-left: 30px;}
#step {padding: 1px 0 45px;}
.step li {
  background-color: #fdbc2c;
  position: relative;
  text-align: center;
}
.step li::before {
  content: "";
  position: absolute;
}
#faq {padding: 1px 0 10px;}
.faq {padding-left: 42px;}
.faq dt {
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 20px;
  text-indent: -42px;
}
.faq .dt {
  background-color: #f70;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 28px;
  line-height: 28px;
  margin-right: 10px;
  text-align: center;
  text-indent: 0;
  width: 28px;
}
.faq dd {
  line-height: 1.7;
  margin-bottom: 40px;
  padding-left: 20px;
  text-indent: -42px;

  }
.faq .dd {
  border: 2px solid #f70;
  border-radius: 50%;
  display: inline-block;
  color: #f70;
  font-weight: bold;
  height: 28px;
  line-height: 28px;
  margin-right: 10px;
  text-align: center;
  text-indent: 0;
  width: 28px;
}
#inquiry {padding: 1px 0 40px;}
.form > div {
  border-top: 1px solid #f7f7f7;
  padding: 20px 0;
}
.form01 {font-size: 1.6rem;}
.form01 span {
  border-radius: 2px;
  display: inline-block;
  font-size: 1.4rem;
  padding: 1px;
  text-align: center;
  width: 38px;
}
.form-page, .form-thanks {padding-top: 104px;}
.form-thanks .tel {
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  display: block;
  margin: 20px 0;
  padding: 0 20px 10px;
  width: 100%;
}
.form-thanks .btn02 {margin-bottom: 50px;}
.form-thanks .bg-orange {padding: 50px 0;}
.form-thanks .box {padding: 50px 20px;}
.form-thanks h2 {font-size: 2rem;}
.form-thanks .box img {margin-bottom: 10px;}
.req {
  background-color: #EF5642;
  color: #fff;
  margin-left: auto;
}
.opt {
  background-color: #f7f7f7;
  color: #666;
}
input[type="text"], textarea {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 490px;
}
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 340px;
}

.tel img {width: 266px;}
.footer a {color: #333;}
.footer li + li {margin-left: 32px;}
/*フェードアニメ*/
.fade {opacity: 0;}
.fadein {
    animation-name: fadein;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    transform: translateY(100px);
}
@keyframes fadein {
    0% {opacity: 0;}
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
.fade + .fade {animation-delay: .3s;}
.fade + .fade + .fade {animation-delay: .6s;}
.fade + .fade + .fade + .fade {animation-delay: .9s;}
.fade + .fade + .fade + .fade + .fade {animation-delay: 1.2s;}

@media (max-width: 768px) {
  body {max-width: 100%;}
  .pc-only {display: none;}
  .bolds {font-weight: bold;}
  .btn, input[type="submit"] {
    font-size: 1.6rem;
    height: 64px;
    line-height: 64px;
    max-width: 90%;
    padding: 0 10px;
  }
  a[href^="tel"] {display: block;}
  .tel-sp {
    margin-top: 20px;
    width: 256px;
  }
  .nav-tel {background-color: #fff;}
  .global-nav {font-size: 1.5rem;}
  .header {font-size: 1.2rem;}
  .header .inner {padding-right: 30px;}
  .hlogo {
    align-items: center;
    display: flex;
  }
  .hlogo img {
    margin-bottom: 20px;
    width: 140px;
  }
  .htel {display: none;}
  .mv-img {
    height: 500px;
    overflow: hidden;
  }
  .mv-img .sp-only {
    display: block;
    margin: auto;
    width: 75%;
  }
  .mv-txt02 {
    bottom: -50px;
    left: 0;
    position: absolute;
  }
  .flex {flex-wrap: wrap;}
  .archive-h2 {max-width: 250px;}
  .how h2 img {width: 130px;}
  .how h3 img {width: 40px;}
  .how-box {font-size: 1.8rem;}
  .task-box + .task-box {margin-top: 20px;}
  .merit h2 img {width: 50px;}
  .merit01 .box + .box {margin-top: 20px;}
  .merit01 .box h3 {margin-bottom: 20px;}
  .merit01 .box > div {margin-bottom: 24px;}
  .attribute h2 {
    line-height: 1;
    margin-bottom: 50px;
  }
  .attribute h2 img {
    margin-bottom: 10px;
    width: 40px;
  }
  .attribute > div {margin-bottom: 24px;}
  .step ul {filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));}
  .step li {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 56px;
  }
  .step li::before {
    background: url(img/step-bg.png) no-repeat;
    background-size: 100%;
    bottom: 0;
    height: 47px;
    left: 0;
    width: 100%;
  }
  .step li:first-of-type {padding-top: 25px;}
  .step li:last-of-type {padding-bottom: 15px;}
  .step li:last-of-type::before {background: none;}
  .step li img {margin-bottom: 10px;}
  .step li:nth-of-type(1) img {width: 11.2%;}
  .step li:nth-of-type(2) img {width: 15.2%;}
  .step li:nth-of-type(3) img {width: 15.2%;}
  .step li:nth-of-type(4) img {width: 10.4%;}
  .step li:nth-of-type(5) img {width: 15.8%;}
  .step li p:first-of-type {
    color: #5c4f31;
    font-size: 1.4rem;
  }
  .form01 + div {margin-top: 6px;}
  .form-thanks h1 {border-bottom: 5px solid #f7f7f7;}
  .submit input + input {margin-top: 10px;}
  input[type="text"], textarea {width: 100%;}
  .footer {text-align: center;}
  .footer-top {padding: 30px 0;}
  .footer-top p +p {margin-top: 10px;}
  .flogo img {margin-bottom: 12px;}
  .flogo b {
    display: block;
    margin-bottom: 10px;
  }
  .footer-bottom {
    background-color: #fff;
    padding: 25px 0;
  }
  .footer-bottom ul {justify-content: center;}
  .f48 {font-size: 3rem;}
  .f30 {font-size: 2rem;}
  .mb35, .mb40 {margin-bottom: 18px;}

}
@media (min-width: 768px) {
  html {scroll-padding-top: 100px;}
  body {
    font-size: 1.8rem;
    min-width: 1040px;
  }
  .inner {width: 1040px;}
  .inner-s {width: 790px;}
  .sp-only {display: none;}

  h2, h3 {font-weight: bold;}
  h2 img, h3 img {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
  }
  .tacp {text-align: center;}
  .btn02, .btn03 {
    border-radius: 4px;
    height: 48px;
    line-height: 48px;
    width: 224px;
  }
  .header {padding: 14px 0;}
  .global-nav {padding-top: 128px;}
  .global-nav ul {
    border-top: 1px solid #f7f7f7;
    margin-bottom: 20px;
  }
  .nav-toggle {
    height: 54px;
    right: 12px;
    top: 0;
    width: 54px;
  }
  .nav-toggle span {
    border-radius: 4px;
    height: 4px;
    left: 16px;
    width: 30px;
  }
  .nav-toggle span::before {
    border-radius: 4px;
    height: 4px;
    left: -8px;
    width: 4px;
  }
  .nav-toggle span:nth-of-type(1) {top: 15px;}
  .nav-toggle span:nth-of-type(2) {top: 25px;}
  .nav-toggle span:nth-of-type(3) {top: 35px;}
  .nav-toggle.menu-on span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .nav-toggle.menu-on span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  .global-nav {
    font-size: 1.8rem;
    padding-top: 128px;
  }
  .global-nav .btn {margin-top: 20px;}
  .global-nav ul {margin-bottom: 40px;}
  .global-nav li {line-height: 60px;}
  .global-nav .bg-orange {padding: 40px 0;}
  .htel {
    right: 100px;
    width: 238px;
  }
  .mv {padding-top: 130px;}
  .mv-img {
    height: 480px;
    position: relative;
  }
  .mv-img::after {
    background: url(img/mainvisual03.png) no-repeat;
    bottom: 0;
    content: '';
    height: 550px;
    position: absolute;
    right: 0;
    width: 464px;
  }
  .hlogo img {
    margin-top: -8px;
    vertical-align: -17px;
    width: 188px;
  }
  .mv-txt01 {width: 560px;}
  .mv-txt02 {width: 479px;}
  .w332 {width: 32%;}
  .w360 {width: 360px;}
  .w500 {width: 500px;}
  .w700 {
    margin-left: 20px;
    max-width: 700px;
  }
  .mbp60 {margin-bottom: 60px;}
  .btn-first {padding: 46px 0;}
  .btn-wrap .btn {margin-top: 20px;}
  .btn {width: 320px;}
  #archive {padding: 1px 0 70px;}

  .archive h2 img {
    margin-left: auto;
    width: 550px;
  }
  #how {padding: 10px 0 100px;}
  .how h2 {margin-bottom: 55px;}
  .how h2 img {margin-bottom: 28px;}
  .how h3 img {
    margin-bottom: 10px;
    width: 50px;
  }
  #merit {padding: 20px 0 100px;}
  .merit h2 img {
    margin-bottom: 10px;
    width: 55px;
  }
  .merit01 {margin-bottom: 75px;}
  .merit01 .box {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
  }
  .merit01 .box img {margin-top: auto;}
  .merit h3 {
    display: table;
    font-size: 2.4rem;
    height: 110px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 30px;
  }
  .h3-merit {
    display: table-cell;
    vertical-align: middle;
  }
  #attribute {padding: 20px 0 110px;}
  .attribute h2 {
    align-items: center;
    margin-bottom: 40px;
  }
  .attribute h2 img {
    margin-bottom: 18px;
    width: 50px;
  }
  .attribute .box::before {
    border: 3px solid #f73;
    font-size: 3.6rem;
    left: 20px;
    padding: 11px 8px 7px;
    top: 20px;
  }
  .attribute .box img {
    height: 400px;
    margin-left: 1px;
  }
  .attribute .box:nth-of-type(3) img {margin-left: 60px;}
  .task-box {padding: 58px 30px 30px;}
  #faq {padding: 15px 0 70px;}
  .faq dt {font-size: 2.2rem;}
  .faq .dt, .faq .dd {
    height: 34px;
    line-height: 34px;
    width: 34px;
  }
  .faq dd {font-size: 2rem;}
  #step {padding: 20px 0 110px;}
  .step ul {
    display: flex;
    justify-content: space-between;
    width: 1040px;
  }
  .step li {
    height: 160px;
    margin-right: 20px;
    padding: 35px 0 20px 18px;
    width: 166px;
  }
  .step li p:first-of-type {
    font-size: 2.4rem;
    top: -18px;
    left: 54%;
    position: absolute;
    transform: translateX(-50%);
  }
  .step li::before {
    content: "";
    position: absolute;
    border-bottom: 80px solid transparent;
    border-left: 40px solid #fdbc2c;
    border-top: 80px solid transparent;
    right: -40px;
    top: 0;
  }
  .step li img {margin-top: 14px;}
  .how-box {position: relative;}
  .how-box b {
    left: 50%;
    position: absolute;
    top: 15%;
    transform: translateX(-50%);
    width: 600px;
  }
  .task-wrap {margin-bottom: 30px;}
  #inquiry {padding: 10px 0 70px;}
  .form {
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 35px;
  }
  .form > div {
    align-items: center;
    border-top: 1px solid #f7f7f7;
    display: flex;
    padding: 20px 0;
  }
  .form01 {
    display: table;
    margin-right: 10px;
    width: 250px;
  }
  .form01 span {display: table-cell;}
  .form-page {padding-top: 120px;}
  .form-thanks {
    font-size: 1.6rem;
    padding-top: 155px;
  }
  .form-thanks .tel {
    margin: 60px auto 36px;
    padding: 40px;
    width: 355px;
  }
  .form-thanks .btn02 {margin-bottom: 105px;}
  .form-thanks .bg-orange {padding: 65px 0;}
  .form-thanks .box {padding: 50px 20px;}
  .form-thanks h2 {font-size: 3.2rem;}
  .btn03 {margin-top: 30px;}
  .form-thanks .box img {margin-bottom: 20px;}
  .submit {
    display: flex;
    margin-bottom: 45px;
  }
  .footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 1040px;
  }
  .flogo {
    align-items: center;
    display: flex;
    height: 128px;
  }
  .flogo img {margin-right: 20px;}
  .flogo b {margin-right: 1rem;}
}