@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html, body {
  width: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  background-color: #0e4da1;
	/* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}
/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*ページ全体*/
#container {
  position: relative;
  padding-top: 0px;
}
/*本体*/
.main {
  margin-bottom: 0em;
}
/*カラム部分*/
.main-in {
  padding: 0.5em 0;
}
/*カラム内部のサイズ*/
.main-contents {
      position: relative;
}
.main-contents .contents {
  margin-bottom: 0em;
  padding: 0 0px;
}
/*段落タグ*/
.main-contents p {
  line-height: 1.8em;
}
/*全体のフォントサイズ*/
.main-contents {
  font-size: 1.8em;
}

/*-----------------------------------------------------------------------------------------------------
ｈタグの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*H2タグ*/
.main-contents h2 {
  margin: 1em 0 1em;
  padding: 0em;
  font-size: 1.8em;
  font-weight: 900;
  text-align: center;
	position: relative;
    line-height: 1.4;
}

/*H3タグ*/
.main-contents h3 {
  margin: 0 0 0em;
  padding: 0.5em 0em 0.5em;
  font-size: 1.6em;
  font-weight: bold;
  color:#0e4da1;
}


/*H3タグ*/
.main-contents h3.hukidasi {
  background-color: #0e4da1;
  margin: 0 0 2em;
  padding: 0.4em 0em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  color:#fff;
  text-align: center;
   position: relative;
}

 .main-contents h3.hukidasi:before  {
	position: absolute;
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	border-top-color: #0e4da1;
	border-width: 30px;
	margin-left: -30px;
}





/*H4タグ*/
.main-contents h4 {
  margin: 0 0 1em;
  padding: 0.3em 0.5em;
    font-size: 1.2em;
	border-bottom: 1px dotted #ccc;
  font-weight: bold;
    text-align: center;
}
/*H5タグ*/
.main-contents h5 {
  margin: 0 0 1.5em;
  padding: 0 0.8em 0.5em;
  border-bottom: 2px solid #414141;
  font-weight: bold;
}
/*-----------------------------------------------------------------------------------------------------
上部固定ヘッダー部分(PÇ)　※ロゴ・電話番号・お問い合わせボタン
-----------------------------------------------------------------------------------------------------*/
#header {
  background-color:#0e4da1;
  position: sticky;
  border-bottom: 1px solid #ccc;
}
#header-in {
  background-color:#0e4da1;
  position: relative;
  padding: 0em 0em 0.5em;
}
/*ヘッダーロゴ*/
#header #header-title {
  float: left;
  width: 40%;
  margin-top: 4px;
  margin-left: 0px;
}
#header .header-logo {
  margin-bottom: 0em;
  padding: 10px;
}
#header .header-logo img {
  width: 100%;
}
/*ヘッダー 電話ボタン*/
.header_tel {
  width: 28%;
  float: right;
  margin: 1.2em 0.5em 0em;
}
.header_tel img {
  width: 100%;
}
/*ヘッダー 問い合わせボタン*/
.header_mail {
  width: 26%;
  float: right;
  margin: 0.7em 0.3em 0.1em;
}
.header_mail img {
  width: 100%;
}
/*-----------------------------------------------------------------------------------------------------
ファーストビュー(ヘッダー画像)
-----------------------------------------------------------------------------------------------------*/
#main-image {
  padding-top: 0em;
  background: url(../images/top_image_back.jpg) center top no-repeat #fff;
  height: auto;

}
#main-image-in {
  position: relative;
  padding-bottom: 0em;
  background-color: transparent;
}
#main-image img {
  width: 100%;
  height: auto;
}
/*-----------------------------------------------------------------------------------------------------
メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------------------------------------------------------*/
.subhead {
  margin: 0 -2em;
  margin-bottom: 1.5em;
}
.section_01 {
  background-color: #fff;
}
.section_01_in {

}
.section_02 {
  background-color: #0e4da1;
}
.section_02_in {
  background-color: transparent;
}
.section_03 {
  background-image: url( "../images/bg_main_in.jpg");
   background-repeat: repeat;
}
.section_03_in {
  background-color: transparent;
}


.section_contact {
 position: fixed;
 left: 0;
 bottom:0 ;
 background-color: #0e4da1;
}
.section_contact_in {
  background-color: #0e4da1;
}


.box_contact {
      display: flex;
    justify-content: flex-end;
     position: relative;
}


.img_contact_pc_01{
   position: absolute;
    left:0px;
    bottom: -5px;
    width: 20%;
}

.img_contact_pc_02{
    width: 40%;
    text-align: center;
    padding: 0.3em 0 0 0;
}

.img_contact_pc_02 img{
    width: 80%;
}

.img_contact_pc_03{
    width: 40%;
    padding: 0.8em 0 0 0;
}

.img_contact_pc_03 img{
    width: 90%;
}


.box_nayami{
    background:#fff;
    margin: 0em 1.5em 1.5em;
    padding: 1em 2em;
    position: relative;
    box-shadow: 0px 0px 15px #594a42;
}

.box_jyosei{
    position: absolute;
    bottom: 0px;
    right: -160px;
    text-align: center;
}

.box_jyosei img{
    width: 52%;
}

ul.list_nayami {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.list_nayami li {
  position: relative;
  padding: 0 0 0 1.5em;
  margin: 0.5em 0;
  font-size:1.4em;
  border-bottom:1px dotted #ccc;
}

ul.list_nayami li::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f058';
  color: #00ACDB;
}

.box_reazon{
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 2.5em;
}

.box_reazon_reverse{
    display: flex;
    flex-direction: row;
    margin-bottom: 2.5em;
}

.box_reazon_inr{
    width: 95%;
    padding: 30px;
    background:#fff;
    position: relative;
}

.box_reazon_img {
    width: 90%;
    box-shadow: 15px 15px 0 #0e4da1;
}

.box_reazon_img img{
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.tag_point{
    font-family: "Osaka-mono", "MS Gothic", "monospace";
     position: absolute;
    top:-20px;
    right: 0px;
    font-size: 6em;
    font-weight: 900;
    font-style:italic;
    letter-spacing: 0.1;
    opacity: 0.1;
    color: #0e4da1;
}

.tag_point_reverse{
    font-family: "Osaka-mono", "MS Gothic", "monospace";
     position: absolute;
    top:-20px;
    left: 0px;
    font-size: 6em;
    font-weight: 900;
    font-style:italic;
    letter-spacing: 0.1;
    opacity: 0.1;
    color: #0e4da1;
}

.box_01{
    background: #f6f6f6;
    padding: 1em 1em 1.5em;
    float: left;
    width: 45%;
     overflow: auto;
}

.box_02{
      background: #f6f6f6;
    padding: 1em 1em 1.5em;
    float: right;
    width: 45%;
    overflow: auto;
    margin-bottom:2em;
}

.blue_line {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ccf0ff 0%) repeat scroll 0 0;
}

.blue_line {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffea00 0%) repeat scroll 0 0;
}




.text_yellow{
    background-color: #fff000;
    padding:5px 15px;
    font-size: 0.9em;
}

.tag_maituki{
    background-color: #fd5620;
    padding: 0.1em 1em;
    text-align: center;
    color: #fff;
    border-radius: 15px
}


.kingaku{
    text-align: center;
    margin-top: 1em;
}

.kingaku_inr{
    font-size: 3em;
}

.tag_small{
    font-size: 0.7em;
    text-align: center;
}

.box_jyoken{
    background-color: #fff;
    padding: 1em 2em;
    margin-bottom: 2em;
}

.flow_flow_area{
    display: block;
}

.flow_title{
    width: 80%;
    margin: 0 auto;
}

.flow_title_inr{
    background-color: #0e4da1;
    padding: 0.5em 1em;
    text-align: center;
    color: #fff;
    border-radius: 60px;
    font-size:1.2em;
}

.flow_img{
    width: 80%;
    margin: 1em auto 0.5em;
     box-shadow: 15px 15px 0 #fd5620;
}

.flow_text{
     width: 60%;
        margin: 0 auto;
    padding: 0.8em 0em 0em 1.2em;
    text-align: center;
}

.flow_yajirusi{
    width: 20%;
    margin:1.5em auto;
    text-align: center;

}

.flow_yajirusi img{
    width: 20%;
}

.title_suport{

}


.map{
    position: relative;
    padding-top: 56.25%;
}

.map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fadeintop {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 2s;
}
.fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: all 2s;
}
.fadeinleft {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 2s;
}
.fadeinright {
  opacity: 0;
  transform: translateX(40px);
  transition: all 2s;
}
.fadeinbottom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 2s;
}
/*--------------------------------------------------------
問い合わせ部分
--------------------------------------------------------*/
.section_entry {
  background-color: #f9bb3e;
}
.section_entry_in {
  background-color: transparent;
}
.box_entry {
  background-color: #fff;
  padding: 0.5em 2em 1em;
  border-radius: 5px;
  margin-top: 0.5em;
  margin-bottom: 1em;
  overflow: auto;
}
.entry_tel {
  width: 48%;
  float: left;
  margin: 0.5em 0em 0em;
}
.entry_mail {
  width: 48%;
  float: right;
  margin-top: 1em;
}
/*ステップフローのCSS*/
ul.stepflow {
  border: none;
  margin: 1em 0.5em;
  padding: 0;
  list-style: none;
}
ul.stepflow > li:before, ol.stepflow > li:before {
  background-color: #cccccc !important;
}
.stepflow li {
  position: relative;
  padding: 0 0 1.5em 1.8em;
}
.stepflow > li:before {
  content: "";
  width: 3px;
  background: #cccccc;
  display: block;
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 5px;
}
.stepflow-white {
  content: '';
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px #eaa03c;
}
.stepflow-black {
  content: '';
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px #eaa03c;
  background-color: #eaa03c;
}
.stepflow_label {
  padding: 3px 0px 8px 0px;
  margin-bottom: 8px;
  color: #999999;
  font-size: 11.2px;
  font-weight: bold;
}
.stepflow_title {
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}
.stepflow_content {
  font-size: .9em;
  line-height: 1.5;
  margin-top: .5em;
  padding: 0 0 1.5em;
  border-bottom: dashed 1px #cccccc;
}
/*ステップフローのCSSここまで*/

/*--------------------------------------------------------
よくある質問
--------------------------------------------------------*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #fff;
}
.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 0.8em 2.5em 0.8em 3.5em;
  cursor: pointer;
  text-indent: 0.5em;
  border-radius: 0em;
	background: #fd5620;
}
.cp_qa .cp_actab label::before {
  font-family: serif;
  font-size: 1.6em;
  margin-left: -1.8em;
  padding-right: 0.5em;
  content: 'Q';
}
.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #00838f;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2.2em;
  position: absolute;
  top: -8px;
  right: 0;
  content: '＋';
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  border-radius: 0 0 0em 0em;
  background: #fff;
  color: #000;
}
.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
  border: 10px solid rgba(27, 37, 56, 0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
  color: #fff;
  border-radius: 0em 0em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: -1px;
}

/*--------------------------------------------------------
段落・リスト・テーブル設定
--------------------------------------------------------*/
/*チェックリスト（リストタグ）*/
.main-contents ul.checklist {
  margin: 0 0 1.5em;
  padding: 1em;
  padding-bottom: 0;
  border: 1px solid #414141;
}
.main-contents ul.checklist li {
  margin-bottom: 1.5em;
  padding-top: 5px;
  padding-left: 24px;
  background: url(../images/icon-check01-red.png) left top no-repeat;
  list-style-type: none;
}
/*テーブルタグ*/
.main-contents table {
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  padding: 0;
  border-top: 1px solid #fff;
}
.main-contents th, .main-contents td {
  background-color: #fff;
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}

.main-contents th.last, .main-contents td.last {
  border-bottom: 0px solid #ccc;
}

.main-contents th {
  background-color: #fff;
  font-weight: bold;
  text-align: left;
	color: #000;
}
.main-contents table.table-style01 th, .main-contents table.table-style01 td {
  text-align: left;
  vertical-align: middle;
}
/*--------------------------------------------------------
Youtube調整タグ
--------------------------------------------------------*/
.youtube_size {
  width: 640px;
  height: 440px;
}
/*--------------------------------------------------------
メールフォーム部分
--------------------------------------------------------*/
/*全体*/
.mailform {
  background-image: url(../images/bg_mail.png);
  background-position: top center;
  background-repeat: no-repeat;
  margin: 0em 0em 1em;
  padding: 1em 0em 1.5em;
  border-radius: 20px;
  box-shadow: 0px 0px 1px #594a42;
}
/*入力部分*/
.input {
  margin: 0em 2em 0em;
  padding: 1em 2em;
  font-color: #000;
}
.input_style {
  width: 100%;
  height: 60px;
  font-size: 100%;
  border-radius: 8px;
  margin-bottom: 0.5em;
  text-align: center;
  color: #7b7b7b;
}
input[type="image"] {
  width: 92%;
  text-align: center;
  margin: 0 2em;
}
/*注意部分の文字*/
.caution {
  margin: 0em;
  padding: 0;
  font-size: 90%;
  color: #990000;
  text-align: center;
}
/*-----------------------------------------------------------------------------------------------------
フッター部分
-----------------------------------------------------------------------------------------------------*/
#footer {
  background:#f0f0f0;
  padding: 2em 0;
  margin-bottom: 7em;
  text-align: center;
  font-size: 1.4em;
  color: #333;
}

#footer a {
	color: #333;
}

/* ------------------------------
   スライダー1
------------------------------ */
.loopSliderWrap {
	top: 0;
	left: 0;
	height: 350px;
	overflow: hidden;
	position: absolute;
}
.loopSlider {
	margin: 0 auto;
	width: 100%;
	height: 330px;
	text-align: left;
	position: relative;
	overflow: hidden;
}
.loopSlider ul {
	height: 450px;
	float: left;
	overflow: hidden;
}
.loopSlider ul li {
	width: 450px;
	height: 350px;
	float: left;
	display: inline;
	overflow: hidden;
}
.loopSlider ul li img {
	width: 100%;
}

/* ------------------------------
   スライダー2
------------------------------ */
.loopSliderWrap_02 {
	top: 0;
	left: 0;
	height: 150px;
	overflow: hidden;
	position: absolute;
}
.loopSlider_02 {
	margin: 0 auto;
	width: 100%;
	height: 150px;
	text-align: left;
	position: relative;
	overflow: hidden;
}
.loopSlider_02 ul {
	height: 250px;
	float: left;
	overflow: hidden;
}
.loopSlider_02 ul li {
	width: 100px;
	height: 250px;
	float: left;
	display: inline;
	overflow: hidden;
}
.loopSlider_02 ul li img {
	width: 100%;
}


.sp_br{
   display: none;
}

.fix_menu_pc{
	display: none;
}


/*.fix_menu_pc{
  display: block;
  width:80px;
  position: fixed;
  right: 0px;
  bottom: 200px;
  z-index: 10000;
}

.fix_menu_pc img{
  width:100%;
}
*/

.fix_menu_smartphone{
	display: none;
}


.tel_right_pc{
   	 background-color:#85BD53;
	float:none;
	width:100%;
	padding:1em 1em 1em 2.5em;
    border-radius: 10px 0 0 10px;
}

/*ローンシミュレーション*/

  div.sum_wrapper {
    position: relative;
    width: 100%;
    float: left;
  }


  div.loan_out p.note {
    margin-bottom: 0;
    font-size: 1.2em;
    text-align: right;
  }

  div.loan_block {
    width: 48.205%;
    margin-left: 3.59%;
  }

  div.loan_out {
    margin-top: calc(100% * 0.046);
  }

  div.loan_in {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 1em;
    width: 92%;
      margin: 0 auto;
      overflow: auto;
  }

  div.loan_block {
    position: relative;
    width: 22.125%;
    margin-left: 3.593%;
    float: left;
  }

  div.loan_block:first-child {
    margin-left: 0;
  }

  div.loan_block p {
    display: block;
    margin-bottom: 0;
  }

  div.loan_block span {
    position: absolute;
    right: 8px;
    bottom: 8px;
    font-size: 0.75em;
    color: #4d4d4d;
  }

  div.loan_block input[type="number"] {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding-left: 39%;
    font-size: 1.2em;
  }

  div#price_sum {
    width: 35%;
  }

  div#price_sum {
    position: relative;
    box-sizing: border-box;
    width: 26.946%;
    height: 55px;
    margin: 0 auto;
    margin-top: 60px;
    border: solid 1px #b2b2bf;
    background: #ffffff;
    font-size: 30px;
    color: #990743;
    font-weight: bold;
    text-align: center;
    line-height: 55px;
    font-family: Arial, Helvetica, sans-serif;
  }

  div.sum_wrapper p.price_date {
    position: absolute;
    right: 50%;
    margin-right: 16.473%;
    bottom: 0;
    margin-bottom: 0;
  }

  div#price_sum {
    position: relative;
    box-sizing: border-box;
    width: 26.946%;
    height: 55px;
    margin: 0 auto;
    margin-top: 60px;
    border: solid 1px #b2b2bf;
    background: #ffffff;
    font-size: 30px;
    color: #990743;
    font-weight: bold;
    text-align: center;
    line-height: 55px;
    font-family: Arial, Helvetica, sans-serif;
  }

  div#price_sum::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    margin-left: -80px;
    border-top: solid 25px #004098;
    border-left: solid 80px transparent;
    border-right: solid 80px transparent;
  }

  div#price_sum span {
    position: absolute;
    right: 15px;
    bottom: 8px;
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1;
  }

  @media screen and (max-width: 600px) {
    div.loan_block {
      width: 48.205%;
      margin-left: 3.59%;
    }

    div.loan_block.pb {
      width: 30.9%;
    }

    div.loan_block:nth-child(3) {
      margin-left: 0;
    }

    div#map_block p.note,
    div.loan_out p.note {
      text-align: left;
    }

    div.info p.price span {
      font-size: 23px;
    }

    div.loan_out {
      margin-top: 20px;
    }

    div.loan_block {
      width: 48.205%;
      margin-left: 3.59%;
    }

    div.loan_block.pb {
      width: 47.9%;
    }

    div.loan_block:nth-child(3) {
      margin-left: 0;
    }

    div.loan_block input[type="number"] {
      font-size: 1.5em;
    }

    div#price_sum {
      width: 50%;
      font-size: 23px;
    margin-top: 80px;
    }

    div#price_sum span {
      right: 6px;
      bottom: 12px;
    }

    div#price_sum::before {
      border-left: solid 58px transparent;
      border-right: solid 58px transparent;
      top: -70px;
      margin-left: -58px;
    }

    div.sum_wrapper p.price_date {
      margin-right: -38.5px;
      bottom: auto;
      top: 45px;
    }
  }
