@charset "UTF-8";

.sec-title {
	font-size: 6rem;
	color: #fe4c85;
	text-align: center;
	margin-bottom: 30px;
}
.sec-title span {
	display: block;
    font-size: .6em;
}
.sec-title span.effect-line {
	display: inline-block;
	font-size: 100%;
	position: relative;
	font-weight: bold;
}
.sec-title span.effect-line:before {
	content: '';
	position: absolute;
	top: 50%;
	left: -30px;
	display: inline-block;
	width: 24px;
	height: 3px;
	background-color: #fe4c85;
	border-radius: 8px;
	transform: rotate(60deg);
}
.sec-title span.effect-line:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -30px;
	display: inline-block;
	width: 24px;
	height: 3px;
	background-color: #fe4c85;
	border-radius: 8px;
	transform: rotate(-60deg);
}

h3 {
	font-size: 5rem;
	margin-bottom: 30px;
}
h4 {
	font-size: 4rem;
	margin-bottom: 30px;
}
h5 {
	font-size: 3rem;
	margin-bottom: 30px;
}
h6 {
	font-size: 2.6rem;
	margin-bottom: 30px;
}

@media screen and (max-width: 1194px) {
	.sec-title {
		font-size: 5rem;
	}
	h3 {
		font-size: 4.4rem;
		margin-bottom: 30px;
	}
	h4 {
		font-size: 4rem;
		margin-bottom: 30px;
	}
	h5 {
		font-size: 3rem;
		margin-bottom: 30px;
	}
	h6 {
		font-size: 2.6rem;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 768px) {
	.sec-title {
		font-size: 4.4rem;
	}
}
@media screen and (max-width: 559px) {
	.sec-title {
		font-size: 3.2rem;
	}
	.sec-title span {
		font-size: .7em;
	}
	
}
@media screen and (max-width: 430px) {
	.sec-title {
		font-size: 3rem;
	}
	
}
@media screen and (max-width: 320px) {
	.sec-title {
		font-size: 2.4rem;
	}
}



/* 緊急設置 *
 * ***************************************************/

#emergency {
	padding: 60px 0;
	background: #E5FFE5;
}
#emergency p.emergency-button {
	text-align: center;
}
#emergency p.emergency-button a {
	    display: inline-block;
    background: #009900;
    color: #FFF;
    padding: 12px 18px;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
	#emergency {
		margin-top: 30px;
	}
	#emergency p.emergency-button a span {
		display: block;
		font-size: .9em;
	}
}
@media screen and (max-width: 559px) {
	#emergency {
		padding: 45px 0;
	}
}



/* はじめにお読みください *
 * ***************************************************/

#message {
	
}
#message .message-outline {
	overflow: hidden;
	background: #FFF;
	padding: 60px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	border-radius: 12px;
	position: relative;
}
#message .message-outline:before {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/front-page/message-bg.webp) no-repeat;
    background-size: contain;
    background-position: top right;
    width: 100%;
    height: 100%;
}
#message .message-outline .message-text {
	width: 60%;
    max-width: 720px;
	margin-right: auto;
	position: relative;
    z-index: 1;
}
#message .message-outline .message-text .message-title {
	text-align: left;
	margin-bottom: 18px;
}
#message .message-outline .message-text .message-title span {
	display: block;
	font-size: 2.2rem;
	color: #000;
}


@media screen and (max-width: 1194px) {
	#message .message-outline:before {
		background-size: cover;
		right: -12vw;
	}
}
@media screen and (max-width: 1024px) {
	#message .message-outline:before {
		background: url(../images/front-page/message-bg_tb.webp) no-repeat;
		background-size: contain;
		background-position: top right -2%;
		right: 0;
	}
	#message .message-outline .message-text {
		width: 72%;
        padding-right: 60px;
	}
}
@media screen and (max-width: 768px) {
	#message .message-outline {
		padding: 45px;
	}
	#message .message-outline:before {
		background-position: top right -42%;
	}
	#message .message-outline .message-text {
		width: 90%;
		padding-right: 45px;
	}
}
@media screen and (max-width: 559px) {
	#message .inner {
		padding: 0;
	}
	#message .message-outline {
		box-shadow: none;
		padding: 0 30px 12px;
	}
	#message .message-outline:before {
		content: none;
	}
	#message .message-outline .message-text {
		width: 100%;
		padding: 0;
	}
	#message .message-outline .message-text .message-title span {
		text-align: center;
		font-size: 2rem;
	}
}





/* impact *
 * ***************************************************/

.impact {
	padding-top: 75px;
}
.impact .impact_box {
	margin: 30px auto 0;
}
.impact p.drag {
	text-align: right;
	margin: 0 0 12px;
	font-size: .7em;
	animation: SlideIn 1.6s infinite;
}
@keyframes SlideIn {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateX(-64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.impact p.drag:nth-of-type(2) {
	margin-top: 8px;
}

.price_case .scrollbar {
  width: 100%;
  height: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.impact_scroll {
	display: flex;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	
	white-space: nowrap;
	padding: 0 0 30px;
}
/*スクロールバー*/
.impact_scroll::-webkit-scrollbar {
	height: 20px;
}
.impact_scroll::-webkit-scrollbar-track {
	background: #fafafa;
	border-radius: 20px;
}
.impact_scroll::-webkit-scrollbar-thumb {
	background: #fd78a8;
	border-radius: 20px;
}
/*スクロールバー ここまで*/

.impact_scroll .impact_slide_item {
	width: 980px;
	flex-shrink: 0;
	background: #FFF;
	margin: 0 22px 0 0;
	position: relative;
}
.impact_scroll .impact_slide_item:last-child {
	margin: 0;
}
.impact_scroll .impact_slide_item img {
	
}

@media screen and (max-width: 1194px) {
	.impact {
		padding-top: 60px;
	}
}
@media screen and (max-width: 1024px) {
	.impact_scroll .impact_slide_item {
		width: 80vw;
		margin: 0 30px 0 0;
	}
}
@media screen and (max-width: 768px) {
	.impact {
		padding-top: 45px;
	}
	.impact_scroll .impact_slide_item {
		margin: 0 18px 0 0;
	}
}
@media screen and (max-width: 559px) {
	.impact {
		padding-top: 30px;
	}
}
@media screen and (max-width: 430px) {
	
}
@media screen and (max-width: 390px) {
	.impact_scroll .impact_slide_item {
		margin: 0 12px 0 0;
	}
}



/* ハウスクリーニング *
 * ***************************************************/

.housecleaning {
	position: relative;
	background: #F5FBFE;
	padding-bottom: 0;
}
.housecleaning:before {
	content: "";
	display: block;
	position: absolute;
	top: 24vw;
    left: 0;
    background: url(../images/front-page/housecleaning-waveBg.svg) no-repeat;
    background-size: contain;
    background-position: top;
    width: 100%;
    height: 500px;
}
.housecleaning img.housecleaning_fukidashi {
	display: block;
	margin: 0 auto;
}
.housecleaning img.housecleaning_off {
	display: block;
	margin: 0 auto;
}
.housecleaning .message_box {
	position: relative;
}
.housecleaning .message_box .message_title {
	font-size: 2.6rem;
	margin-top: -38px;
	position: absolute;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: left;
	line-height: 1.3;
}
.housecleaning .message_box .message_inbox {
	padding: 0 0 0 150px;
	font-family: sans-serif;
	font-weight: bold;
}
.housecleaning .housecleaning_bg {
	position: relative;
}
.housecleaning .housecleaning_bg .housecleaning_img_photo {
	max-width: 1720px;
	width: 100%;
	padding: 0 60px;
	margin: -7vw auto 0;
}
.housecleaning ul.housecleaning_img {
	max-width: 1720px;
	width: 100%;
	margin: -170px auto 0;
	padding: 0 60px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.housecleaning ul.housecleaning_img li:not(:last-child) {
	width: calc(100% / 3 - -4.6%);
	margin-right: 18px;
	position: relative;
}
.housecleaning ul.housecleaning_img li:not(:last-child)::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: -25px;
	top: 50%;
	transform: translateY(-50%);
	background: url(images/common/icon_arrowR-fe4b84.png) no-repeat;
	background-size: contain;
	background-position: center;
	width: 42px;
	height: 42px;
	z-index: 1;
}
.housecleaning ul.housecleaning_img li img {
	border-radius: 12px;
}
.housecleaning ul.housecleaning_img li > div {
	text-align: center;
	margin: -35px 0 0;
	position: relative;
	z-index: 1;

}
.housecleaning ul.housecleaning_img li > div p {
	line-height: 1.4;
}

.housecleaning .housecleaning_points_bg {
	background: #7fcef4;
}
.housecleaning .housecleaning_points {
	max-width: 1580px;
	width: 100%;
	margin: -60px auto 0;
	padding: 60px 60px;
	position: relative;
}
.housecleaning .housecleaning_points img.housecleaning_woman {
	position: absolute;
	bottom: -60px;
}
.housecleaning .housecleaning_points .housecleaning_points_items {
	max-width: 960px;
	width: calc(100% - 460px);
	margin-left: auto;
	margin-top: 60px;
}
.housecleaning .housecleaning_points .housecleaning_points_items ul {
	margin: -30px 0 0;
}
.housecleaning .housecleaning_points .housecleaning_points_items ul li {
	overflow: hidden;
	background: #FFF;
	padding: 45px 30px 30px 45px;
	border-radius: 12px;
	margin-top: 18px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	position: relative;
}
.housecleaning .housecleaning_points .housecleaning_points_items ul li p.point {
	position: absolute;
	background: #2bb3f2;
	border-radius: 0 0 22px 0;
	display: inline-block;
	color: #FFF;
	line-height: 1;
	font-weight: bold;
	top: -9px;
	left: 0;
	margin: 0;
	padding: 18px 16px 9px;
}
.housecleaning .housecleaning_points .housecleaning_points_items ul li dl {
	display: flex;
	align-items: center;
}
.housecleaning .housecleaning_points .housecleaning_points_items ul li dt {
	width: 60px;
}
.housecleaning .housecleaning_points .housecleaning_points_items ul li dd {
	width: calc(100% - 60px);
	padding-left: 30px;
	font-weight: bold;
	font-family: sans-serif;
	font-size: 2.2rem;
	color: #333;
}

@media screen and (max-width: 1194px) {
	.housecleaning img.housecleaning_off {
		width: 900px;
	}
	.housecleaning .housecleaning_bg .housecleaning_img_photo {
		margin: -6vw auto 0;
		padding: 0 30px
	}
	.housecleaning .housecleaning_points .housecleaning_points_items ul li {
		padding: 30px;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items ul li dd {
		padding-left: 24px;
		font-size: 2rem;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items {
		width: calc(100% - 26vw);
	}
	.housecleaning .housecleaning_points img.housecleaning_woman {
		position: absolute;
		bottom: -30px;
		left: -30px;
		width: 500px;
	}
}
@media screen and (max-width: 1024px) {
	.housecleaning img.housecleaning_off {
		width: 680px;
	}
	.housecleaning .housecleaning_pikapika_bg img.housecleaning_pikapika {
		width: 160px;
	}
}
@media screen and (max-width: 768px) {
	.housecleaning .housecleaning_points {
		margin: -4vw auto 0;
		padding: 60px 45px;
		padding-bottom: 22vw;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items {
		width: 100%;
		margin-top: 30px;
	}
	.housecleaning .housecleaning_points img.housecleaning_woman {
		bottom: -30px;
		left: 50%;
		width: 25vw;
		transform: translateX(-50%);
		z-index: 1;
	}
}
@media screen and (max-width: 559px) {
	.housecleaning:before {
		top: 100vw;
		height: 66vw;
	}
	.housecleaning .housecleaning_bg .housecleaning_img_photo {
		margin: 30px auto 0;
	}

	.housecleaning .housecleaning_points {
		width: 100%;
		margin: 0;
		padding: 30px 30px 22vw;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items {
		width: 100%;
		margin: 0;
	}
	.housecleaning .housecleaning_points img.housecleaning_woman {
		width: 28vw;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items ul li {
		padding: 28px 18px 28px 28px;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items ul li dt {
		width: 45px;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items ul li dd {
		width: calc(100% - 45px);
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 430px) {
	.housecleaning .housecleaning_points .housecleaning_points_items ul li dl {
		margin-top: 12px;
	}
	.housecleaning .housecleaning_points .housecleaning_points_items ul li dd {
		font-size: 1.7rem;
		padding-left: 18px;
	}
}
@media screen and (max-width: 380px) {
	
}
@media screen and (max-width: 320px) {
	
}


/* はじめにお読みください *
 * ***************************************************/

#front_page .message {
	background: #fff4f8;
}
#front_page .message .message_box {
	border: 3px solid #FFE5ED;
}
#front_page .message .message_box .message_title {
	font-size: 1.6em;
	margin-top: -27px;
}
#front_page .message .message_box .message_title span {
	display: inline-block;
	background: linear-gradient(transparent 50%, #ffffb7 50%);
	padding: 0 12px;
	margin: 0 12px;
}
#front_page .message .message_box .message_inbox {
	padding: 30px 60px 60px;
	font-family: sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 559px) {
	#front_page .message .message_box .message_inbox {
		padding: 30px;
	}
}
@media screen and (max-width: 38px) {
	#front_page .message .message_box .message_inbox {
		padding: 20px;
	}
}





/* 事例 *
 * ***************************************************/

.cases {
	
}
.cases .cases-items {
	position: relative;
}
.cases .cases-items {
	
}
.cases .cases-items p.drag {
	text-align: right;
	margin: 0 0 12px;
	font-size: .7em;
	animation: SlideIn 1.6s infinite;
}
@keyframes SlideIn {
  0% { opacity: 0; transform: translateX(-64px); }
  100% { opacity: 1; transform: translateX(0); }
}
.cases p.drag:nth-of-type(2) {
	margin-top: 8px;
}

.cases .cases-items-scroll {
	display: flex;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	
	white-space: nowrap;
	padding: 20px;
}
.cases .cases-items-scroll::-webkit-scrollbar { /*スクロールバー*/
	height: 20px;
}
.cases .cases-items-scroll::-webkit-scrollbar-track {
	background: #fafafa;
	border-radius: 20px;
}
.cases .cases-items-scroll::-webkit-scrollbar-thumb { /*スクロールバー ここまで*/
	background: #fd78a8;
	border-radius: 20px;
}

.cases .cases-item {
	width: 860px;
	flex-shrink: 0;
	background: #FFF;
	margin: 0 45px 3px 0;
	padding: 45px;
	border-radius: 18px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	position: relative;
}
.cases .cases-item:last-child {
	margin: 0 0 3px 0;
}
.cases .cases-item .cases-item-title {
	color: #ff82a8;
	margin: 0;
	font-size: 1.6em;
	white-space: break-spaces;
    padding-right: 8vw;
}
.cases .cases-item .cases-item-title span {
	display: block;
}
.cases .cases-item .cases-item-title span.area {
	display: inline-block;
    color: #ff82a8;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: .8em;
    font-weight: 500;
    border: 2px solid;
}
.cases .cases-item p.cases-item-meta {
	font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-top: 3px;
}
.cases .cases-item .cases-item-photo {
	margin-top: -120px;
}
.cases .cases-item .cases-item-text {
	margin: 30px 0 0;
	white-space: normal;
}

@media screen and (max-width: 1194px) {
	.cases .cases-item {
		width: 80%;
	}
	.cases .cases-item .cases-item-photo {
		margin-top: -10vw;
	}
}
@media screen and (max-width: 768px) {
	.cases .cases-items {
		padding: 0 30px;
	}
	.cases .cases-item {
		width: 95%;
		padding: 45px;
		margin: 0 30px 0 0;
	}
	.cases .cases-item .cases-item-title {
		font-size: 1.4em;
		padding-right: 15vw;
	}
	.cases .cases-item .cases-item-photo {
		margin-top: -11vw;
	}
}
@media screen and (max-width: 559px) {
	.cases .cases-items-scroll {
		padding: 0;
	}
	.cases .cases-item {
		width: 90%;
		padding: 0 0 18px;
		box-shadow: none;
	}
	.price_case p.drag:nth-of-type(2) {
		margin: 0;
	}
	.cases .cases-item .cases-item-title span {
		margin-top: 3px;
	}
	.cases .cases-item .cases-item-title span.area {
		font-size: .7em;
		margin: 0;
	}
	.cases .cases-item .cases-item-photo {
		margin-top: -12vw;
	}
}
@media screen and (max-width: 430px) {
	
}
@media screen and (max-width: 320px) {

	
}



/* サービス
 * *********************************/

.relieved {
	    margin-bottom: 30px;
	background-color: #ffffff;
  background-image: radial-gradient(circle, #feccdc 1.5px, transparent 1.5px);
  background-position: 0 0;
  background-size: 31px 31px;
}
.relieved ul.relieved-list {
	width: 100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-around;
    align-items: stretch;
	margin-top: -32px;
}
.relieved ul.relieved-list li {
	overflow: hidden;
	width: calc(100% / 3 - 32px);
	margin-top: 32px;
	border-radius: 18px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	position: relative;
}
.relieved ul.relieved-list li:nth-child(7),
.relieved ul.relieved-list li:nth-child(8) {
	width: calc(100% / 2 - 32px);
}
.relieved ul.relieved-list li .relieved-list-inbox {
	text-align: center;
	background: #FFF4F8;
	position: relative;
	z-index: 1;
}
.relieved ul.relieved-list li .relieved-list-inbox:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #FF99B7;
	transform: skewY(-5deg);
	z-index: -1;
}
.relieved ul.relieved-list li .relieved-list-inbox:after {
	content: '';
	position: absolute;
	top: -6px;
	bottom: -20px;
	left: 0;
	right: 0;
	background-color: #FECCDB;
	transform: skewY(4deg);
	z-index: -1;
}
.relieved ul.relieved-list li .relieved-list-inbox img.service-anshin {
	position: absolute;
    left: 28px;
    top: -62px;
	z-index: 2;
}
.relieved ul.relieved-list li .relieved-list-inbox p.relieved-list-title {
	background: #FCE3EB;
    margin: 0;
    padding: 18px 12px;
	color: #333;
	font-size: 2.2rem;
    font-weight: 600;
	line-height: 1.4;
}

@media screen and (max-width: 1500px) {
	.relieved ul.relieved-list li .relieved-list-inbox img.service-anshin {
		left: 12px;
		width: 5.8vw;
	}
}
@media screen and (max-width: 1194px) {
	.relieved ul.relieved-list {
		justify-content: space-between;
	}
	.relieved ul.relieved-list li,
	.relieved ul.relieved-list li:nth-child(7),
	.relieved ul.relieved-list li:nth-child(8) {
		width: calc(100% / 2 - 18px);
	}
	
	.relieved ul.relieved-list li .relieved-list-inbox img.service-anshin {
		width: 12vw;
        top: -10vw;
	}
}
@media screen and (max-width: 768px) {
	.relieved ul.relieved-list li,
	.relieved ul.relieved-list li:nth-child(7),
	.relieved ul.relieved-list li:nth-child(8) {
		width: 100%;
	}
	
	.relieved ul.relieved-list li .relieved-list-inbox img.service-anshin {
		left: 30px;
		width: 15vw;
	}
}
@media screen and (max-width: 559px) {
	.relieved ul.relieved-list li .relieved-list-inbox img.service-anshin {
		width: 18vw;
		top: -5vw;
        left: 12px;
	}
	.relieved ul.relieved-list li .relieved-list-inbox p.relieved-list-title {
		padding: 22px 12px;
	}
}
@media screen and (max-width: 430px) {
	.relieved ul.relieved-list li .relieved-list-inbox img.service-anshin {
		width: 60px;
		top: -8vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.relieved ul.relieved-list li .relieved-list-inbox p.relieved-list-title {
		font-size: 2rem;
		padding: 28px 12px 18px;
	}
}
@media screen and (max-width: 320px) {
	.relieved ul.relieved-list li .relieved-list-inbox p.relieved-list-title {
		
	}
}


/* こんなお悩み
 * *********************************/

.problem {
	overflow: hidden;
	background: url(../images/front-page/problemBg.webp) no-repeat;
	background-size: contain;
	background-position: right center;
}
.problem .problem-text {
	max-width: 880px;
	margin-top: 60px;
}
.problem .problem-text ul.problem-list {
	margin-left: 8vw;
}
.problem .problem-text ul.problem-list li {
	position: relative;
	font-size: 1.6em;
	line-height: 1.4;
    margin-top: 18px;
	padding-left: 48px;
}
.problem .problem-text ul.problem-list li:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/icon/checkbox.svg) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 30px;
	height: 30px;
}
.problem .problem-text ul.problem-list li span {
	background: linear-gradient(transparent 50%, #ffff66 50%);
}

@media screen and (max-width: 1194px) {
	.problem {
		background: url(../images/front-page/problemBg_tb.webp) no-repeat;
background-size: contain;
    background-position: right center;
	}
	.problem .problem-text ul.problem-list {
		margin: 0;
	}
}
@media screen and (max-width: 768px) {
	.problem {
		background-size: cover;
	}
	.problem .problem-text ul.problem-list li {
		padding-left: 38px;
	}
	.problem .problem-text ul.problem-list li:before {
		width: 26px;
		height: 26px;
	}
}
@media screen and (max-width: 559px) {
	.problem {
		padding-bottom: 75px;
		background: url(../images/front-page/problemBg_sp.webp) no-repeat;
		background-size: cover;
		background-position: right center;
	}
	.problem .text {
		width: 100%;
	}
	.problem .problem-text {
		margin-top: 0;
	}
	.problem .problem-text ul.problem-list li {
		font-size: 1.2em;
		padding-left: 32px;
	}
	.problem .problem-text ul.problem-list li:before {
		width: 22px;
		height: 22px;
	}
}
@media screen and (max-width: 430px) {
	
}
@media screen and (max-width: 320px) {
	
}


/* 解決
 * *********************************/

.solution {
	background: #FF82A9 url(../images/front-page/solutionBg.webp) no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 40px 0 0;
}
.solution img.solution-message {
    margin: -60px 0 0;
	position: relative;
	z-index: 2;
}
.solution img.circle-logo {
	position: relative;
	left: 0;
    right: 0;
    bottom: -35px;
	margin: -30px auto 0;
	z-index: 2;
}

@media screen and (max-width: 559px) {
	.solution {
		padding: 0 0 18px;
		background: none;
	}
	.solution .solution-arrow {
    margin: -37px 0 0;
	}
	.solution .solution-text {
		background: #FF82A9;
        color: #FFF;
        padding: 22px 0 30px;
	}
	.solution .solution-text p {
		font-size: 6vw;
        font-weight: 900;
	}
}
@media screen and (max-width: 430px) {
	
}
@media screen and (max-width: 320px) {

}


/* こだわり
 * *********************************/

.quality {
	background: #FFF4F8;	
}
.quality .quality-items {
	
}
.quality .quality-items .quality_item_title {
	padding-left: 350px;
	line-height: 1.4;
}
.quality .quality-item {
	padding: 60px 60px 60px 60px;
	margin: 60px 0 0 120px;
	background: #FFF;
	border-radius: 18px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	position: relative;
}
.quality .quality-item img.kodawari {
	position: absolute;
    left: 270px;
    top: -40px;
	z-index: 1;
}
.quality .quality-item .quality-flex {
	display: flex;
	align-items: center;
	width: calc(100% + 180px);
	position: relative;
    left: -180px;
}
.quality .quality-item img.quality-img {
	display: block;
	border-radius: 18px;
}
.quality .quality-item .quality-flex___title {
	width: calc(100% - 480px);
    padding-left: 60px;
}

.quality .quality-item-title {
	margin-bottom: 0;
}
.quality .quality-item-title span {
	display: inline;
	background: linear-gradient(transparent 50%, #FFF4F8 50%);
}
.quality p.quality-item-title-bottom {
	color: #FF82A9;
    font-size: 3rem;
	margin-top: 12px;
	line-height: 1.2;
}

.quality .quality-text {
	margin-top: 45px;
}
.quality .quality-text a {
	display: inline-block;
	text-decoration: underline;
}

@media screen and (max-width: 1194px) {
	.quality .quality-item img.kodawari {
		width: 14vw;
        left: 21vw;
		top: -4vw;
	}
	.quality .quality-item .quality-flex {
		
	}
	.quality .quality-item img.quality-img {
		width: 40vw;
	}
	.quality .quality-item .quality-flex___title {
		width: calc(100% - 40vw);
		font-size: 3.6vw;
		padding-left: 4vw;
	}
	.quality .quality-item-title {
		font-size: 4vw;
	}
	.quality p.quality-item-title-bottom {
		font-size: 2.8vw;
	}
}
@media screen and (max-width: 768px) {
	.quality .quality-item {
		padding: 45px;
		margin: 45px 0 0 0;
	}
	.quality .quality-item img.kodawari {
		width: 90px;
		top: 32vw;
        left: 6vw;
	}
	.quality .quality-item .quality-flex {
		flex-direction: column;
		position: static;
		width: 100%;
	}
	.quality .quality-item .quality-flex {
		width: calc(100% + 90px);
        margin-left: -45px;
        margin-top: -45px;
	}
	.quality .quality-item img.quality-img {
		border-radius: 18px 18px 0 0;
        width: 100%;
	}
	.quality .quality-item .quality-flex___title {
		width: 100%;
        padding: 0 45px;
        margin: 18px 0 0 0;
        text-align: center;
	}
	.quality .quality-item-title {
		text-align: center;
		font-size: 3.2rem;
	}
	.quality p.quality-item-title-bottom {
		font-size: 2.4rem;
	}
	.quality .quality-text {
		margin-top: 18px;
	}
}
@media screen and (max-width: 559px) {
	.quality .quality-item {
		padding: 30px;
		margin: 45px 0 0 0;
	}
	.quality .quality-item img.kodawari {
        left: 3vw;
	}
	.quality .quality-item .quality-flex {
		width: calc(100% + 60px);
		margin-left: -30px;
        margin-top: -30px;
		flex-direction: column;
		position: static;
	}
	.quality .quality-item .quality-flex___title {
        padding: 0 30px;
	}
	.quality .quality-item-title {
		font-size: 3rem;
	}
	.quality p.quality-item-title-bottom {
		font-size: 2.2rem;
	}
	.quality .quality-text {
		margin-top: 18px;
	}
	
}
@media screen and (max-width: 430px) {
	.quality .quality-item img.kodawari {
		width: 75px;
		top: 25vw;
        left: 50%;
		transform: translateX(-50%);
	}
	.quality .quality-item-title {
		font-size: 2.6rem;
		margin: 18px 0 0;
	}
	.quality p.quality-item-title-bottom {
		font-size: 2rem;
	}
}
@media screen and (max-width: 320px) {
	.quality .quality-item {
		padding: 18px;
		margin: 45px 0 0 0;
	}
	.quality .quality-item .quality-flex {
		width: calc(100% + 36px);
		margin-left: -18px;
        margin-top: -18px;
	}
	.quality .quality-item .quality-flex___title {
        padding: 0 18px;
	}
	.quality .quality-item-title {
		font-size: 2.4rem;
	}
}



/* スタッフから一言
 * *********************************/

.staff {
	background: #FFF4F8;
	padding-top: 0;
}
.staff .staff-box {
	overflow: hidden;
	width: 100%;
	background: #fde1eb;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	padding: 60px 90px;
	border-radius: 18px;
}
.staff .staff-flex {
	display: flex;
}
.staff .staff-flex .staff-flex___img {
	width: 180px;
}
.staff .staff-flex .staff-flex___img img.staff_photo {
	border-radius: 18px;
}
.staff .staff-flex .staff-flex___txt {
	width: calc(100% - 180px);
	padding-left: 45px;
}

.staff .forwoman {
	margin-top: 30px;
	padding: 30px;
	background: #FFF;
	border-radius: 18px;
}
.staff .forwoman .forwoman-box {
	position: relative;
	padding-right: 200px;
}
.staff .forwoman .forwoman-box a {
	color: #fe4c85;
	border-bottom: 1px solid #fe4c85;
}
.staff .forwoman .forwoman-box img.woman {
	position: absolute;
	right: 0;
	top: -60px;
}
.staff .forwoman .forwoman-box p.forwoman_title {
	color: #fe4c85;
	font-weight: bold;
	font-family: sans-serif;
	margin: 0;
}
.staff .forwoman .forwoman-contact-phone {
	text-align: center;
	margin-top: 18px;
}

.staff .forwoman .forwoman-contact-flex {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.staff .forwoman .forwoman-contact-flex p.forwoman_phone {
	margin: 0;
	padding-left: 62px;
	padding-right: 18px;
	font-size: 1.9rem;
	position: relative;
}
.staff .forwoman .forwoman-contact-flex p.forwoman_phone:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/common/free-icon-fe4c85.png) no-repeat;
	background-size: contain;
	background-position: center;
	width: 48px;
	height: 28px;
}
.staff .forwoman .forwoman-contact-flex p.forwoman_phone a {
	font-family: sans-serif;
	font-weight: bold;
}
.staff .forwoman .forwoman-contact-flex p.forwoman_openhour {
	margin: 0;
	padding-left: 18px;
	border-left: 1px solid #000;
}

@media screen and (max-width: 1194px) {
	.staff .staff-box {
		padding: 60px;
	}
	.staff .forwoman .forwoman-box {
		padding-right: 17vw;
	}
	.staff .forwoman .forwoman-box img.woman {
		width: 15vw;
	}
}
@media screen and (max-width: 768px) {
	.staff .staff-box {
		padding: 45px;
	}
	.staff .staff-flex .staff-flex___img {
		width: 22vw;
	}
	.staff .staff-flex .staff-flex___txt {
		width: calc(100% - 22vw);
		padding-left: 30px;
	}
	.staff .forwoman .forwoman-box {
		padding-right: 17vw;
	}
	.staff .forwoman .forwoman-box img.woman {
		width: 20vw;
        right: -50px;
	}
}
@media screen and (max-width: 559px) {
	.staff .staff-box {
		padding: 30px;
	}
	.staff .staff-flex {
		display: block;
	}
	.staff .staff-flex .staff-flex___img {
		width: 25vw;
		float: left;
		margin: 0 18px 18px 0;
	}
	.staff .staff-flex .staff-flex___txt {
		width: 100%;
		padding-left: 0;
	}
	.staff .forwoman .forwoman-box {
		padding-right: 0;
	}
	.staff .forwoman .forwoman-box img.woman {
		width: 20vw;
        right: -50px;
		top: -17vw;
	}
}
@media screen and (max-width: 430px) {
	.staff .forwoman {
		padding: 60px 18px 18px;
	}
	.staff .forwoman .forwoman-box img.woman {
		width: 15vw;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.staff .forwoman .forwoman-contact-phone a {
		width: 80%;
	}
}
@media screen and (max-width: 320px) {
	
}



/* サービス
 * *********************************/

.service {
	
}
.service ul.service-items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -45px;
}
.service ul.service-items li {
	width: calc(100% / 3 - 18px);
	margin-top: 45px;
}
.service ul.service-items li .service-image {
	border-radius: 18px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
	position: relative;
}
.service ul.service-items li .service-image img {
	border-radius: 18px;
}
.service ul.service-items li .service-image img.service-num {
	position: absolute;
    left: 50%;
    bottom: -42px;
	transform: translateX(-50%);
	z-index: 1;
}
.service .service-title {
	line-height: 1.4;
    font-weight: 600;
    font-size: 2.2rem;
	text-align: center;
	margin: 48px 0 0;
    padding: 0;
}
.service .service-text {
	margin: 18px 18px 0;
}

@media screen and (max-width: 1194px) {
	.service ul.service-items {
		justify-content: space-between;
	}
	.service ul.service-items li {
		width: calc(100% / 2 - 18px);
	}
}
@media screen and (max-width: 768px) {
	.service ul.service-items li {
		width: 100%;
	}
}
@media screen and (max-width: 559px) {
	.service {
		padding-bottom: 90px;
	}
}
@media screen and (max-width: 430px) {
	.service ul.service-items li .service-image img.service-num {
		width: 75px;
		bottom: -24px;
	}
	.service .service-title {
		margin: 38px 0 0;
	}
}


/* ビフォーアフター
 * *********************************/

.beforeafter {
	padding-top: 150px;
	background: #FFF6E5;
	position: relative;
}
.beforeafter svg.svg-arrow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.beforeafter .beforeafter-title {
	position: relative;
}
.beforeafter .inner img.jisseki {
	position: absolute;
    right: 0;
    top: -196px;
	width: 17vw;
	min-width: 380px;
}
.beforeafter .beforeafter-items {
	margin-top: 60px;
}


#front-page .beforeafter .beforeafter_box a.blog_banner {
	display: block;
	margin: 45px auto 0;
}
#front-page .beforeafter .beforeafter_box a.blog_banner_sp {
	display: none;
}



.beforeafter ul.beforeafter-list {
	overflow: hidden;
	margin: -30px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.beforeafter ul.beforeafter-list li {
	width: calc(100%/3 - 18px);
	margin-top: 30px;
}
.beforeafter ul.beforeafter-list li span.category a {
	display: inline-block;
	padding: 5px 18px;
    font-size: .8em;
}
.beforeafter ul.beforeafter-list li a.permalink {
	display: block;
}

.beforeafter ul.beforeafter-list li dl {
	width: 100%;
	margin-top: 12px;
	display: table;
}
.beforeafter ul.beforeafter-list li dt,
.beforeafter ul.beforeafter-list li dd {
	width: calc(100%/2);
	display: table-cell;
	vertical-align: middle;
}
.beforeafter ul.beforeafter-list li dt span,
.beforeafter ul.beforeafter-list li dd span {
	display: inline-block;
	text-align: center;
    position: absolute;
    bottom: 0;
    font-size: .7em;
    background: #FFAE00;
    color: #FFF;
    padding: 1px 12px;
    border-radius: 0 12px 0 0;
}
.beforeafter ul.beforeafter-list li dt div,
.beforeafter ul.beforeafter-list li dd div {
	overflow: hidden;
	position: relative;
}
.beforeafter ul.beforeafter-list li dt div {
	border-radius: 18px 0 0 18px;
}
.beforeafter ul.beforeafter-list li dd div {
	border-radius: 0 18px 18px 0;
}
.beforeafter ul.beforeafter-list li img.copyright {
	position: absolute;
	bottom: 6px;
	right: 5px;
}


@media screen and (max-width: 1194px) {
	.beforeafter .inner img.jisseki {
		position: static;
		width: 100%;
		min-width: auto;
		margin-top: -28px;
	}
	.beforeafter ul.beforeafter-list li {
		width: calc(100%/2 - 18px);
	}
}
@media screen and (max-width: 768px) {
	.beforeafter {
		padding-top: 120px;
	}
	.beforeafter svg.svg-arrow {
		width: 50vw;
        height: auto;
	}
	.beforeafter ul.beforeafter-list li {
		width: calc(100%/2 - 9px);
	}
}
@media screen and (max-width: 559px) {
	.beforeafter {
		padding-top: 90px;
	}
	.beforeafter .inner img.jisseki {
		margin-top: -12px;
	}
	.beforeafter ul.beforeafter-list li {
		width: 100%;
		margin-top: 18px;
	}
}
@media screen and (max-width: 320px) {
	.beforeafter {
		padding-top: 60px;
	}
}



/* お客様の声
 * *********************************/

.voice {
	margin-top: 18px;
	position: relative;
	background: url(../images/front-page/voiceBg.webp) no-repeat;
	background-size: cover;
}
.voice .voice-title {
	position: relative;
}
.voice .voice-title .sec-title.img-title {
	margin-top: -150px;
}
.voice .voice-items {
	margin-top: 90px;
	margin-left: auto;
    width: 680px;
}
.voice .voice_item {
	width: 100%;
	position: relative;
}
.voice .voice_item:not(:first-child) {
	margin-top: 18px;
}
.voice .voice_item img.icon_quote {
	position: absolute;
	    left: 22px;
    top: -22px;
}
.voice .voice_item .voice_excerpt {
	background: #FFF;
	color: #333;
	line-height: 1.6;
	font-size: 1.3em;
    font-weight: 600;
	font-style: italic;
	padding: 30px 30px 30px 95px;
	border-radius: 18px;
	    box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
}
.voice .voice_item .voice_excerpt span {
	display: block;
	font-size: .7em;
	font-style: normal;
	text-align: right;
	margin-top: 12px;
}



@media screen and (max-width: 1194px) {
	.voice .voice-items {
		width: 52vw;
	}
	.voice .voice_item .voice_excerpt {
		padding: 52px 30px 30px 30px;
	}
}
@media screen and (max-width: 768px) {
	.voice {
		margin-top: 18px;
		position: relative;
		background: url(../images/front-page/voiceBg_tb.webp) no-repeat;
		background-size: cover;
	}
	.voice .voice_item .voice-items {
		width: 430px;
		margin: 0 0 0 auto;
	}
	.voice .voice_item .voice-item {
		margin: 0 auto;
	}
	.voice .voice_item .voice-item .voice_excerpt {
		padding: 40px 30px 30px 30px;
	}
	.voice .voice_item .voice-item .voice_excerpt:before {
		width: 55px;
		height: 55px;
		top: 30px;
	}
}
@media screen and (max-width: 559px) {
	.voice {
		background: url(../images/front-page/voiceBg_sp.webp) no-repeat;
		background-size: contain;
		background-position: top center;
	}
	.voice .voice-title .sec-title.img-title {
		margin-top: -132px;
	}
	.voice .voice-items {
		width: 100%;
		margin-top: 40vw;
	}
	.voice .voice_item .voice_excerpt {
		padding: 52px 30px 30px 30px;
	}
}
@media screen and (max-width: 430px) {
	.voice .voice_item .voice_excerpt {
		font-size: 1.2em;
		padding: 40px 30px 30px 30px;
	}
	.voice .voice_item img.icon_quote {
		width: 60px;
		left: 30px;
	}
}
@media screen and (max-width: 320px) {
	#front-page .voice .voice_box .voice_item .voice_excerpt {
		padding: 15px 15px 15px 60px;
		font-size: 1em;
	}
	#front-page .voice .voice_box .voice_item .voice_excerpt:before {
		top: 15px;
		left: 15px;
		width: 27px;
		height: 27px;
	}
}


/* リスタート
 * *********************************/

.restart {
	margin-top: 18px;
	background: url(../images/front-page/restartBg.webp) no-repeat;
	background-size: contain;
	background-position: left center;
	overflow: hidden;
}
.restart .restart-text {
	font-size: 1.3em;
	text-align: center;
	margin-top: 60px;
}
.restart p.last_text {
	font-size: 1.2em;
	font-weight: bold;
	color: #fe4c84;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}

@media screen and (max-width: 1194px) {
	.restart {
		background-position: left -12vw center;
	}
}
@media screen and (max-width: 768px) {
	.restart {
		background-size: cover;
		background-position: left -28vw center;
	}
}
@media screen and (max-width: 559px) {
	.restart {
		background-image: url(../images/front-page/restartBgTop_sp.webp), url(../images/front-page/restartBg_sp.webp);
		background-repeat: no-repeat, no-repeat;
		background-size: 100%, 80vw;
		background-position: top right, bottom left;
		padding-bottom: 48vw;
	}
	.restart_title {
		text-align: center;
	}
	.restart .restart-text {
		margin-top: 0;
	}
}
@media screen and (max-width: 430px) {
	.restart .restart-text {
		font-size: 1.12em;
	}
	.restart p.last_text {
		font-size: 1em;
	}
}





/* ご利用の流れ
 * *********************************/

.flow {
	
}
.flow ul.flow-items {
	width: 100%;
	overflow: hidden;
    display: flex;
	justify-content: space-between;
    align-items: stretch;
	margin-top: 48px;
	border-radius: 18px;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
}
.flow ul.flow-items li {
	width: calc(100% / 4);
	background: #FFF;
	padding: 30px 30px;
	position: relative;
}
.flow ul.flow-items li:not(:last-child) {
	border-right: 1px solid #ededed;
}
.flow ul.flow-items li > div {
	padding-top: 75px;
}
.flow ul.flow-items .flow-item-title {
	color: #fe4c85;
	line-height: 1.2;
	font-size: 2.2rem;
	    margin-bottom: 12px;
	text-align: center;
}
.flow ul.flow-items li img.flow-step {
	position: absolute;
    left: 50%;
	top: 30px;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 1;
}
.flow ul.flow-items li .text {
	
}
.flow .point-items {
    margin: 60px auto 0;
}
.flow ul.point-list {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.flow ul.point-list li {
	width: calc(100% / 3);
	padding: 0 30px;
	position: relative;
}
.flow ul.point-list li dl.point-item {
	display: flex;
}
.flow ul.point-list li dl.point-item dt {
	width: 60px;
}
.flow ul.point-list li dl.point-item dd {
	color: #013F78;
	padding-left: 30px;
}
.flow ul.point-list li dl.point-item dd span {
	font-size: .8em;
}

@media screen and (max-width: 1194px) {
	.flow ul.flow-items {
		flex-wrap: wrap;
	}
	.flow ul.flow-items li {
		width: calc(100% / 2);
	}
	.flow ul.flow-items li:nth-child(1),
	.flow ul.flow-items li:nth-child(2) {
		border-bottom: 1px solid #ededed;
	}
	.flow ul.flow-items li > div {
		padding-top: 60px;
	}
	.flow ul.flow-items li img.flow-step {
		width: 45px;
	}
	.flow .point-items {
		margin: 45px auto 0;
	}
	.flow ul.point-list li dl.point-item {
		flex-direction: column;
		align-items: center;
	}
	.flow ul.point-list li dl.point-item dt {
		text-align: center;
	}
	.flow ul.point-list li dl.point-item dd {
		padding: 0;
		margin-top: 12px;
	}
}
@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 559px) {
	.flow ul.flow-items li {
		width: 100%;
		padding: 22px 18px;
	}
	.flow ul.flow-items li:not(:last-child) {
		border-bottom: 1px solid #ededed;
	}
	.flow ul.flow-items li img.flow-step {
		left: 18px;
        width: 48px;
        top: 18px;
        transform: translateX(0);
	}
	.flow ul.flow-items li > div {
		padding: 0 0 0 60px;
	}
	.flow ul.flow-items .flow-item-title {
		text-align: left;
		margin-bottom: 12px;
	}
	
	.flow .point-items {
		width: 80%;
	}
	.flow ul.point-list {
		flex-direction: column;
		margin-top: -18px;
	}
	.flow ul.point-list li {
		width: 100%;
		padding: 0 9px;
		margin-top: 22px;
	}
	.flow ul.point-list li dl.point-item {
		flex-direction: row;
	}
	.flow ul.point-list li dl.point-item dt {
		width: 18%;
		max-width: 75px;
	}
	.flow ul.point-list li dl.point-item dt img {
		width: 100%;
	}
	.flow ul.point-list li dl.point-item dd {
		width: 75%;
		max-width: 300px;
		margin: 0 0 0 32px;
		font-size: 1.1em;
		font-weight: 600;
	}
}
@media screen and (max-width: 430px) {
	.flow .point-items {
		width: 100%;
	}
	.flow ul.point-list li {
		padding: 0 18px;
		margin-top: 18px;
	}
	.flow ul.point-list li dl.point-item dt {
	}
	.flow ul.point-list li dl.point-item dd {
		margin-left: 18px;
	}
}
@media screen and (max-width: 380px) {
	.flow ul.flow-items li .circle .circle-mini {
		left: 45px;
	}
	.flow ul.point-list li {
		padding: 0 3px;
	}
}
@media screen and (max-width: 320px) {
	.flow ul.flow-items {
		margin-bottom: 20px;
	}
	.flow ul.flow-items li .circle .circle-mini {
		left: 10px;
	}
	.flow ul.flow-items li .text {
		top: 100px;
		line-height: 1.6;
	}
	.flow ul.point-list li {
		padding: 0;
	}
	.flow ul.point-list li dl.point-item dd {
		margin-left: 12px;
	}
}


/* プロが教えるゴミ屋敷克服へのポイント
 * *********************************/

.article {
	background: #FFFBE8;
}
.article .article-items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.article .article-items .article-item {
	text-align: center;
	width: calc(100%/3 - 12px);
	margin: 30px 18px 0 0;
}
.article .article-items .article-item:nth-child(3n) {
	margin-right: 0;
}
.article .article-items .article-item img {
	width :100%;
	border-radius: 18px;
}
.article .article-items .article-item p.article_title {
	color: #333;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 12px;
}
.article .article-items .article-item a {
	display: block;
}

/* マンガ */
.article .manga-banner {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 60px;
}
.article .manga-banner a.manga-banner-permalink {
	display: inline-block;
	width: 300px;
}

@media screen and (max-width: 768px) {
	.article .article-items .article-item {
		width: calc(100%/2 - 9px);
	}
	.article .article-items .article-item:nth-child(odd) {
		margin-right: 18px;
	}
	.article .article-items .article-item:nth-child(even) {
		margin-right: 0;
	}
}
@media screen and (max-width: 559px) {
	.article .article-items .article-item {
		width: calc(100%/2 - 6px);
	}
	.article .article-items .article-item:nth-child(odd) {
		margin-right: 12px;
	}
}
@media screen and (max-width: 430px) {
	.article .article-items {
		margin-top: 10px;
	}
	.article .article-items .article-item {
		margin-top: 15px;
	}
	.article .article-items .article-item p.article_title {
		
	}
	
	/* マンガ */
	.article .manga-banner {
		flex-direction: column;
	}
	.article .manga-banner a.manga-banner-permalink {
		width: 80%;
        margin: 0 auto;
	}
}
@media screen and (max-width: 320px) {

}

	
/* お知らせ
 * *********************************/

.news {
	
}
.news .news-outline {
	position: relative;
}
.news .news-outline img.news-Illust {
	max-width: 320px;
    width: 28%;
    position: absolute;
        bottom: 80%;
    right: 3vw;
    z-index: 1;
}

.news .news-title-flex {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}
.news .news-title-flex .news-title {
	text-align: left;
	margin: 0;
	line-height: 1;
}
.news .news-title-flex .news-title span {
	display: inline-block;
	color: #009900;
    margin-left: 18px;
}
.news .news-title-flex a.btnPage {
	background: none;
    padding: 0;
	margin-left: 32px;
    color: #009900;
    line-height: 1;
}
.news .btnBox {
	display: none;
}


.news .news-items {
	padding: 60px;
    box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
    border-radius: 18px;
}
.news .news-items .news_title {
	position: relative;
	color: #F2CE04;
	text-align: left;
	border-left: 3px solid #F2CE04;
	line-height: 1;
	font-size: 1.3em;
	padding-left: 12px;
	margin-bottom: 30px;
}
.news ul.news-list {
}
.news ul.news-list li {
	border-bottom: 2px dotted #009900;
}
.news ul.news-list li:first-child {
	border-top: 2px dotted #009900;
}
.news ul.news-list li a {
	display: block;
	padding: 18px 30px;
	color: #000;
}
.news ul.news-list li a:hover {
	color: #009900;
}
.news ul.news-list li dl {
	display: flex;
}
.news ul.news-list li dl dt {
	width: 15%;
	min-width: 150px;
}
.news ul.news-list li dl dd {
	width: 85%;
	max-width: 870px;
}

@media screen and (max-width: 1194px) {
	
}
@media screen and (max-width: 768px) {
	.news .btnBox {
		display: block;
	}
	.news .news-title-flex a.btnPage {
		display: none;
	}
	
	.news .news-outline img.news-Illust {
		width: 44%;
		bottom: 88%;
	}
	
	.news .news-items {
		padding: 45px;
		margin-bottom: 60px;
	}
	.news ul.news-list li dl {
		flex-direction: column;
	}
	.news ul.news-list li dl dt {
		width: 100%;
		min-width: 100%;
		color: #666;
	}
	.news ul.news-list li dl dd {
		width: 100%;
		max-width: 100%;
	}
	.news ul.news-list li a {
		padding: 18px 12px;
	}
}
@media screen and (max-width: 559px) {
	.news {
		
	}
	
	
	
	.news .news-items {
		padding: 30px;
	}
	.news .news-outline img.news-Illust {
		width: 46%;
        bottom: 89%;
	}
	.news ul.news-list li a {
		padding: 18px 0;
	}
	.news ul.news-list li span {
		display: block;
	}
}
@media screen and (max-width: 430px) {
	.news {
		
	}
	.news .news-outline img.news-Illust {
		width: 47%;
        bottom: 90%;
	}
	.news .news-items {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 380px) {
	.news .news-outline img.news-Illust {
		width: 47%;
        bottom: 91%;
		right: 0;
	}
	.news .news-title-flex {
		margin-bottom: 18px;
	}
	.news .news-title-flex .news-title span {
		margin-left: 6px;
	}
	.news .news-items {
		margin-bottom: 30px;
		padding: 30px 20px;
	}
}






