﻿@charset "utf-8";
html{}
body {
	width:100%;
	box-sizing:border-box;
	padding:0;
	margin:0;
	font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Helvetica', 'Arial', sans-serif;
}
ul, li{
	list-style:none;
	padding:0;
	margin:0;
}
i{
	font-style:normal;
}
img{
	max-width:100%;
	vertical-align:bottom;
}
a{
	color:#000;
	text-decoration:none;
}
h2.heading{
	opacity:0;
	position: relative;
	line-height: 1;
	font-family: 'Noto Serif JP', sans-serif;
	font-size:48px;
	font-size:4.8rem;
	text-align: center;
}
h2 span.sub{
	display: block;
	margin-top: 2rem;
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
}
body.home h2.heading.ac-now{
	animation-name:slideTextleft;
	animation-iteration-count:1;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	animation-timing-function:linear;
}
@keyframes slideTextleft {
		0% {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
		}
		100% {
		clip-path: inset(0);
		opacity: 1;
		}
}

.button{
	font-family: 'Noto Serif JP', sans-serif;
	position: relative;
	color: #fff;
	padding: 18px 40px;
	background: #000000;
	margin: 0 auto;
	display: block;
	text-align: center;
	width: 30%;
	line-height: 1;
	font-size: 30px;
	font-size: 3.0rem;
  overflow: hidden;
  z-index: 1;
}
.button::after{
	background: #353535;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.button span{
	position: relative;
}
.button span::before {
	content: "";
	position: absolute;
	right: -10rem;
	display: inline-block;
	width: 74px;
	height: 2px;
	margin-top: 20px;
	border-radius: 9999px;
	background-color: #fff;
}
.button span::after {
	content: "";
	position: absolute;
	top: calc(36% - 2px);
	right: -105px;
	width: 16px;
	height: 2px;
	border-radius: 9999px;
	background-color: #fff;
	transform: rotate(45deg);
	transform-origin: calc(45% - 10px) 50%;
}
@media (hover: hover) and (pointer: fine) {
	.button:hover {
		color: #fff;
	}
	.button:hover::after {
		transform: scale(1, 1);
	}
}



.button:hover {
	color: #fff;
}
.button:hover::after {
	transform: scale(1, 1);
}
.button_box{
	margin-top: 8rem;
}
.pc-block{
	display: block;
}
.sp-block{
	display: none;
}
.page-top{
	position: fixed;
	right: -20px;
	bottom: 90px;
	height: 50px;
	text-decoration: none;
	font-weight: bold;
	transform: rotate(90deg);
	font-size: 24px;
	line-height: 1.5rem;
	color: #737373;
	padding: 14px 20px 0 70px;
	border-top: solid 1px;
	z-index: 10;
	letter-spacing: 4px;
}
.page-top::before{
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 15px;
	border-top: solid 1px;
	transform: rotate(35deg);
	transform-origin: left top;
}
@media (hover: hover) and (pointer: fine) {
	.page-top:hover{
		padding: 14px 20px 0 80px;
		right: -25px;
	}
}


/*******************
 * header
********************/
#header{
	width: 100%;
	background: #fff;
	transition:all 0.8s ease-in-out 0s;
	opacity:1;
	font-family: 'Noto Serif JP', sans-serif;
}
#header .inner {
	max-width: 1100px;
	padding: 1.5rem 0;
}
#header .inner h1.heading{
	max-width: 130px;
}
#header .inner h1.heading > a{
	display: block;
}
#header .inner h1.heading > a img{
	width: 80%;
}
#header.fixed {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
	opacity: 0;
	animation-name: NavAreaIn;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	transition : all 0.5s ease 0s;
}
@keyframes NavAreaIn{
	0%{
		visibility: hidden;
		opacity:0;
	}
	100%{
		transform:translateY(0);
		opacity:1;
	}
}
#header ul li+li{
	margin-left: 3rem;
}
#header ul li a{
	font-size: 18px;
	font-size: 1.8rem;
}
#header ul li.tel_icon > a{
	background: #000;
	padding: 1rem 2.8rem 1.2rem 2rem;
	color: #fff;
}
#header ul li.tel_icon > a .icon-phone{
	display: inline-block;
	vertical-align: sub;
	margin-right: 0.3rem;
	transform: rotate(20deg);
}
#header ul li.tel_icon > a .icon-phone:before{
	font-size: 26px;
	font-size: 2.6rem;
}



/*******************************
box-sizing
*******************************/
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

/*************************
/* flex-box
*************************/
.flex-box{
	display:-webkit-flex;
	display:flex;
}
.flex-box-nowrap{
	-webkit-flex-wrap:nowrap;
	flex-wrap:nowrap;
}
.flex-box-wrap{
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}
.flex-box-row-rever{
	-webkit-flex-direction:row-reverse;
	flex-direction:row-reverse;
}
.flex-box-column{
	-webkit-flex-direction:column;
	flex-direction:column;
}
.flex-box-column-r{
	-webkit-flex-direction:column-reverse;
	flex-direction:column-reverse;
}
.flex-box-space-b{
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.flex-box-space-a{
	-webkit-justify-content:space-around;
	justify-content:space-around;
}
.flex-box-space-c{
	-webkit-justify-content:center;
	justify-content:center;
}
.flex-box-space-e{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flex-box-item-c{
	-webkit-align-items:center;
	align-items:center;
}
.flex-box-item-e{
	-webkit-align-items:flex-end;
	align-items:flex-end;
}
.flex-box-item-s{
	-webkit-align-items: flex-start;
	align-items: flex-start;
}



/*************************
/* TOP-PAGE
*************************/
#hero{
	padding-top: 10rem;
}
#hero .wrap .area .layout > .logo_box{
	opacity:0;
	transition:all 6s ease;
}
#hero.ac-now .wrap .area .layout > .logo_box{
	opacity:1;
	display: flex;/* Firefox 対策 */
	flex-direction: column;/* Firefox 対策 */
}
#hero .wrap .area .layout > .logo_box .secondary{
	margin: 0 auto;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	font-size: 80px;
	font-size: 8rem;
	font-family: 'Noto Serif JP', sans-serif;
}
#hero .wrap .area .layout> .logo_box .primary{
	max-width: 420px;
}
#hero .wrap .area .layout > .main_box{
	position: relative;
}
#hero .wrap .area .layout > .main_box .top_portion{
	position: relative;
	opacity:0;
	transition:all 4.8s ease;
}
#hero.ac-now .wrap .area .layout > .main_box .top_portion{
	opacity:1;
}
#hero .wrap .area .layout > .main_box .top_portion .txt{
	padding: 0 6rem;
	font-size: 100px;
	font-size: 10rem;
	font-family: 'Noto Serif JP', sans-serif;
	text-align: center;
	line-height: 1.2;
}
#hero .wrap .area .layout > .main_box .top_portion .txt > span{
	display: inline-block;
	background: #000;
	color: #fff;
	font-size: 130px;
	font-size: 13rem;
}
#hero .wrap .area .layout > .main_box .top_portion .img{
	position: absolute;
	top: 17rem;
}
#hero .wrap .area .layout > .main_box .top_portion .img img{
	opacity:0;
	transition:all 3.8s ease;
	transform:translateZ(-20px) scale(0.85);
	transition-delay: 0.6s;
}
#hero.ac-now .wrap .area .layout > .main_box .top_portion .img img{
	opacity:1;
	transform:translateZ(0) scale(1);
}
#hero .wrap .area .layout > .main_box .bottom_portion{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0; 
	margin: auto;
	width: 50%;
	opacity:0;
	transform:translateY(20px);
	transition:all 3.8s ease;
	transition-delay: 1.2s;
}
#hero.ac-now .wrap .area .layout > .main_box .bottom_portion{
	opacity:1;
	transform:translateY(-20px);
}
#hero .wrap .area .layout > .main_box .bottom_portion .caption{
	font-size: 24px;
	font-size: 2.4rem;
	font-family: 'Noto Serif JP', sans-serif;
	text-align: center;
}


#container > section{
	padding-top: 12rem;
}
#container > section .body{
	margin-top: 8rem;
}
#container > section .body .txt_box > .lead{
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}
#container > section .body .txt_box{
	opacity:0;
	transform:translateY(20px);
	transition:all 4.2s ease;
}
#container > section .body.ac-now .txt_box{
	opacity:1;
	transform:translateY(0);
}
#container > section .body .txt_box > .lead span{
	display: block;
}


.anything_block .body .txt_box{
	max-width: 1070px;
	margin: 0 auto;
}
.anything_block .body .img_box{
	position: relative;
	margin-top: 8rem;
}
.anything_block .body .img_box > p{
	text-align: center;
}
.anything_block .body .img_box img{
	opacity:0;
	transform:translateY(10px);
	transition:all 2.8s ease;
	filter:blur(3px);
}
.anything_block .body .img_box.ac-now img{
	opacity:1;
	transform:translateY(0);
	filter:blur(0);
}
.anything_block .body .img_box p.border{
	opacity:0;
}
.anything_block .body .img_box.ac-now p.border{
	opacity: 1;
	width: 40%;
	display: block;
	position: absolute;
	left: 60%;
	bottom: 6%;
}
.anything_block .body .img_box.ac-now p.border:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: solid 6px #000;
	animation: border_anim 3s linear forwards;
	animation-delay: 0.6s;
}
@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}


.clearing_block{
	background: #dddddd;
	padding: 12rem 0;
}
.clearing_block .body .txt_box{
	max-width: 1070px;
	margin: 0 auto;
}
.clearing_block .body .block_box{
	max-width: 1100px;
	margin: 8rem auto 0;
	opacity:0;
	transform:translateY(40px);
	transition:all 1.8s ease;
}
.clearing_block .body .block_box.ac-now{
	opacity:1;
	transform:translateY(0);
}
.clearing_block .body .block_box > .box{
	background: #fff;
	padding: 5rem;
}
.clearing_block .body .block_box > .box div.flex-box .block_txtbox{
	max-width: 420px;
}
.clearing_block .body .block_box > .box div.flex-box .block_txtbox p.lead{
	margin-top: 3rem;
}
.clearing_block .body .block_box > .box div.flex-box .block_txtbox p.lead span{
	display: block;
}
.clearing_block .body .block_box > .box div.flex-box .block_txtbox p.lead span+span{
		margin-top: 1rem;
}
.clearing_block .body .block_box > .box div.flex-box .block_txtbox dl dd{
	font-size: 24px;
	font-size: 2.4rem; 
	font-weight: bold;
	margin-left: 2rem;
}
.clearing_block .body .block_box > .box div.flex-box .block_txtbox .button{
	width: auto;
	margin-top: 3rem;
}
.clearing_block .body .block_box:nth-child(3) > .box div.flex-box .block_imgbox{
	order: 2;
}

.pr_block{
	padding-bottom: 16rem;
}
.pr_block .head h2 span{
	display: block;
}
.pr_block .body .article_box{
	max-width: 1100px;
	margin: 7rem auto 0;
	opacity:0;
	transform:translateY(20px);
	transition:all 3.4s ease;
	transition-delay: 0.4s;
}
.pr_block .body.ac-now .article_box{
	opacity:1;
	transform:translateY(0);
}
.pr_block .body .article_box ul{
	border-bottom: 1px solid #000;
}
.pr_block .body .article_box ul li{
	border-top: 1px solid #000;
}
.pr_block .body .article_box ul li a{
	display: block;
	padding: 3rem;
}
.pr_block .body .article_box ul li a .data{
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
}
.pr_block .body .article_box ul li a .title{
	font-weight: bold;
	font-size: 24px;
	font-size: 2.4rem;
}
.pr_block .body .article_box ul li a .post-textarea{
	margin-top: 3rem;
}
.contact_block{
	background: url(../images/contact_bk.jpg) no-repeat center bottom #000;
	background-size: contain;
	color: #fff;
	padding: 8rem 0 12rem;
}
.contact_block .body{
	max-width: 1040px;
	margin: 8rem auto 0;
	font-family: 'Noto Serif JP', sans-serif;
	opacity:0;
	transform:translateY(20px);
	transition:all 3.8s ease;
}
.contact_block .body.ac-now{
	opacity:1;
	transform:translateY(0);
}
.contact_block .body div.flex-box .box > p{
	font-size: 48px;
	font-size: 4.8rem;
	text-align: center;
	line-height: 1.2;
}
.contact_block .body div.flex-box .box > a{
	color: #fff;
}
.contact_block .body div.flex-box .box > a.tel{
	font-size: 48px;
	font-size: 4.8rem;
	padding: 0 6rem;
}
.contact_block .body div.flex-box .box > a.mail{
	display: block;
	margin-top: 2rem;
	padding: 1rem 4rem;
	text-align: center;
	border: 1px solid #fff;
	font-size: 24px;
	font-size: 2.4rem;
}
.contact_block .body div.flex-box .box > a.mail span:nth-child(2){
	margin-left: 2rem;
}


footer{
	background: url(../images/imgbk-footer.jpg) no-repeat top center;
	background-size: cover;
	font-family: 'Noto Serif JP', sans-serif;
}
footer .inner{
	padding: 4rem 0 10rem;
}
footer .inner .footer-top ul li+li{
	margin-left: 3rem;
}
footer .inner .footer-top ul li a{
	font-size: 18px;
	font-size: 1.8rem;
}
footer .inner .footer-bottom{
	margin-top: 4rem;
	text-align: center;
}
footer .inner .footer-bottom > .logo{
	max-width: 140px;
	margin: 0 auto;
}
footer .inner .footer-bottom > div {
	margin-top: 2rem;
}
footer .inner .footer-bottom > div address{
	font-size: 18px;
	font-size: 1.8rem;
}
footer .inner .footer-bottom > div .tel{
	font-size: 30px;
	font-size: 3.0rem;
}
footer .inner .copyright{
	text-align: center;
	margin-top: 2rem;
}
footer .inner .copyright > p{
	font-size: 14px;
	font-size: 1.4rem;
}



/*インナー*/
body.page .main-image,body.category .main-image,body.archive .main-image,body.single .main-image{
	position: relative;
	width: 100%;
	height: 380px;
	margin-left: auto;
}
body.page h2.heading,body.category h2.heading,body.single h2.heading{
	opacity: 1;
}
body.page .inner-container-page,body.category .inner-container-page,body.single .inner-container-page{
	padding: 120px 0 180px;
}
body.page .inner-container-page .block-box h3.title,body.category .inner-container-page .block-box h3.title{
	font-size: 26px;
	border-bottom: 1px solid #9c9c9b;
	padding-bottom: 10px;
}
body.page .inner-container-page .block-box h3.title span:nth-child(1),body.category .inner-container-page .block-box h3.title span:nth-child(1){
	display: inline-block;
	margin: 0 10px;
}
body.page .inner-container-page .block-box h4{
	font-family: 'M PLUS 1p', sans-serif;
	font-size:30px;
	font-size:3.0rem;
	text-align: center;
}
body.page #container > .link-erea {
	border-top: 1px solid #c8c6c6;
}
body.page #container > .link-erea > .inner{
	padding: 120px 0 40px;
}
body.page #container > .link-erea > .inner > .flex-box li{
	width: calc(100% / 3 - 80px);
	margin: 0 20px;
}
body.page #container > .link-erea > .inner > .flex-box li:nth-child(n+4){
	margin-top: 60px;
}
body.page #container > .link-erea > .inner > .flex-box li a{
	color: #000;
	width: auto;
	font-weight: bold;
	padding: 20px 20px;
}
body.page .inner-page .main_block,body.category .category-page .main_block,body.single .single-page .main_block{
	padding: 5rem 0 0;
	max-width: 1100px;
	margin: 0 auto;
}
body.page .inner-page .main_block .head h1.heading,body.category .category-page .main_block .head h1.heading,body.single .single-page .main_block .head h1.heading{
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	font-size: 48px;
	 font-size: 4.8rem; 
	font-family: 'Noto Serif JP', sans-serif;
}
body.page .inner-page .main_block .head .main_text_erea,body.category .category-page .main_block .head .main_text_erea,body.single .single-page .main_block .head .main_text_erea{
	margin-right: auto;
	margin-left: 20rem;
}
body.page .inner-page .top_block,body.category .category-page .top_block,body.single .single-page .top_block{
	padding: 14rem 0 0;
}
body.page .inner-page .top_block .body,body.category .category-page .top_block .body,body.single .single-page .top_block .body{
	max-width: 980px;
	margin: 0 auto;
}
body.page .inner-page .txt_box,body.category .category-page .txt_box{
	margin-top: 8rem;
}
body.page .inner-page .txt_box .lead,body.category .category-page .txt_box .lead{
	text-align: center;
	font-size: 18px;
	font-size: 1.8rem;
}
body.page .inner-page .txt_box .lead span,body.category .category-page .txt_box .lead span{
	display: block;
}
body.page .inner-page .button_box .button{
	width: 50%;
	font-size: 24px;
	font-size: 2.4rem;
	padding: 3rem 0px;
}
body.page .inner-page .button span::after{
	top: calc(47% - 2px);
}
body.page .inner-page .check_box ul.check_list li > span{
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
body.page .inner-page .check_box ul.check_list li > span:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 2em;
	height: 2em;
	background: url(../images/icon_checklist.png) no-repeat;
	background-size: contain;
	position: absolute;
	left: -2.4em;
	bottom: 0;
	margin: auto;
}
body.page .inner-page .bottom_block{
	background: #dddddd;
	padding: 12rem 0 22rem;
}
body.page .inner-page .bottom_block > .body > .flow_box{
	max-width: 1100px;
	margin: 8rem auto 0;
	background: #fff;
}
body.page .inner-page .bottom_block > .body > .flow_box div.flex-box {
	padding: 8rem 10rem;
}




/*遺品整理でお困りの方へ*/
body.anything #anything_page .main_block .head {
	flex-direction: row-reverse;
}
body.anything #anything_page .main_block .main-img{
	max-width: 580px;
}
body.anything #anything_page .main_block .main_img_erea p.border{
	width: 100%;
	display: block;
	position: relative;
	left: 60%;
	bottom: 4%;
	border-bottom: solid 6px #000;
}
body.anything #anything_page .button_box .button span::after{
	top: calc(44% - 2px);
}
body.anything #anything_page .top_block > .body > .txt_box .lead+.lead{
	margin-top: 2rem;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div{
	display: flex;
	flex-direction: column;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_icon_erea {
	position: relative;
	z-index: 0;
	background: #fff;
	justify-content: center;
	align-items: center;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_icon_erea::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background: #333;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_icon_erea .archive-icon{
	background: #fff;
	z-index: 1;
	padding: 1rem;
	border: 1px solid #000;
	border-radius: 50%;
	text-align: center;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_icon_erea .archive-icon+.archive-icon{
	margin-top: 4rem;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_number_erea .archive-number{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_number_erea {
	margin: 0 auto;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_number_erea .archive-number+.archive-number{
	margin-top: 4rem;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_number_erea .archive-number span:nth-child(1){
	background: #000000;
	padding: 0.4rem 3rem;
	color: #fff;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_number_erea .archive-number span:nth-child(2){
	margin-top: 1rem;
	width: 100%;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_number_erea .archive-number span:nth-child(2) img{
	width: 100%;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_text_erea{
	width: 62%;
	margin-left: auto;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_text_erea .archive-text{
	display: flex;
	justify-content: center;
	flex-grow: 1;
	flex-direction: column;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_text_erea .archive-text+.archive-text{
	margin-top: 4rem;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_text_erea .archive-text .sub-title{
	padding: 0rem 1rem 1rem;
	border-bottom: 2px solid #000;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}
body.anything #anything_page .bottom_block > .body > .flow_box div.flex-box > div.archive_text_erea .archive-text .sub-txt{
	padding: 1rem 1rem 0rem;
}
body.anything #anything_page .main_block .main-img{
	max-width: 580px;
}
body.anything #anything_page .check_box{
	position: relative;
	text-align: center;
	margin-top: 18rem;
	padding-bottom: 16rem;
}
body.anything #anything_page .check_box:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 15em;
	height: 18em;
	background: url(../images/anything/illust_woman.png) no-repeat;
	background-size: contain;
	position: absolute;
	left: -1.4em;
	bottom: 0;
	margin: auto;
}
body.anything #anything_page .check_box:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 18em;
	height: 20em;
	background: url(../images/anything/illust_man.png) no-repeat;
	background-size: contain;
	position: absolute;
	right: -1.4em;
	bottom: 0;
	margin: auto;
}
body.anything #anything_page .check_box .title{
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: bold;
}
body.anything #anything_page .check_box .title span{
	display: block;
}
body.anything #anything_page .check_box .title span+span{
	margin-top: 1rem;
}
body.anything #anything_page .check_box .check_list{
	max-width: 400px;
	margin: 7rem auto 0;
	text-align: left;
	padding-left: 6rem;
}
body.anything #anything_page .check_box .check_list li{
	font-size: 24px;
	font-size: 2.4rem;
}
body.anything #anything_page .check_box .check_list li+li{
	margin-top: 4rem;
}


/*遺品整理とは*/
body.clearing #clearing_page .top_block .head h2.heading{
	line-height: 1.2;
}
body.clearing #clearing_page .button_box .button span::after{
	top: calc(44% - 2px);
}
body.clearing #clearing_page .top_block .body .txt_box .lead+.lead{
	margin-top: 2rem;
}
body.clearing #clearing_page .top_block .body .check_box{
	margin-top: 18rem;
	padding-bottom: 16rem;
}
body.clearing #clearing_page .top_block .body .check_box > .title{
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: bold;
	text-align: center;
}
body.clearing #clearing_page .top_block .body .check_box > .title span{
	display: block;
}
body.clearing #clearing_page .top_block .body .check_box > .title span+span{
	margin-top: 1rem;
}
body.clearing #clearing_page .top_block .body .check_box > .flex-box{
	margin-top: 10rem;
}
body.clearing #clearing_page .top_block .body .check_box > .flex-box .block_txtbox .title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}
body.clearing #clearing_page .top_block .body .check_box > .flex-box .block_txtbox .check_list{
	margin-top: 4rem;
}
body.clearing #clearing_page .top_block .body .check_box > .flex-box .block_txtbox .check_list li+li{
	margin-top: 1.5rem;
}
body.clearing #clearing_page .top_block .body .check_box > .flex-box .block_txtbox .check_list li span.txt-small{
	font-size: 14px;
	font-size: 1.4rem;
}
body.clearing #clearing_page .top_block .body .check_box > .flex-box .block_txtbox .check_list li:nth-child(3) span.txt-small{
	display: block;
}
body.clearing #clearing_page .bottom_block .body .txt_box .lead+.lead{
	margin-top: 2rem;
}
body.clearing #clearing_page .bottom_block > .body > .flow_box{
	max-width: 800px;
	padding: 4rem 0 6rem;
	text-align: center;
}
body.clearing #clearing_page .bottom_block > .body > .flow_box > .title{
	margin-top: 0;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}
body.clearing #clearing_page .bottom_block > .body > .flow_box > p{
	margin-top: 4rem;
}
body.clearing #clearing_page .bottom_block > .body > .flow_box > ul{
	max-width: 380px;
	text-align: left;
	margin: 4rem auto 0;
}
body.clearing #clearing_page .bottom_block > .body > .flow_box > ul li+li{
	margin-top: 1rem;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box{
	max-width: 1100px;
	margin: 14rem auto 0;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > .title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > p:nth-child(2){
	margin-top: 6rem;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > .flex-box{
	margin-top: 12rem;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > .flex-box .box{
	max-width: 300px;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > .flex-box .box p.img{
	text-align: center;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > .flex-box .box p.title{
	margin-top: 2rem;
	text-align: center;
	font-size: 18px;
	font-size: 1.8rem;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box > .flex-box .box p.text{
	margin-top: 1rem;
}
body.clearing #clearing_page .bottom_block > .body > div:nth-child(3).txt_box .button_box .button{
	width: 68%;
}
body.clearing #clearing_page .last_block{
	padding: 12rem 0 22rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box{
	margin-top: 10rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box .title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box table{
	max-width: 1100px;
	margin: 5rem auto 0;
	border-collapse: collapse;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box table tr th,body.clearing #clearing_page .last_block > .body > .txt_box .table_box table tr td{
	padding: 1.5rem 3.5rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box table tr th{
	background: #000;
	color: #fff;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box table tr th+th{
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box table tr td{
	text-align: center;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box table tr td:nth-child(3){
	border-right: 1px solid #000;
}
body.clearing #clearing_page .last_block > .body > .txt_box .table_box > .img{
	text-align: center;
	margin-top: 10rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box{
	max-width: 1100px;
	background: #dddddd;
	margin: 12rem auto 0;
	padding: 8rem 8rem 10rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box {
	flex-wrap: wrap;
	margin-top: 8rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box > .box{
	width: calc(100% / 2 - 20px);
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box > .box:nth-child(n+3){
	margin-top: 6rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box > .box > dl{
	display: flex;
	align-items: center;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box > .box > dl dt{
	width: 100px;
	height: 100px;
	background: #fff;
	border-radius: 50%;
	padding: 3rem 2rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box > .box > dl dd{
	margin-left: 2rem;
	font-size: 18px;
	font-size: 1.8rem;
}
body.clearing #clearing_page .last_block > .body > .txt_box > .point_box > .point_inner_box > .box > .text{
	margin-top: 2rem;
}





/*PR活動*/
body.category .category-page .main_block .head h1.heading,body.single .single-page .main_block .head h1.heading{
	text-orientation: upright;
}
body.category .category-page .top_block{
	padding-bottom: 16rem;
}
body.category .category-page .top_block .head h2.heading span {
	display: block;
}
body.category .category-page .top_block .head h2.heading span+span{
	margin-top: 1rem;
}
body.category .category-page .top_block .body .txt_box .lead+.lead{
	margin-top: 2rem;
}
body.category .category-page .top_block .body .article_box{
	margin-top: 10rem;
}
body.category .category-page .top_block .body .article_box ul{
	border-bottom: 1px solid #000;
}
body.category .category-page .top_block .body .article_box ul li{
	border-top: 1px solid #000;
}
body.category .category-page .top_block .body .article_box ul li a{
	padding: 3rem;
	display: block;
}
body.category .category-page .top_block .body .article_box ul li a .title,body.single .single-page .top_block .body .article_box .title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}
body.category .category-page .top_block .body .article_box ul li a .data,body.single .single-page .top_block .body .article_box .data{
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}
body.category .category-page .top_block .body .article_box ul li a .post-textarea,body.single .single-page .top_block .body .article_box .post-textarea{
	margin-top: 3rem;
}
body.single .single-page .pr_block .body .article_box{
	opacity: 1;
}






/*お問合せ*/
body.contact #contact_page .main_block .head.flex-box{
	flex-direction: row-reverse;
}
body.contact #contact_page .main_block .head > .main_img_erea .main_img{
	width: 70%;
	margin-left: auto;
}
body.contact #contact_page .top_block{
	padding-bottom: 16rem;
}
body.contact #contact_page .top_block .body .formblock{
	width: 80%;
	margin: 0 auto 0;
}
body.contact #contact_page .top_block .body .formblock .caution{
	margin-bottom: 4rem;
	text-align: right;
}
body.contact #contact_page .top_block .body .formblock dl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
body.contact #contact_page .top_block .body .formblock dl+dl{
	margin-top: 20px;
}
body.contact #contact_page .top_block .body .formblock dl dt{
	width: 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.contact #contact_page .top_block .body .formblock dl dt p{
	text-align: center;
	display: flex;
}
body.contact #contact_page .top_block .body .formblock .txt-red{
	color: red;
}
body.contact #contact_page .top_block .body .formblock dl dd {
	width: 70%;
	background: #fff;
}
body.contact #contact_page .top_block .body .formblock dl dd input[type="text"],body.contact #contact_page .top_block .body .formblock dl dd input[type="email"],body.contact #contact_page .top_block .body .formblock dl dd input[type="tel"],body.contact #contact_page .top_block .body .formblock dl dd input[type="date"]{
	width: 100%;
	height: 3.2em;
	border-radius: 0;
	border: 1px solid #000;
	padding: 1.4em 1.4em;
}
body.contact #contact_page .top_block .body .formblock dl dd textarea{
	width: 100%;
	border-radius: 0;
	border: 1px solid #000;
	padding: 1.4em 1.4em;
}
body.contact #contact_page .top_block .body .formblock .button-erea{
	margin-top: 8rem;
	text-align: center;
}
body.contact #contact_page .top_block .body .formblock input[type="submit"] {
	width: 50%;
	padding: 18px 40px;
	border: 1px solid #000;
	border-radius: 0;
	text-align: center;
	font-size: 24px;
	background: #000000;
	color: #fff;
	font-family: 'Noto Serif JP', sans-serif;
}
body.contact #contact_page .top_block .body .formblock input[type="submit"]:hover{
	opacity: 0.6
}
.wpcf7-spinner{
	display:none;
}