@charset "utf-8";

/* ========================================
    ■ 必須設定
======================================== */

/* reset
----------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body { line-height:1; }
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display:block; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
h1,
h2,
h3,
h4,
h5,
h6 { font-weight: normal; }
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through; }
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
th { font-weight: normal; }
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, select, textarea, img { vertical-align:middle; }
ul, dl, ol { list-style: none; }


/* 共通設定
----------------------------- */
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
            appearance: none;
}

html {
    font-size: 16px;
}

body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", sans-serif;
    color: #181818;
    line-height: 1.6;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
}
@media all and (-ms-high-contrast:none){
    body {
        font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    }
}

a {
    color: #0033cc;
    text-decoration: underline;
    transition: 0.2s ease;
}
a:hover {
    text-decoration: none;
    transition: 0.2s ease;
}
a::before, a:hover::before,
a::after, a:hover::after {
    transition: 0.2s ease;
}

img,
video,
object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
}

/* ========================================
    ■ ページトップボタン
======================================== */
#page-top {
    position: fixed;
    right: 20px;
}
#page-top a {
    display: block;
    width: 44px;
    height: 44px;
    color: #fff;
    text-align: center;
    line-height: 44px;
    background: rgba(0,0,0, 0.25);
    border-radius: 50%;
}
#page-top a:hover { background: rgba(0,0,0 ,0.5); }

/* ========================================
    ■ General
======================================== */
.wrap {
	position: relative;
	width: 1000px;
    margin: 0 auto;    
}

.hover:hover { opacity: 0.9; }

/* form reset */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "YuGothic M", sans-serif;
    font-size: 1rem;
}
select::-ms-expand {
    display: none;
}

input[type='text'],
input[type='tel'],
input[type='email'],
textarea {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "YuGothic M", sans-serif;
    font-size: 1rem;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance:textfield;
}

@media all and (-ms-high-contrast:none){
    select,
    input[type='text'],
    input[type='tel'],
    input[type='email'],
    textarea {
        font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    }
}

/* placeholder */
#form :placeholder-shown { color: #999; }
#form ::-webkit-input-placeholder { color: #999; }/* Google Chrome, Safari, Opera 15+, Android, iOS */
#form :-moz-placeholder { color: #999; opacity: 1; }/* Firefox 18- */
#form ::-moz-placeholder { color: #999; opacity: 1; }/* Firefox 19+ */
#form :-ms-input-placeholder { color: #999; }/* IE 10+ */

/* ラジオボタン・チェックボックス */
#form input[type='radio'],
#form input[type='checkbox'] {
    display: none;
}
#form input[type='radio'] + label,
#form input[type='checkbox'] + label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
#form input[type='radio'] + label::before,
#form input[type='checkbox'] + label::before {
    content: '';
    font-family: 'FontAwesome';
    display: block;
    background: #fafafa;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #1e9c0d;
    font-size: 1rem;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    border: solid 1px #999;
    border-radius: 50%;
}
#form input[type='radio']:checked + label::before {
    content: '\f111';
}
#form input[type='checkbox']:checked + label::before {
    content: '\f00c';
}

/* mailform pro reset */
#form .must {
    margin: 0;
    padding: 0;
    border: none;
    text-shadow: none;
    font-size: 1em;
    float: none;
    border-radius: 0;
    box-shadow: none;
}

#form input[type='text'],
#form input[type='email'],
#form input[type='tel'],
#form select,
#form textarea {
    box-shadow: none;
    margin: 0;
    max-width: none;
}

#form textarea {
    width: 100% !important;
    max-width: none;
}

div.mfp_err {
    background: none;
    margin: 0;
    padding: 0;
}

#form *[type='submit'] {
    margin: 0;
    padding: 0;
    border: none;
}
#form *[type='submit']:hover {
    box-shadow: none;
}


/* ========================================
    ■ keyv
======================================== */
/*
#keyv {
    background:
        url(images/keyv_bg01.png) no-repeat center bottom,
        url(images/keyv_bg02.png) no-repeat center top/cover;
    min-width: 1000px;
}
#keyv .wrap {
    padding: 35px 0 430px;
    text-align: center;
}
#keyv header {
    position: absolute;
    left: 20px;
    top: 18px;
}
#keyv i {
    width: 170px;
    position: absolute;
    right: -10px;
    top: 65px;
}
#keyv h1 {
    background: rgba(23, 47, 136, 0.95);
    min-width: 1000px;
    padding: 20px 0;
    text-align: center;
}
*/
#mv_202104{
	position: relative;
	background: url(images/mv_bg_pc.jpg) no-repeat center center;
	background-size: cover;
	min-width: 1000px;
	width: 100%;
	height: 717px;
}
#mv_202104 .wrap{
	height: 100%;
}
#mv_202104 .mv_cth{
	width: 423px;
	position: absolute;
	left: 0;
	top: 105px;
	z-index: 5;
}
#mv_202104 .mv_img{
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	z-index: 1;
}
#mv_202104 .mv_order{
	position: absolute;
	left: 0;
	bottom: 30px;
	z-index: 11;
	display: flex;
	justify-content: space-between;
	width: 665px;
	border-radius: 20px;
	padding: 5px;
	box-sizing: border-box;
	background: #fff;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
#mv_202104 .mv_order li{
	margin-top: -10px;
}

/* ========================================
    ■ section-01
======================================== */
#section-01 {
    background:
        url(images/sec01_bg01.png) no-repeat center bottom,
        url(images/sec01_pattern01.png);
    min-width: 1000px;
}
#section-01 .wrap {
    padding: 50px 0 95px;
    text-align: center;
}
#section-01 h2 + small {
    display: block;
    margin: 15px 105px 30px 0;
    font-size: 0.875rem;
    text-align: right;
}

/* 当社で購入されたお客様のケース
------------------------------- */
#section-01 .case-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
#section-01 .case {
    background: #fff;
    width: 240px;
    padding-bottom: 10px;
    box-shadow: 0 2px 3px rgba(35, 35, 35, 0.23);
    position: relative;
}
#section-01 .case::before {
    content: '';
    display: block;
    background: url(images/sec01_case_bg01.png) no-repeat center bottom;
    width: 244px;
    height: 34px;
    position: absolute;
    left: -2px;
    top: -33px;
}
#section-01 .case i {
    width: 74px;
    position: absolute;
    left: 0;
    top: -50px;
}
#section-01 .case p {
    margin: 10px 10px 0;
    text-align: left;
    letter-spacing: 0.05em;
}

/* ========================================
    ■ cta01
======================================== */
.cta01 {
    background: #172f88;
}
.cta01 .wrap {
    padding: 35px 0 50px;
}
.cta01 ul {
    display: flex;
    justify-content: space-between;
}

/* ========================================
    ■ section-02
======================================== */
#section-02 {
    background: url(images/sec02_pattern01.png);
}

/* 見出し
-------------------------------　*/
#section-02 h2 {
    background: #fff;
    min-width: 1000px;
    padding-top: 70px;
    text-align: center;
    border-top: solid 5px #0f1e57;
}

/* 中身
------------------------------- */
#section-02 .wrap {
    padding: 55px 0 60px;
}

/* お悩みリンク */
#section-02 .onayami {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding-right: 10px;
    border-radius: 15px;
    position: relative;
}
#section-02 .onayami:nth-of-type(n+2) {
    margin-top: 30px;
}
#section-02 .onayami i {
    width: 175px;
    position: absolute;
    left: -5px;
    top: -25px;
}

/* フッターコメント */
#section-02 .onayami-bottom {
    margin-top: 60px;
    text-align: center;
}
#section-02 .onayami-bottom h3 {
    margin-bottom: 30px;
}

/* ========================================
    ■ section-03
======================================== */
#section-03 {
    background: url(images/sec03_bg01.png) no-repeat center top/cover;
    min-width: 1000px;
}
#section-03 .wrap {
    padding: 75px 0 70px;
    text-align: center;
}
#section-03 h2 {
    margin-bottom: 35px;
}

/* ========================================
    ■ section-04
======================================== */
#section-04 {
    background: url(images/sec04_bg01.png) no-repeat center bottom/100% auto;
    min-width: 1000px;
}
#section-04 .wrap {
    padding: 35px 0 300px;
    text-align: center;
}
#section-04 h2 {
    margin-left: 40px;
    text-align: left;
}
#section-04 figure {
    margin: 55px 0;
}

/* ========================================
    ■ section-05
======================================== */
#section-05 {
    min-width: 1000px;
    position: relative;
}
#section-05::before {
    content: '';
    display: block;
    background: url(images/sec05_pattern01.png);
    width: 100%;
    height: 495px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#section-05 .wrap {
    padding: 70px 0 445px;
}
#section-05 figure {
    width: 444px;
    position: absolute;
    right: -100px;
    top: 135px;
}
#section-05 p {
    width: 726px;
    position: absolute;
    left: calc(50% - 363px);
    bottom: -30px;
    z-index: 700;
}

/* ========================================
    ■ section-06
======================================== */
#section-06 {
    background: url(images/sec06_bg02.png) no-repeat center bottom #172f88;
    min-width: 1000px;
    position: relative;
}
#section-06 .wrap {
    padding: 45px 0 25px;
    text-align: right;
}
#section-06 figure {
    width: 566px;
    position: absolute;
    left: -120px;
    bottom: 0;
}
#section-06 h2 {
    margin-right: 90px;
    margin-bottom: 30px;
}
#section-06 a {
    display: inline-block;
    margin-right: 115px;
    position: relative;
}

/* ========================================
    ■ section-07
======================================== */
#section-07 .wrap {
    padding: 50px 0 80px;
    text-align: center;
}
#section-07 h2 {
    margin-bottom: 50px;
    position: relative;
    left: -40px;
}

/* ========================================
    ■ footer
======================================== */
footer {
    background: #f8f8f8;
    border-top: solid 6px #172f88;
}
footer .wrap {
    padding: 50px 0 20px 40px;
}

/* 会社概要
------------------------------- */
footer h2 {
    font-size: 1.375rem;
    line-height: 1.2em;
}
footer h2 small {
    font-size: 0.9rem;
}
footer .company {
    display: flex;
    margin-top: 15px;
    padding-left: 200px;
}
footer .company > p {
    margin-left: 160px;
}
footer .company + p {
    margin-top: 30px;
    text-align: center;
}
footer ul {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    line-height: 1.2;
}
footer ul li {
    padding: 0 24px;
}
footer ul li:nth-of-type(n+2) {
    border-left: solid 1px #333;
}
footer ul li a {
    color: #333;
    text-decoration: none;
}
footer ul li a:hover {
    text-decoration: underline;
}

/* コピーライト
------------------------------- */
#copyright {
    background: #172f88;
    padding: 15px 0;
    color: #fff;
    font-size: 0.750rem;
    text-align: center;
}

/* ========================================
    ■ loan-target
======================================== */
#loan-target {
    background: url(images/sec02_pattern01.png);
    border-top: solid 4px #0f1e57;
}
#loan-target .wrap {
    padding: 55px 0 70px;
}

/* お悩みリンク
------------------------------- */
#loan-target .onayami {
    background: #fff;
    border-radius: 15px;
    position: relative;
}
#loan-target .onayami:nth-of-type(n+2) {
    margin-top: 35px;
}
#loan-target .onayami i {
    width: 175px;
    position: absolute;
    left: -5px;
    top: -30px;
}
#loan-target .onayami p {
    margin: 10px 55px 0 60px;
    font-size: 1.125rem;
}
#loan-target .onayami ul {
    display: flex;
    justify-content: space-around;
    background: #172f88;
    margin-top: 20px;
    padding: 8px 5px 20px 0;
    border-radius: 0 0 15px 15px;
}

/* ========================================
    ■ loan-message
======================================== */
#loan-message {
    background: url(images/loan-message_bg01.png) no-repeat center top/cover;
    min-width: 1000px;
}
#loan-message .wrap {
    padding: 55px 0;
    text-align: center;
}

/* ========================================
    ■ contact-keyv
======================================== */
#contact-keyv {
    background: url(images/keyv_bg02.png) no-repeat center top/cover;
    min-width: 1000px;
    border-bottom: solid 6px #172f88;
}
#contact-keyv .wrap {
    padding: 35px 0 15px;
    text-align: center;
}
#contact-keyv header {
    position: absolute;
    left: 0;
    top: 18px;
}

/* ========================================
    ■ form
======================================== */
#form .wrap {
    padding: 95px 0 100px;
    text-align: center;
}

/* 見出し
------------------------------- */
#form h1 + p {
    margin: 35px 0;
    color: #181818;
    font-size: 1.125rem;
}

/* 表組
------------------------------- */
#form table {
    margin: 0 auto;
}
#form table th {
    padding: 26px 30px 26px 0;
    text-align: right;
    vertical-align: top;
    position: relative;
}
#form table td {
    width: 510px;
    padding: 15px 0;
    text-align: left;
    vertical-align: top;
}

/* select */
#form select {
    background: url(images/form_bg01.png) no-repeat 96% center;
    width: 100%;
    padding: 12px 20px;
    border: solid 1px #999;
    border-radius: 10px;
}

/* テキスト入力 */
#form input[type='text'],
#form input[type='tel'],
#form input[type='email'],
#form textarea {
    width: 100%;
    padding: 12px 20px;
    border: solid 1px #999;
    border-radius: 10px;
}
#form textarea {
    min-height: 160px;
}

/* ラジオボタン用レイアウト */
#form .radio-wrap {
    display: flex;
    padding-top: 5px;
}
#form .radio-wrap li:nth-of-type(n+2) {
    margin-left: 65px;
}

/* 必須マーク */
#form .must {
    display: inline-block;
    background: #f75700;
    padding: 2px 8px;
    font-size: 0.875rem;
    border-radius: 6px;
    position: absolute;
    left: 0;
}

#form div.mfp_ok { display: none; }

/* 注釈
------------------------------- */
#form table + small {
    display: block;
    margin: 25px 0 30px 320px;
    font-size: 0.875rem;
    text-align: left;
}

/* ボタン
------------------------------- */
#form .btn-wrap {
    display: flex;
    justify-content: center;
}
#form .btn-wrap button {
    background: transparent;
    margin: 0 7px;
    padding: 0;
    border: none;
    cursor: pointer;
}
#form .btn-wrap button:hover {
    box-shadow: none;
}

/* ========================================
    ■ thanks
======================================== */
#thanks {
    text-align: center;
}
#thanks .wrap {
    padding: 60px 0;
}
#thanks p:nth-of-type(1) {
    margin-top: 40px;
}
#thanks p:nth-of-type(n+2) {
    margin-top: 30px;
}
#thanks .wrap > a {
    display: inline-block;
    background: #172f88;
    margin-top: 50px;
    padding: 20px 120px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
}
