@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------

 newlife

-----------------------------------------------*/

.newlifeCont *{
	box-sizing: border-box;
}

.newlifeCont > section{
	margin-bottom: 80px;
}

.newlifeCont mark{
	background-color: transparent;
	color: inherit;
	background-image: linear-gradient(to bottom, transparent 60%, #ffec4c 60%);
}

/*-----メインイメージ-----*/
.newlifeCont .main-img{
	margin-bottom: 30px;
}
.newlifeCont .main-img h2{
	margin-bottom: 30px;
}

.newlifeCont .main-img h3{
	display: block;
	width: fit-content;
	color: #313131;
	margin: auto;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	position: relative;
}
.newlifeCont .main-img h3 span{
	display: block;
	padding: 10px 50px;
	position: relative;
}
.newlifeCont .main-img h3:before,
.newlifeCont .main-img h3:after,
.newlifeCont .main-img h3 span:before,
.newlifeCont .main-img h3 span:after{
	content: "";
	display: block;
	background-color: #abe050;
	position: absolute;
}
.newlifeCont .main-img h3:before{
	width: 2px;
	height: 75px;
	left: 0;
	bottom: -10px;
}
.newlifeCont .main-img h3:after{
	width: 75px;
	height: 2px;
	left: -10px;
	bottom: 0;
}

.newlifeCont .main-img h3 span:before{
	width: 2px;
	height: 75px;
	right: 0;
	top: -10px;
}
.newlifeCont .main-img h3 span:after{
	width: 75px;
	height: 2px;
	right: -10px;
	top: 0;
}

.newlifeCont .main-img h3 b{
	background-image: linear-gradient(to bottom, transparent 60%, #ffe99e 60%);
}
.newlifeCont .main-img h3 b.green{
	color: #abe050;
}
.newlifeCont .main-img h3 b.pink{
	color: #f573ad;
}

/**/
.newlifeCont .aboutBox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 95%;
	margin: auto;
}
.newlifeCont .aboutBox > p{
	width: 420px;
	font-size: 14px;
	line-height: 2em;
}



@media screen and (max-width: 736px) {
	.newlifeCont .main-img h3{
		width: 95%;
		font-size: 25px;
	}
	.newlifeCont .main-img h3 span{
		padding: 10px 10px;
	}
	.newlifeCont .main-img h3:before{
		height: 75px;
		bottom: -10px;
	}
	.newlifeCont .main-img h3:after{
		width: 75px;
		left: -10px;
	}
	
	.newlifeCont .main-img h3 span:before{
		height: 75px;
		top: -10px;
	}
	.newlifeCont .main-img h3 span:after{
		width: 75px;
		right: -10px;
	}
	
	/**/
	.newlifeCont .aboutBox{
		gap: 20px 0;
	}
	.newlifeCont .aboutBox > img{
		width: 42%;
	}
	.newlifeCont .aboutBox > p{
		width: 55%;
	}
	
	
}
@media screen and (max-width: 480px) {
	.newlifeCont .main-img h3{
		font-size: 22px;
	}
	.newlifeCont .main-img h3 span{
		padding: 15px;
	}
	.newlifeCont .main-img h3:before{
		height: 60px;
		bottom: -8px;
	}
	.newlifeCont .main-img h3:after{
		width: 60px;
		left: -8px;
	}
	
	.newlifeCont .main-img h3 span:before{
		height: 60px;
		top: -8px;
	}
	.newlifeCont .main-img h3 span:after{
		width: 60px;
		right: -8px;
	}
	
	/**/
	.newlifeCont .aboutBox{
		flex-wrap: wrap;
		gap: 20px 0;
	}
	.newlifeCont .aboutBox > img,
	.newlifeCont .aboutBox > p{
		width: 100%;
		max-width: 400px;
		margin: auto;
	}
}


/*------目次------*/
.newlifeCont .indexBox{
	width: 85%;
	margin: 50px auto 70px;
	border: 3px solid #abe050;
	border-radius: 20px;
	position: relative;
}

.newlifeCont .indexBox h3{
	display: block;
	background-color: #abe050;
	color: #5d5d5d;
	margin: 20px auto;
	font-size: 18px;
	font-weight: bold;
	line-height: 2em;
	text-align: center;
	position: relative;
}

.newlifeCont .indexBox ol{
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 30px 40px;
	font-size: 18px;
	font-weight: 600;
	counter-reset: number;
}
.newlifeCont .indexBox ol > li{
	padding-left: 30px;
	color: #cb205c;
	position: relative;
}
.newlifeCont .indexBox ol > li:before{
	counter-increment: number;
	content: counter(number);
	display: block;
	background: #404040;
	color: #fff;
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	text-align: center;
	font-size: 12px;
	line-height: 1.5em;
	position: absolute;
	left: 0;
	top: 4px;
	margin: auto;
}
.newlifeCont .indexBox ol > li > a{
	color: #f573ad;
}

.newlifeCont .indexBox ol > li > ul{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 10px 0 0;
	font-size: 17px;
}
.newlifeCont .indexBox ol > li > ul > li{
	margin-left: 50px;
	padding-left: 20px;
	position: relative;
}
.newlifeCont .indexBox ol > li > ul > li:before{
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-top: 3px solid #404040;
	border-right: 3px solid #404040;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 7px
}
.newlifeCont .indexBox ol > li ul > li > a{
	color: #7b656f;
}

@media screen and (max-width: 736px) {
	/*目次*/
	.newlifeCont .indexBox{
		width: 85%;
	}
	.newlifeCont .indexBox h3{
		font-size: 18px;
	}
	.newlifeCont .indexBox{
		margin: 50px auto 70px;
	}
	.newlifeCont .indexBox ol{
		margin: 20px 25px;
		font-size: 16px;
	}
	.newlifeCont .indexBox ol > li > ul{
		gap: 15px;
		font-size: 15px;
	}
	.newlifeCont .indexBox ol > li > ul > li{
		margin-left: 20px;
	}
}
@media screen and (max-width: 480px) {
	/*目次*/
	.newlifeCont .indexBox{
		width: 90%;
	}
	.newlifeCont .indexBox h3{
		font-size: 16px;
	}
	.newlifeCont .indexBox ol{
		gap: 20px;
		margin: 10px 20px 20px;
		font-size: 15px;
	}
	.newlifeCont .indexBox ol > li > ul{
		gap: 5px;
	}
	.newlifeCont .indexBox ol > li > ul > li{
		margin-left: 0;
	}

}

/*------コラム------*/
.newlifeCont .column-box {
	max-width: 810px;
	margin: 50px auto;
}
.newlifeCont .column-box > h3{
	background-image: url(../../../_images/campaign/newlife/title-deco.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	color: #313131;
	margin-bottom: 20px;
	padding: 10px 10px 15px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3em;
	border-bottom: 3px solid #abe050;
	position: relative;
}
.newlifeCont .column-box > h3:before{
	content: "コラム";
	display: block;
	width: fit-content;
	color: #f573ad;
	margin-bottom: 10px;
	padding: 3px 10px;
	font-size: 15px;
	line-height: 1.2em;
	border: 1px solid #f573ad;
	border-radius: 5px;
}
.newlifeCont .column-box > h3:after{
	content: "";
	display: block;
	width: 99%;
	height: 2px;
	background-color: #abe050;
	position: absolute;
	bottom: 3px;
	left: 0;
	right: 0;
}
.newlifeCont .column-box > h3 span{
	color: #f573ad;
}


.newlifeCont .column-box .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}
.newlifeCont .column-box .inner > p{
	font-size: 14px;
	line-height: 2em;
}


@media screen and (max-width: 736px) {
	.newlifeCont .column-box {
		width: 95%;
	}
	.newlifeCont .column-box > h3{
		background-size: 180px auto;
		font-size: 22px;
	}
	.newlifeCont .column-box > h3:before{
		margin-bottom: 5px;
		font-size: 14px;
	}
	
	.newlifeCont .column-box .inner{
		gap: 30px 0;
	}
	.newlifeCont .column-box .inner > img{
		width: 42%;
	}
	.newlifeCont .column-box .inner > p{
		width: 55%;
	}
}

@media screen and (max-width: 480px) {
	.newlifeCont .column-box > h3{
		background-size: 120px auto;
		font-size: 19px;
	}
	.newlifeCont .column-box > h3:before{
		margin-bottom: 5px;
		font-size: 14px;
	}
	
	.newlifeCont .column-box .inner{
		flex-wrap: wrap;
		gap: 20px;
	}
	.newlifeCont .column-box .inner > img{
		width: 100%;
		max-height: 250px;
		object-fit: contain;
	}
	.newlifeCont .column-box .inner > p{
		width: 100%;
	}
}


/*------コンテンツ-アイテム情報------*/
.newlifeCont .item-box{
	max-width: 860px;
	margin: 50px auto 100px;
}
.newlifeCont .item-box h3{
	background-image:
		repeating-linear-gradient(90deg, #dadada, #dadada 1px, transparent 1px, transparent 16px),
		repeating-linear-gradient(0deg, #dadada, #dadada 1px, #fff 1px, #fff 16px);
	background-position: center;
	background-size: 32px 32px;
	color: #4d4d4d;
	margin-bottom: 10px;
	padding: 25px 10px 10px;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	border-top: 3px solid #abe050;
	border-bottom: 3px solid #abe050;
	position: relative;
}
.newlifeCont .item-box h3 span.mini{
	display: block;
	width: fit-content;
	background-color: #f573ad;
	color: #fff;
	margin: auto;
	padding: 5px 18px;
	font-size: 17px;
	line-height: 1.5em;
	border-radius: 10px;
	box-shadow: 3px 3px 0 #ffc90c;
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
}
.newlifeCont .item-box h3 span.mini:before,
.newlifeCont .item-box h3 span.mini:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 12px solid #f573ad;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -18px;
	margin: auto;
}
.newlifeCont .item-box h3 span.mini:before{
	border-top: 12px solid #ffc90c;
	bottom: -20px;
	right: -4px;
}

/**/
.newlifeCont .item-box .info-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px 0;
	margin: 30px auto;
}
.newlifeCont .item-box .info-box > p{
	width: 500px;
	font-size: 14px;
	line-height: 2em;
}

/**/
.newlifeCont .item-box > section {
	margin: 40px auto 60px;
}
.newlifeCont .item-box > section > h4{
	display: block;
	width: 80%;
	max-width: 580px;
	background-color: #f573ad;
	background-image: url(../../../_images/campaign/newlife/title-bg-cross.png);
	color: #fff;
	margin: 20px auto;
	padding: 5px 20px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	border-radius: 15px;
}
.newlifeCont .item-box > section > h4:before{
	content: "＋";
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}


@media screen and (max-width: 736px) {
	.newlifeCont .item-box{
		margin: 50px auto 100px;
	}
	.newlifeCont .item-box h3{
		padding: 25px 5px 10px;
		font-size: 28px;
	}
	.newlifeCont .item-box h3 span.mini{
		padding: 5px 15px;
		font-size: 16px;
	}
	
	/**/
	.newlifeCont .item-box .info-box{
		width: 95%;
	}
	.newlifeCont .item-box .info-box > img{
		width: 42%;
	}
	.newlifeCont .item-box .info-box > p{
		width: 55%;
	}
	
	/**/
	.newlifeCont .item-box > section > h4{
		padding: 5px 20px;
		font-size: 20px;
	}
}

@media screen and (max-width: 480px) {
	.newlifeCont .item-box{
		margin: 50px auto 100px;
	}
	.newlifeCont .item-box h3{
		background-image:
			repeating-linear-gradient(90deg, #dedede, #dedede 1px, transparent 1px, transparent 10px),
			repeating-linear-gradient(0deg, #dedede, #dedede 1px, #fff 1px, #fff 10px);
		background-position: center;
		background-size: 20px 20px;
		padding: 25px 5px 5px;
		font-size: 25px;
	}
	.newlifeCont .item-box h3 span.mini{
		padding: 5px 10px;
		font-size: 15px;
	}
	
	/**/
	.newlifeCont .item-box .info-box{
		flex-wrap: wrap;
	}
	.newlifeCont .item-box .info-box > img{
		width: 100%;
		max-height: 220px;
		object-fit: contain;
	}
	.newlifeCont .item-box .info-box > p{
		width: 100%;
	}
	
	/**/
	.newlifeCont .item-box > section > h4{
		width: fit-content;
		padding: 5px 15px;
		font-size: 18px;
	}
}


/*----商品リスト-並び----*/
.newlifeCont .item-box .item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
	margin: 0;
}
.newlifeCont .item-box .item-list > li a{
	display: block;
}
.newlifeCont .item-box .item-list > li a img{
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid #ccc;
}

.newlifeCont .item-box .item-list > li{
	width: calc((100% / 3) - 14px);
}
.newlifeCont .item-box .item-list > li .item-info{
	color: #666;
	margin-bottom: 10px;
}
.newlifeCont .item-box .item-list > li .item-info .item-name{
	margin-bottom: 5px;
	padding-bottom: 5px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: -0.03em;
	border-bottom: 1px solid #666;
}
.newlifeCont .item-box .item-list > li .item-info .number{
	font-size: 13px;
	font-weight: 600;
}
.newlifeCont .item-box .item-list > li .item-info .price{
	color: #111;
	font-size: 13px;
	font-weight: 600;
}
.newlifeCont .item-box .item-list > li .item-info .price em{
	color: #ff0000;
	font-size: 22px;
	font-weight: 600;
}
.newlifeCont .item-box .item-list > li .item-info + p{
	font-size: 13px;
}

.newlifeCont .item-box .item-list > li .link-btn{
	display: block;
	background-color: #ffc90c;
	color: #272727;
	margin: 20px auto 0;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	transition: all .3s ease;
	position: relative;
}
.newlifeCont .item-box .item-list > li .link-btn:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-left: 10px solid #272727;
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}

/*hover*/
.newlifeCont .item-box .item-list > li a:hover .link-btn,
.newlifeCont .item-box .item-list > li a:hover .link-btn:hover{
	background-color: #f4dc07;
}

/*-----関連記事-----*/
.newlifeCont .item-box .related-box{
	width: 80%;
	max-width: 800px;
	margin: 50px auto;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.newlifeCont .item-box .related-box a{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	padding: 30px;
	position: relative;
}
.newlifeCont .item-box .related-box a:before{
	content: "関連記事";
	display: block;
	width: fit-content;
	background-color: #7a8acf;
	color: #fff;
	padding: 3px 25px;
	font-size: 13px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 20;
}
.newlifeCont .item-box .related-box a .link{
	background-color: #4a4a4a;
	color: #fff;
	padding: 8px 20px;
	padding-right: 30px;
	font-size: 15px;
	font-weight: 600;
	transition: all .3s ease;
	position: absolute;
	right: 30px;
	bottom: 15px;
}
.newlifeCont .item-box .related-box a .link:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-left: 8px solid #fff;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.newlifeCont .item-box .related-box a img{
	width: 25%;
	height: 160px;
	object-fit: cover;
}
.newlifeCont .item-box .related-box a dl{
	margin-bottom: 30px;
}
.newlifeCont .item-box .related-box a dl dt{
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
}

/*hover*/
.newlifeCont .item-box .related-box a:hover{
	border-radius: 10px;
	box-shadow: 0 0 0 2px #7a8acf inset;
}
.newlifeCont .item-box .related-box a:hover .link{
	background-color: #7a8acf;
}

@media screen and (max-width: 736px) {
	.newlifeCont .item-box{
		margin: 50px 0;
	}

	/*----商品リスト-並び----*/
	.newlifeCont .item-box .item-list{
		gap: 30px 15px;
		width: 95%;
		margin: 0 auto;
	}
	.newlifeCont .item-box .item-list > li{
		width: calc((100% / 3) - 10px);
	}
	.newlifeCont .item-box .item-list > li .item-info .item-name{
		font-size: 15px;
	}
	.newlifeCont .item-box .item-list > li .item-info .number{
		font-size: 13px;
	}
	.newlifeCont .item-box .item-list > li .item-info .price em{
		font-size: 20px;
	}
	.newlifeCont .item-box .item-list > li .link-btn{
		padding: 10px;
		padding-right: 20px;
		font-size: 15px;
	}
	.newlifeCont .item-box .item-list > li .link-btn:after{
		border-width: 6px;
		border-left-width: 8px;
	}

	
	/*-----関連記事-----*/
	.newlifeCont .item-box .related-box{
		width: 90%;
	}
	.newlifeCont .item-box .related-box a{
		padding: 25px;
	}
	.newlifeCont .item-box .related-box a:before{
		padding: 3px 20px;
	}
	.newlifeCont .item-box .related-box a .link{
		padding: 5px 15px;
		padding-right: 30px;
		font-size: 15px;
		right: 20px;
		bottom: 15px;
	}

	.newlifeCont .item-box .related-box a img{
		width: 25%;
		height: 120px;
	}
	.newlifeCont .item-box .related-box a dl{
		width: 70%;
		margin-bottom: 30px;
	}
	.newlifeCont .item-box .related-box a dl dt{
		font-size: 20px;
	}

}

@media screen and (max-width: 480px) {
	.newlifeCont .item-box .link-btn{
		margin: 15px auto 0;
		padding: 10px;
		font-size: 15px;
	}

	/*----商品リスト-並び----*/
	.newlifeCont .item-box .item-list{
		gap: 30px 15px;
		width: 95%;
		margin: 0 auto;
	}
	.newlifeCont .item-box .item-list > li{
		width: calc((100% / 2) - 8px);
	}
	.newlifeCont .item-box .item-list > li .item-name{
		font-size: 15px;
	}
	.newlifeCont .item-box .item-list > li .item-info li{
		font-size: 14px;
	}
	.newlifeCont .item-box .item-list > li .item-info .number{
		font-size: 14px;
	}
	.newlifeCont .item-box .item-list > li .item-info .price em{
		font-size: 18px;
	}
	
	/*-----関連記事-----*/
	.newlifeCont .item-box .related-box a{
		justify-content: space-between;
		align-items: flex-start;
		gap: 15px 0;
		padding: 25px 8px 20px;
	}
	.newlifeCont .item-box .related-box a:before{
		padding: 0 15px;
	}
	.newlifeCont .item-box .related-box a .link{
		padding: 3px 10px;
		padding-right: 30px;
		font-size: 14px;
		right: 10px;
		bottom: 10px;
	}

	.newlifeCont .item-box .related-box a img{
		width: 25%;
		height: 80px;
	}
	.newlifeCont .item-box .related-box a dl{
		width: 72%;
		margin-bottom: 30px;
	}
	.newlifeCont .item-box .related-box a dl dt{
		font-size: 15px;
	}

}



/*------一覧へのリンク------*/
.newlifeCont .listLinkBtn{
	margin: 50px auto;
}
.newlifeCont .listLinkBtn a{
	display: block;
	width: 70%;
	max-width: 700px;
	background: #fff;
	color: #ff4a16;
	margin: 15px auto;
	padding: 20px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #ff4a16;
	border-radius: 10px;
	position: relative;
}
.newlifeCont .listLinkBtn a:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 10px solid #ff4a16;
	transition: all .3s ease;
	position: absolute;
	right: 10px;
	top: 5px;
	bottom: 0;
	margin: auto;
}

/*hover*/
.newlifeCont .listLinkBtn a:hover{
	width: 90%;
	background: #ffcbbc;
}

@media screen and (max-width: 736px) {
	.newlifeCont .listLinkBtn{
		margin: 30px auto 50px;
	}
	.newlifeCont .listLinkBtn a{
		width: 80%;
		padding: 20px;
		padding-right: 30px;
		font-size: 18px;
	}
}

@media screen and (max-width: 480px) {
	.newlifeCont .listLinkBtn a{
		width: 85%;
		font-size: 16px;
	}
}



