@charset "UTF-8";
/* ******************************************************************

	--carbonfree.css--

	1. Layout setting

****************************************************************** */
/*==================================================================
	1. Layout setting
===================================================================*/
body {
	font-family: "Noto Sans JP", sans-serif;
	--color--primary: #00b895;
	--color-secondary: #f5b60c;
}

/*	Text
===================================================================*/
.subTxt {
	font-size: 10px;
	vertical-align: baseline;
}

/*	Recommend section
===================================================================*/
.recommend {
	display: flex;
	flex-direction: row;
	gap: 25px
}
.recommend li {
	border: 4px solid #00B895;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 24px 10px 13px;
	width: calc(100% / 3);
}
.recommend .recommendImg {
	margin-bottom: 8px;
	text-align: center;
}
.recommend .recommendTxt {
	font-size: 116%;
	font-weight: 500;
	line-height: 1.6;
}

@media screen and (max-width:999px) {
	.recommend {
		gap: 2.5vw;
	}
	.recommend .recommendImg img {
		width: 13.613vw;
	}
}

@media screen and (max-width:736px) {
	.recommend {
		flex-direction: column;
		gap: 15px;
	}
	.recommend li {
		border: 2px solid #00B895;
		border-radius: 5px;
		align-items: center;
		flex-direction: row;
		justify-content: flex-start;
		gap: 13px;
		padding: 13px 12px 12px;
		text-align: left;
		width: 100%;
	}
	.recommend .recommendImg {
		margin: 7px 0 5px;
		max-width: 82px;
		width: 100%;
	}
	.recommend .recommendImg img {
		width: auto;
	}
}

/*	Feature section
===================================================================*/

.featureItem {
	border: 4px solid #00B895;
	border-radius: 10px;
	margin: -20px 0 30px;
	overflow: hidden;
}
.feature .itemInner {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	gap: 30px;
	padding: 11px 26px 14px;
}
.feature .textCol {
	width: 502px;
	max-width: 100%;
}
.feature .imageCol {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 328px;
	max-width: 100%;
}
.feature .itemImg1 {
	width: 221px;
	max-width: 100%;
}
.feature .itemImg2 {
	width: 128px;
	max-width: 100%;
}
.feature .itemTtl {
	color: #00B895;
	font-size: 167%;
	font-weight: bold;
	margin: 14px 0 8px;
}
.feature .itemTtl .subTxt {
	font-size: 74%;
}
.feature .itemTxt {
	font-size: 138.5%;
	line-height: 1.8;
}
.feature .detailTtl {
	font-size: 116%;
	font-weight: 500;
	background-color: #F4F4F4;
	padding: 20px 70px 20px 27px;
	position: relative;
}
.feature .detailTtl:hover {
	cursor:pointer;
}
.feature .detailTtl::before,
.feature .detailTtl::after {
	content: "";
	background-color: #333;
	display: inline-block;
	width: 20px;
	height: 4px;
	position: absolute;
	top: 50%;
	right: 26px;
	transition: transform 0.3s;
	z-index: 1;
	transform: translateY(-50%);
}
.feature .detailTtl::before {
	width: 4px;
	height: 20px;
	right: 34px;
}
.feature .detailTtl.active::before {
	display: none;
}
.feature .detailContent {
	display: none;
	padding: 21px 27px 26px;
}
.feature .detailTxt {
	font-size: 116%;
	padding-bottom: 16px;
	line-height: 1.8;
}
.featureDetail .txtNote5 {
	margin-bottom: 0;
}

@media screen and (max-width:736px) {
	.feature .itemInner {
		flex-direction: column;
		gap: 12px;
		padding: 28px 13px 16px;
	}
	.featureItem {
		border-width: 2px;
		border-radius: 5px;
		margin: -16px 0 20px;
	}
	.feature .textCol {
		order: 2;
		width: 100%;
	}
	.feature .imageCol {
		order: 1;
	}
	.feature .itemTtl {
		font-size: 146.5%;
		margin: 0 0 8px;
		line-height: 1.5;
	}
	.feature .itemTxt {
		font-size: 116%;
	}
	.feature .itemImg1 {
		width: 168px;
	}
	.feature .itemImg2 {
		width: 111px;
	}
	.feature .detailTtl {
		font-size: 108%;
		padding: 13px 35px 13px 13px;
	}
	.feature .detailTtl::before,
	.feature .detailTtl::after {
		width: 15px;
		height: 3px;
		position: absolute;
		right: 13px;
	}
	.feature .detailTtl::before {
		width: 3px;
		height: 15px;
		right: 19px;
	}
	.feature .detailContent {
		padding: 15px 13px;
	}
}

/*	Bill section
===================================================================*/

.bill {
	background-color: #F4F4F4;
	border-radius: 10px;
	padding: 60px;
	max-width: 720px;
	width: 100%;
	margin: -20px auto 0;
}
.headTxt {
	font-size: 116%;
	text-align: center;
	margin-bottom: 30px;
}
.bill .billItem {
	margin-bottom: 20px;
	position: relative;
}
.billItem:last-child {
	margin-bottom: 0;
}
.bill .billItem::after,
.bill .itemFlex::before {
	background-repeat: no-repeat;
	background-size: 30px 30px;
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 30px;
	z-index: 1;
}
.bill .billItem::after {
	background-image: url(/img/carbonfree/icon_plus01.svg);
	left: 50%;
	bottom: -24px;
	transform: translateX(-50%);
}
.bill .itemFlex {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.bill .itemFlex::after {
	background-image: url(/img/carbonfree/icon_plus02.svg);
}
.bill .itemFlex::before {
	background-image: url(/img/carbonfree/icon_plus01.svg);
	background-position: center 0;
	top: 50%;
	transform: translateY(-50%);
}
.bill .itemInner {
	background-color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 17px;
}
.bill .itemFlex .itemInner {
	width: calc(100% / 2);
}
.bill .itemTtl {
	color: #00B895;
	font-size: 138.5%;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	padding-bottom: 3px;
}
.bill .itemTxt {
	font-size: 108%;
	font-weight: 500;
}
.bill .wrap {
	background-color: #00B895;
	border-radius: 10px;
	padding: 30px 40px 15px;
}
.bill .wrap .wrapTtl {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	margin-bottom: 12px;
}
.bill .wrap .wrapTtl1 {
	font-size: 153.9%;
	font-weight: bold;
}
.bill .wrap .wrapTtl2 {
	display: block;
	font-size: 108%;
	font-weight: 500;
	line-height: 1.6;
}
.bill .wrap .wrapContent {
	display: flex;
	flex-direction: row;
	gap: 4px;
	margin-bottom: 8px;
}
.bill .wrap .contentTtl {
	background-color: #fff;
	color: #00B895;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 108%;
	font-weight: 500;
	width: 25%;
	padding: 10px;
	line-height: 1.6;
}
.bill .wrap .contentTxt {
	background-color: #fff;
	color: #00B895;
	font-size: 108%;
	font-weight: 500;
	width: 75%;
	text-align: center;
	padding: 10px;
	line-height: 1.6;
}
.bill .wrap .contentTxt span {
	display: block;
	font-size: 86%;
	font-weight: bold;
}
.bill .wrap .wrapTxt {
	color: #fff;
	font-size: 101%;
	line-height: 1.7;
}

@media screen and (max-width:736px) {
	.bill {
		border-radius: 5px;
		padding: 35px 15px 15px;
		margin-top: -15px;
	}
	.headTxt {
		margin-bottom: 20px;
	}
	.bill .billItem {
		margin-bottom: 15px;
	}
	.bill .itemFlex {
		gap: 15px;
	}
	.bill .itemInner {
		border-radius: 5px;
		padding: 7px;
	}
	.bill .billItem::after,
	.bill .itemFlex::before {
		background-size: 20px 20px;
		height: 20px;
		width: 20px;
	}
	.bill .billItem::after {
		bottom: -17px;
	}
	.bill .wrap {
		border-radius: 5px;
		padding: 12px 15px 13px;
	}
	.bill .itemTtl {
		font-size: 116%;
		padding-bottom: 0;
	}
	.bill .itemTxt {
		font-size: 77%;
	}
	.bill .wrap .wrapTtl {
		margin-bottom: 9px;
	}
	.bill .wrap .wrapTtl1 {
		font-size: 116%;
	}
	.bill .wrap .wrapTtl2 {
		font-size: 77%;
		line-height: 1.5;
	}
	.bill .wrap .wrapContent {
		gap: 2px;
		margin-bottom: 14px;
	}
	.bill .wrap .contentTtl {
		font-size: 93%;
		padding: 5px;
		width: 18%;
	}
	.bill .wrap .contentTxt {
		padding: 5px;
		width: 83%;
	}
	.bill .wrap .contentTxt {
		font-size: 93%;
	}
	.bill .wrap .contentTxt span {
		font-size: 83%;
	}
	.bill .wrap .wrapTxt {
		font-size: 93%;
		line-height: 1.6;
	}
}

/*	About contract
===================================================================*/
.txt01 {
	padding-bottom:25px;
	font-size:115%;
	line-height:1.8;
}
.txt01 span {
	display:inline-block;
	padding-top: 2px;
	font-size:67%;
	vertical-align:top;
}
.txtNote5 {
	margin-bottom: 40px;
	padding:0 0 0 1.3em;
	font-size:100%;
	text-align:left;
	line-height:1.55;
	text-indent:-1.3em;
}
.txtNote5 span {
	margin-right:3px;
	color:#EF1A30;
}
.agreemImage {
	margin-bottom: 80px;
}
.otherNote {
	margin-top: -28px;
	padding: 34px 30px 26px;
	background-color: #F4F4F4;
}
.listDot li {
	position: relative;
	margin-bottom: 13px;
	padding-left: 20px;
	font-size: 116%;
	line-height: 1.85;
}
.listDot li:last-child {
	margin-bottom: 0;
}
.listDot li::before {
	position: absolute;
	content: '●';
	left: 0;
	top: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	color: #000;
}
.noteList01 li {
	margin-bottom: 13px;
	padding-left: 20px;
	font-size: 115%;
	line-height: 1.8;
	text-indent: -20px;
}
.noteList01 li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	.agreemImage img {
		width: 100%;
	}
	.headline12 {
		margin-bottom: 17px;
		font-size: 162%;
	}
	.txt01 {
		padding-bottom:18px;
	}
	.txtNote5 {
		margin-bottom: 30px;
	}
	.agreemImage {
		margin-bottom: 80px;
	}
	.otherNote {
		margin-top: -23px;
		padding: 23px 15px 21px;
	}
	.listDot li {
		padding-left: 22px;
	}
	.listDot li:last-child {
		margin-bottom: 0;
	}
	.noteList01 li {
		margin-bottom: 14px;
	}
	.noteList01 li:last-child {
		margin-bottom: 0;
	}
}

/*	Tab section
===================================================================*/
.tabHeadGroup {
	display: flex;
	gap: 20px;
}
.tabHead {
	height: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 4px solid var(--color--primary);
	border-radius: 10px 10px 0 0;
	padding: 4px;
	background-color: #fff;
	color: var(--color--primary);
	font-size: 18px;
	font-weight: bold;
	border-bottom: none;
	cursor: pointer;
	flex: 1;
	text-align: center;
}
.tabHead.active {
	background-color: var(--color--primary);
	color: #fff;
}
.tabBody {
	padding: 40px;
	background-color: var(--color--primary);
	border-radius: 0 0 10px 10px;
}
.tabBodyGroup {
	display: flex;
	gap: 30px;
}
.tabItem {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 20px 16px;
	background-color: #fff;
	border-radius: 10px;
	flex: 1;
}
.tabItem.tabBox {
	padding: 40px;
}
.tabArrow {
	position: absolute;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 21px solid #fff;
	top: 50%;
	right: -25px;
	transform: translate(0, -50%);
}
.tabTtl {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--color-secondary);
	margin-bottom: 22px;
	line-height: 1.45;
	width: 100%;
	text-align: center;
}
.tabTtlSub {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.444;
	margin-bottom: 22px;
}
.tabImgGroup {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tabImg {
	max-width: 220px;
	width: 100%;
	margin-bottom: 22px;
	text-align: center;
}
.tabImg3 {
	max-width: 220px;
	width: 100%;
	text-align: center;
	margin-bottom: 18px;
}
.tabImgSpace {
	margin-bottom: 8px;
}
.tabTxt {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.45;
	margin-bottom: 8px;
}
.tabTxtCs {
	margin: 0 -15px 8px;
}
.tabTxt .highlight {
	color: var(--color-secondary);
}
.tabInfo {
	font-size: 15px;
	line-height: 1.4;
	margin-bottom: 8px;
	text-align: center;
}
.tabInfo .highlight {
	color: var(--color--primary);
	font-weight: bold;
}
.tabInfo.tabInfoCs {
	text-align: start;
	line-height: 1.6;
}
.tabInfo.tabInfoCs .highlight {
	color: #ef1a30;
}
.tabInfo .bold {
	font-weight: bold;
}
.tabImgIcon {
	max-width: 22px;
	margin-bottom: 1px;
}
.tabTxtGroup {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tabUnit {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 7px;
}
.tabUnit .number {
	font-family: "Roboto", sans-serif;
	font-size: 30px;
	color: #ef1a30;
	line-height: 1.16666;
}
.tabDesc {
	font-size: 18px;
	line-height: 1.8;
}
.tabDesc .highlight {
	font-weight: bold;
}
.jsTabBody {
	display: none;
}
.jsTabBody.active {
	display: block;
}

.tabItemCs .tabTtl {
	margin-bottom: 9px;
}
.tabItemCs .tabImg {
	margin-bottom: 7px;
}
.btnLinkHeight {
	display: flex;
	align-items: center;
	height: 187px;
	margin-bottom: 23px;
}
.btnLink {
	font-size: 15px;
	color: #fff !important;
	padding: 18px 54px 17px 20px;
	line-height: 1.6;
	border-radius: 8px;
	background: url(/img//carbonfree/icon_arrow.svg) no-repeat top 50% right
		20px;
	background-color: #f5b60c;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.tabHeadGroup {
		gap: 5px;
	}
	.tabHead {
		height: unset;
		border: 2px solid var(--color--primary);
		border-radius: 5px 5px 0 0;
		font-size: 14px;
		border-bottom: none;
		padding: 10px 24px;
		line-height: 1.4;
	}
	.tabBody {
		padding: 20px 15px 15px;
		border-radius: 0 0 5px 5px;
	}
	.tabBodyGroup {
		gap: 15px;
		flex-direction: column;
	}
	.tabBodyGroup2 {
		gap: 30px;
	}
	.tabItem {
		padding: 15px;
		border-radius: 5px;
	}
	.tabItem.tabBox {
		padding: 15px;
	}
	.tabTtl {
		font-size: 15px;
		padding-bottom: 10px;
		border-bottom: 2px solid var(--color-secondary);
		margin-bottom: 10px;
	}
	.tabTtl.tabTtlSpace {
		margin-bottom: 20px;
	}
	.tabTtlSub {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.tabImgGroup {
		align-items: flex-end;
		flex-direction: row;
		justify-content: center;
		width: 100%;
		margin-bottom: 12px;
	}
	.tabImg {
		max-width: 100px;
		margin-bottom: 0;
		margin-right: 12px;
	}
	.tabImg2 {
		max-width: 55px;
		margin-right: 23px;
	}
	.tabImg3 {
		max-width: 100%;
		margin-bottom: 15px;
	}
	.tabTxt {
		font-size: 14px;
		margin-bottom: 6px;
	}
	.tabInfo {
		font-size: 10px;
		line-height: 1.4;
		margin-bottom: 0;
		text-align: start;
	}
	.tabInfo.tabInfoCs {
		font-size: 15px;
	}
	.tabImgIcon {
		max-width: 22px;
		margin-bottom: 4px;
	}
	.tabTxtGroup {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	.tabTxtGroup .tabInfo {
		padding-top: 4px;
	}
	.tabUnit {
		font-size: 14px;
		margin-bottom: 0;
	}
	.tabUnit .number {
		font-size: 20px;
	}
	.tabDesc {
		font-size: 15px;
	}
	.tabArrow {
		top: unset;
		bottom: -30px;
		right: 50%;
		transform: translate(50%, 0) rotate(90deg);
		border-top: 15px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 20px solid #fff;
	}
	.btnLinkHeight {
		height: unset;
		margin-bottom: 23px;
	}
	.btnLink {
		border-radius: 4px;
	}
}

/*	Table styles
===================================================================*/
.tableWrap {
	max-width: 720px;
	margin: 0 auto;
}
.tableStyle {
	width: 100%;
	margin-bottom: 20px;
	border: 2px solid #cfcfcf;
}
.tableStyle th {
	padding: 19px 2px 17px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	background: #f4f4f4;
}
.tableStyle th.wFirst {
	width: 200px;
}
.tableStyle td {
	padding: 19px 19px 23px 22px;
	line-height: 2;
	font-size: 16px;
	text-align: start;
}
.tableStyle td:first-child {
	text-align: center;
	font-weight: bold;
}
.tableNote {
	font-size: 13px;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.tableWrap {
		max-width: 100%;
	}
	.tableStyle {
		margin-bottom: 10px;
	}
	.tableStyle th {
		padding: 10px 2px;
		font-size: 14px;
	}
	.tableStyle th.wFirst {
		width: 95px;
	}
	.tableStyle td {
		padding: 15px 10px;
		font-size: 14px;
	}
}
@media screen and (max-width: 400px) {
	.tableStyle td {
		padding: 15px 0 15px 5px;
		font-size: 13px;
	}
}

/*	FAQ section
===================================================================*/
.qAItem {
	margin-bottom: 30px;
	padding-bottom: 28px;
	border-bottom: 2px solid #cfcfcf;
}
.qAItem.hide {
	display: none;
}
.qAHead {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}
.qATtl {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	font-weight: bold;
	align-items: center;
	line-height: 1.45;
	font-family: "Roboto", sans-serif;
	border-radius: 50%;
	color: #fff;
}
.qATtl.head {
	background-color: var(--color-secondary);
}
.qATtl.body {
	background-color: var(--color--primary);
}
.qAHeadTxt {
	flex: 1;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
}
.qABody {
	display: flex;
	gap: 20px;
}
.qAHBodyTxt {
	flex: 1;
	margin-top: 9px;
	font-size: 15px;
	line-height: 1.8;
}
.openQA {
	font-size: 116%;
	font-weight: 500;
	background-color: #f4f4f4;
	padding: 20px 70px 20px 27px;
	position: relative;
	cursor: pointer;
}
.openQA::before,
.openQA::after {
	content: "";
	background-color: #333;
	display: inline-block;
	width: 20px;
	height: 4px;
	position: absolute;
	top: 50%;
	right: 26px;
	transition: transform 0.3s;
	z-index: 1;
	transform: translateY(-50%);
}
.openQA::before {
	width: 4px;
	height: 20px;
	right: 34px;
}
.openQA.active::before {
	display: none;
}
@media screen and (max-width: 768px) {
	.qAHead {
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 20px;
	}
	.qATtl {
		width: 40px;
		height: 40px;
		font-size: 25px;
	}
	.qAHeadTxt {
		font-size: 15px;
	}
	.qABody {
		align-items: flex-start;
		gap: 10px;
	}
	.qAHBodyTxt {
		margin-top: 0;
	}
	.openQA {
		padding: 15px;
	}
	.openQA::before,
	.openQA::after {
		width: 15px;
		height: 3px;
		position: absolute;
		right: 13px;
	}
	.openQA::before {
		width: 3px;
		height: 15px;
		right: 19px;
	}
}