﻿@charset "UTF-8";
/*
Theme Name: purefull_finance
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", san-serif;
    --font_en: "Montserrat", serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(40px, 5vw, 80px);
    --h3_font: clamp(24px, 3.5vw, 48px);
    --m_color: #19bbdd;
    --m_color: #20b2df;
    --a_color: #fff655;
    --a_color: #fff876;
    --f_color: #202020;
    --b_color: #d8f5f9;
    --w_color: #fff;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1640px);
    --main_mp: 150px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_reverse {
    flex-direction: row-reverse;
}

.main_col {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.m_a {
    max-width: var(--main_w);
    padding-left: 20px;
    padding-right: 20px;
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}
fieldset {
    display: contents;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}
.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
}
.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: var(--w_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.block:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #555;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}
/*ボケながらフェードイン*/
.BlurFadeIn {
    visibility: hidden;
}
@keyframes blurAnime {
    from {
        filter: blur(30px);
        transform: scale(1.2);
        opacity: 0;
        visibility: hidden;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}
.BlurFadeIn-is-show {
    -webkit-animation: blurAnime 1s ease-in-out forwards 0s;
    -moz-animation: blurAnime 1s ease-in-out forwards 0s;
    animation: blurAnime 1s ease-in-out forwards 0s;
    visibility: visible;
}

/*-------------------------------------
見出し
-------------------------------------*/
.top_h2 {
    margin: 0 0 80px;
}
.top_h2 h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font: bold clamp(24px, 3.5vw, 40px) var(--font_ja);
    color: #ea5514;
    color: var(--f_color);
}
.top_h2 .data_text {
    font: normal var(--h2_font) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    margin-bottom: 10px;
    color: var(--f_color);
}
.top_h2_center .data_text,
.top_h2_center h2 {
    text-align: center;
}
.top_h2_center h2:after {
    margin: 30px auto 0;
}
.top_h2_white h2 {
    color: var(--w_color);
}
.top_h2_white .data_text {
    color: var(--w_color);
}
.top_h2_white h2:after  {
    background: var(--w_color);
}

.top_contact_h2 {
    margin-bottom: 50px;
    padding: 40px 20px;
    background: var(--a_color);
    background: #ea5514;
    background: var(--m_color);
    color: var(--w_color);
}
.top_contact_h2 h2 {
    font: bold clamp(24px, 3.5vw, 40px) var(--font_ja);
    text-align: center;
    color: var(--w_color);
}

/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    position: relative;
    max-width: 1920px;
}
.main_wrap p {
    font: normal clamp(16px, 2vw, 18px) var(--font_ja);
    line-height: 1.8;
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.h_nav_wrap h1 {
    color: var(--m_color);
}
.site_ttl {
    line-height: 0;
    margin-right: 20px;
    transition: var(--tr);
    /* background: var(--m_color); */
}
.site_ttl a {
    text-decoration: none;
    color: var(--m_color);
    font: bold clamp(20px, 3vw, 36px) var(--font_ja);
}
.site_ttl a:hover {
    opacity: 0.8;
}
/*ナビ*/
.h_nav_wrap {
    position: absolute;
    padding: 10px 40px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
    /* background: var(--w_color); */
}
.h_nav_inner {
    align-items:center;
    justify-content: space-between;
}
.pc_h_nav_top {
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--tr);
}
.pc_h_nav li {
    margin-left: min(30px, 5vw);
}
.pc_h_nav a {
    font: bold 16px var(--font_ja);
    padding: 10px 10px;
    text-decoration: none;
    color: var(--f_color);
}
.pc_h_nav a:hover {
    opacity: 0.8;
}
.pc_h_nav a i {
    margin-right: 5px;
    color: var(--f_color);
}

/*************************************/
.header_cta {
    width: 100%;
}
.header_cta_box {
    max-width: 640px;
    margin: 0 auto;
}

/* ヘッダー画像 */
.main_image_wrap {
    max-width: 1920px;
}
.main_image_box {
    background: url("img/header.jpg") no-repeat;
    background-position: 50% 0%;
    background-size: cover;
    margin: 0 0 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100vh;
}
.main_image_box_inner {
    width: 100%;
    height: 100vh;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}
.header_text {
    margin-bottom: 40px;
}
.top_header_text {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    transform: translate(0%,-50%);
    width: 100%;
    /* max-width: 640px; */
    width: clamp(360px, 60vw, 560px);
}
.header_text_top {
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 26px) var(--font_ja);
    text-align: center;
}
.header_text_bottom {
    margin-top: 10px;
    font: normal clamp(12px, 2vw, 15px) var(--font_ja);
    text-align: center;
}
.top_header_text_top {
    margin-bottom: 40px;
}
.top_header_text_bottom {
    margin-bottom: 100px;
}
.top_header_text_top p {
    font: bold clamp(48px, 8vw, 120px) var(--font_en);
    color: var(--m_color);
    letter-spacing: 0.6rem;
    line-height: 1.3;
}
.top_header_text_bottom p {
    font: bold clamp(24px, 4vw, 48px) var(--font_ja);
    line-height: 2.0;
    color: var(--f_color);
    letter-spacing: 0.2rem;
}

a.btn {
    font: bold clamp(16px, 2.0vw, 30px) var(--font_ja);
    line-height: 1.5;
    display: inline-block;
    padding: 20px 30px;
    width: 100%;
    max-width: 640px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 80px;
    border: 3px solid #e04502;
    background: #d3480d;
    background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
    background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    color: var(--w_color);
}
.dli-caret-circle-fill-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--w_color);
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-left: 20px;
}
.dli-caret-circle-fill-right::before {
    content: '';
    color: #ea5514;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.3em 0.2em;
    border-top-color: currentColor;
    border-bottom: 0;
    transform: translateY(10%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/*-------------------------------------
TOP 特長
-------------------------------------*/
.top_service_inner {
    padding-top: var(--main_mp);
}
.trouble_image {
    max-width: 400px;
    margin: 0 auto;
}
.top_trouble_box {
    position: relative;
    padding: 40px 0;
    background: var(--m_color);
}
.top_trouble_box:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-color: var(--m_color) transparent transparent;
    border-style: solid;
    border-width: 80px 100px;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
.top_trouble_list {
    justify-content: center;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 0px;
}
.top_trouble_list span {
    color: #ea5514;
}

.top_trouble_list li {
    display: inline-block;
    font-weight: bold;
    color: var(--f_color);
    background: var(--w_color);
    border: solid 2px var(--f_color);
    padding: 25px 22px;
    position: relative;
    margin-right: 30px;
    border-radius: 20px;
    flex: 1 0 auto;
    text-align: center;
    font: bold clamp(15px, 2.2vw, 26px) var(--font_ja);
}
.top_trouble_list li:nth-of-type(1),
.top_trouble_list li:nth-of-type(3) {
    margin-top: 50px;
}
.top_trouble_list li:nth-of-type(2) {
    margin-bottom: 50px;
}
.top_trouble_list li::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 18px;
    background: var(--w_color);
    bottom: -18px;
    left: 0;
    right: 7px;
    border-right: 2px solid var(--f_color);
    transform: skew(-30deg);
    margin: auto;
    z-index: 1;
}
.top_trouble_list li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--a_color);
    top: 8px;
    left: 8px;
    mix-blend-mode: multiply;
    z-index: 2;
    border-radius: 20px;
}
.top_trouble_list li:last-child {
    margin-right: 0;
}
.top_trouble_list li p {
    text-align: center;
    color: var(--f_color);
    font-size: clamp(14px, 2.2vw, 22px);
    line-height: 1.8;
    font-weight: normal;
    z-index: 3;
}
.top_trouble_list i {
    margin-bottom: 10px;
    color: var(--a_color);
    font-size: 40px;
}
.top_trouble_text {
    margin-bottom: 0px;
    text-align: center;
    font-size: clamp(18px, 2.2vw, 48px) !important;
    font-weight: bold;
    color: var(--w_color);
    line-height: 1.5 !important;
}
.top_trouble_text span {
    color: var(--a_color);
    font-size: clamp(26px, 3.0vw, 60px) !important;
}
.top_recommend_inner {
    padding: 100px 20px var(--main_mp);
    max-width: 1240px;
    background-size: 10px 10px;
    background-repeat: repeat;
    background-position: center center;
    margin: 0 auto;
}

.top_recommend_wrap {
    background: var(--b_color);
}
.top_recommend_inner h3 {
    margin-bottom: 40px;
    text-align: center;
}
.top_recommend_h3_top {
    display: block;
    font: bold clamp(18px, 3vw, 40px) var(--font_ja);
    width: 100%;
    color: var(--f_color);
}
.top_recommend_h3_bottom {
    display: block;
    font: bold clamp(18px, 3vw, 60px) var(--font_ja);
    color: var(--f_color);
}
.top_recommend_h3_bottom span {
    font: bold clamp(28px, 4vw, 60px) var(--font_ja);
    color: #ea5514;
}
.top_recommend_list {
    margin: 90px auto 0;
    display: flex;
    gap: 80px 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.top_recommend_list li {
    position: relative;
    background: var(--w_color);
    padding: 50px;
    min-width: 360px;
    width: 31%;
}
.top_recommend_list li:last-child {
    margin-right: 0;
}
.top_recommend_title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: bold clamp(18px, 3vw, 24px) var(--font_ja);
    text-align: center;
    color: var(--f_color);
    border-bottom: solid 2px var(--m_color);
}
.top_recommend_list li p {
    color: var(--f_color);
}
.top_recommend_text span {
    color: #ea5514;
    font-weight: bold;
}
.top_recommend_number {
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: var(--m_color);
    background: linear-gradient(to right, var(--a_color) 0%, var(--a_color) 50%, #ffe81d 50%, #ffe81d 100%);
    border: solid 1px var(--f_color);
    color: var(--w_color);
    border-radius: 50%;
    transform: rotate(20deg);
    margin: -110px auto 20px;
}
.top_recommend_number p {
	width: 120px;
    transform: rotate(-20deg);
}
.top_recommend_number span {
    display: block;
    font: bold clamp(16px, 2vw, 20px) var(--font_en);
    color: var(--f_color) !important;
    text-align: center;
}
.top_recommend_number span:last-child {
    font: bold clamp(26px, 2vw, 36px) var(--font_en);
    color: var(--f_color);
}

.top_flow_number {
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: var(--m_color);
    background: linear-gradient(to right, var(--a_color) 0%, var(--a_color) 50%, #ffe81d 50%, #ffe81d 100%);
    border: solid 1px var(--f_color);
    color: var(--f_color);
    border-radius: 50%;
    transform: rotate(20deg);
}
.top_flow_number p {
	width: 120px;
    transform: rotate(-20deg);
    text-align: center;
}
.top_flow_number span {
    display: block;
    font: bold clamp(18px, 2vw, 20px) var(--font_en);
    color: var(--f_color);
}
.top_flow_number span:last-child {
    font: bold clamp(30px, 2vw, 36px) var(--font_en);
    color: var(--f_color);
}

/*-------------------------------------
TOP ご利用の流れ
-------------------------------------*/
.top_flow_wrap {
    padding: var(--main_mp) 20px;
}
.top_flow_inner {
    max-width: 1140px;
    margin: 0 auto;
    background: var(--b_color);
}
.top_flow_h2 {
    padding: 20px 20px;
    background: var(--m_color);
    text-align: center;
}
.top_flow_h2 h2 {
    color: var(--w_color);
    font: bold clamp(20px, 3vw, 40px) var(--font_ja);
}
.top_flow_h2 h2 span {
    color: var(--a_color);
    font: bold clamp(20px, 3vw, 40px) var(--font_ja);
}

.top_flow_list {
    padding: 50px;
}
.top_flow_list li {
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    padding: 50px;
    background: var(--w_color);
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.top_flow_list li::before {
    display: block;
    position: absolute;
    content: "";
    bottom: -35px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -20px;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: var(--m_color) transparent transparent transparent;
}
.top_flow_list li:last-child {
    margin-bottom: 0;
}
.top_flow_list li:last-child::before {
    display: none;
}
.flow_box {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-left: 40px;
}
.top_flow_image {
    width: 25%;
}
.top_flow_text {
    width: 72%;
}
.top_flow_title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: bold clamp(18px, 2vw, 24px) var(--font_ja);
    color: var(--f_color);
    border-bottom: solid 2px var(--m_color);
}
.top_flow_image img {
    display: block;
    width: 100%;
    height: 140px;
}
.top_flow_contact {
    margin-top: 20px;
}
a.top_flow_btn {
    font: bold clamp(16px, 2vw, 24px) var(--font_ja);
    line-height: 1.5;
    display: inline-block;
    padding: 15px 20px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 80px;
    border: 3px solid #e04502;
    background: #d3480d;
    background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
    background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    color: var(--w_color);
}
.dli-caret-circle-fill-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--w_color);
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-left: 20px;
}
.dli-caret-circle-fill-right::before {
    content: '';
    color: #ea5514;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.3em 0.2em;
    border-top-color: currentColor;
    border-bottom: 0;
    transform: translateY(10%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/*-------------------------------------
TOP フリーローン
-------------------------------------*/
.freeloan_wrap {
    background: var(--b_color);
    padding-bottom: var(--main_mp);
}
.freeloan_inner {
    margin: 0 auto;
}
.freeloan_inner h3 {
    margin-bottom: 30px;
    font: bold clamp(20px, 3.0vw, 30px) var(--font_ja);
    text-align: center;
}
.pay_box h3 span {
    display: block;
    margin-top: 5px;
    font: normal clamp(12px, 2.0vw, 15px) var(--font_ja);
    line-height: 1.5;
}

.top_freeloan_h2 {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--m_color);
}
.top_freeloan_h2 h2 span {
    display: block;
}
.top_freeloan_title_top {
    font: bold clamp(20px, 3.0vw, 36px) var(--font_ja);
    color: var(--w_color);
}
.top_freeloan_title_bottom {
    font: bold clamp(28px, 3.0vw, 48px) var(--font_ja);
    color: var(--a_color);
}

/* テーブル表 */
.item_box {
    margin: 0 auto 50px;
    max-width: 1040px;
    padding: 0 20px;
}
.pay_box {
    margin: 0 auto;
    max-width: 1040px;
    padding: 0 20px;
}
.freeloan_inner table {
    width: 100%;
}
.item_table th,
.item_table td {
    padding: 15px 30px;
    font: normal clamp(13px, 3.0vw, 18px) var(--font_ja);
    text-align: left;
    border: 1px solid var(--f_color);
}
.item_table th {
    width: 32%;
    font-weight: bold;
    background: var(--a_color);
    color: var(--f_color);
}
.item_table td {
    width: 68%;
    background: var(--w_color);
}
.pay_table th,
.pay_table td {
    text-align: center;
    background: var(--w_color);
    border: solid 1px var(--f_color);
    font: normal clamp(13px, 3.0vw, 18px) var(--font_ja);
    padding: 15px 10px;
}
.pay_table td:first-child {
    background: var(--a_color);
    font-weight: bold;
}
.pay_table {
    margin: 0 auto 20px;
    max-width: 1040px;
}
.pay_table th {
    background: #ea5514;
    color: var(--w_color);
}
.pay_table th:first-child,
.pay_table td:first-child {
    width: 12%;
}
.pay_box p {
    font: bold clamp(16px, 3.0vw, 20px) var(--font_ja);
    text-align: center;
}

/*-------------------------------------
TOP お問い合わせ
-------------------------------------*/
.contact_wrap {
    /* margin-bottom: var(--main_mp); */
    margin-bottom: 120px;
}
.contact_inner > p {
    text-align: center;
}
.contact_info {
    margin: 0 auto 5vw;
}
.contact_info a {
    text-decoration: none;
    color: var(--m_color);
    margin: 0 0 5px;
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.05em;
    font: 700 clamp(30px, 3.0vw, 54px) / 1 var(--font_en);
}
.contact_info a i {
    margin-right: 10px;
    color: var(--m_color);
    font-size: clamp(30px, 3.0vw, 48px);
}
.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
    max-width: 1000px;
    margin: 0 auto;
}
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
}
.wpcf7_left {
    display: block;
    max-width: 250px;
    width: 100%;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
form.wpcf7-form .required:after,
form.wpcf7-form .arbitrary:after {
    width: auto;
    display: inline-block;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}
form.wpcf7-form .required:after {
    content: "必須";
    background: #e74c3c;
    color: var(--w_color);
}
form.wpcf7-form .arbitrary:after {
    content: "任意";
    background: #999;
    color: var(--w_color);
}

.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
    text-align: left;
}
.wpcf7_right_box {
    align-items: center;
}
.wpcf7_right_box {
    margin-right: 20px;
}
.wpcf7_right_box:last-child {
    margin-right: 0;
}
.wpcf7_right_box > span:first-child {
    margin-right: 5px;
}

.wpcf7_right select {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.wpcf7_right_sup {
    display: block;
    font-size: 14px;
    color: #505050;
    line-height: 1.5;
    margin-top: 5px;
}

.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
    text-align: left;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}
.wpcf7_container #info2 {
    margin: 10px 0 0;
}
.wpcf7-form-control-wrap {
    /* display: flex;
    justify-content: center;
    text-align: center; */
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: var(--w_color);
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    display: block;
    max-width: 650px;
    margin: 30px auto;
    text-align: center;
}
.wpcf7-list-item {
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder,
input::-moz-input-placeholder,
input::-ms-input-placeholder,
textarea::placeholder,
textarea::-ms-placeholder,
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    text-align: left;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: var(--w_color);
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: #ea5514;
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    border: 1px solid #dadada;
    font-size: 0.8125rem;
    background: var(--w_color);
}
.readme p {
    line-height: 1.8;
    font-size: 0.8125rem;
}
.readme dl {
    margin-top: 20px;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}
/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: var(--b_color);
    border: 1px solid #ccc;
    color: var(--f_color);
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: var(--f_color);
}
#wpcf7cpcnf table td {
    background: var(--w_color);
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: var(--m_color);
    color: var(--w_color);
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--a_color);
    color: var(--f_color);
    border: none;
}
/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 1005;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: #e5e5e5;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
.footer {
    background: var(--m_color);
    padding: 40px 20px;
}
.footer_inner {
    color: var(--w_color);
    align-items: center;
    justify-content: center;
}
.footer_logo {
    max-width: 120px;
    margin-right: 40px;
}
.footer_logo img {
    width: 100%;
}
.footer_company_text {
    font-family: var(--font_ja);
    font-size: clamp(14px, 1.0vw, 16px);
    color: var(--w_color);
}
.footer_company_text a {
    color: var(--w_color);
    text-decoration: none;
}
.copyright {
    text-align: center;
    border: none;
    color: var(--w_color);
    font-size: 0.6875rem;
    margin-top: 10px;
    padding: 0 20px;
}
.copyright p {
    color: var(--w_color);
}
.copyright a {
    font-size: 0.875rem;
    color: var(--f_color);
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 11;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--a_color);
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid var(--f_color);
    border-left: 1px solid var(--f_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

/* フッター追従 */
.cta_bar {
    position: fixed;
    left: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: var(--w_color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    /* opacity: 0; */
    transition: 0.3s;
    transition: all 0.3s;
    width: 100%;
    z-index: 0;
    padding: 25px 10px;
    overflow: hidden;
}
.cta_bar.fixed {
    /* opacity: 1; */
    z-index: 9;
    display: block;
    animation-name: fadeUpAnime;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    overflow:auto;
}
.cta_bar_box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
    align-items: flex-end;
}
.cta_bar_box div {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: var(--w_color);
}
/* .cta_bar_box p {
    margin-bottom: 10px;
    text-align: center;
    color: var(--f_color);
    font: bold clamp(16px, 2.0vw, 24px) var(--font_ja);
} */

@keyframes fadeUpAnime {
0% {
    opacity: 0;
    transform: translateY(100px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

@media only screen and (min-width: 769px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .wrap {
        background: none;
    }
    .sp_none {
        display: none !important;
    }
    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    .sp_trigger_nav {
        content: "";
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity var(--tr);
    }
    .sp_trigger_nav.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        width: 50px;
        height: 45px;
        vertical-align: middle;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 100;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 10px;
        width: 30px;
        height: 1px;
        background: var(--m_color);
        transition: var(--tr);
    }
    .menu-trigger.active span {
        background-color: var(--m_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        width: 10px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        bottom: 6px;
    }
    .h_nav_wrap.is-fixed .menu-trigger  {
        top: 10px;
    }
    .sp_trigger_nav {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: var(--w_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        transform: translate(100%);
        transition: var(--tr);
        overflow-y: auto;
    }
    .sp_trigger_nav.open {
        transform: translateZ(0);
    }
    .sp_trigger_nav ul {
        height: auto;
        margin: 0 0 40px;
        line-height: 1.6;
    }
    .sp_trigger_nav .sp_trigger_nav_inner li {
        margin: 0 0 5px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        text-align: center;
        font: 16px var(--font_en);
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner {
        border-bottom: none;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a {
        padding: 10px 0 10px 60px;
        color: var(--f_color);
    }
    .sp_h_nav_list a {
        color: var(--f_color);
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: var(--f_color);
    }
    .sp_trigger_nav li {
        border: none;
        text-align: center;
        margin: 10px 0 0 0;
    }
    .tel_container {
        padding: 30px 10px 10px;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        background: #f3f3f3;
    }
    .tel_container {
        line-height: 1.6;
    }
    .tel_container a {
        text-decoration: none;
        letter-spacing: 0.1em;
        font-size: 28px;
        color: #d61a2b;
        text-align: center;
        font-weight: bold;
        font-family: 'Oswald', sans-serif;
    }
    .tel_container_bottom {
        margin-top: 5px;
        font-size: 14px;
    }
    .tel_container i {
        margin-right: 5px;
        color: #d61a2b;
    }
    .sp_trigger_nav_bottom {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_trigger_nav_bottom a {
        background: #fbfbf8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
    }
    .sp_trigger_nav_bottom a i {
        color: var(--a_color);
    }
    .sp_trigger_nav_bottom img {
        max-width: 28px;
    }
    .sp_h_nav_list li a {
        text-decoration: none;
    }
    .sp_h_nav_list li:last-child {
        margin-top: 20px;
    }
    .sp_h_nav_list li:last-child a {
        font: bold 16px var(--font_ja);
        padding: 10px 20px;
        text-decoration: none;
        background: var(--m_color);
        color: var(--w_color);
        margin-top: 10px;
    }
    .sp_h_nav_list a i {
        margin-right: 5px;
        color: var(--w_color);
    }

    /*ハンバーガーメニューここまで*/
    /***************************/
}
@media only screen and (max-width: 768px) {
    :root {
        --main_mp: 60px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 60px;
    }
    .main_pa {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sp_none {
        display: none !important;
    }
    .main_wrap {
        margin-top: 0;
        position: static;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 10px 20px;
    }
/* ヘッダー画像 */
.main_image_wrap {
    max-width: 1920px;
}
.main_image_box {
    background-position: 40% 0%;
    background-size: cover;
    margin: 0 0 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 300px;
}
.main_image_box_inner {
    width: 100%;
    height: 300px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}
.header_text {
    margin-bottom: 0;
}
.top_header_text {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    padding: 0;
    transform: translate(0%,-50%);
    width: 100%;
    /* max-width: 640px; */
    width: clamp(220px, 35vw, 300px);
}
.top_header_text p {
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 26px) var(--font_ja);
    text-align: center;
}
.top_header_text_top {
    margin-bottom: 40px;
}
.top_header_text_bottom {
    margin-bottom: 100px;
}
.top_header_text_top p {
    font: bold clamp(48px, 8vw, 120px) var(--font_en);
    color: var(--m_color);
    letter-spacing: 0.6rem;
    line-height: 1.3;
}
.top_header_text_bottom p {
    font: bold clamp(24px, 4vw, 48px) var(--font_ja);
    line-height: 2.0;
    color: var(--f_color);
    letter-spacing: 0.2rem;
}
.header_cta {
    width: 100%;
}
.header_cta_box {
    max-width: 400px;
    margin: 0 auto;
}
.main_image_wrap p {
    margin-bottom: 5px;
    text-align: center;
}
.sp_header_cta {
    padding: 20px 20px;
    background: var(--a_color);
}
a.btn {
    padding: 10px 20px;
    width: 100%;
    max-width: 400px;
}
.dli-caret-circle-fill-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--w_color);
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-left: 20px;
}
.dli-caret-circle-fill-right::before {
    content: '';
    color: #ea5514;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.3em 0.2em;
    border-top-color: currentColor;
    border-bottom: 0;
    transform: translateY(10%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

    /*-------------------------------------
    見出し
    -------------------------------------*/
    .top_h2 {
        margin: 0 0 40px;
    }
    .top_h2 .data_text {
        margin-bottom: 10px;
    }
    .top_h2 h2:after {
        margin: 30px 0 0;
    }
    .top_h2_center .data_text,
    .top_h2_center h2 {
        text-align: center;
    }
    .top_h2_center h2:after {
        margin: 30px auto 0;
    }

/*-------------------------------------
TOP サービス
-------------------------------------*/
.trouble_image {
    max-width: 200px;
    margin: 0 auto;
}
.top_trouble_box {
    position: relative;
    padding: 20px 0;
    background: var(--m_color);
}
.top_trouble_box:after {
    border-style: solid;
    border-width: 40px 50px;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
.top_trouble_list {
    justify-content: center;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    gap: 20px 10px;
}
.top_trouble_list span {
    color: #ea5514;
}

.top_trouble_list li {
    padding: 25px 10px;
    position: relative;
    margin-right: 0;
    flex: none;
}
.top_trouble_list li:nth-of-type(1),
.top_trouble_list li:nth-of-type(3) {
    margin-top: 0px;
}
.top_trouble_list li:nth-of-type(2) {
    margin-bottom: 0px;
}

.top_trouble_list li:nth-of-type(3) {
    margin-top: 0px;
}
.top_trouble_list li::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 18px;
    background: var(--w_color);
    bottom: -18px;
    left: 0;
    right: 7px;
    border-right: 2px solid var(--f_color);
    transform: skew(-30deg);
    margin: auto;
    z-index: 1;
}
.top_trouble_list li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--a_color);
    top: 8px;
    left: 8px;
}
.top_trouble_list li:last-child {
    margin-right: 0;
}
.top_trouble_list li p {
    text-align: center;
    color: var(--f_color);
    font-size: clamp(14px, 2.2vw, 22px);
    line-height: 1.8;
    font-weight: normal;
    z-index: 3;
}
.top_trouble_list i {
    margin-bottom: 10px;
    color: var(--a_color);
    font-size: 40px;
}
.top_trouble_text {
    margin-bottom: 0;
}
.top_trouble_text span {
    color: var(--a_color);
}
.top_recommend_wrap {
    background: var(--b_color);
}
.top_recommend_inner {
    padding: 60px 20px var(--main_mp);
}
.top_recommend_inner h3 {
    margin-bottom: 0px;
    text-align: center;
}
.top_recommend_h3_top {
    display: block;
    font: bold clamp(18px, 3vw, 40px) var(--font_ja);
    width: 100%;
    color: var(--f_color);
}
.top_recommend_h3_bottom {
    display: block;
    font: bold clamp(18px, 3vw, 60px) var(--font_ja);
    color: var(--f_color);
}
.top_recommend_h3_bottom span {
    font: bold clamp(28px, 4vw, 60px) var(--font_ja);
    color: #ea5514;
}
.top_recommend_list {
    margin: 70px auto 0;
    display: flex;
    gap: 70px 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.top_recommend_list li {
    position: relative;
    background: var(--w_color);
    padding: 40px 20px 20px;
    min-width: auto;
    width: 100%;
}
.top_recommend_list li:last-child {
    margin-right: 0;
}
.top_recommend_title {
    margin-bottom: 20px;
    font: bold clamp(18px, 3vw, 24px) var(--font_ja);
    text-align: center;
    color: var(--f_color);
}
.top_recommend_list li p {
    color: var(--f_color);
}
.top_recommend_number {
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: var(--m_color);
    background: linear-gradient(to right, var(--a_color) 0%, var(--a_color) 50%, #ffe81d 50%, #ffe81d 100%);
    border: solid 1px var(--f_color);
    color: var(--w_color);
    border-radius: 50%;
    transform: rotate(20deg);
    margin: -90px auto 10px;
}
.top_recommend_number p {
	width: 100px;
    transform: rotate(-20deg);
}
.top_recommend_text span {
    color: #ea5514;
}

    /*-------------------------------------
    TOP ご利用の流れ
    -------------------------------------*/
    .top_flow_wrap {
        padding: var(--main_mp) 20px;
    }
    .top_flow_h2 {
        padding: 20px 20px;
    }
    .top_flow_number {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
    }
    .top_flow_number p {
        width: 100px;
        transform: rotate(-20deg);
        text-align: center;
    }
    .top_flow_list {
        padding: 20px;
    }
    .top_flow_list li {
        margin-bottom: 50px;
        padding: 20px;
        display: block;
    }
    .top_flow_list li::before {
        bottom: -35px;
        left: 50%;
        margin-left: -20px;
        border-width: 20px 20px 0 20px;
    }
    .top_flow_list li:last-child {
        margin-bottom: 0;
    }
    .top_flow_list li:last-child::before {
        display: none;
    }
    .flow_box {
        margin-left: 0;
    }
    .flow_image {
        width: 20%;
    }
    .top_flow_text {
        width: 72%;
    }
    .top_flow_title {
        margin-bottom: 10px;
    }
    .top_flow_image img {
        display: block;
        width: 100%;
        height: 140px;
    }
    .top_flow_contact {
        margin-top: 20px;
    }
    a.top_flow_btn {
        padding: 15px 20px;
        max-width: 360px;
        border: 3px solid #e04502;
    }
    .dli-caret-circle-fill-right {
        width: 0.8em;
        height: 0.8em;
        margin-left: 20px;
    }

    /*-------------------------------------
    TOP フリーローン
    -------------------------------------*/
    .freeloan_wrap {
        padding-bottom: 60px;
    }
    .freeloan_inner {
        margin: 0 auto;
    }
    .freeloan_inner h3 {
        margin-bottom: 10px;
    }
    .top_freeloan_h2 {
        margin-bottom: 40px;
        padding: 20px 20px;
    }

    /* テーブル表 */
    .item_box {
        margin: 0 auto 30px;
    }
    .item_table th,
    .item_table td {
        padding: 10px 8px;
    }
    .pay_table th,
    .pay_table td {
        padding: 5px 2px;
    }
    .pay_table {
        margin: 0 auto 20px;
    }
    .pay_table th:first-child,
    .pay_table td:first-child {
        width: 12%;
    }

    .contact_wrap {
        margin-bottom: 50px;
    }

}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 50px;
        --m_ps3: 20px;
        --m_ps5: 30px;
        --m_ps8: 50px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    .h1,
    body:not(.home):not(.single) h1 {
        font-size: 25px;
        padding: 0 30px;
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: 20px;
    }
    body:not(.home) h1:before {
        font-size: 23px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }
    h2:before {
        font-size: 45px;
        top: -70px;
    }
    .top_h2 h2 {
        margin-bottom: 30px;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }

    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner a {
        flex-flow: column;
        padding: 0 20px;
    }
    .common_cta_inner img {
        width: 40px;
        margin-bottom: 10px;
        margin-right: 0;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .menu-trigger {
        top: 10px;
        right: 10px;
    }

    /*-------------------------------------
    TOP ご利用の流れ
    -------------------------------------*/
    .top_flow_wrap {
        padding: var(--main_mp) 20px;
    }
    .top_flow_h2 {
        padding: 20px 20px;
    }
    .top_flow_number {
        margin: 0 auto 20px;
    }
    .top_flow_list {
        padding: 20px;
    }
    .top_flow_list li {
        margin-bottom: 50px;
        padding: 20px;
        display: block;
    }
    .top_flow_list li::before {
        bottom: -35px;
        left: 50%;
        margin-left: -20px;
        border-width: 20px 20px 0 20px;
    }
    .flow_box {
        display: block;
    }
    .top_flow_image {
        width: 100%;
    }
    .top_flow_text {
        width: 100%;
    }
    .top_flow_title {
        margin-bottom: 10px;
    }
    .top_flow_image img {
        display: block;
        width: 100%;
        height: 140px;
        margin: 0 auto 20px;
    }
    .top_flow_contact {
        margin-top: 20px;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_right_box.flex {
        display: flex !important;
        border-bottom: none !important;
        padding: 0 !important;
    }
    .wpcf7_right.flex {
        border-bottom: none !important;
        padding: 0 !important;
    }
    .wpcf7_right_box {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .wpcf7_right_box:last-child {
        margin-bottom: 0;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
    }
    .wpcf7_right {
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    #wpcf7cpcnf table tr:first-child {
        border-top: none;
    }
    #wpcf7cpcnf table th,
    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
        padding: 10px;
        border: none;
    }
    #wpcf7cpcnf table th {
        margin-bottom: 5px;
    }
    #wpcf7cpcnf table td {
        margin-bottom: 10px;
    }

.wpcf7_right_box  {
    max-width: 200px;
}

    /*-------------------------------------
    フッター部分
    -------------------------------------*/
    .footer {
        padding: 40px 20px 20px;
    }
    .footer_inner {
        display: block;
    }
    .footer_logo {
        max-width: 110px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1002;
        background: var(--a_color);
    }
    .sp_bar li {
        width: calc(100% / 2);
        padding: 5px 0;
    }
    .sp_bar a {
        color: var(--w_color);
        padding: 0 10px;
        display: block;
        font-size: 0.6875rem;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        text-decoration: none;
    }
    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }

.footer_company_text {
    text-align: center;
}

    /* フッター追従 */
.cta_bar {
    padding: 10px 10px;
}
.cta_bar_box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
    align-items: flex-end;
}
.cta_bar_box div {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: var(--w_color);
}
.cta_bar_box p {
    margin-bottom: 2px;
}

.header_text_bottom {
    margin-top: 5px;
}
}