@charset "UTF-8";

main {
  margin-top: 100px;
}
/* ヘッダー */
.header-wrapper {
  border-bottom: 1px solid #E23714;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
}
.header-inner {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-pc {
  display: flex; /* block */
}
.header-sp {
  display: none;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo span {
  display: block;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  background: url(/images/logo.png) no-repeat center left;
  background-size: contain;
  width: 200px;
  height: 56px;
}
.header-logo-tosho img {
  height: 55px;
}
.header-menu {
  display: flex;
  align-items: center;
}
#header .btn-download {
  font-size: 14px;
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  margin: 0 5px;
}
#header .btn-inquiry {
  font-size: 14px;
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  margin: 0 5px;
}
.header-nav {
  margin-right: 60px;
}
.header-nav li {
  display: inline-block;
}
.header-nav li:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (max-width:599px) {
  main {
    margin-top: 50px;
  }
  .header-pc {
    display: none;
  }
  .header-sp {
    display: flex; /* block */
    align-items: center;
    position: relative;
  }
  .header-inner {
    height: 50px;
    border-top: 1px solid #E23714;
    padding-left: 10px;
  }
  .header-logo-wrapper {
    display: flex;
  }
  .header-logo {
    width: 30%;
  }
  .header-logo span {
    width: 110px;
    height: 30px;
  }
  .header-logo-tosho {
    margin-left: -60px;
  }
  .header-logo-tosho img {
    height: 50px;
    padding: 5px;
  }
  #header-menu-bar {
    width: 50px;
    height: 50px;
  }
  #header-menu-bar span {
    position: absolute;
    right: 10px;
    width: 30px;
    height: 4px;
    background-color: #E23714;
    border-radius: 8px;
    transition: ease .75s;
  }
  #header-menu-bar span:nth-of-type(1) {
    top: 12px;
  }
  #header-menu-bar span:nth-of-type(2) {
    top: 22px;
  }
  #header-menu-bar span:nth-of-type(3) {
    top: 32px;
  }
  #header-menu-bar.close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 22px;
  }
  #header-menu-bar.close span:nth-of-type(2) {
    opacity: 0;
  }
  #header-menu-bar.close span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 22px;
  }
  #header-menu-list {
    display: none;
    position: absolute;
    top: 51px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255);
  }
  #header-menu-list li a {
    padding: 20px;
    display: block;
  }
}
/* フッター */
.footer-top {
  padding: 70px 80px;
}
.footer-top ul {
  width: 620px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
}
.footer-bottom {
  font-size: 12px;
  color: #fff;
  background: #1A1311;
  padding: 35px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
}
.footer-bottom-inner ul {
  display: flex;
}
.footer-bottom-inner ul li:first-child {
  margin-right: 25px;
}
.footer-logo img {
  width: 200px;
}
@media only screen and (max-width:599px) {
  .footer-top {
    padding: 50px 0;
  }
  .footer-top ul {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-top ul li {
    width: 50%;
  }
  .footer-top ul li a {
    display: block;
    padding: 10px;
  }
  .footer-bottom {
    padding: 20px 10px;
  }
  #top .footer-bottom {
    padding-bottom: 90px;
  }
  .footer-bottom-inner {
    display: block;
  }
  .footer-bottom-inner ul {
    display: block;
    margin-top: 20px;
  }
  .footer-bottom-inner ul li:first-child {
    margin: 0 0 10px;
  }
}

/* 下層ページタイトル */
.subpage-wrapper {
  color: #fff;
  background: linear-gradient(to bottom, #E23714, #F39800);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subpage-title {
  font-size: 40px;
}
.subpage-description {
  font-size: 14px;
  margin-top: 30px;
}
@media only screen and (max-width:599px) {
  .subpage-wrapper {
    height: auto;
    padding: 50px 20px;
  }
  .subpage-title {
    font-size: 28px;
  }
  .subpage-description {
    margin-top: 20px;
  }
}

/*
トップページ
*/
/* キービジュアル */
.keyvisual-wrapper {
  width: 100%;
  height: 600px;
  background: url(/images/bg_main_pc.jpg) center center;
  margin-bottom: 20px;
}
.keyvisual-inner {
  padding-top: 50px;
}
.keyvisual-text-1 {
  font-size: 30px;
  color: #E23714;
  margin-bottom: 58px;
  line-height: 1.5;
}
.keyvisual-text-2 {
  font-size: 26px;
  margin-bottom: 26px;
}

#keyvisual .btn-download {
  width: 400px;
}

@media only screen and (max-width:599px) {
  .keyvisual-wrapper {
    height: auto;
    background: url(/images/bg_main_sp.jpg) center center;
    background-size: cover;
    height: 65vh;
  }
  .keyvisual-inner {
    padding: 20px 20px 0;
  }
  .keyvisual-text-1 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .keyvisual-text-2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  #keyvisual .btn-download {
    width: 80%;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }
}
@media screen and (min-width: 600){

}

/*
  補助金バナー
  PCとスマホで表示するdevタグを変える
*/
.subsidy-banner-pc {
  display: block !important;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
}
.subsidy-banner-sp { display: none !important; }

@media only screen and (max-width: 599px) {
    .subsidy-banner-pc { display: none !important; }
    .subsidy-banner-sp { display: block !important; }
}
.subsidy-banner-pc {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
}

/* LeadCloudの特徴 */
.feature-inner {
  padding: 100px 0 140px;
}
#feature .title{
  margin-bottom: 100px;
}
.feature-list {
  max-width: 944px;
  display: flex;
  justify-content: space-between;
}
.feature-text {
  margin-top: 70px;
}
.feature-text span {
  color: #E23714;
}
@media only screen and (max-width:599px) {
  .feature-inner {
    padding: 50px 0 0;
  }
  #feature .title {
    margin-bottom: 30px;
  }
  .feature-list {
    width: auto;
    display: block;
  }
  .feature-list li {
    margin-bottom: 50px;
  }
  .feature-text {
    margin-top: 20px;
  }
}


/* 主な機能一覧 */
.function-wrapper {
  background-color: #F7F7F7;
}
.function-inner {
  padding-top: 100px;
  padding-bottom: 140px;
}
#function .title {
  margin-bottom: 60px;
}
.function-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.function-list li {
  width: 340px;
}
.function-list li:nth-child(1),
.function-list li:nth-child(2),
.function-list li:nth-child(3) {
  margin-bottom: 50px;
}
.function-list-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.function-list-title h4 {
  font-size: 24px;
  color: #E23714;
  margin-left: 20px;
}
.function-list-text {
  font-size: 15px;
}
.function-movie {
  background-color: #F7F7F7;
  padding-top: 100px;
  padding-bottom: 100px;
}
.function-movie video {
  width: 800px;
}
@media only screen and (max-width:599px) {
  .function-inner {
    padding: 50px 0;
  }
  #function .title {
    margin-bottom: 30px;
  }
  .function-list li {
    width: 100%;
    padding: 20px;
  }
  .function-list li:nth-child(1),
  .function-list li:nth-child(2),
  .function-list li:nth-child(3) {
    margin-bottom: 0;
  }
  .function-list-title {
    margin-bottom: 10px;
  }
  .function-movie {
    padding: 70px 20px 20px;
  }
  .function-movie video {
    width: 100%;
  }
}

/* このようなお悩み、ありませんか？ */
.trouble-inner {
  padding-top: 100px;
  padding-bottom: 110px;
}
#trouble .title {
  margin-bottom: 60px;
}
.trouble-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.trouble-list-text {
  text-align: center;
  margin-top: 36px;
}

@media only screen and (max-width:599px) {
  .trouble-inner {
    padding: 50px 0;
  }
  .trouble-list {
    width: auto;
    display: block;
  }
  .trouble-list li {
    text-align: center;
  }
  .trouble-list li:not(:last-child) {
    margin-bottom: 50px;
  }
  .trouble-list-text {
    margin-top: 10px;
  }
}

/* そのお悩み、LeadCloudにお任せください！ */
.effect-wrapper {
  background: url(/images/bg_effect.png) no-repeat;
  background-size: cover;
}
.effect-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 140px;
}
#effect .title {
  margin-bottom: 100px;
}
.effect-list li {
  padding-top: 150px;
}
.effect-list li:not(:last-child) {
  margin-bottom: 60px;
}
.effect-list-1 {
  background: url(/images/pic_effect_1.png) no-repeat;
  background-position: top right;
  margin-left: 60px;
}
.effect-list-2 {
  background: url(/images/pic_effect_2.png) no-repeat;
  background-position: top left;
  margin-right: 60px;
}
.effect-list-3 {
  background: url(/images/pic_effect_3.png) no-repeat;
  background-position: top right;
  margin-left: 60px;
}
.effect-list-box {
  width: 540px;
  padding: 30px 40px 40px;
  background-color: #fff;
  box-shadow: 0 9px 7px rgba(0,0,0,.15);;
}
.effect-list-box.right {
  margin: 0 0 0 auto;
  text-align: left;
}
.effect-list-no {
  font-size: 20px;
  margin-bottom: 20px;
}
.effect-list-title {
  font-size: 24px;
  margin-bottom: 30px;
}
.effect-list-text {
  font-size: 15px;
}
@media only screen and (max-width:599px) {
  .effect-inner {
    padding: 50px 0;
  }
  #effect .title {
    margin-bottom: 50px;
  }
  .effect-list {
    padding: 0 20px;
  }
  .effect-list li {
    padding-top: 0;
    margin: 0;
    background: none;
  }
  .effect-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .effect-list-box {
    width: 100%;
    padding: 20px;
  }
  .effect-list-no {
    font-size: 18px;
  }
  .effect-list-title {
    font-size: 20px;
  }
}

/* ご利用料金 */
.price-wrapper {
  padding-top: 100px;
  padding-bottom: 140px;
  background: #F7F7F7;
}
#price .title {
  margin-bottom: 60px;
}
.price-inner {
  padding: 90px 100px 75px;
  background: linear-gradient(to bottom, #E23714, #F39800);
  border-radius: 20px;
  position: relative;
}
.price-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.price-list li {
  width: 400px;
  height: 280px;
  background: #fff;
  border-radius: 10px;
}
.price-list h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.price-text {
  font-size: 32px;
}
.price-text span {
  font-size: 100px;
}
.price-text-additional {
  font-size: 16px;
  margin-top: 25px;
}
.price-text-contanct {
  color: #fff;
  margin-top: 30px;
  font-size: 15px;
}
.price-image {
  position: absolute;
  right: -80px;
  bottom: -82px;
}
/* tablet view だと崩れることがあるので消す */
@media only screen and (min-width: 600px) and (max-width:1079px) {
  .price-image {
    display: none;
  }
}
@media only screen and (max-width:599px) {
  .price-wrapper {
    padding: 50px 0;
  }
  .price-inner {
    padding: 20px;
    margin: 20px;
  }
  #price .title {
    margin-bottom: 30px;
  }
  #price .btn-download-white {
    padding: 0;
  }
  .price-list {
    display: block;
    margin-bottom: 30px;
  }
  .price-list li {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px 0;
  }
  .price-list h3 {
    margin: 0;
  }
  .price-image {
    display: none;
  }
}

/* よくあるご質問 */
.faq-inner {
  padding-top: 100px;
  padding-bottom: 140px;
}
#faq .title {
  margin-bottom: 50px;
}
.faq-list {
  padding: 50px 50px 35px 95px;
  background: #F7F7F7;
}
.faq-list:not(:last-child) {
  margin-bottom: 10px;
}
.faq-list dt {
  font-size: 22px;
  margin-bottom: 40px;
  position: relative;
}
.faq-list dt::before {
  content: "";
  background: url(/images/icon_question.png) no-repeat;
  display: inline-block;
  width: 40px;
  height: 47px;
  position: absolute;
  left: -70px;
  top: -12px;
}
@media only screen and (max-width:599px) {
  .faq-inner {
    padding: 50px 0;
  }
  .faq-list {
    padding: 30px 30px 30px 95px;
    margin: 10px;
  }
  .faq-list dt {
    font-size: 20px;
  }
}

/* 下部の追随ボタン */
.c-floating-download-area {
  display: none;
}
@media only screen and (max-width:599px) {
  .c-floating-download-area {
    display: flex;
    width: 100%;
    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    background: rgba(0,0,0,.3);
  }
}

/*
プライバシーポリシー
*/
.privacypolicy-wrapper {
  background: #F7F7F7;
}
.privacypolicy-inner {
  padding: 70px 0 130px;
}
.privacypolicy-title {
  font-size: 18px;
  margin-bottom: 30px;
}
.privacypolicy-description {
  font-size: 12px;
  margin-bottom: 30px;
}
.privacypolicy-list {
  font-size: 12px;
}
.privacypolicy-list dt {
  margin-bottom: 12px;
}
.privacypolicy-list dd {
  line-height: 2;
}
.privacypolicy-list dd:not(:last-child) {
  margin-bottom: 30px;
}
.privacypolicy-list ul {
  margin-top: 20px;
  margin-left: 30px;
}
@media only screen and (max-width:599px) {
  .privacypolicy-inner {
    padding: 50px 20px;
  }
  .privacypolicy-list ul {
    margin-left: 0;
  }
}
