﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap');
/* CSS Document */

body {
  width: 100%;
  background-color: #fff;
  font-family: 'Noto Sans JP', '小塚ゴシック Pro', 'Kozuka Gothic Pro', "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro", "メイリオ", sans-serif;
  font-size: 22px;
  color: #006CB8;
  font-feature-settings: normal;
  letter-spacing: normal;
  line-height: 1.85;
}

img {
  width: 100%;
  height: auto;
}

input {
  -webkit-appearance: none;
  -moz-osx-font-smoothing: none;
  appearance: none;

}

.text_center {
  text-align: center;
}

/*.pc {
  display: block !important;
}
*/
.sp {
  display: none !important;
}

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

section {
  padding-top: 72px;
}

h2 {
  font-size: 34px;
  font-weight: bold;
}

/* header~KV */

.kv {
  background-image: url("../img/pc/top_bgi.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  background-color: rgba(255, 255, 255, 0.7);
}

.head {
  top: 0px;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}

/* 230620デジタルにて修正 */
.life_logo {
  margin-left: 32px;
  width: 100px;
}

.top_cv_btn {
  margin-right: 24px;
  width: 200px;
}

/* KV(left) */
.kv_inner {
  display: flex;
  padding-top: 190px;
  padding-bottom: 220px;
}

.kv_inner p {
  font-weight: bold;
  color: #055EA4;
  display: inline-block;
  background-color: #fff;
  padding: 8px 24px 10px;
  border-radius: 40px;
}

.kv_inner p:last-child {
  display: none;
}

/* CV */

.font_gray {
  color: #5C676D;
  font-size: 34px;
  padding: 56px 0px 40px;
}

.cv_btn {
  width: 542px;
  padding-bottom: 72px;
}

/* 4つのポイント */

.point4 {
  background-image: url("../img/pc/BG.webp");
  background-repeat: no-repeat;
}

.point4 h2 span {
  font-size: 56px;
}

.hukidashi {
  padding: 16px 90px 40px;
}

.point4 .cv_btn {
  padding-top: 96px;
}


/* ご融資までの流れ */

.flow h4 {
  padding-bottom: 0px;
}

.parent_flow {
  display: inline-block;
  background: linear-gradient(45deg, #2CC2E0, #005290);
  border-radius: 50px;
  padding: 2px;
  margin-bottom: 20px;
  box-shadow: 7px 7px 0px 0 #77C6FB;
}

.parent_flow p {
  font-size: 31px;
  font-weight: bold;
  padding: 0px 50px 2px;
}

.child_flow {
  background-color: #fff;
  border-radius: 50px;
  height: auto;
  text-align: center;
}


.flow h2 span:last-child {
  font-size: 60px;
  padding: 0px 8px;
}

.flow h2 span {
  font-size: 50px;
}

.flow .hukidashi {
  padding: 16px 160px 40px;
}

.flow .cv_btn {
  padding-top: 96px;
}

/* よくある質問 */
.question {
  background-color: #E6F7FF;
  padding-bottom: 80px;
}

h3 {
  color: #5C676D;
  font-size: 35px;
  padding: 54px 0px 96px;
}

/*アコーディオン全体*/

.menu {
  width: 78%;
  margin: 0 auto;
}

.menu input {
  display: none;
  /*チェックボックスを隠す*/
}

/*バー部分*/
.menu label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #006CB8;
  font-weight: 500;
  letter-spacing: 200;
  position: relative;
  padding: 22px 60px 32px;
  font-size: 26px;
  text-align: center;
}

/*開いたときに表示される部分*/
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1px;
}

.menu li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s;
  /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
  font-size: 26px;
  text-align: center;
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li {
  height: auto;
  /*開いたときに表示されるliの高さ*/
  opacity: 1;
  background: #FFF;
  border-top: solid 2px #006CB8;
  padding: 24px 32px;
  border-radius: 0px 0px 9px 9px;
}

/*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
  margin-bottom: 0px;
}

/*閉じた状態の矢印描画*/
.menu label:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: #006CB8 5px solid;
  border-right: #006CB8 5px solid;
  border-radius: 3px 3px 3px 3px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 15%;
  margin: auto;
}

/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: #006CB8 5px solid;
  border-right: #006CB8 5px solid;
  border-radius: 3px 3px 3px 3px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 5%;
  top: 7%;
  bottom: 0;
  margin: auto;
}

/*グラデーション・背景*/

.parent {
  background: linear-gradient(45deg, #2CC2E0, #005290);
  border-radius: 12px;
  padding: 2px;
  margin-bottom: 64px;
  box-shadow: 7px 7px 0px 0 #77C6FB;
}

.child {
  background-color: #fff;
  border-radius: 9px;
  height: auto;
  text-align: center;
}

/*TEL*/

.tel {
  width: 80%;
  height: 100%;
  margin: 0 auto;
}


/*表*/

table {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 116px;
}

tr,
td {
  border: solid 1px;
  /* 枠線指定 */
  overflow: hidden;
}

th {
  background-color: #055EA4;
  color: #fff;
  border-bottom: solid 1px #fff;
  font-weight: 300;
  padding: 24px 32px;
}

td {
  text-align: center;
  vertical-align: middle;
  padding: 0px 24px;
  font-weight: 300;
}

.blue {
  background-color: #E9F6FF;
}

.trl {
  border-top-left-radius: 12px;
}

.trr {
  border-top-right-radius: 12px;
}

.bbl {
  border-bottom-left-radius: 12px;
  border-bottom: none;
}

.bbr {
  border-bottom-right-radius: 12px;
}

/*footer*/
footer {
  background-image: url("../img/pc/footer_bg.webp");
  background-size: cover;
  padding-bottom: 48px;
}

footer .caution {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding: 42px 24px 80px;
}

footer small {
  font-size: 17px;
  color: #fff;
}

.footer_logo {
  width: 30vw;
  padding-right: 20px;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 50px;
  margin-right: 20px;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.text_right {
  text-align: right;
  margin-bottom: 16px;
}


@media screen and (min-width:768px) and (max-width:1000px) {
  .inner {
    width: 80vw;
    margin: 0 auto;
  }

  .kv_inner {
    padding-top: 300px;
  }

  body {
    font-size: 22px;
  }
}

/* 






SP






*/

@media screen and (max-width: 767px) {

  body {
    font-size: 20px;
    width: 100%;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .inner {
    width: 95vw;
  }

  section {
    padding-top: 54px;
  }

  h2 {
    font-size: 17px;
    line-height: 24px;
  }

  /* header~KV */
/********高見追記***********/
  .kvsp {
    background: url(../img/sp/bgi_top2.webp)no-repeat;
    width: 100vw;
    background-size:100vw;
  }

  .kv_2point img{
     padding-bottom: 10vw;
  }

/********高見追記***********/
  .head {
    height: 8vw;
  }

  .head a {
    display: flex;
    align-content: center;
    align-items: center;
    padding: 2px;
  }

/* 230620デジタルにて修正 */
  .life_logo {
    width: 15vw;
  }

  .top_cv_btn {
    width: 24vw;
  }

  /* KV(left) */
  .kv_inner {
    display: block;
    /*padding-top: 210px;*/ /*高見追記*/
    padding-bottom: 100px;
  }

  .kv_inner .pc {
    display: none;
  }

  .kv_inner p {
    font-weight: bold;
    color: #055EA4;
    display: inline-block;
    background-color: #fff;
    padding: 2 24px 5px;
    border-radius: 40px;
    margin: 0 20vw;
    text-align: center;
    
  }

  .kv_2point > div {
    width: 75vw;
    margin: 0 auto;
    padding-top: 24px;
    /********高見追記***********/
  }
  .hanen{
    width: 100vw;
    position: relative;
    top: 20vw;
  }
  /* CV */

  .font_gray {
    color: #5C676D;
    font-size: 17px;
    padding: 0px 0px 30px;
  }

  .cv_btn {
    width: 300px;
    padding-bottom: 0px;
    z-index: 10;
  }

  /* 4つのポイント */

  .point4 {
    background-image: url("../img/pc/BG.webp");
    background-size: cover;
  }

  .point4 h2 span {
    font-size: 32px;
  }

  .hukidashi {
    padding: 12px 20px 30px;
  }

  .point4 .cv_btn {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .point4 .points_sp {
    padding: 0px 30px;
  }

  /* ご融資までの流れ */

  .parent_flow {
    display: inline-block;
    background: linear-gradient(45deg, #2CC2E0, #005290);
    border-radius: 50px;
    padding: 2px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px 0 #77C6FB;
  }

  .parent_flow p {
    font-size: 18px;
    font-weight: bold;
    padding: 0px 50px 2px;
  }

  .child_flow {
    background-color: #fff;
    border-radius: 50px;
    height: auto;
    text-align: center;
  }


  .flow h2 span:last-child {
    font-size: 32px;
    padding: 0px 8px;
  }

  .flow h2 span {
    font-size: 30px;
  }

  .flow .hukidashi {
    padding: 12px 20px 30px;
  }

  .flow .cv_btn {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flow .flow_sp {
    padding: 0px 35px;
  }

  .question h3 {
    color: #5C676D;
    font-size: 18px;
    padding: 0px 0px 30px;
  }

  /*アコーディオン全体*/

  .menu {
    width: 95vw;
    margin: 0 auto;
  }

  .menu input {
    display: none;
    /*チェックボックスを隠す*/
  }

  /*バー部分*/
  .menu label {
    padding: 16px 32px 18px;
    font-size: 14px;
  }

  /*開いたときに表示される部分*/
  .menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 1px;
  }

  .menu li {
    height: 0;
    overflow-y: hidden;
    transition: padding-bottom 0.5s, padding-top 0.5s;
    /*閉じるときのアニメーション*/
    -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
    -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
    -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
    -o-transition: padding-bottom 0.5s, padding-top 0.5s;
    font-size: 14px;
    text-align: center;
  }

  #menu_bar01:checked ~ #links01 li,
  #menu_bar02:checked ~ #links02 li {
    height: auto;
    /*開いたときに表示されるliの高さ*/
    opacity: 1;
    background: #FFF;
    border-top: solid 2px #006CB8;
    padding: 24px 32px;
    border-radius: 0px 0px 9px 9px;
  }

  /*開いたときの下の余白*/
  #menu_bar01:checked ~ #links01 li:last-child,
  #menu_bar02:checked ~ #links02 li:last-child {
    margin-bottom: 0px;
  }

  /*閉じた状態の矢印描画*/
  .menu label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: #006CB8 3px solid;
    border-right: #006CB8 3px solid;
    border-radius: 2px 2px 2px 2px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 15%;
    margin: auto;
  }

  /*開いた状態の矢印描画*/
  .menu input[type=checkbox]:checked + label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: #006CB8 3px solid;
    border-right: #006CB8 3px solid;
    border-radius: 2px 2px 2px 2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 5%;
    top: 7%;
    bottom: 0;
    margin: auto;
  }

  /*グラデーション・背景*/

  .parent {
    background: linear-gradient(45deg, #2CC2E0, #005290);
    border-radius: 12px;
    padding: 2px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px 0 #77C6FB;
  }

  .child {
    background-color: #fff;
    border-radius: 9px;
    height: auto;
    text-align: center;
  }

  /*TEL*/

  .tel {
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }


  /*表*/

  table {
    margin-bottom: 40px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 8px;
  }

  tr,
  td {
    border: solid 1px;
    /* 枠線指定 */
    overflow: hidden;
    font-size: 12px;
  }

  th {
    background-color: #055EA4;
    color: #fff;
    border-bottom: solid 1px #fff;
    font-weight: 300;
    padding: 12px 14px;
  }

  td {
    text-align: center;
    vertical-align: middle;
    padding: 0px 2px;
    font-weight: 300;
  }

  .trl {
    border-top-left-radius: 8px;
  }

  .trr {
    border-top-right-radius: 8px;
  }

  .bbl {
    border-bottom-left-radius: 8px;
    border-bottom: none;
  }

  .bbr {
    border-bottom-right-radius: 8px;
  }

  /*footer*/
  footer {
    background-image: url("../img/pc/footer_bg.webp");
    background-size: cover;
    padding-bottom: 32px;
  }

  footer .caution {
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    padding: 24px 12px 32px;
  }

  .footer_life {
    display: flex;
    flex-direction: column;
  }

  footer small {
    font-size: 11px;
    color: #fff;
  }

  #page_top {
    display: none;
  }

  .footer_logo {
	  width: 50vw;
    margin: 0 auto;
  }

  .text_right {
    display: none;
  }

}

@media screen and (max-width: 366px) {
  .menu label {
    padding: 16px 2px 18px;
    font-size: 12px;
  }

  .menu li {
    font-size: 12px;
  }

  .text_right {
    display: none;
  }
}


@media screen and (min-width:494px) and (max-width:768px) {
  .kv_inner {
    padding-top: 25vh;

  }
     /*********高見追記*************/
  .kv_2point img{
     padding-bottom: 35vw;
  }
 /*********高見追記*************/

  .text_right {
    display: none;
  }

  img {
    width: 80vw;
    margin: 0 auto;
  }

  .tel img {
    width: 100%;
  }

  .font_gray {
    padding-top: 20px;
  }

  .point4 .points_sp {
    width: 60vw;
  }

  .flow .flow_sp {
    width: 60vw;
  }

  .menu {
    padding: 10px 60px;
  }

  .menu label {
    font-size: 18px;
  }

  .tel img {
    width: 95vw;
    padding: 0px 50px;
  }

  table {
    width: 80vw;
  }

}

