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

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

* {
	box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p,span,small,dl,dt,dd,ol,ul,li {
  margin: 0;
  font-size: 100%;
}
h1,h2,h3,h4,h5,h6 {
}
ul {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
img {
  vertical-align: top;
}
li {
  list-style-type: none;
  vertical-align: baseline;
}


/*--------------------------------------
　Base
---------------------------------------*/
/*html {
    font-size: 62.5%;
}*/
body {
	color: #1f1f1f;
	font-family: 'Noto Sans JP', sans-serif;
	/*font-size: 1.5rem;*/
	line-height: 2;
	min-width: 100%;
	position: relative;
	-webkit-text-size-adjust: none;
	margin: 8rem 0 9rem;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
img { 
  max-width: 100%; 
  height: auto;
}
a {
	color: #1f1f1f;
	text-decoration: none;
	transition: all .3s;
}
a:hover {
	text-decoration: none;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	opacity: 0.7;
}
.cf:after {
	content: "";
	display: block;
	clear: both;
}
.sp {
	display: none;
}
.wi1100 {
	width: 100%;
	margin: 0 auto;
}
.bold {
	font-weight: bold;
}
#contents .red {
	color: #be3737;
	font-size: 100%;
}
#contents .txt_red {
	color: #ff5643;
}
.small {
	font-size: 1.2rem;
}
.align_right {
	text-align: right;
}
.align_left {
	text-align: left;
}
.align_center {
	text-align: center;
}


/*--------------------------------------
　Header
---------------------------------------*/
header {
	background: #fff;
	width: 100%;
	height: auto;
	min-width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	box-shadow: 0 1px 10px rgba(0,0,0,0.1);
}
header .h1Area {
	background: #eef8f6;
	padding: 0.2rem 1rem 0.2rem;
	overflow-x: auto;
    white-space: nowrap;
}
header .h1Area h1 {
	color: #000;
	font-size: 1rem;
}
header .midArea {
	width: 100%;
	padding: 1rem;
}
header .logo {
	float: left;
	width: 160px;
	margin: 0.4rem 0 0;
}


.menuBtn {
	float: right;
	width: 25px;
	height: 25px;
	position: relative;
	margin: 11px 0.5rem 0 1.5rem;
}	
.menuBtn span {
	background: #324150;
	width: 25px;
	height: 2px;
	position: absolute;
	left: 0;
	transition: all .4s;
}	
.menuBtn span:nth-child(1) {
	top: 0;
}
.menuBtn span:nth-child(2) {
	top: 8px;
}
.menuBtn span:nth-child(3) {
	top: 16px;
}
.menuBtn.open span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
.menuBtn.open span:nth-child(2) {
  opacity: 0;
}
.menuBtn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(315deg);
}


/*header #gNav {
	padding: 15px;
	background: #00a082;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s linear;
}
header #gNav.is-active {
	pointer-events: auto;
	opacity: 1;
}
header #gNav .navInr {
}
header #gNav ul li {
	border-bottom: solid 1px #000;
}
header #gNav ul li a {
	font-size: 1.5rem;
	font-weight: bold;
	display: block;
	background: #fff url("../../images/shared/arr_gr_right.png") no-repeat center right 1.5rem;
	background-size: 12px auto;
	padding: 12px 20px 12px 40px;
}*/


header #gNav {
	background: #00a082;
	position: absolute;
	top: 8rem;
	left: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s linear;
}
header #gNav.is-active {
	pointer-events: auto;
	opacity: 1;
}
header #gNav ul {
	width: 100%;
	margin: 0 auto;
}
header #gNav li {
	position: relative;
	border-bottom: solid 1px #fff;
}
header #gNav li:last-child {
	border-bottom: none;
}
header #gNav li a {
	background: url("../../images/shared/arr_wh_right.png") no-repeat center right 1.5rem;
	background-size: 12px auto;
	font-size: 1.4rem;
	font-weight: 500;
	display: block;
	color: #fff;
	height: 100%;
	letter-spacing: 0.03em;
	cursor: pointer;
	padding: 1.5rem 4rem 1.5rem 1.5rem;
}


/*--------------------------------------
　ContactArea
---------------------------------------*/
.contactArea {
	background: url("../../images/shared/bg_contact.jpg") no-repeat;
	background-size: cover;
	padding: 4rem 4% 1.5rem;
}
.contactArea .btn {
	width: 100%;
	height: auto;
	float: none;
	text-align: center;
	background: #fff;
}
.contactArea .btn .tit {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.3;
}
.contactArea .btn .tit span {
	font-size: 2.3rem;
	display: block;
	letter-spacing: 0.02em;
}
.contactArea .btn_contact {
	margin: 0 0 1.5rem;
	height: 94px;
}
.contactArea .btn_contact a {
	background: url("../../images/shared/arr_gr_right.png") no-repeat right 1.5rem center, url("../../images/shared/icon_mail_gr.png") no-repeat left 2rem center;
	background-size: 13px auto, 26px auto;
	background-color: #fff;
	display: block;
	height: 100%;
	color: #00a082;
	padding: 1rem 1rem 0.5rem 3rem;
}
.contactArea .small {
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.contactArea .btn_freedial {
}
.contactArea .btn_freedial a {
	background: #ff5643;
	color: #fff;
	padding: 1rem 1rem 0.5rem;
	display: block;
}
.contactArea .btn_freedial .tel {
	font-family: 'Oswald', sans-serif;
	background: url("../../images/shared/icon_freedial_wh.png") no-repeat left top 10px;
	background-size: 28px auto;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.06em;
	padding: 0 0 0 4rem;
    display: table;
    margin: 0.3rem auto 0;
}
.contactArea .btn_line {
	clear: both;
	padding: 1.5rem 0 0;
}
.contactArea .notice {
	font-size: 1.1rem;
	text-align: right;
	color: #fff;
	margin: 1.5rem 0 0;
}


/*--------------------------------------
　Footer
---------------------------------------*/
footer {
	background: #324150;
	width: 100%;
	padding: 4rem 0 0;
}
footer .pageTop {
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 105px;
	right: 3%;
	z-index: 1;
}
footer .ftInr {
	width: 100%;
	margin: 0 auto;
	display: block;
	padding: 0 4%;
}
footer .logo {
	width: 200px;
	display: block;
	margin: 0 auto 3rem;
}
footer .logo img {
	width: 100%;
}
footer .ftNav {
	display: block;
}
footer .ftNav ul {
	display: table;
	margin: 0 auto;
}
footer .ftNav li {
	float: left;
	width: 50%;
	line-height: 1.5;
	padding: 0 0 0 1rem;
	margin: 0 0 1rem;
}
footer .ftNav li a {
	color: #fff;
	font-size: 1.4rem;
}
footer .copy {
	font-size: 1rem;
	color: #fff;
	text-align: center;
	background: #000;
	padding: 0.5rem 1rem;
	margin: 3rem 0 0;
}

/*#ftFix {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
}
#ftFix ul {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#ftFix ul li {
	width: calc(100% / 2);
  border-top: 1px solid #fff;
}
#ftFix ul li:nth-child(2n+1) {
  border-right: solid 1px #fff;
}
#ftFix ul li a {
	display: table;
	text-align: center;
	color: #fff;
  width: 100%;
	height: 45px;
	padding: 0 0 0 15px;
	line-height: 1;
	letter-spacing: 0.01em;
}
#ftFix ul li a span {
  display: table-cell;
  vertical-align: middle;
  font-size: 15px;
  font-weight: bold;
}
#ftFix ul li.calendar a {
	background: #006ebe url("../../../asset/images/shared/icon_calendar.png") no-repeat left 15px center;
	background-size: 18px auto;
    padding: 0 0 0 20px;
}
#ftFix ul li.web a {
	background: #fa9128 url("../../../asset/images/shared/icon_mail.png") no-repeat left 16px center;
	background-size: 18px auto;
}
#ftFix ul li.tel a {
	background: #FF5642 url("../../../asset/images/shared/icon_freedial_wh.png") no-repeat left 14px center;
	background-size: 21px auto;
}
#ftFix ul li.line a {
	background: #00b900 url("../../../asset/images/shared/icon_line.png") no-repeat left 14px center;
	background-size: 22px auto;
}*/



/*--------------------------------------
　KV（下層）
---------------------------------------*/
#key.lower {
	display: table;
	width: 100%;
	height: 150px;
	padding: 10px 4%;
}
#key.lower .mainTitBox {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
#key.lower .mainTit {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.5;
}
#key.lower .parent {
	font-size: 15px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.4;
	margin: 0 0 5px;
}



/*--------------------------------------
　ぱんくず
---------------------------------------*/
#pankuzuWrap {
	width: 100%;
	margin: 1rem auto;
	overflow-x: auto;
}
#pankuzuWrap .pankuzu {
	font-size: 0;
	white-space: nowrap;
	padding: 0 6px;
}
#pankuzuWrap .pankuzu li {
	display: inline-block;
	font-size: 1.2rem;
}
#pankuzuWrap .pankuzu li:after {
	content: ">";
	padding: 0 1rem;
}
#pankuzuWrap .pankuzu li:last-child {
	margin: 0;
}
#pankuzuWrap .pankuzu li:last-child:after {
	content: none;
}
#pankuzuWrap .pankuzu li a {
	color: #69b987;
	text-decoration: underline;
}
#pankuzuWrap .pankuzu li a:hover {
	text-decoration: none;
	opacity: 1;
}




/*--------------------------------------
　CONTENT
---------------------------------------*/
#contents {
}


/* 共通 */
section {
	padding: 6rem 0;
}
section:first-child {
	padding: 3rem 0 6rem;
}
#contents .bg_green {
	background: #eef8f6;
}



/* 見出し */
#contents .secTit {
	font-size: 2.6rem;
	color: #00a082;
	font-weight: 700;
	margin: 0 0 4rem;
	text-align: center;
	line-height: 1.4;
}
#contents .lead {
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	margin: 0 0 2rem;
}
#contents .subTit {
	font-size: 20px;
	font-weight: 700;
	color: #00a082;
	letter-spacing: 0.05em;
	line-height: 1.4;
	padding: 0 0 10px;
	margin: 0 0 20px;
	border-bottom: solid 2px #b4d2c8;
}
#contents .bigCatch {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	margin: 0 0 20px;
}
#contents .bigCatch .txt_red {
	font-weight: 700;
	
}

/* ボタン */
#contents .btn-internal {
}
#contents .btn-internal a {
	background: #fff url("../../images/shared/arr_gr_right.png") no-repeat right 1.5rem center;
	background-size: 12px auto;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1ebea0;
	text-align: center;
	letter-spacing: 0.1em;
	border: solid 2px #1ebea0;
	display: block;
	line-height: 1.5;
	padding: 2rem 3.5rem 2rem 2rem;
}
#contents .btn-internal-s {
	width: 80%;
	margin: 0 auto;
}
#contents .btn-internal-s a {
	background: #fff url("../../images/shared/arr_gr_right.png") no-repeat right 1.5rem center;
	background-size: 12px auto;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: normal;
	padding: 1.3rem 4.5rem;
}

#contents .btnWrap .btn {
	float: left;
	width: 95px;
}
#contents .btnWrap .btn a {
	border-radius: 10px;
	color: #fff;
	font-weight: 700;
	display: block;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
	padding: 50px 10px 10px 10px;
	box-shadow: 0 2px 2px 1px rgba(0,0,0,0.25);
}
#contents .btnWrap .btn_calendar {
	margin: 0 5px 0 0;
}
#contents .btnWrap .btn_calendar a {
	background: #006ebe url("../../images/shared/icon_calendar.png") no-repeat top 10px center;
	background-size: 30px auto;
}
#contents .btnWrap .btn_contact {
	margin: 0;
}
#contents .btnWrap .btn_contact a {
	background: #fa9128 url("../../images/shared/icon_mail.png") no-repeat top 10px center;
	background-size: 28px auto;
}
#contents .btnWrap .btn_line {
	margin: 0 5px 0 0;
}
#contents .btnWrap .btn_line a {
	background: #00b900 url("../../images/shared/icon_line.png") no-repeat top 10px center;
	background-size: 30px auto;
	padding: 50px 10px 10px 10px;
}
/* LAYOUT */

#contents .topTxtBox {
	line-height: 1.8;
	padding: 0 4%;
	font-size: 14px;
	margin: 30px 0;
}

#contents .pointBox {
	background: #ff4b37;
	padding: 2rem;
	position: relative;
}
#contents .pointBox:before {
    content: "";
    background: url("../../images/top/fuki_red.png") no-repeat;
	background-size: 100%;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -20px;
	right: 30%;
}
#contents .pointBox p {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
	text-align: center;
	line-height: 1.6;
}
#contents .pointBox p span {
	font-size: 1.7rem;
	color: #fbfb00;
	display: block;
	line-height: 1.6;
}


#contents .noticeArea {
	margin: 25px 0 0;
}
#contents .noticeArea .tit {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 10px;
	background: url("../../../../asset/images/shared/icon_attention.png") no-repeat top center;
	background-size: 38px auto;
	padding: 45px 0 0;
}
#contents .noticeArea p {
	text-align: left;
	line-height: 1.8;
	font-size: 13px;
}

#contents .lead_txt {
	line-height: 2;
	margin: 0 0 40px;
}
#contents .reasonBox {
	border: solid 4px #1aaa8f;
	background: #fff;
	padding: 0 20px 20px;
}
#contents .reasonBox .label {
	background: #1aaa8f;
	font-size: 16px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	border-radius: 25px;
	padding: 10px 10px 12px;
	line-height: 1.4;
	display: block;
	margin: -24px auto 20px;
}
#contents .reasonBox .graph {
	float: none;
	width: 100%;
	margin: 0 0 20px 0;
}
#contents .reasonBox .txtBox {
	overflow: inherit;
	width: 100%;
	padding: 0;
}
#contents .reasonBox .txtBox p {
	line-height: 1.8;
}
#contents .reasonBox .txt_gr {
	margin: 10px 0 0;
}
#contents .txt_gr {
	color: #00a082;
}

#contents .service_point {
	margin: 60px 0 0;
	position: relative;
}
#contents .service_point:before {
	content: "";
	background: url("../../../../asset/images/shared/arr_service_point.png") no-repeat;
	background-size: 100%;
	width: 60px;
	height: 76px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 30px);
}
#contents .service_point.not_arrow:before {
	content: none;
}
#contents .service_point .pointBoxWrap {
	text-align: center;
}
#contents .service_point .pBox {
	width: 31%;
	float: left;
	margin: 0 3% 0 0;
}
#contents .service_point .pBox:last-child {
	margin: 0;
	
}
#contents .service_point .pBox .icon {
	width: 105px;
	height: 105px;
	background: url("../../../../asset/images/shared/icon_service_point01.png") no-repeat;
	background-size: 100%;
	margin: 0 auto 10px;
	padding: 10px 0 0;
	position: relative;
}
#contents .service_point .pBox:nth-child(2) .icon {
	background: url("../../../../asset/images/shared/icon_service_point02.png") no-repeat;
	background-size: 100%;
}
#contents .service_point .pBox:nth-child(3) .icon {
	background: url("../../../../asset/images/shared/icon_service_point03.png") no-repeat;
	background-size: 100%;
}
#contents .service_point .pBox .icon .label {
	background: #ffc819;
	font-size: 12px;
	text-align: center;
	font-weight: 700;
	border-radius: 30px;
	padding: 2px 0 1px;
}
#contents .service_point .pBox .bigTxt {
	font-size: 17px;
	text-align: center;
	font-weight: 900;
	color: #fff;
	position: absolute;
	bottom: 10px;
    left: calc(50% - 17px);
}
#contents .service_point .pBox .txt {
	line-height: 1.8;
	font-size: 13px;
	text-align: left;
}

/*--------------------------------------
　bnArea
---------------------------------------*/
#contents .bnArea {
	background: #eef8f6;
	padding: 3rem 0 0 !important;
}
#contents .bnArea .bnList {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 0 4% 2rem;
}
#contents .bnArea .bnList li {
	width: 48%;
	margin: 0 3% 3% 0;
}
#contents .bnArea li:nth-child(2n){
	margin: 0 0 3%;
}
#contents .bnArea .btnArea {
	background: #e4f4f0;
	padding: 2rem 0;
}
#contents .bnArea .btnArea .btn-internal {
	width: 86%;
	margin: 0 auto;
}

#contents .compare .tableWrap {
	margin: 0 0 5rem;
}
#contents .compare .tableBox {
	margin: 0 0 1rem;
}
#contents .compare .tableBox .sBox {
	margin: 0 0 1.5rem;
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#contents .compare .tableBox .sBox.last .box.supporter {
	width: 66%;
}
    
#contents .compare .tableBox .box {
	width: 32.6%;
	text-align: center;
	margin: 0 1% 0 0;
	padding: 0;
}
#contents .compare .tableBox .box:last-child {
	margin: 0;
}
#contents .compare .tableBox .box > div {
	background: #fff;
	letter-spacing: 0.03em;
	height: 44px;
	color: #000;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 8px 0;
	margin: 0 0 4px;
}
#contents .compare .tableBox .supporter > div {
	color: #ff4b37;
	font-size: 1.6rem;
	padding: 5px 0 0;
}
#contents .compare .tableBox .box > .green {
	background: #d2ebe6;
}
#contents .compare .tableBox .box:first-child > div {
	color: #00a082;
	font-size: 1.4rem;
	font-weight: 700;
}
#contents .compare .tableBox .box > .head {
	font-size: 1.6rem;
	font-weight: 700;
	color: #000;
	background: transparent;
	margin: 0 0 5px;
	padding: 9px 0 0;
}
#contents .compare .tableBox .supporter > .head {
	color: #64d20a;
}
#contents .compare .tableBox .supporter {
	position: relative;
}
#contents .compare .tableBox .supporter:before {
	content:"";
	border: solid 4px #64d20a;
	width: 100%;
	height: calc(100% - 4px);
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
}
#contents .compare .tableBox .supporter .red {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	background: #ff4b37;
	line-height: 1.5;
	width: calc(100% - 16px);
    height: 80px;
	padding: 15px;
	position: absolute;
	bottom: 8px;
    left: 8px;
}

#contents .compare .tableBox .table_img {
	margin: 0 0 2rem;
}
#contents .compare .tableBox .table_img > div {
	margin: 0 auto 2rem;
	display: table;
}
#contents .compare .pointBox {
	background: #ff4b37;
	padding: 2rem;
	position: relative;
}
#contents .compare .pointBox:before {
    content: "";
    background: url("../../images/top/fuki_red.png") no-repeat;
	background-size: 100%;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -20px;
	right: 30%;
}
#contents .compare .pointBox p {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
	text-align: center;
	line-height: 1.6;
}
#contents .compare .pointBox p span {
	font-size: 1.7rem;
	color: #fbfb00;
	display: block;
	line-height: 1.6;
}

/*--------------------------------------
　item
---------------------------------------*/
#contents .item {
}
#contents .item .itemBoxWrap {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#contents .item .itemBox {
	width: 48%;
	margin: 0 3% 3% 0;
	background: #fff;
}
#contents .item .itemBox:nth-child(2n) {
	margin: 0 0 3% 0;
}
#contents .item .itemBox .photo {
	height: 18vh;
	overflow: hidden;
}
#contents .item .itemBox .txtBody {
    padding: 3rem 1.5rem 1.5rem;
	position: relative;
}
#contents .item .itemBox .txtBody p {
	font-size: 1.3rem;
    line-height: 1.6;
}
#contents .item .itemBox .planName {
	background: #00a082;
    padding: 1.4rem 1rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    position: absolute;
    width: 165px;
    top: -2.5rem;
    left: -0.8rem;
}
#contents .item .itemBox:nth-child(2) .planName {
	background: #fa9128;
}
#contents .item .itemBox:nth-child(3) .planName {
	background: #ff5643;
}
#contents .item .itemBox:nth-child(4) .planName {
	background: #a0a0a0;
}
#contents .item .itemBox .planName:before {
	content: "";
	position: absolute;
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 8px transparent;
    border-right: solid 8px #005032;
}
#contents .item .itemBox:nth-child(2) .planName:before {
    border-right: solid 8px #7d4614;
}
#contents .item .itemBox:nth-child(3) .planName:before {
    border-right: solid 8px #7d2828;
}
#contents .item .itemBox:nth-child(4) .planName:before {
    border-right: solid 8px #505050;
}



/*--------------------------------------
　recycle
---------------------------------------*/
#contents .recycle .itemBoxWrap {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 10px;
}
#contents .recycle .itemBox {
	width: 48%;
    margin: 0 3% 3% 0;
	background: #eef8f6;
}
#contents .recycle .itemBox:nth-child(2n) {
	margin: 0 0 3% 0;
}
#contents .recycle .itemBox .photo {
	overflow: hidden;
}
#contents .recycle .itemBox .txtBody {
	padding: 3rem 1.5rem 1.5rem;
	position: relative;
}
#contents .recycle .itemBox .txtBody p {
	font-size: 13px;
	line-height: 1.6;
}
#contents .recycle .itemBox .planName {
	background: #00a082;
    padding: 1.4rem 1rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    position: absolute;
    width: 165px;
    top: -2.5rem;
    left: -0.8rem;
}
#contents .recycle .itemBox .planName:before {
	content: "";
	position: absolute;
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 8px transparent;
    border-right: solid 8px #005032;
}
#contents .recycle .notBuyBox {
	margin: 20px 0 0;
}
#contents .recycle .notBuyBox .tit {
	background: #00a082;
	font-size: 16px;
	text-align: center;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
	padding: 13px;
	line-height: 1.4;
}
#contents .recycle .notBuyBox .txtBox {
	background: #eef8f6;
	padding: 20px;
}
#contents .recycle .notBuyBox .txtBox li {
	color: #fa9128;
	font-weight: 500;
	float: left;
	font-size: 15px;
	margin: 0 10px 0 0;
}
#contents .recycle .notBuyBox .txtBox li:before {
	content: "・";
	color: #000;
}
#contents .recycle .notice {
	font-size: 12px;
}
#contents .cost .pointBox:before {
    content: none;
}
#contents.area .reason {
	margin: 0;
}



/*--------------------------------------
　fuki_voice
---------------------------------------*/
#contents .fuki_voice {
	background: url("../../../../asset/images/shared/bg_note_white.jpg");
}
#contents .fuki_voice .voiceArea {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#contents .fuki_voice .voiceArea .voiceBox {
	width: 160px;
	height: 160px;
	background: url("../../../../asset/images/plan/fuki_green.png") no-repeat;
	background-size: 100%;
	display: table;
	position: relative;
	margin: 0 5px 20px;
	padding: 0 20px 15px;
}
#contents .fuki_voice .voiceArea .voiceBox p {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}
#contents .fuki_voice .voiceArea .voiceBox .photo {
	width: 70px;
	height: 70px;
	position: absolute;
	bottom: -10px;
	right: 0;
	z-index: 1;
}
#contents .fuki_voice .voiceArea .voiceBox .photo:before {
	content: "";
	background: #d8efeb;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	position: absolute;
	bottom: -3px;
	right: -3px;
	z-index: -1;
}
#contents .fuki_voice .voiceArea .voiceBox .photo img {
	border-radius: 50%;
}


/*--------------------------------------
　reuse banner
---------------------------------------*/
#contents .reuseBn {
	border: solid 4px #00a082;
	position: relative;
	background: #e5f4fb url("../../images/shared/bn_reuse.jpg") no-repeat bottom right;
	background-size: contain;
	height: 100%;
	padding: 20px;
	width: 92%;
	margin: 0 auto;
}
#contents .reuseBn .label {
	background: #00a082;
	font-size: 16px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	width: 93%;
	padding: 15px 15px 15px;
	line-height: 1.5;
	position: absolute;
	top: 20px;
	left: -14px;
}
#contents .reuseBn .label:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 10px transparent;
    border-right: solid 10px #005032;
}
#contents .reuseBn .txtBox {
	padding: 85px 0 0;
	position: relative;
}
#contents .reuseBn .txtBox p {
	color: #1f1f1f;
	font-weight: 500;
	line-height: 1.8;
	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}
#contents .reuseBn .txtBox .catch {
	font-size: 17px;
	color: #00a082;
	font-weight: 900;
	line-height: 1.6;
	margin: 10px 0 0;
	padding: 0 85px 0 0;
	/*text-shadow: 1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;*/
}
#contents .reuseBn .popFuki {
	background: url("../../../../asset/images/shared/fuki_otoku.png") no-repeat;
	background-size: 100%;
	width: 78px;
	height: 80px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	padding: 25px 0 0 3px;
	position: absolute;
	bottom: 0px;
	right: 0;
}