@charset "utf-8";

/*全デバイス共通*/
body{ font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","Montserrat", "Noto Sans JP", "メイリオ", "Meiryo, Osaka", "MS Ｐゴシック", "MS PGothic", sans-serif; line-height: 1.5; color: #333333; }
img { border: none; max-width: 100%; height: auto; display: block; margin: auto;}
p { text-align: center; font-size: 4vw; color: #fff;}

/*ALL*/
div#container {width: 100%;}

/*デバイス別表示*/

.pc-only{
  display: block;
}

.sp-only{
  display: none;
}

/*アニメーション*/

/* スライダー */
.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
.sliderArea.w300 {
  max-width: 350px;
}
.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 30px !important;
    line-height: 1;
    opacity: .75;
    color: #ccc !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: 10% !important;
}

.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 30px;
}
.prev-arrow {
  left: -40px;
}
.next-arrow {
  right: -40px;
}

.slick-dots li button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dots-pc li button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px){
.pc-only{
  display: none;
}

.sp-only{
  display: block;
}
}

/*header*/
header {width: 100%;}
@media screen and (max-width: 768px){
.header-inner {
    min-width: inherit;
    height: 0;
}

.header-logo {
    position: relative;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateY(0);
    max-width: 20%;
    background: #fff;
}

.header-logo a {
    display: block;
}

.nav_toggle {
    display: none;
    position: absolute;
    width: 10%;
    height: 4%;
    z-index: 2;
    background: #fff;
    right: 0;
}

  .nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }

  /* クリックされた後のハンバーガーのマーク */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }

  /* クリックで表示されるメニュー：クリックされる前 */
  .nav {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    background-color: #fff;
    z-index: 1;
  }
  .nav_menu_li {
    margin-bottom: 30px;
  }
  .nav_menu_li a {
    color: #ee6557;
    text-decoration: none;
  }

  /* クリックで表示されるメニュー：クリックされた後 */
  .nav.show {
    opacity: 1;
    visibility: visible;
  }


.fv {
    position: relative;
}

.bottom-arrow {
    width: 55%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 2s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* スライダー */
.sliderArea {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.slick-dots {
    position: absolute;
    bottom: 5% !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.dots-pc {
    position: absolute;
    bottom: -10%;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.dots-pc li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.dots-pc li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}




/*FORM*/

img.iphone {
    width: 13%;
    position: absolute;
    right: 8%;
    margin-top: -5%;
    z-index: 1;
}

.form{
    margin: -40px 0 0;
}

select.select {
    padding: 3%;
    width: 100%;
    margin: 2% 0;
}

.form-box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border: solid 2px #1b2c60;
  margin: 20px;
}

div.form form {
    padding: 5% 5% 0;
}

.hukidashi-list {
    width: 90%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 6px 0;
    background: #ffe3c1;
    margin: 0 auto;
    border-radius: 5px;
}

.hukidashi-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.6vw;
    white-space: nowrap;
    margin: 0 auto;
}

.hukidashi-list::after {
    position: absolute;
    bottom: -9px;
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    border-color: #ffe3c1 transparent transparent transparent;
    content: "";
}

div.form p.head {
    padding: 5% 0;
    background: #1b2c60;
    text-align: center;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}


table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.form form table th {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 0;
    margin-top: 3%;
    color: #021427;
    font-weight: bold;
    font-size: 4vw;
}

.form form table td {
    display: block;
}

.form form input {
    font-size: 4vw;
    padding: 3%;
    box-shadow:0px 1px 5px 0px #ccc inset;
}

input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

.click{
    position: absolute;
    width: 19%;
    right: 5%;
    top: 88%;
    animation: anime1 0.5s ease 0s infinite alternate;
    transform-origin:center;
}

@keyframes anime1 {
  from {
    transform: scale(1.3,1.3);
  }
  to {
    transform: scale(1,1);
  }
}

input, select, textarea, search {
    font-family: "Zen Kaku Gothic New",sans-serif;
    border: solid 1px #c2c2c2;
    background-color: #f8f8f9;
    font-size: 16px;
    border-radius: 5px;
}

div.form ul.transmission {
    width: auto;
    text-align: center;
    margin: 20px auto 0;
    display: table;
}

input.submit {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #c21716;
  border: none;
  cursor: pointer;
  font-size: 6vw !important;
  box-shadow: 4px 4px 6px 0px rgba(178, 155, 139, 1) !important;
  padding: 5% !important;
  margin: 10% auto;
}

span.smallbox {
    font-size: 3vw;
    background: #d7d7d7;
    padding: 0.5% 1%;
    border-radius: 5px;
    margin-left: 2%;
}

/*販売事例*/
.slide-arrow {
  bottom: 45%;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 8%;
}
.prev-arrow {
    left: 0px;
    z-index: 1;
}
.next-arrow {
    right: 0px;
}

.example {
    background: #222;
}

.slick-dots li button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dots-pc li button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dots-pc{
  position: absolute;
  bottom: -10%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.dots-pc li{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.dots-pc li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.dots-pc li button:hover,
.dots-pc li button:focus{
  outline: none;
}
.dots-pc li button:hover:before,
.dots-pc li button:focus:before{
  opacity: 1;
}
.dots-pc li button:before{
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dots-pc li.slick-active button:before{
  opacity: .75;
  color: black;
}


.example-box {
    margin: 20px 0px 50px;
    padding: 0;
}

img.example{
  width: 75%;
  padding: 0 0 20px;
}

p.car {
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

span.car{
  font-size:4vw; padding:0 10px 0 0;
}

span.box {
    background: #1b2c60;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 4vw;
    margin: 0 2% 0 0;
}

span.times {
    font-size: 6vw;
    color: #000;
    padding-left: 5px;
}

p.amount {
    font-size: 9vw;
    font-weight: bold;
    color: #c21715;
    text-align: center;
    padding: 3% 1%;
}

.amount {
    width: 100%;
    background: #fff;
    border-radius: 0.5vh;
    margin: 5% 0;
    border-left: solid 5px #c21715;
}

.title{
    position: relative;
    margin: 0 auto;
    padding: 8% 0px;
}

/*こんな方におすすめ*/
div.recommend {
    width: auto;
    background-image: url(../img/recommend-back.jpg);
    position: relative;
    background-size: cover;
    background-position:center top;
    background-repeat:no-repeat;
    padding-top:94%;
}

div.recommend-wrapper{
   width: 100%;
}

h3.recommend{
  text-align: center;
  color: #c21715;
  font-size: 6vw;
}

.hukidashi {
    position: absolute;
    display: inline-block;
    padding: 2% 5%;
    background: #FFF;
    border: solid 4px #c21715;
    box-sizing: border-box;
    font-weight: bold;
    color: #e85810;
    border-radius: 100px;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    width: 80%;
}
*, ::before, ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}
.hukidashi:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.hukidashi:after {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 50%;
    margin-left: -20px;
    border: 17px solid transparent;
    border-top: 16px solid #c21715;
    z-index: 1;
}

.recommend-box {
    width: 80%;
    background: #fff;
    padding: 4%;
    position: absolute;
    border-radius: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: 15%;
}

p.item-text {
    font-size: 4.6vw;
    font-weight: bold;
    padding: 3% 0;
    color: #4c4f6c;
    margin-left: 17%;
    text-align: left;
}

p.item-text::before {
    content: "";
    width: 10%;
    height: 10%;
    background: url(../img/check.png) no-repeat center;
    background-size: contain;
    position: absolute;
    right: auto;
    left: 5%;
    margin-top: 3px;
}

/*選ばれる理由*/
div.point{
  background-image: url(../img/point-back.jpg);
  background-size: cover;
  padding: 30px 0;
}

.point-box {
    background-color: #fff;
    width: 85%;
    margin: 0 auto 25px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 2px 15px 1px rgba(50, 30, 9, 0.42);
}

p.point-text {
    color: #1b2c60;
    font-weight: bold;
    font-size: 3.5vw;
}

/*自社ローンの仕組み*/

.service {
    padding: 50px 0 30px;
}

.service-wrap {
    display: block !important;
    padding: 0 !important;
}

img.service-figure {
    width: 100% !important;
}

.title-3 {
    width: 70%;
    position: relative;
    margin: 0 auto;
}

.service-figure{
  padding: 20px;
}

.service-text {
    padding: 0 10% 10%;
    font-size: 3.5vw;
    color: #1d1d1d;
    line-height: 2;
}

/*自社ローンのメリット*/

.merit{
  background-image: url(../img/merit-back.png);
  background-size: cover;
  padding: 50px 0 30px;
}

.merit-wrap {
    display: block !important;
    margin: 0 !important;
}

.merit-figure {
  padding: 20px 20px 0;
}
.merit-text {
    padding: 5%;
    font-size: 4vw !important;
    color: #1d1d1d;
    font-weight: bold;
    line-height: 2rem;
}

span.small {
    font-size: 3vw !important;
}

.merit-box {
    position: relative;
    background: #FFF;
    border-radius: 1vh;
    margin: 60px 30px 30px !important;
    width: auto !important;
}

img.badge {
    width: 30%;
    position: absolute;
    top: -35px;
    left: -20px !important;
}

/*利用の流れ*/

.flow-wrap {
    display: block !important;
    margin: 0 auto !important;
}

.flow,.stuff{
  background-color: #222;
  padding: 50px 0 30px;

}

.flow-box {
    position: relative;
    background: #fff;
    width: 80%;
    border-radius: 1vh;
    margin: 10% auto !important;;
    padding: 5% !important;
}


.flow-box::before {
  display: none !important;
}

.flow-number {
    width: 35% !important;
    position: absolute;
    top: -5%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c21715;
    font-weight: bold;
    font-family: "Roboto",sans-serif;
    font-size: 5vw !important;
    border: 3px solid #c21715!important;
    border-radius: 100px;
    padding: 1%;
}

h3.flow-title {
    color: #c21715;
    font-size: 6.4vw !important;
    font-weight: bold;
    text-align: center;
    padding: 7% 0 3% !important;
}

img.flow-img {
    width: 30% !important;
   margin: 3% auto 5% !important;
}

p.flow-text {
    font-size: 4.6vw !important;
    color: #1d1d1d;
    font-weight: bold;
    line-height: 2;
}

/*スタッフ紹介*/


.flex-box {
    display: flex;
    width: 100% !important;
    padding:0 !important;
}

.text-box {
    margin-left: 3% !important;
    width: 200% !important;
}

p.name {
    font-size: 4.6vw !important;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}

p.message {
    padding-top: 4vw !important;
    font-size: 15px !important;
    text-align: left;
    line-height: 1.5rem !important;
}

/*店舗情報*/

table.about {
    width: 90% !important;
    border-collapse: collapse;
    margin: 20px auto !important;
}

table tr {
    border-bottom: solid 2px white;
}

table th.about {
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #1b2c60;
    color: white;
    text-align: center;
    padding: 3% 0;
}

table.about td {
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #F2F2F2;
    padding: 2% 0;
    line-height: 2;
}


.about {
    padding: 50px 0 30px;
}


img.company{
  padding: 20px 30px;
}

p.info {
    padding: 2% 0 0 2%;
    font-size: 3vw!important;
    text-align: left;
    margin: 0 0 5% 0 !important;
}

div.info {
    display: flex;
}

.left-img {
    width: 100% !important;
    margin: 0 !important;
}

a.line-icon {
    width: 15%!important;
    margin: 3% 2% 0 0!important;
}

.regular_1_sp {
    width: 85%;
    margin: 0 auto;
}

.next-arrow-2 {
    right: -10%;
}

.prev-arrow-2 {
    left: -10%;
    z-index: 1;
}

.slide-arrow-2 {
    bottom: 0;
    cursor: pointer;
    margin: auto;
    position: absolute;
    top: 0;
    width: 8%;
}

.tel-link{
  text-decoration: underline;
  color: #1a0eab;
}

/* お問い合わせ */

.contact {
    margin: 0 !important;
}

.cta-floating {
    width: 100%;
    justify-content: space-around !important;
    padding: 4% !important;
    background-color: rgba(255,255,255,0.9);
    bottom: 0;
    z-index: 1;
    position: fixed;
}

.btn1 {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.btn2 {
    padding: 10px;
    border: solid 3px #297208;
    width: 45%;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #297208;
    background: #fff;
}

.btn, a.btn, button.btn {
    font-weight: 700;
    display: inline-block;
    padding: 2% 0 !important;
    text-align: center;
}

input.submit-2 {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #c21715;
    border: none;
    cursor: pointer;
    font-size: 6vw !important;
    box-shadow: 4px 4px 6px 0px rgba(178, 155, 139, 1) !important;
    padding: 5% !important;
    margin: 10% auto;
}

/*背景*/
.btn-wrap {
  margin: 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

a.btn-c {
  font-size: 4vw !important;
  width: 100%;
  position: relative;
  color: #fff;
  border-radius: 1vh;
  background: #c21715;
  border-bottom: 5px solid #990001;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  margin: 0 auto;
  display: block;
}

a.btn-c span {
  position: absolute;
  top: -28%;
  left: -3%;
  height: 0;
  padding: 9% !important;
  color: #ef6b01;
  border-radius: 50%;
  background: #fff;
  border: solid 2px #c21715;
}

a.btn-c span em {
    font-style: normal;
    color: #ef6b01;
}

a.btn-c small {
  font-weight: bold;
}

a.btn-c i {
  margin-right: 1rem;
}


/*背景*/
.btn-wrap {
  margin: 20px;
}

a.btn-2 {
  font-size: 4vw !important;
    width: 40% !important;
    position: relative;
    color: #fff;
    border-radius: 1vh;
    background: #009944;
    border-bottom: 5px solid #00662d;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    margin-left: 0 !important;
}

a.btn-2 span {
    position: absolute;
    top: -12%;
    left: -5%;
    width: 10%;
    height: 0;
    padding: 15% !important;
    border-radius: 50%;
    background: #fff;
    border: solid 2px #009944;
}

a.btn-2 span em {
    font-style: normal;
    color: #009944;
}

a.btn-2 small {
  font-weight: bold;
}

a.btn-2 i {
  margin-right: 1rem;
}

a.btn-2::before {
    content: '';
    width: 25px;
    height: 25px;
    display: inline-block;
    background-image: url(../img/tel-icon.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5%;
}

a.btn-line {
    width: 100% !important;
    font-size: 4vw !important;
    position: relative;
    color: #fff;
    border-radius: 1vh;
    background: #30ae36;
    border-bottom: 5px solid #008c00;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    margin-bottom: 2%;
}

a.btn-line::before {
    content: '';
    width: 27px;
    height: 27px;
    display: inline-block;
    background-image: url(../img/line-icon.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 2%;
}

a.btn-line span {
  position: absolute;
      top: -20%;
      left: -12%;
      width: 10%;
      height: 0;
      padding: 14% !important;
      border-radius: 50%;
      background: #fff;
      border: solid 2px #30ae36;
}

a.btn-line-fv {
        width: 75% !important;
        font-size: 4.5vw !important;
        color: #fff;
        border-radius: 10vh;
        background: #30ae36;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
        display: block;
        margin: 0 auto 7%;
        padding: 0.6rem !important;
        position: absolute;
        bottom: 7rem;
        left: 3.1rem;
    }

a.btn-line-fv::before {
    content: '';
    width: 27px;
    height: 27px;
    display: inline-block;
    background-image: url(../img/line-icon.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 2%;
}

a.btn-line-fv span {
  position: absolute;
      top: -20%;
      left: -12%;
      width: 10%;
      height: 0;
      padding: 14% !important;
      border-radius: 50%;
      background: #fff;
      border: solid 2px #30ae36;
}


a.btn-line-2{
  display: block;
  font-size: 5vw;
  width: 70%;
  position: relative;
  color: #fff;
  border-radius: 1vh;
  background: #01b202;
  border-bottom: 5px solid #008c00;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin-top: 8%;
  height: 75px;
}

a.btn-line-2 span {
    font-size: 3vw;
    position: absolute;
    bottom: 15%;
    display: block;
    width: 60%;
    padding: 0.3% 0;
    color: #32b16c;
    border-radius: 0.3rem;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    height: 28%;
}

a.btn-line-2::before {
    content: '';
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url(../img/line-icon.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 2%;
}

/* フッター */

.footer {
    background-image: url(../img/footer.png) !important;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 120% !important;
}

a.footer-link-1 {
    font-size: 4vw!important;
    position: absolute;
    top: 45% !important;
    left: 50% !important;
    transform: translateX(-50%);
    color: #fff;
}

a.footer-link-2 {
    font-size: 4vw !important;
    position: absolute;
    top: 55% !important;
    left: 50% !important;
    transform: translateX(-50%);
    color: #fff;
}

.copylight{
  position: absolute;
  font-size: 3vw!important;
  top: 65%!important;
  left: 50%!important;
  transform: translateX(-50%);
}


.banner-floating {
  width: 42% !important;
  background: #fff;
  position: fixed;
  z-index: 999;
  bottom: 16% !important;
  right: 16px !important;
  border-radius: 10px;
  border: solid 2px #c21716;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  padding: 2% !important;
}

.banner-text{
  font-size: 3vw !important;
  text-align: center;
  font-weight: bold;
  color: #000;
}

.banner-close {
    position: absolute;
    top: -27% !important;
    right: -12px;
    background-color: #c3c3c3;
    border-radius: 100%;
    color: #fff;
    width: 17% !important;
    text-align: center;
    padding-bottom: 1%;
    font-size: 4vw !important;
}


textarea.form-textarea {
  font-size: 4vw;
  padding: 3%;
  box-shadow: 0px 1px 5px 0px #ccc inset;
  margin-top: 2%;
  width: 100%;
  height: 30vw;
}
}


@media screen and (min-width: 769px){

p {
  text-align: center;
  font-size: 1vw;
  line-height: 2;
  color: #fff;
}

header {
    width: 100%;
    height: 0;
    display: block;
}

nav.nav {
    margin: auto;
    position: absolute;
    right: 15%;
}

ul.nav_menu_ul {
    display: flex;
}

li.nav_menu_li {
    padding: 30px 15px;
    font-size: 1vw;
    font-weight: bold;
}

.nav_toggle {
    display: none;
}

/*ファーストビュー*/
.fv {
    position: relative;
}

/*FORM*/

img.iphone {
    width: 13%;
    position: absolute;
    right: 7%;
    top: -1%;
}

.form {
    margin: 2% 0 0;
    position: absolute;
    top: 2%;
    width: 30%;
    right: 3%;
}

.form-box {
  background: #fff;
  border-radius: 10px;
  margin: 20px;
}

div.form form {
  padding: 1% 5%;
}

.hukidashi-list {
    width: 70%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 6px 0;
    background: #ffe3c1;
    margin: 0 auto;
    border-radius: 5px;
    bottom: -9px;
}

.hukidashi-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1vw;
    margin: 0 auto;
}
.hukidashi-list::after {
    position: absolute;
    bottom: -9px;
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    border-color: #ffe3c1 transparent transparent transparent;
    content: "";
}

div.form p.head {
    padding: 3% 0;
    background: #1b2c60;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    line-height: 1.5;
}


table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

td.contact-body-block {
    padding: 5% 0;
}

select.select {
    padding: 2%;
    margin: 0px;
    width: 100%;
}

.form form table th {
    width: 36%;
    padding-top: 4.5%;
    color: #021427;
    font-weight: bold;
    font-size: 0.9vw;
    padding-right: 5%;
}

.form form table td {
    margin-left: 15%;
}

.form form input {
  font-size: 0.9vw;
}

input {
    width: 100%;
    padding: 10px;
    margin: 4% 0;
}

input, select, textarea, search {
    font-family: "Zen Kaku Gothic New",sans-serif;
    background-color: #f8f8f9;
    font-size: 1.1vw;
    border-radius: 5px;
    padding: 2% 3%;
}

select.select {
  font-size: 0.9vw;
}

select.select-2 {
    font-size: 1vw;
    padding: 2% 4%;
    width: 100%;
}

div.form ul.transmission {
    width: auto;
    text-align: center;
    margin: 10px auto 0;
    display: table;
}

input.submit {
    display: block;
    width: 70%;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #c21716;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.3vw !important;
    box-shadow: 4px 4px 6px 0px rgba(178, 155, 139, 1) !important;
    padding: 4% 15%;
    margin: 3% auto;
}

span.smallbox {
    font-size: 0.7vw;
    background: #d7d7d7;
    padding: 3%;
    border-radius: 3px;
    margin-left: 4%;
}

.click {
    position: absolute;
    width: 15%;
    right: 20%;
    top: 75%;
    animation: anime1 0.5s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes anime1 {
  from {
    transform: scale(1.3,1.3);
  }
  to {
    transform: scale(1,1);
  }
}

.bottom-arrow {
    position: absolute;
    top: 3%;
    width: 9%;
    right: 13%;
    z-index: 1;
}

.updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 1.5s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.title {
    width: 40%;
    margin: 5% auto 3%;
}

/*販売事例*/
.example-box {
    margin: 0 0 100px auto;
    padding: 10px;
}

img.example{
  width: 80%;
  padding: 0 0 20px;
}

span.car{
  font-size:1.5vw;
  padding:0 10px 0 0;
  font-weight: bold;
}

p.car {
    font-size: 1.5vw;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.amount {
    width: 100%;
    background: #fff;
    border-radius: 0.5vh;
    margin: 3% 0;
    border-left: solid 5px #c21715;
}

p.amount {
    font-size: 2.5vw;
    font-weight: bold;
    color: #c21715;
    text-align: center;
    font-weight: 900;
    padding: 0;
}

span.box {
    background: #1b2c60;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.3vw;
    margin-right: 15px;
}

span.times {
    font-size: 2vw;
    color: #000;
    padding-left: 5px;
}

.example {
    padding: 0 0 30px 0;
    background: #232326;
}

/*こんな方におすすめ*/

div.recommend {
    width: auto;
    background-image: url(../img/recommend-back.jpg);
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 40%;
}

.hukidashi {
    position: absolute;
    display: inline-block;
    padding: 1.5% 2%;
    font-size: 2.5vw;
    background: #fff;
    box-sizing: border-box;
    font-weight: bold;
    color: #fff;
    border-radius: 100vh;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    width: 35%;
    border: solid 4px #C21715;
}

h3.recommend {
    text-align: center;
    color: #C21715;
}

.hukidashi:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #fff;
    z-index: 2;
}

.hukidashi:after {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 50%;
    margin-left: -20px;
    border: 17px solid transparent;
    border-top: 16px solid #C21715;
    z-index: 1;
}

.recommend-box {
    width: 55%;
    background: #fff;
    padding: 2%;
    position: absolute;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: 20%;
}
p.item-text {
    font-size: 2vw;
    font-weight: bold;
    padding: 1.5% 0;
    color: #4c4f6c;
    margin-left: 12%;
    text-align: left;
}

p.item-text::before {
    content: "";
    width: 10%;
    height: 10%;
    background: url(../img/check.png) no-repeat center;
    background-size: contain;
    position: absolute;
    right: auto;
    left: 5%;
    margin-top: 3px;
}

div.point {
    background-image: url(../img/point-back.jpg);
    background-size: cover;
    padding: 30px 0 70px;
}

.point-box {
    background-color: #fff;
    width: 35%;
    margin: 0 2% 2%;
    padding: 1.5% 0 1%;
    border-radius: 20px;
    box-shadow: 0px 2px 15px 1px rgba(50, 30, 9, 0.42);
}

p.point-text {
    color: #1b2c60;
    font-weight: bold;
    font-size: 1.5vw;
}

img.point-img {
    width: 90%;
}

.point-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/*自社ローンの仕組み*/

p.service-text {
  padding: 50px 0;
  text-align: left;
  font-size: 1.5vw;
  color: #000;
}

.service-wrap {
    display: flex;
    padding: 0 150px 70px 70px;
}

img.service-figure {
    width: 80%;
    padding: 50px 0;
}

/*自社ローンのメリット*/
.merit-wrap {
    display: flex;
    margin: 7% 5% 7%;
}

.merit{
  background-image: url(../img/merit-back.png);
  background-size: cover;
  padding: 50px 0 30px;
}

.merit-figure {
    padding: 8%;
}

.merit-box {
    position: relative;
    background: #FFF;
    border-radius: 20px;
    margin: 0 20px;
    width: 100%;
}

img.badge {
    width: 33%;
    position: absolute;
    top: -35px;
    left: -30px;
}

.merit-text {
    padding: 0 4% 7% 4%;
    font-size: 1.3vw;
    color: #1d1d1d;
    font-weight: bold;
    line-height: 2;
}

span.small{
  font-size: 0.5vw;
}

/*利用の流れ*/

.flow, .stuff {
    background-color: #232326;
    padding: 50px 20px 30px;
}


.flow-box {
    position: relative;
    background: #fff;
    width: 80%;
    border-radius: 1vh;
    margin: 5% 2%;
    padding: 3%;
}


.flow-box:last-child::before{
  display: none;
}

.flow-number {
    width: 30%;
    position: absolute;
    top: -5%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c21715;
    font-weight: bold;
    font-family: "Roboto",sans-serif;
    font-size: 1.3vw;
    border: 0.2vw solid #c21715;
    border-radius: 100px;
    padding: 1%;
}

*, ::before, ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

h3.flow-title {
    color: #c21715;
    font-size: 2vw;
    font-weight: bold;
    text-align: center;
    padding: 3%;
}

img.flow-img {
    width: 30%;
    margin: 10% auto;
}

p.flow-text {
    font-size: 1.3vw;
    color: #1d1d1d;
    font-weight: bold;
      line-height: 2;
}

.flow-wrap {
    display: flex;
    margin: 0 150px;
}

/*スタッフ紹介*/

.flex-box {
    width: 60%;
    display: flex;
    padding: 20px 0 0;
    justify-content: center;
    margin: 0 auto;
}

.text-box {
    margin-left: 0;
    width: 60%;
}

p.name {
    font-size: 1.3vw;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}

p.message {
    text-align: left;
    font-size: 1.2vw;
    line-height: 2rem;
}

/* 店舗情報 */

table.about {
    width: 50%;
    border-collapse: collapse;
    margin: 0 auto 30px;
}

table tr{
  border-bottom: solid 2px white;
}

table tr:last-child{
  border-bottom: none;
}

table th.about{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #1b2c60;
  color: white;
  text-align: center;
  padding: 10px 0;
}


table.about td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #F2F2F2;
  padding: 10px 0;
}


a.line-icon {
    width: 10%;
    margin: 4% 1% 0 0;
}

.info {
    display: flex;
}

p.info {
    margin: 3% 0 0 2%;
    text-align: left;
    font-size: 1.2vw;
    line-height: 1.8;
}

.left-img {
    width: 30%;
    margin-right: 5%;
}

img.company {
    margin: 50px auto 30px;
    width: 40%;
}

.slick-initialized .slick-slide {
    display: flex;
}

.tel-link{
  text-decoration: underline;
  color: #1a0eab;
}

/* スライダー */

.dots-pc{
  position: absolute;
  bottom: -10%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.dots-pc li{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.dots-pc li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.dots-pc li button:hover,
.dots-pc li button:focus{
  outline: none;
}
.dots-pc li button:hover:before,
.dots-pc li button:focus:before{
  opacity: 1;
}
.dots-pc li button:before{
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dots-pc li.slick-active button:before{
  opacity: .75;
  color: black;
}

/* フローティングボタン */

.cta-floating {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1% 3%;
    background-color: rgba(255,255,255,0.9);
    bottom: 0;
    z-index: 1;
    position: fixed;
    text-align: center;
}

a.btn-c {
    width: 30%;
    font-size: 1.5vw;
    position: relative;
    color: #fff;
    border-radius: 1vh;
    background: #c21715;
    border-bottom: 5px solid #990000;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

a.btn-c:hover {
  margin-top: 3px;
  color: #fff;
  background: #ce3b3b;
  border-bottom: 2px solid #990000;
}

.btn, a.btn, button.btn {
    font-weight: 700;
    display: inline-block;
    padding: 15px 0 15px 30px;
    text-align: center;
    margin-left: 40px;
}

a.btn-c span {
        position: absolute;
        top: -11%;
        left: -6%;
        height: 0;
        padding: 9.5%;
        border-radius: 50%;
        background: #fff;
        border: solid 2px #c21715;
}

a.btn-2 {
    font-size: 1.5vw;
    width: 18%;
    position: relative;
    color: #fff;
    border-radius: 1vh;
    background: #00883d;
    border-bottom: 5px solid #00662d;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    margin-left: 40px;
}

a.btn-2:hover {
  margin-top: 3px;
  color: #fff;
  background: #00a349;
  border-bottom: 2px solid #00662d;
}

a.btn-2 span {
    position: absolute;
    top: -10%;
    left: -12%;
    height: 0;
    padding: 15%;
    border-radius: 50%;
    background: #fff;
    border: solid 2px #00883d;
}


a.btn-line {
    font-size: 1.5vw;
    width: 30%;
    position: relative;
    color: #fff;
    border-radius: 1vh;
    background: #01b202;
    border-bottom: 5px solid #008c00;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    margin-left: 40px;
}

    a.btn-line-fv {
        padding: 0.7rem 0;
        font-size: 1.3vw;
        width: 75%;
        position: relative;
        color: #fff;
        border-radius: 8vh;
        background: #01b202;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
        margin: 0 auto;
        display: block;
    }

a.btn-line-fv:hover {
  color: #fff;
  background: #46c446;
  transition-duration: 0.5s;
}

a.btn-line-fv::before {
    content: '';
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url(../img/line-icon.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 3%;
}

a.btn-line:hover {
  margin-top: 3px;
  color: #fff;
  background: #46c446;
  border-bottom: 2px solid #008c00;
}

a.btn-line span {
position: absolute;
        top: -12%;
        left: -5%;
        height: 0;
        padding: 9.5%;
        border-radius: 50%;
        background: #fff;
        border: solid 2px #01b202;
}

a.btn-line-2{
  font-size: 2vw;
  width: 30%;
  position: relative;
  color: #fff;
  border-radius: 1vh;
  background: #01b202;
  border-bottom: 5px solid #008c00;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 2% 0!important;
  padding: 0.5% 2% !important;
  height: 100px;
}

a.btn-line-2::before {
    content: '';
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url(../img/line-icon.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 3%;
}

a.btn-line-2:hover {
  margin-top: 3px;
  color: #fff;
  background: #46c446;
  border-bottom: 2px solid #008c00;
}

a.btn-line-2 span {
    font-size: 1.3vw;
    position: absolute;
    bottom: 10%;
    display: block;
    width: 60%;
    padding: 0.3% 0;
    color: #32b16c;
    border-radius: 0.5rem;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* FORM */
.bottom-arrow-2 {
    width: 20%;
    margin: 0 auto;
    position: absolute;
    left: 40%;
    top: -16%;
}


div#contact {
    position: relative;
    margin: 0 0 12% 0;
}

.hukidashi-list-2 {
    width: 30%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 6px 0;
    background: #ffe3c1;
    margin: 0 auto;
    border-radius: 5px;
    bottom: -9px;
}

.hukidashi-list-2::after {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 20px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0px 20px;
    border-color: #ffe3c1 transparent transparent transparent;
    content: "";
}
.hukidashi-list-item-2{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
    margin: 0 auto;
}

img.iphone-2 {
    width: 6%;
    position: absolute;
    right: 31%;
    top: -35px;
}


p.head-2 {
    padding: 13px 0;
    background: #1b2c60;
    text-align: center;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-size: 1.5vw;
}

.form-box-2 {
    background: #fff;
    border-radius: 14px;
    border: solid 3px #1b2c60;
    margin: 50px auto;
    width: 48%;
}

.form form input:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all  0.3s ease;
}

input.submit-2 {
      display: block;
      width: 50%;
      text-align: center;
      font-weight: bold;
      color: #fff;
      background: #c21716;
      border-radius: 0;
      cursor: pointer;
      font-size: 1.5vw !important;
      box-shadow: 4px 4px 6px 0px rgba(178, 155, 139, 1) !important;
      padding: 3% 0;
      margin: 5% auto;
}

input.submit-2:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all  0.3s ease;
}

div.form-pc form {
    padding: 30px 30px;
}

.form-pc form table th {
    width: 30%;
    padding: 4% 0%;
    color: #021427;
    font-weight: bold;
    font-size: 1.1vw;
}

img.click-2 {
    position: absolute;
    width: 5%;
    right: 39%;
    top: 83%;
    animation: anime1 0.5s ease 0s infinite alternate;
    transform-origin: center;
}

/* フッター */
.footer{
  background-image: url(../img/footer-pc.png);
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 25%;
}

a.footer-link-1 {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.3vw;
}

a.footer-link-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1vw;
}

.copylight{
  position: absolute;
  font-size: 0.8vw;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}

/* バナーフローティング */
.banner-floating {
    width: 18%;
    background: #fff;
    position: fixed;
    z-index: 999;
    bottom: 8%;
    right: 20px;
    border-radius: 10px;
    border: solid 2px #c21715;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    padding: 1%;
}

.banner-close {
    position: absolute;
    top: -20%;
    right: -10px;
    background-color: #c3c3c3;
    border-radius: 100%;
    color: #fff;
    width: 14%;
    text-align: center;
    padding-bottom: 1%;
    font-size: 1.5vw;
}

.banner-text {
    font-size: 1.1vw;
    text-align: center;
    line-height: 1.5;
    color: #000;
}

textarea.form-textarea {
  display: inline-block;
  width: 100%;
  height: 6vw;
  text-align: start;
  font-size: 0.8vw;
}


}