@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*テーブル開閉のボタン*/
.wp-block-lazyblock-tableac2 .table-open {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 8px 25px 8px 13px;
    border: 1px solid #ccc;
    background: #f1e767;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
    -webkit-box-shadow: inset 1px 1px 1px #fff;
    box-shadow: inset 1px 1px 1px #fff;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.8em;
}

.wp-block-lazyblock-tableac2 .table-open::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
    transition: all 0.5s;
}


.wp-block-lazyblock-tableac2 .table-open.on:after {
    transform: translateY(1px) rotate(315deg);
}

/* リッチリスト */
dl.rich_list {
	margin: 20px 0;
	padding: 0;
}
dl.rich_list dt {
	position: relative;
	background: var(--color_main);
	padding: 12px 15px 10px;
	margin: 0 0 10px;
	border: 0 !important;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	border-radius: 7px;
}
dl.rich_list dt:before {
	content: "";
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 12px 7px 0;
	border-color: var(--color_main) transparent transparent;
	left: 50px;
	bottom: -12px;
}
dl.rich_list dt[style]:before {
	background: inherit;
	border-color: transparent #fff #fff;
}
dl.rich_list dd {
	padding: 0;
	margin: 0 0 15px !important;
	border: 0 !important;
	line-height: 1.5em;
}
.post_content dl.rich_list dd .h5,
dl.rich_list dd .h5 {
	margin: 0 0 5px !important;
	padding: 3px 0 2px 30px;
	position: relative;
	border: 0 !important;
	background-size: 28px 28px !important;
	font-weight: bold;
	line-height: 1.2em;
	color: #030 !important;
}
dl.rich_list dd .h5:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    box-sizing: border-box;
    background:
        linear-gradient(-55deg, transparent 44%, #d22 46%, #d22 58%, transparent 60%),
        linear-gradient(45deg, transparent 33%, #d22 35%, #d22 47%, transparent 49%);
    background-repeat: no-repeat;
    background-position: 4px 2px, 1px 8px;
    background-size: 100% 100%;
    border-radius: 2px;
}
dl.rich_list dd p br:first-child,
dl.rich_list dd .h5+br {
	display: none;
}
dl.rich_list dd .h5 b {
	color: #e22;
}
dl.rich_list dd p {
	margin: 0 0 0 20px !important;
	padding: 0;
	line-height: inherit;
}
.article-body dl.rich_list dd ul li {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1.3em !important;
}
.article-body dl.rich_list dd ul li:before {
	background: #a8a8f4;
	top: 5px;
}
@media (max-width: 600px) {
	dl.rich_list dt {
		padding: 10px 12px 8px;
	}
}
/* リッチリスト拡張（開閉付き：2024/10/18）＋ 開閉ブロックinブロック（2024/11/12） */
.openclose-inblock > .lazyblock-inner-blocks,
.rich_list_close dl.rich_list {
    margin-bottom: 0;
    padding-bottom: 0;
}
.openclose-inblock,
.rich_list_close {
    margin-bottom: 20px;
    position: relative;
}
.openclose-inblock > .lazyblock-inner-blocks > *:nth-child(n+2),
.rich_list_close dl.rich_list dt:nth-of-type(n+2),
.rich_list_close dl.rich_list dd:nth-of-type(n+2) {
    max-height: 1500px;
    transition: all 0.7s ease-in-out;
}
.openclose-inblock:has(input:checked) > .lazyblock-inner-blocks > *:not(:last-child) {
    margin-bottom: 30px;
}
.openclose-inblock:has(input:not(:checked)) > .lazyblock-inner-blocks > *:nth-child(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dt:nth-of-type(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dd:nth-of-type(n+2) {
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding-top: 0;
    padding-bottom: 0 !important;
    max-height: 0;
    transition: all 0.2s ease-in-out;
}
.openclose-inblock input,
.rich_list_close input {
    display: none;
}
.openclose-inblock:has(input:not(:checked)) label:before,
.rich_list_close:has(input:not(:checked)) label:before {
    content: attr(data-text-open);
}
.openclose-inblock:has(input:checked) label:before,
.rich_list_close:has(input:checked) label:before {
    content: attr(data-text-close);
}
.openclose-inblock label,
.rich_list_close label {
    position: relative;
    display: block;
    margin: auto;
    width: fit-content;
    background: var(--color_main);
    color: var(--color_bg);
    padding: 5px 20px;
    border-radius: 40px;
    box-shadow: rgba(0,0,0,0.5) 2px 2px 5px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.5s linear;
    font-size: 90%;
    line-height: 1.2em;
    z-index: 2;
}
.openclose-inblock label:hover,
.rich_list_close label:hover {
    filter: brightness(1.1);
    left: -1px;
    top: -1px;
    box-shadow: rgba(0,0,0,0.5) 3px 3px 5px;
    transition: all 0.2s linear;
}
.openclose-inblock:after,
.rich_list_close:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
}
.openclose-inblock:has(input:checked):after,
.rich_list_close:has(input:checked):after {
    display: none;
}
.rich_list ul:not([class]) li,
ul[class="wp-block-list"] li,
.cap_box_content ul:not([class]) li {
    list-style: disc;
}
.rich_list dd ul {
    margin-left: 15px;
}


/* サイドバナー */

aside.l-sidebar .side-banner {
	padding: 10px !important;
	margin-top: 20px;
	background: #c2ebcc !important;
	box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 5px;
	border-radius: 12px;
	text-align: center;
}

aside.l-sidebar .side-banner .widget_recent_entries {
	border-radius: 10px 10px 0 0;
}

aside.l-sidebar .side-banner ul li a {
	line-height: 1.4em;
	padding-top: 4px;
	padding-bottom: 4px;
}

aside.l-sidebar .btnlinks,
aside.l-sidebar .lefter {
	background: #fff;
	border: #dfdfdf;
	padding: 0 10px 10px;
	margin-bottom: 20px;
}

aside.l-sidebar .btnlinks {
	overflow: hidden;
	margin: 0 0 20px;
	padding: 10px;
}

aside.l-sidebar .btnlinks .btnlinks_bigs {
	margin-bottom: 20px;
}

aside.l-sidebar .lefter h2 {
	background: transparent;
	font-size: 16px;
	line-height: 1.5em;
	color: #666666;
	text-align: center;
	margin: 0;
}

.clrfx {
	clear: both;
}

aside.l-sidebar .btnlinks_half,
aside.l-sidebar .lefter .side_l {
	width: 50%;
	float: left;
	margin: 0 0 6px;
	padding: 0 5px 0 0;
}

aside.l-sidebar .lefter .side_r {
	width: 50%;
	float: right;
	margin: 0;
	padding: 0 0 0 3px;
}

aside.l-sidebar .lefter .recs {
	position: relative;
	margin: 0;
	padding: 10px 0 0;
}

aside.l-sidebar .lefter p {
	margin: 0;
}

aside.l-sidebar .lefter .recs:after {
	content: "";
	display: block;
	clear: both;
	border-top: 1px solid #d2d2d2;
	height: 5px;
	margin: 7px 0 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

aside.l-sidebar .lefter .recs:last-child:after {
	display: none;
}

@media only screen and (min-width: 768px) {
	aside.l-sidebar .btnlinks {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	aside.l-sidebar .lefter {
		display: none;
	}

	.keni-sub .side-banner {
		margin: 20px 10px;
	}
}
.w-footer__box .swell-block-columns__inner,
.w-footer__box .swell-block-columns__inner .swell-block-column {
	margin-left: 0;
}
.w-footer__box .swell-block-columns__inner {
	gap: 0 1em;
	justify-content: space-between;
}
@media only screen and (min-width: 768px) {
	.w-footer__box .swell-block-columns__inner .swell-block-column {
		white-space: nowrap !important;
	}
}

/* 投稿記事でのパンくず内の記事タイトル表示 */
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text {
    display: inline !important;
    white-space: wrap;
}
.single .p-breadcrumb__item:after,
.p-breadcrumb__item:after {
    display: inline-block;
    margin: 0 8px;
}
.single .p-breadcrumb .p-breadcrumb__list,
.p-breadcrumb .p-breadcrumb__list {
    display: block !important;
    width: auto !important;
	font-weight: bold;
    font-size: 14px;
    white-space: wrap;
}
.p-breadcrumb__item:last-child span {
    opacity: 1 !important;
	color: #048b3f;
}
@media (min-width: 768px) {
    .single .p-breadcrumb .p-breadcrumb__list,
    .p-breadcrumb .p-breadcrumb__list {
        font-size: 16px;
    }
}



/* ■■■■■ 貸付条件 .loan-conditions-box ■■■■■ */
.loan-conditions-box {
	margin: 20px 0;
	font-size: 11px;
	line-height: 1.4em;
}

.loan-conditions-box label {
	position: relative;
	display: block;
	font-weight: bold;
	font-size: 120%;
	line-height: 1.4em;
	cursor: pointer;
}

.loan-conditions-box label:before {
	content: "▼貸付条件";
}

.loan-conditions-box label:has(input:checked):before {
	content: "▲貸付条件";
}

.loan-conditions-box label input {
	display: none;
}

.loan-conditions-box > div {
	max-height: 0;
	margin: 0;
	padding: 0 10px;
	overflow: hidden;
	opacity: 0;
	border: 0;
	transition: all 0.3s linear;
}

.loan-conditions-box:has(input:checked) > div {
	max-height: 1400px;
	padding: 10px;
	opacity: 1;
	transition: all 0.3s linear;
	border: 1px solid #ccc;
}

.loan-conditions-box > div > div:before {
	background: #999;
	display: block;
	width: fit-content;
	padding: 5px 10px;
	color: #fff;
}

.loan-conditions-box > div > div:after {
	display: block;
	margin: 10px 0;
	white-space: pre-wrap;
}

.loan-conditions-box > div > div.aiful:before {
	content: "▼アイフル 貸付条件";
}
.loan-conditions-box > div > div.aiful:after {
	content: "商号：アイフル株式会社\A登録番号：近畿財務局長(14)第00218号\A貸付利率：3.0%～18.0%（実質年率）\A遅延損害金：20.0％（実質年率）\A契約限度額または貸付金額：800万円以内(要審査)\A返済方式：借入後残高スライド元利定額リボルビング返済方式\A返済期間・回数：借入直後最長14年6ヶ月（1～151回）\A担保・連帯保証人：不要";
}
.loan-conditions-box > div > div.lake:before {
	content: "▼レイク 貸付条件";
}
.loan-conditions-box > div > div.lake:after {
	content: "【貸付条件】\A貸金業者の商号：新生フィナンシャル株式会社\A関東財務局番号・登録番号：関東財務局長(11) 第01024号\A協会員番号：日本貸金業協会会員第000003号 \A貸付利率：年率4.5％～18.0％\A※貸付利率はご契約額およびご利用残高に応じて異なります。\A返済方式：残高スライドリボルビング方式・元利定額リボルビング方式\A返済期間・返済回数：最長5年・最大60回\A※融資枠の範囲内での追加借入や繰上返済により、返済期間・回数は変動します。\A遅延損害金（年率）：20.0％\A担保の有無：不要\A【無利息】\A・初回契約日の翌日から無利息\A・お借入れ額5万円まで180日間無利息\A・無利息期間経過後は通常金利適用\A・30日間無利息、60日間無利息（Webでのお申込み限定）、180日間無利息の併用はできません\A・60日間無利息（Webでのお申込み限定）・180日間無利息はご契約額が1~200万円の方が対象です\A・ご契約額が200万以上の方は30日間無利息のみ利用可能です";
	content: "【無利息】\A・初回契約日の翌日から無利息\A・お借入れ額5万円まで180日間無利息\A・無利息期間経過後は通常金利適用\A・30日間無利息、60日間無利息（Webでのお申込み限定）、180日間無利息の併用はできません\A・60日間無利息（Webでのお申込み限定）\A・180日間無利息はご契約額が1～200万円の方が対象です\A・ご契約額が200万以上の方は30日間無利息のみ利用可能です";
	content: "【無利息】\A・365日間無利息\A※初めてのご契約\A※Webでお申込み・ご契約、ご契約額が50万円以上でご契約後59日以内に収入証明書類の提出とレイクでの登録が完了の方\A\A・60日間無利息\A※初めてのご契約\A※Webお申込み、ご契約額が50万円未満の方\A\A・無利息期間経過後は通常金利適用\A・初回契約翌日から無利息適用\A・他の無利息商品との併用不可";
}
.loan-conditions-box > div > div.lake-plus:before {
	background: transparent;
	display: block;
	padding: 0;
	margin: 0;
	color: inherit;
	content: "【貸付条件】";
}
.loan-conditions-box > div > div.lake-plus {
	margin-top: 10px;
}
.loan-conditions-box > div > div.lake-plus:after {
	display: none;
}
.loan-conditions-box > div > div.lake-plus > a:before {
	content: "・貸付条件はこちら";
}
