@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;
}

/* ロレシー Header用 */
.l-header__inner.l-container {
	padding-top: 30px;
	justify-content: space-between;
	letter-spacing: 0.05em;
}
.header-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: #e6e6e6;
	padding: 0 8px;
	height: 30px;
	line-height: 30px;
	font-size: 10px;
}
.header-top .flexb {
	display: flex;
	justify-content: space-between;
}
.hcenter-right.flexb,
.l-header__inner.l-container .flex {
	display: flex;
}
.l-header__inner.l-container .l-header__logo,
.l-header__inner.l-container .w-header.pc_ {
	width: auto;
}
.l-header__inner.l-container .w-header.pc_ {
	margin: 0;
}
.l-header__inner.l-container .l-header__logo {
	display: flex;
	align-items: center;
	width: 90%;
}
.l-header__inner.l-container .l-header__logo a {
	padding: 0;
}
.l-header__customBtn.sp_ {
	display: none !important;
}
.c-headLogo.-img {
	width: 100%;
}
.hcr-right a {
	display: block;
	padding: 32px 60px 32px 40px;
	background: #b18045;
	color: #fff;
}
.hcr-right-in {
	position: relative;
	padding-left: 40px;
	letter-spacing: 0.05em;
}
.hcr-right-in:before {
	content: "";
	display: block;
	width: 30px;
	height: 19px;
	background: url(/upload/tenant_1/cc4cd4d10d34696545474d38c1ca58a3.png) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}
.hcr-left {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-right: 20px;
	letter-spacing: 0.05em;
}
.hcr-left .txt {
	font-size: 12px;
	letter-spacing: 0.05em;
	margin-bottom: 0.05em;
	line-height: 200%;
}
.hcr-left .flex {
	display: flex;
	text-align: center;
	align-items: center;
	margin-top: 5px;
	font-size: 16px;
	justify-content: center;
}
.htel2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	padding: 5px 13px 0 0;
	margin-right: 15px;
}
.htel2 a {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	color: #b18045;
	font-size: 32px;
	font-weight: 400;
	padding-left: 34px;
	position: relative;
}
.htel2 a:before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url(/upload/tenant_1/c65dc06dee5d1f6564f3dd48122ae99c.png) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.htel2:after {
	content: "";
	font-size: 32px;
	width: 1px;
	height: 30px;
	display: inline;
	position: absolute;
	top: 0;
	right: 0;
	background: #dddddd;
}
.hline .icon {
	display: block;
	max-width: 30px;
}
.htop-nav li a {
	position: relative;
	padding-left: 20px;
	font-size: 12px;
	color: inherit;
}
.htop-nav li a:before {
	content: "|";
	position: absolute;
	top: 0;
	left: 6px;
	font-size: 14px;
	line-height: 140%;
}
.htop-nav :first-child a:before {
	display: none;
}
@media (min-width: 960px) {
	.l-header__inner.l-container {
		padding-top: 32px;
		letter-spacing: 0.1em;
	}
	.l-header__inner.l-container .l-header__logo {
		margin-left: 60px;
		max-width: 50%;
		width: 420px;
	}
	.header-top {
		height: 32px;
		line-height: 32px;
		padding: 0 60px;
		font-size: 12px;
	}
	.l-fixHeader__logo,
	.l-fixHeader__gnav .c-gnav .tb_on,
	#gnav .c-gnav .tb_on {
		display: none;
	}
	#gnav {
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
	.l-fixHeader__inner.l-container {
		max-width: 100%;
	}
	.l-fixHeader__gnav.c-gnavWrap {
		margin: auto !important;
	}
	.l-fixHeader__gnav .c-gnav li,
	#gnav .c-gnav li {
		border-right: 1px solid #ddd;
	}
	.l-fixHeader__gnav .c-gnav li a,
	#gnav .c-gnav li a {
		padding: 19px 16px;
		margin: 0;
		font-size: 16px;
		line-height: 1.6em;
		color: #000;
		height: auto !important;
		letter-spacing: 0.1em;
	}
}
@media (max-width: 960px) {
	.l-header__inner.l-container .w-header.pc_ {
		display: block !important;
	}
	.p-spMenu__body .c-widget__title.-spmenu,
	.l-header__inner.l-container .w-header.pc_ .htop-right,
	.l-header__inner.l-container .w-header.pc_ .hcenter-right.flexb {
		display: none !important;
	}
	.p-spMenu__closeBtn,
	.l-header__menuBtn.sp_ {
		transform: scale(1.2,1.2);
		position: fixed;
		right: 0;
		top: 4px;
	}
	.p-spMenu__closeBtn {
		transform: scale(1.4,1.4);
		font-weight: bold;
	}
	body.customize-support .l-header__menuBtn.sp_ {
		top: 50px;
	}
	.c-spnav a {
		border-bottom: 0;
		padding-right: 0;
		font-size: 14px;
		line-height: 1.5em;
		letter-spacing: 0.05em;
	}
	.c-gnav .sub-menu a:before, .c-listMenu a:before {
		content: "";
		display: none;
	}
	.p-spMenu__nav {
		margin-top: 0;
	}
}
.m1200.flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1.8em;
	color: #555;
	letter-spacing: 0;
}
.m1200.flex > div {
	width: 17%;
}
.footer-list01 {
	font-size: 15px;
	line-height: 1.8em;
	color: #000;
}
.m1200.flex .footer-list01 a {
	color: #000;
}
.footer-list02 {
	padding-left: 10px;
	font-size: 13.5px;
	line-height: 1.8em;
}
.footer-list01 li,
.footer-list02 li {
	margin-bottom: 3px;
}
.w-beforeFooter .l-container {
	max-width: 1250px;
}
.m1200.flex > div.footer-listarea03.flex {
	width: 32%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.m1200.flex > div.footer-listarea03.flex > ul {
	width: 48%;
}
.m1200.flex a {
	color: #555;
}
.m1200.flex > div.footer-listarea03.flex h3.w100 {
	width: 100%;
}
.m1200.flex h3 {
	text-align: center;
}
.gototop.w100 {
	position: relative;
	left: calc(50% - 50vw + var(--swl-scrollbar_width, 0px) / 2);
	width: calc(100vw - var(--swl-scrollbar_width, 0px));
	--swl-fw_inner_pad: var(--swl-pad_post_content, 0px);
}
.gototop a {
	background: #b18045;
	display: block;
	padding: 18px;
	text-align: center;
}
.copyright {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	letter-spacing: 0.1em;
}
@media (max-width: 960px) {
	.m1200.flex > div {
		width: 50%;
		margin-top: 20px;
	}
	.m1200.flex > div.footer-listarea03.flex {
		width: 100%;
	}
	.footer-list01 {
		font-size: 14px;
	}
	.footer-list02 {
		font-size: 12px;
	}
	.gototop a {
		padding: 8px;
	}
	.gototop a img {
		width: 30px;
	}
}
#footer {
	z-index: 2;
}
[data-element-id].spfixbtn {
	display: block;
	position: relative;
}
.spfixbtn {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	right: 0;
	background: #493f3c;
	padding: 5px 10px;
	z-index: 150;
	text-align: center;
}
.spfixbtn .flexb{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 5px;
}
.spfixbtn .tel {
	width:40%;
	align-self: center;
}
.spfixbtn .tel span {
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 600;
	position: relative;
	text-align: center;
	font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝, serif;
} 
.spfixbtn .contactbtn {
	width: 30%;
}
.spfixbtn .tel:before {
	display: inline-block;
	margin-right: 10px;
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	margin-right: auto;
	margin-left: auto;
	background: url(/import/tenant_1/160.16.121.28/html/images/01index/img45.png) center center no-repeat;
	background-size: contain;
	margin-bottom: 2px;

}
.spfixbtn .contactbtn a {
	background: #b18045;
	color: #fff !important;
	display: block;
	font-size: 12px;
	line-height: 2.4em;
	font-weight: bold;
	text-align: center;
	padding: 2px 10px;
	overflow: hidden;
	height: 100%;
}
.spfixbtn .contactbtn a:before {
	display: block;
	display: inline-block;
	margin-right: 10px;
	content: "";
	display: block;
	margin-right: auto;
	margin-left: auto;
	width: 18px;
	height: 14px;
	background: url(/import/tenant_1/160.16.121.28/html/images/01index/img00.png) center center no-repeat;
	background-size: contain;
}
.spfixbtn .linebtn{
	width: 28%;
}
.spfixbtn .linebtn a{
	/* background: #02b902; */
	background: #ea9999;
	display: block;
	padding: 0 0 2px;
	color: #fff !important;
	line-height: 1.2em;
	/* height: 93%; */
}
.spfixbtn .linebtn a img{
	width: 20px;
	margin: auto auto;
	display: block;
	padding: 4px 0 0;
}
.l-container.w-footer,
.l-footer__widgetArea {
	height: 0 !important;
	box-sizing: border-box;
	padding: 0;
}
.c-categoryList__separation:after, .p-breadcrumb__item:after {
	position: relative;
	width: 18px;
	height: 14px;
	color: #000;
	top: 1px !important;
}
@media only screen and (max-width: 960px) {
	.spfixbtn {
		display: block;
	}
	#body_wrap {
		padding-bottom: 52px;
	}
	.c-categoryList__separation:after, .p-breadcrumb__item:after {
		width: 16px;
		height: 12px;
	}
}
@media only screen and (max-width:400px) {
	.spfixbtn .tel a{
		font-size: 12px;
	}
	.spfixbtn .contactbtn a{
		font-size: 10px;
	}
	.spfixbtn .linebtn a img {
		width: 18px;
		padding: 3px 0 0;
	}
}


/* メインビジュアル TEXT */
.p-mainVisual__slideTitle {
	position: relative;
	text-align: left;
}
.p-mainVisual__slideTitle .sub-tit {
	color: #df5075;
	position: relative;
	left: 80px;
	top: -20px;
	font-family: 'Tangerine', cursive;
	font-size: calc(32px + ((1vw - 10px) * 1.6));
	transform: rotate(-15deg) translate(-50px, 0px);
	display: inline-block;
	letter-spacing: 0.1em;
}
.p-mainVisual__slideTitle:before {
	content: "";
	display: block;
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
	transform: translateY(-50%);
}
.p-mainVisual__slideTitle .jp {
	font-size: calc(30px + ((1vw - 10px) * 1.6));
	color: rgba(60, 46, 29, 255);
	position: relative;
	left: 60px;
	top: -20px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	font-weight: 400;
	display: block;
}
@media only screen and (max-width: 960px) {
	.p-mainVisual__slideTitle:before {
		width: 60px;
		height: 60px;
		left: 20px;
	}
}

/* 投稿記事でのパンくず内の記事タイトル表示 */
.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;
	opacity: 1 !important;
}
.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-size: 14px;
	white-space: wrap;
}
@media (min-width: 768px) {
	.single .p-breadcrumb .p-breadcrumb__list,
	.p-breadcrumb .p-breadcrumb__list {
		font-size: 15px;
	}
}