@charset "utf-8";

/* 20230520 added by Fabo */
.mb55 { margin-bottom: 55px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb65 { margin-bottom: 65px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb75 { margin-bottom: 75px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb85 { margin-bottom: 85px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb95 { margin-bottom: 95px !important; }
.mb100 { margin-bottom: 100px !important; }

.fs12 { font-size: 12px; }
.fs13 { font-size: 13px; }
.fs14 { font-size: 14px; }
.fs15 { font-size: 15px; }
.fs16 { font-size: 16px; }
.fs17 { font-size: 17px; }
.fs18 { font-size: 18px; }
.fs19 { font-size: 19px; }
.fs20 { font-size: 20px; }

.entry-content .row {
	margin-left: -10px;
	margin-right: -10px;
}
.entry-content .row > div {
	margin-bottom: 20px;
	padding: 0 10px;
}
.term-contact .entry-content .row {
	margin: 0;
}
.term-contact .entry-content .row > div {
	margin: 0;
	padding: 0;
}

.entry-content .template-text :first-child {
	margin-top: 0;
}

.entry-content .template-img-right {
	margin-left: 30px;
}
.entry-content .template-img-left {
	margin-right: 30px;
}

.table-bordered th,
.table-bordered td {
	padding: 12px 15px;
	border: 1px solid #ddd;
}
.table-bordered th {
	background: #fdf7f1;
	width: 25%;
}

.strong {
	color: #fa988f;
}

.entry-content ol li {
	margin: 0 0 20px 15px;
	list-style: decimal-leading-zero;
}

.contents-colorbox {
	margin-bottom: 30px;
	padding: 25px;
	background: #f7f7f7;
	border-radius: 7px;
}
.contents-colorbox :first-child {
	margin-top: 0 !important;
}
.contents-colorbox :last-child {
	margin-bottom: 0 !important;
}

.contents-flowbox-group {
	margin: 40px 0 50px;
}
.contents-flowbox {
	position: relative;
	padding: 0 0 45px 35px;
}
.contents-flowbox:last-child {
	padding-bottom: 0;
}
.contents-flowbox::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 6px;
	width: 2px;
	background: #fa988f;
}
.contents-flowbox::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 12px;
	z-index: 10;
	background: #fa988f;
	border-radius: 50%;
}
.contents-flowbox .template {
	margin-bottom: 0;
}
.contents-flowbox .template-img-right {
	margin: 0 0 0 25px;
	text-align: center;
}
.contents-flowbox h4 {
	margin-bottom: 10px;
	padding: 0 !important;
	line-height: 1.6;
	font-size: 19px;
	border: none !important;
	background: none;
}
.contents-flowbox h4:before {
	display: none;
}

.list-check li {
	position: relative;
	margin: 0 0 10px 0 !important;
	padding-left: 25px;
	list-style: none !important;
	line-height: 1.8;
}
.list-check li:before {
	content: "\f00c";
	position: absolute;
	top: 0;
	left: 0;
	color: #fa988f;
	font-family: "Font Awesome 5 Free";
 	font-weight: 900;
	font-size: 15px;
	line-height: 1.8;
}
.list-check li:last-child {
	margin-bottom: 0 !important;
}

.entry-btn {
	margin-top: 30px;
	text-align: center;
}
.entry-btn a {
	display: inline-block;
	width: 300px;
	height: 60px;
	line-height: 60px;
	border-radius: 30px;
	background: #fd8e85;
	color: #fff;
	font-weight: bold;
	text-decoration: none !important;
}

/* 家具販売(間仕切り２段ベッド) */
.term-sell .entry-content {
	font-size: 16px;
}

/* 20230606 added by morishita */
.drawer-btn{
	background:#f18c84 !important;
}
.footer-fix {
    background: #ffbac2 !important;
}

/* ======================================
2023/06/09 added by toh
======================================== */

/*==========
CONTENTS WORKS ID:1501
==========*/
/*config*/
:root {
    --timeline-color:#FA978F;  /*タイムラインの色*/
    --timeline-circle-title:22px; /*見出しの文字サイズ*/
    --timeline-circle-size:70px; /*サークルのサイズ*/
    --timeline-circle-font:40px; /*サークルの文字サイズ*/
}
/*css*/
.template-timeline{
    counter-reset: number;
    margin-bottom: 30px;
}
.template-timeline-once{
    position: relative;
    min-height: 100px;
}
.template-timeline-once::before{
    counter-increment: number;
    content:counter(number);
    position: absolute;
    top:0;
    left:0;
    width:var(--timeline-circle-size);
    line-height:var(--timeline-circle-size);
    height:var(--timeline-circle-size);
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: var(--timeline-color);
    color: #fff;
    font-size: var(--timeline-circle-font);
    z-index:2;
}
.template-timeline-once::after{
    position: absolute;
    content:"";
    top:calc(var(--timeline-circle-size)/2);
    left:calc(var(--timeline-circle-size)/2);
    width:2px;
    height:100%;
    display: inline-block;
    background: var(--timeline-color);
    z-index:1;
}
.template-timeline-once:last-of-type::after{
    display: none;
}
.template-timeline-text{
    margin-left:calc(var(--timeline-circle-size) + 20px);
    flex-wrap: wrap;
}
.template-timeline-title{
    margin:1em 0;
    font-size: var(--timeline-circle-title);
    color:var(--timeline-color);
}

/* 20230626 added by kito */
.template.template-backpattern02 {
    border: solid 2px rgb(253 213 173);
    color: #FA978F;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
    padding: 15px;
    font-size: 18px;
}