:root {
	/* フォントファミリー */
	--font-sans: "Noto Sans JP", sans-serif;
	--font-serif: "Noto Serif JP", serif;

	/* カラー */
	--color-base: #009a5a;
	--color-bg01: #f2f8f6;
}
/* ---------------------------------------------- */

.js-fadeIn,
.js-fade,
.js-fadeInRight,
.js-fadeInLeft {
	opacity: 0;
}

.md-btn {
	display: flex;
	align-items: center;
}
.md-btn a {
	width: 370rem;
	background-color: var(--color-base);
	padding: 23rem 45rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 18rem;
	font-weight: 500;
	line-height: calc(34 / 18);
	text-decoration: none;
	text-align: left;
	transition: -webkit-filter 0.3s linear;
	transition: filter 0.3s linear;
	transition: filter 0.3s linear, -webkit-filter 0.3s linear;
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
}
.md-btn a:hover {
	-webkit-filter: contrast(1.5);
	filter: contrast(1.5);
}
.md-btn._is-arw a::before {
	content: " ";
	width: 6rem;
	height: 11rem;
	background: url(../common/images/icn_btn_arw.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 40rem;
	transform: translateY(-50%);
}
.md-btn._is-blank a {
	text-align: center;
	width: 310rem;
}
.md-btn._is-blank a::before {
	content: " ";
	width: 11rem;
	height: 11rem;
	background: url(../common/images/icn_btn_blank.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 40rem;
	transform: translateY(-50%);
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.md-btn {
	}
	.md-btn a {
		width: 100%;
		padding: 30rem 55rem;
		font-size: 36rem;
	}
	.md-btn._is-arw a::before {
		content: " ";
		width: 12rem;
		height: 22rem;
		right: 50rem;
	}
	.md-btn._is-blank a {
		width: 100%;
	}
	.md-btn._is-blank a::before {
		content: " ";
		width: 28rem;
		height: 28rem;
		background: url(../common/images/icn_btn_blank.svg) no-repeat center center;
		background-size: cover;
		position: absolute;
		top: 50%;
		right: 110rem;
		transform: translateY(-50%);
	}
}

.md-ttl {
	text-align: center;
}
.md-ttl .ttl__en {
	color: var(--color-base);
	font-size: 13rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.2em;
}
.md-ttl .ttl__jp {
	display: block;
	margin-top: 15rem;
	font-size: 32rem;
	font-weight: 500;
	line-height: 1.6;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.md-ttl {
		text-align: center;
	}
	.md-ttl .ttl__en {
		font-size: 26rem;
	}
	.md-ttl .ttl__jp {
		margin-top: 25rem;
		font-size: 54rem;
	}
}


.md-buyBox {
	text-align: center;
}
.md-buyBox .buyBox__lead {
	font-family: var(--font-sans);
	color: #fff;
	font-size: 16rem;
	font-weight: bold;
	line-height: 1.6;
}
.md-buyBox .buyBox__ttl {
	margin: 24rem auto 0;
	width: 270rem;
}
.md-buyBox .buyBox__ttlJp {
	margin-top: 30rem;
	text-align: center;
	color: #fff;
	font-size: 21rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.2em;
}
.md-buyBox .md-btn {
	margin-top: 45rem;
}
.md-buyBox .md-btn a {
	text-align: center;
	width: 280rem;
	padding: 20rem 45rem;
	margin: 0 auto;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.md-buyBox {
		text-align: center;
	}
	.md-buyBox .buyBox__lead {
		font-size: 30rem;
		text-align: left;
	}
	.md-buyBox .buyBox__ttl {
		margin: 35rem auto 0;
		width: 320rem;
	}
	.md-buyBox .buyBox__ttlJp {
		margin-top: 80rem;
		font-size: 39rem;
	}
	.md-buyBox .md-btn {
		margin-top: 75rem;
	}
	.md-buyBox .md-btn a {
		width: 100%;
		padding: 20rem 45rem;
	}
}


.md-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 100000;
	opacity: 0;
	z-index: -10;
	display: none;
}
.md-modal .modal__inr {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.md-modal .modal__ol {
	background-color: rgba(0, 0, 0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.md-modal .modal__cts {
	width: 700rem;
	min-height: 390rem;
	background-color: #fff;
	padding: 30rem 50rem;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.md-modal .modal__close {
	position: absolute;
	top: 15rem;
	right: 15rem;
	cursor: pointer;
	width: 23rem;
}
.md-modal .modalBlock {
}
.md-modal .modalBlock__ttl {
	text-align: center;
	font-size: 18rem;
	font-weight: bold;
	line-height: calc(30 / 18);
}
.md-modal .modalBlock__cts {
	margin-top: 15rem;
}
.md-modal .modalBlock__icn {
	text-align: center;
}
.md-modal .modalBlock__icnTxt {
	color: #707070;
	font-size: 13rem;
	line-height: calc(19 / 13);
}
.md-modal .modalBlock__icnImg {
	margin: 10rem auto 0;
	width: 200rem;
	height: 200rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	border-radius: 500rem;
}
.md-modal .modalBlock__icnLabel {
	padding: 15rem 50rem 25rem;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0,0.4);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.md-modal .modalBlock__icnLabel .md-btn {
	font-size: 13rem;
}
.md-modal .modalBlock__icnLabel input {
	display: none;
}
.md-modal .modalBlock__btn {
	margin-top: 25rem;
}
.md-modal .modalBlock__btn._btn-grid {
	display: flex;
	align-items: center;
	justify-content: center;
}
.md-modal .modalBlock__btn._btn-grid .md-btn {
	margin: 0 15rem;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal .modal__inr {
		padding: 30rem;
		box-sizing: border-box;
	}
	.md-modal .modal__cts {
		width: 100%;
		padding: 30rem 50rem 50rem;
	}
	.md-modal .modal__close {
		top: 25rem;
		right: 25rem;
		width: 40rem;
	}
	.md-modal .modalBlock__ttl {
		font-size: 36rem;
	}
	.md-modal .modalBlock__cts {
		margin-top: 15rem;
	}
	.md-modal .modalBlock__icnTxt {
		font-size: 26rem;
	}
	.md-modal .modalBlock__icnImg {
		margin: 15rem auto 0;
		width: 400rem;
		height: 400rem;
		border-radius: 500rem;
	}
	.md-modal .modalBlock__icnLabel {
		padding: 35rem 90rem 45rem;
	}
	.md-modal .modalBlock__btn {
		margin-top: 40rem;
	}
	.md-modal .modalBlock__btn._btn-grid {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 40rem -15rem 0;
	}
	.md-modal .modalBlock__btn._btn-grid .md-btn {
		margin: 0 15rem;
	}
}


/* ---------------------------------------------- */
.secMain {
	position: relative;
	overflow: hidden;
}
.secMain .secMain__inr {
	height: 780rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.secMain .secMain__img picture{
  height: 100%;
}
.secMain .secMain__img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
}
.secMain .secMain__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.secMain .secMain__body {
	z-index: 10;
	text-align: center;
	position: relative;
}
.secMain .secMain__lead {
	color: #fff;
	font-family: var(--font-sans);
	font-size: 16rem;
	font-weight: bold;
	line-height: 1.5;
}
.secMain .secMain__ttl {
	width: 270rem;
	margin: 20rem auto 0;
}
.secMain .secMain__desc {
	margin-top: 36rem;
	color: #fff;
	font-size: 21rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.2em;
}
.secMain .md-btn {
	margin-top: 65rem;
	justify-content: center;
}
.secMain .secMain__awardWrap {
	margin: 20rem auto 0;
	max-width: 325px;
}
.secMain .secMain__itemImg {
	position: absolute;
	top: 50%;
	right: -65rem;
	transform: translate(100%,-50%);
	width: 190rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secMain .secMain__inr {
		height: 1120rem;
	}
	.secMain .secMain__body {
		width: 100%;
		margin-top: -60rem;
	}
	.secMain .secMain__lead {
		font-size: 30rem;
	}
	.secMain .secMain__ttl {
		width: 545rem;
		margin: 35rem auto 0;
	}
	.secMain .secMain__desc {
		margin-top: 50rem;
		font-size: 32rem;
		letter-spacing: 0.1em;
		max-width: 470rem;
		display: block;
	}
	.secMain .secMain__awardWrap {
		margin: 80rem auto 0;
		max-width: 100%;
	}
	.secMain .secMain__award {
		max-width: 470rem;
		display: block;
	}
	.secMain .secMain__itemImg {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(10%, -40%);
		width: 150rem;
	}
	.secMain .md-btn {
		margin: 120rem auto 0;
		position: static;
		transform: translateX(0);
		width: 650rem;
	}
}


.pageNav {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1000;
}
.pageNav .pageNav__inr {
	padding: 20rem 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pageNav .pageNav__ttl {
	width: 100rem;
}
.pageNav .pageNav__list {
	display: flex;
	align-items: center;
	gap: 35rem;
}
.pageNav .pageNav__item {
	font-size: 16rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
.pageNav .pageNav__item a {
	display: block;
	text-decoration: none;
	position: relative;
}
.pageNav .pageNav__item:not(._type-buy) a::before {
	content: " ";
	width: 0;
	height: 1px;
	background-color: #333;
	position: absolute;
	bottom: -5rem;
	right: 0;
	transition: all 0.3s linear;
}
.pageNav .pageNav__item a:not(._type-buy):hover::before {
	width: 100%;
	right: auto;
	left: 0;
}
.pageNav .pageNav__item._type-buy {
	margin-left: 20rem;
}
.pageNav .pageNav__item._type-buy a {
	background-color: var(--color-base);
	padding: 14rem;
	box-sizing: border-box;
	width: 146rem;
	text-align: center;
	color: #fff;
	transition: -webkit-filter 0.3s linear;
	transition: filter 0.3s linear;
	transition: filter 0.3s linear, -webkit-filter 0.3s linear;
	font-family: "Noto Sans JP", sans-serif;
}
.pageNav .pageNav__item._type-buy a:hover {
	-webkit-filter: contrast(1.5);
	filter: contrast(1.5);
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.pageNav {
	}
	.pageNav .pageNav__inr {
		padding: 25rem 0 20rem;
		display: block;
	}
	.pageNav .pageNav__ttl {
		width: 150rem;
		margin: 0 auto;
	}
	.pageNav .pageNav__list {
		justify-content: center;
		flex-wrap: wrap;
		gap: 25rem 55rem;
		margin-top: 35rem;
	}
	.pageNav .pageNav__item {
		font-size: 26rem;
	}
	.pageNav .pageNav__item a {
	}
	.pageNav .pageNav__item:not(._type-buy) a::before {
	}
	.pageNav .pageNav__item a:not(._type-buy):hover::before {
	}
	.pageNav .pageNav__item._type-buy {
		margin-left: 0;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.pageNav .pageNav__item._type-buy a {
		font-size: 36rem;
		padding: 30rem 20rem;
		width: 100%;
		transform: translateY(100%);
		transition: all 0.3s ease-in-out;
	}
	.pageNav.js-move .pageNav__item._type-buy a {
		transform: translateY(0%);
	}
	.pageNav .pageNav__item._type-buy a::before {
		content: "PiACK Ⅱ smartを";
	}
	.pageNav .pageNav__item._type-buy a:hover {
		-webkit-filter: contrast(1.5);
		filter: contrast(1.5);
	}
}


.pageBody {
	overflow: hidden;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.pageBody {
	}
}


.secSug {
	margin-top: 70rem;
}
.secSug .secSug__cts {
	margin-top: 60rem;
}
.secSug .secSug__list {
	display: flex;
}
.secSug .secSug__item {
	width: 25%;
}
.secSug .secSug__itemImg {
}
.secSug .secSug__itemBody {
	padding: 30rem 25rem 0 0;
	font-size: 21rem;
	line-height: 1.7;
	letter-spacing: 0;
}
.secSug .secSug__service {
	margin-top: 100rem;
	display: flex;
	align-items: center;
}
.secSug .secSug__serviceImg {
	width: 436rem;
	position: relative;
	z-index: 10;
}
.secSug .secSug__serviceBody {
	flex: 1;
	padding-left: 55rem;
	padding-bottom: 60rem;
	position: relative;
	z-index: 1;
}
.secSug .secSug__serviceBody::before {
	content: " ";
	width: 1100rem;
	height: 355rem;
	background-color: #f2f8f6;
	position: absolute;
	bottom: 0;
	right: -85rem;
	z-index: -1;
}
.secSug .secSug__serviceTtl {
	font-size: 26rem;
	line-height: 1.6;
}
.secSug .secSug__serviceTxt {
	margin-top: 35rem;
	font-size: 16rem;
	line-height: 1.7;
}
.secSug .secSug__serviceNote {
	margin-top: 10rem;
	font-size: 13rem;
	line-height: 1.5;
	position: relative;
	padding-left: 1.5em;
}
.secSug .secSug__serviceNote::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.secSug .secSug__serviceBody .md-btn {
	margin-top: 65rem;
}
.md-btn._bg-orange a {
	padding: 18rem 45rem;
	background-color: #f39800;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secSug {
		margin-top: 90rem;
	}
	.secSug .secSug__cts {
		margin-top: 0;
	}
	.secSug .secSug__list {
		display: block;
	}
	.secSug .secSug__item {
		width: 100%;
		margin-top: 70rem;
	}
	.secSug .secSug__itemImg {
	}
	.secSug .secSug__itemBody {
		padding: 40rem 0 0 0;
		font-size: 40rem;
	}
	.secSug .secSug__service {
		margin-top: 70rem;
		display: block;
	}
	.secSug .secSug__serviceImg {
		width: 540rem;
		margin: 0 auto;
	}
	.secSug .secSug__serviceBody {
		padding-left: 0;
		padding-bottom: 60rem;
	}
	.secSug .secSug__serviceBody::before {
		width: 100%;
		height: 1260rem;
		right: -50rem;
		z-index: -1;
	}
	.secSug .secSug__serviceTtl {
		font-size: 48rem;
	}
	.secSug .secSug__serviceTxt {
		margin-top: 35rem;
		font-size: 32rem;
	}
	.secSug .secSug__serviceNote {
		margin-top: 30rem;
		font-size: 26rem;
		padding-left: 1.5em;
	}
	.secSug .secSug__serviceNote::before {
		content: "※";
		position: absolute;
		top: 0;
		left: 0;
	}
	.secSug .secSug__serviceBody .md-btn {
		margin-top: 70rem;
	}
	.md-btn._bg-orange a {
		padding: 35rem 45rem;
		background-color: #f39800;
	}
}





.secProblems {
	margin-top: 200rem;
}
.secProblems .secProblems__inr {
}
.secProblems .secProblems__haed {
	margin: 0 -40rem;
	width: auto;
	background: url(../images/sec_problems_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 155rem 0;
	box-sizing: border-box;
}
.secProblems .secProblems__haedInr {
	display: flex;
	align-items: center;
	justify-content: center;
}
.secProblems .secProblems__img {
	width: 123rem;
	margin: 0 90rem 0 155rem;
}
.secProblems .secProblems__body {
	text-align: center;
	color: #fff;
}
.secProblems .secProblems__body .secProblems__lead {
	font-size: 21rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.15em;
}
.secProblems .secProblems__body .secProblems__award {
	margin: 35rem auto 0;
	width: 345rem;
}
.secProblems .secProblems__body .secProblems__desc {
	margin-top: 35rem;
	font-size: 16rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.15em;
}


.secProblems .secProblems__cts {
	margin-top: 120rem;
}
.secProblems .secProblems__point {
	margin-top: 120rem;
	display: flex;
	justify-content: center;
	gap: 90rem;
}
.secProblems .secProblems__pointItem {
}
.secProblems .secProblems__pointItemInr {
	height: 100%;
	border: 1px solid #707070;
	position: relative;
	padding: 65rem 45rem 35rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.secProblems .secProblems__pointNum {
	position: absolute;
	top: -50rem;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	padding: 0 25rem;
	box-sizing: border-box;
	background-color: #fff;
	font-size: 48rem;
	line-height: 1;
}
.secProblems .secProblems__pointNum span {
	display: block;
	font-size: 16rem;
	font-weight: 500;
	padding-bottom: 5rem;
}
.secProblems .secProblems__pointTtl {
	font-size: 21rem;
	font-weight: 500;
	line-height: 1.8;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secProblems {
		margin-top: 250rem;
	}
	.secProblems .secProblems__haed {
		margin: 0 -50rem;
		background: url(../images/sp_sec_problems_bg.jpg) no-repeat center center;
		background-size: cover;
		padding: 95rem 50rem;
	}
	.secProblems .secProblems__haedInr {
		display: flex;
		flex-wrap: wrap;
	}
	.secProblems .secProblems__img {
		width: 100rem;
		margin: 0 auto;
	}
	.secProblems .secProblems__body {
		width: 100%;
		margin-top: 55rem;
	}
	.secProblems .secProblems__body .secProblems__lead {
		font-size: 39rem;
		letter-spacing: 0.15em;
	}
	.secProblems .secProblems__body .secProblems__award {
		margin: 55rem auto 0;
		width: 525rem;
	}
	.secProblems .secProblems__body .secProblems__desc {
		margin-top: 35rem;
		font-size: 32rem;
		text-align: left;
	}
	.secProblems .secProblems__body .md-btn {
		margin-top: 70rem;
	}

	.secProblems .secProblems__cts {
		margin-top: 110rem;
	}
	.secProblems .secProblems__point {
		margin-top: 150rem;
		display: block;
	}
	.secProblems .secProblems__pointItem {
		width: 100%;
	}
	.secProblems .secProblems__pointItem + .secProblems__pointItem {
		margin-top: 145rem;
	}
	.secProblems .secProblems__pointItemInr {
		height: auto;
		padding: 100rem 20rem;
	}
	.secProblems .secProblems__pointNum {
		top: -95rem;
		padding: 0 45rem;
		font-size: 96rem;
	}
	.secProblems .secProblems__pointNum span {
		font-size: 32rem;
		padding-bottom: 5rem;
	}
	.secProblems .secProblems__pointTtl {
		font-size: 42rem;
	}
}


.secMerit {
	margin-top: 155rem;
}
.secMerit .secMerit__inr {
	position: relative;
	z-index: 1;
	padding-bottom: 35rem;
}
.secMerit .secMerit__inr::after {
	content: " ";
	width: 922rem;
	height: 413rem;
	background: url(../images/merit_img01.jpg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: -50rem;
	z-index: -1;
}
.secMerit .secMerit__inr::before {
	content: " ";
	width: 100vw;
	height: 450rem;
	background-color: var(--color-bg01);
	position: absolute;
	bottom: 0;
	right: 120rem;
	z-index: -1;
}
.secMerit .md-ttl {
	text-align: left;
}
.secMerit .secMerit__list {
	margin-top: 100rem;
	background-color: #fff;
	padding: 45rem;
	display: inline-flex;
	gap: 100rem;
	text-align: center;
	width: 86%;
}
.secMerit .secMerit__item {
	text-align: center;
	position: relative;
	flex: 1;
}
.secMerit .secMerit__item:not(:last-of-type)::before {
	content: " ";
	width: 1px;
	height: 100%;
	background-color: #cecece;
	position: absolute;
	top: 50%;
	right: -50rem;
	transform: translateY(-50%);
}
.secMerit .secMerit__itemInr {
	padding: 20rem 0;
	box-sizing: border-box;
}
.secMerit .secMerit__itemNum {
	font-size: 21rem;
	font-weight: 500;
	line-height: 1.8;
}
.secMerit .secMerit__itemTxt {
	margin-top: 35rem;
	font-size: 21rem;
	font-weight: 500;
	line-height: 2.2;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secMerit {
		margin-top: 155rem;
	}
	.secMerit .secMerit__inr {
		padding-bottom: 85rem;
	}
	.secMerit .secMerit__inr::after {
		content: " ";
		width: 646rem;
		height: 413rem;
		background: url(../images/merit_img01.jpg) no-repeat center center;
		background-size: cover;
		top: 350rem;
		right: -50rem;
	}
	.secMerit .secMerit__inr::before {
		content: " ";
		width: 100%;
		height: 1520rem;
		right: 90rem;
	}
	.secMerit .secMerit__list {
		margin-top: 400rem;
		padding: 60rem;
		display: block;
	}
	.secMerit .secMerit__item:not(:last-of-type)::before {
		content: " ";
		width: 100%;
		height: 1px;
		top: auto;
		bottom: 0;
		right: 0;
		transform: translateY(0);
	}
	.secMerit .secMerit__itemInr {
		padding: 50rem 0;
	}
	.secMerit .secMerit__itemNum {
		font-size: 42rem;
	}
	.secMerit .secMerit__itemTxt {
		margin-top: 35rem;
		font-size: 42rem;
		line-height: 1.6;
	}
}


.secReasons {
	margin-top: 165rem;
}
.secReasons .secReasons__inr {
}
.secReasons .secReasons__cts {
}
.secReasons .secReasons__block {
	margin-top: 90rem;
	display: flex;
	align-items: center;
}
.secReasons .secReasons__blockImg {
	flex: 1;
}
.secReasons .secReasons__blockImg video {
	width: 100%;
}
.secReasons .secReasons__blockBody {
	width: 600rem;
	box-sizing: border-box;
}
.secReasons .secReasons__blockTtl {
	font-size: 26rem;
	line-height: 1.5;
}
.secReasons .secReasons__blockDesc {
	margin-top: 30rem;
	font-size: 16rem;
	line-height: 2.4;
	letter-spacing: 0.01em;
}
.secReasons .secReasons__block:nth-of-type(odd) .secReasons__blockImg {
	margin-left: -360rem;
}
.secReasons .secReasons__block:nth-of-type(even) .secReasons__blockImg {
	margin-right: -360rem;
	order: 2;
}
.secReasons .secReasons__block:nth-of-type(odd) .secReasons__blockBody {
	padding-left: 80rem;
}
.secReasons .secReasons__block:nth-of-type(even) .secReasons__blockBody {
	padding-right: 80rem;
}
.secReasons .secReasons__link {
	margin-top: 100rem;
	position: relative;
	z-index: 1;
	height: 175rem;
}
.secReasons .secReasons__link a {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24rem;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
}
.secReasons .secReasons__link a::before {
	content: " ";
	width: 100vw;
	height: 100%;
	background-color: var(--color-bg01);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.secReasons .secReasons__link a:hover {
	text-decoration: underline;
}
.secReasons .secReasons__link a .blank {
	position: relative;
	padding: 0 45rem;
	box-sizing: border-box;
}
.secReasons .secReasons__link a .blank::after {
	content: " ";
	width: 14rem;
	height: 14rem;
	background: url(../common/images/icn_blank.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secReasons {
		margin-top: 230rem;
	}
	.secReasons .secReasons__block {
		margin-top: 110rem;
		display: block;
	}
	.secReasons .secReasons__blockBody {
		width: 100%;
	}
	.secReasons .secReasons__blockTtl {
		font-size: 48rem;
	}
	.secReasons .secReasons__blockDesc {
		margin-top: 45rem;
		font-size: 32rem;
		line-height: 1.8;
	}
	.secReasons .secReasons__block:nth-of-type(odd) .secReasons__blockImg {
		margin-left: -50rem;
	}
	.secReasons .secReasons__block:nth-of-type(even) .secReasons__blockImg {
		margin-right: -50rem;
	}
	.secReasons .secReasons__block:nth-of-type(odd) .secReasons__blockBody {
		padding-left: 0;
		margin-top: 65rem;
	}
	.secReasons .secReasons__block:nth-of-type(even) .secReasons__blockBody {
		padding-right: 0;
		margin-top: 65rem;
	}
	.secReasons .secReasons__link {
		margin-top: 130rem;
		height: auto;
	}
	.secReasons .secReasons__link a {
		position: static;
		transform: translateX(0);
		padding: 40rem 20rem;
		font-size: 36rem;
		text-align: center;
	}
	.secReasons .secReasons__link a .blank {
		padding: 0;
	}
	.secReasons .secReasons__link a .blank::after {
		content: " ";
		display: inline-block;
		width: 28rem;
		height: 28rem;
		margin-left: 15rem;
		background: url(../common/images/icn_blank.svg) no-repeat center center;
		background-size: cover;
		position: static;
		transform: translateY(0);
	}
}

.secFunction {
	margin-top: 90rem;
}
.secFunction .secFunction__inr {
}
.secFunction .secFunction__haed {
	margin: 0 -40rem;
	width: auto;
	background: url(../images/sec_function_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 155rem 0;
	box-sizing: border-box;
}
.secFunction .secFunction__haedInr {
	display: flex;
	align-items: center;
}
.secFunction .secFunction__cts {
	margin-top: 130rem;
}
.secFunction .secFunction__block {
	position: relative;
}
.secFunction .secFunction__block:first-of-type {
	margin-top: 65rem;
}
.secFunction .secFunction__head {
	margin: 0 -40rem;
	padding: 0 40rem;
	box-sizing: border-box;
	width: auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.secFunction .secFunction__headInr {
	display: flex;
	align-items: center;
	min-height: 670rem;
}
.secFunction ._type-01 {
	z-index: 1;
}
.secFunction ._type-02 {
	z-index: 2;
}
.secFunction ._type-03 {
	z-index: 3;
}
.secFunction ._type-04 {
	z-index: 4;
}
.secFunction ._type-01 .secFunction__head {
	background-image: url(../images/sec_function_block01.jpg);
}
.secFunction ._type-02 .secFunction__head {
	background-image: url(../images/sec_function_block02.jpg);
}
.secFunction ._type-03 .secFunction__head {
	background-image: url(../images/sec_function_block03.jpg);
}
.secFunction ._type-04 .secFunction__head {
	background-image: url(../images/sec_function_block04.jpg);
}
.secFunction .secFunction__headBody {
	max-width: 460rem;
	width: 100%;
	color: #fff;
}
.secFunction .secFunction__block:nth-of-type(odd) .secFunction__headBody {
	margin-left: auto;
}
.secFunction .secFunction__block:nth-of-type(even) .secFunction__headBody {
	margin-right: auto;
}
.secFunction .secFunction__headTtl {
}
.secFunction .secFunction__headSub {
	font-size: 13rem;
	font-weight: 300;
	line-height: 1.5;
	display: block;
}
.secFunction .secFunction__headMain {
	margin-top: 5rem;
	font-size: 32rem;
	line-height: 1.6;
	letter-spacing: 0.01em;
	display: block;
}
.secFunction .secFunction__headDesc {
	padding-top: 30rem;
	margin-top: 24rem;
	border-top: 1px solid #fff;
	font-size: 16rem;
	line-height: 2.4;
	letter-spacing: 0.05em;
}
.secFunction .secFunction__headNote {
	margin-top: 15rem;
	padding-left: 23rem;
	font-size: 13rem;
	line-height: 2;
	letter-spacing: 0.05em;
	position: relative;
}
.secFunction .secFunction__headNote::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction .secFunction__headBtn {
	margin-top: 50rem;
	border: 1px solid #fff;
	width: 220rem;
	padding: 15rem 40rem 15rem 30rem;
	box-sizing: border-box;
	font-size: 15rem;
	line-height: 1.5;
	position: relative;
	cursor: pointer;
}
.secFunction .secFunction__headBtn::before {
	content: " ";
	width: 6rem;
	height: 11rem;
	background: url(../common/images/icn_btn_arw.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 30rem;
	transform: translateY(-50%) rotate(90deg);
	transition: all 0.3s ease-in-out;
}
.secFunction .js-open .secFunction__headBtn::before {
	transform: translateY(-50%) rotate(-90deg);
}
.secFunction .secFunction__body {
	margin: 0 -40rem;
	padding: 0 40rem;
	box-sizing: border-box;
	width: auto;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.secFunction .secFunction__body .secFunction__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.secFunction .secFunction__block:nth-of-type(odd) .secFunction__body .secFunction__bg {
	background: linear-gradient(calc(var(--calc-c) * -1), #f2f8f6 0%, #f2f8f6 50%, #fff 50%, #fff 100%);
}
.secFunction .secFunction__block:nth-of-type(even) .secFunction__body .secFunction__bg {
	background: linear-gradient(var(--calc-c), #f2f8f6 0%, #f2f8f6 50%, #fff 50%, #fff 100%);
}
.secFunction .secFunction__bodyInr {
	padding: 100rem 0;
	box-sizing: border-box;
}

/* PC
----------------------------------*/
@media screen and (min-width: 769px) {
	.secFunction .secFunction__body .secFunction__bg {
		top: 0 !important;
	}
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secFunction {
		margin-top: 140rem;
	}
	.secFunction .secFunction__haed {
		margin: 0 -50rem;
		background: url(../images/sp_sec_function_bg.jpg) no-repeat center center;
		background-size: cover;
		padding: 95rem 50rem;
		min-height: 1200rem;
		display: flex;
		align-items: flex-end;
		text-align: center;
	}
	.secFunction .secFunction__haedInr {
		display: flex;
		align-items: center;
		width: 100%;
	}
	.secFunction .md-buyBox {
		width: 100%;
	}
	.secFunction .md-buyBox .buyBox__ttl {
		width: 100%;
	}
	.secFunction .md-buyBox .buyBox__ttlJp {
		letter-spacing: 0.1em;
	}
	.secFunction .md-buyBox .buyBox__lead {
		text-align: center;
	}
	.secFunction .secFunction__cts {
		margin-top: 110rem;
	}
	.secFunction .secFunction__block:first-of-type {
		margin-top: 60rem;
	}
	.secFunction .secFunction__head {
		margin: 0 -50rem;
		padding: 50rem;
	}
	.secFunction .secFunction__headInr {
		min-height: 1050rem;
	}
	.secFunction ._type-01 .secFunction__head {
		background-image: url(../images/sp_sec_function_block01.jpg);
	}
	.secFunction ._type-02 .secFunction__head {
		background-image: url(../images/sp_sec_function_block02.jpg);
	}
	.secFunction ._type-03 .secFunction__head {
		background-image: url(../images/sp_sec_function_block03.jpg);
	}
	.secFunction ._type-04 .secFunction__head {
		background-image: url(../images/sp_sec_function_block04.jpg);
	}
	.secFunction .secFunction__headBody {
		max-width: 100%;
		width: 100%;
	}
	.secFunction .secFunction__body .secFunction__bg {
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: -1;
	}
	.secFunction .secFunction__block:nth-of-type(odd) .secFunction__headBody {
		margin-left: auto;
		margin-right: auto;
	}
	.secFunction .secFunction__block:nth-of-type(even) .secFunction__headBody {
		margin-left: auto;
		margin-right: auto;
	}
	.secFunction .secFunction__headTtl {
	}
	.secFunction .secFunction__headSub {
		font-size: 26rem;
	}
	.secFunction .secFunction__headMain {
		margin-top: 15rem;
		font-size: 48rem;
	}
	.secFunction .secFunction__headDesc {
		padding-top: 75rem;
		margin-top: 50rem;
		font-size: 32rem;
		line-height: 1.8;
	}
	.secFunction .secFunction__headBtn {
		margin-top: 90rem;
		width: 330rem;
		padding: 25rem 50rem 25rem 40rem;
		font-size: 30rem;
	}
	.secFunction .secFunction__headBtn::before {
		content: " ";
		width: 12rem;
		height: 22rem;
		right: 40rem;
	}
	.secFunction .secFunction__headNote {
		margin-top: 25rem;
		padding-left: 50rem;
		font-size: 26rem;
	}
	.secFunction .secFunction__headNote::before {
		content: "※";
		position: absolute;
		top: 0;
		left: 0;
	}
	.secFunction .js-open .secFunction__headBtn::before {
		transform: translateY(-50%) rotate(-90deg);
	}
	.secFunction .secFunction__body {
		margin: 0 -50rem;
		padding: 0 50rem;
		width: auto;
	}
	/* .secFunction .secFunction__body::after {
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: -1;
	} */
	.secFunction .secFunction__bodyInr {
		padding: 40rem 0;
		box-sizing: border-box;
	}
}

/* ._type-01 */
.secFunction ._type-01 .secFunction__top {
	display: flex;
}
.secFunction ._type-01 .secFunction__topTtl {
	font-size: 26rem;
	font-weight: 500;
	line-height: 1.5;
	padding-right: 140rem;
	box-sizing: border-box;
}
.secFunction ._type-01 .secFunction__topLead {
	flex: 1;
	font-size: 16rem;
	line-height: 2.3;
	letter-spacing: 0.01em;
}
.secFunction ._type-01 .secFunction__topLead .note {
	text-indent: -3em;
	margin-left: 3em;
	font-size: 13rem;
	line-height: 1.8;
	margin-top: 15rem;
	display: block;
}
/* _type-last */
.secFunction ._type-01 .secFunction__top._type-last {
	margin-top: 180rem;
	align-items: center;
}
.secFunction ._type-01 ._type-last .secFunction__topHead {
	flex: 1;
}
.secFunction ._type-01 ._type-last .secFunction__topLead {
	margin-top: 20rem;
}
.secFunction ._type-01 ._type-last .secFunction__topImg {
	width: 420rem;
}
.secFunction ._type-01 .secFunction__list {
	margin-top: 65rem;
	display: flex;
	gap: 30rem;
	counter-reset: number 0;
}
.secFunction ._type-01 .secFunction__item {
	width: 33.33333%;
}
.secFunction ._type-01 .secFunction__itemBody {
}
.secFunction ._type-01 .secFunction__itemTtl {
	position: relative;
	font-size: 21rem;
	line-height: 1.7;
	padding: 18rem 15rem;
	box-sizing: border-box;
	min-height: 110rem;
	display: flex;
	align-items: center;
	border-left: 1px solid #000;
}
.secFunction ._type-01 .secFunction__itemTtl::before {
	counter-increment: number 1;
	content: "0" counter(number);
	position: absolute;
	top: 50%;
	left: -40rem;
	transform: translateY(-50%);
}
.secFunction ._type-01 .secFunction__itemKey {
	height: 80rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.secFunction ._type-01 .secFunction__itemKey img {
	height: 100%;
	width: auto;
}
.secFunction ._type-01 .secFunction__itemDesc {
	margin-top: 26rem;
	font-size: 16rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
.secFunction ._type-01 .secFunction__itemDesc a {
	color: var(--color-base);
}
.secFunction ._type-01 .secFunction__itemDesc a::after {
	content: " ";
	width: 11rem;
	height: 11rem;
	background: url(../common/images/icn_blank_gr.svg) no-repeat center center;
	background-size: 100% auto;
	margin: 0 3rem;
	display: inline-block;
}
.secFunction ._type-01 .secFunction__itemDesc .note {
	display: block;
	margin-top: 15rem;
	font-size: 13rem;
	text-indent: -3em;
	margin-left: 3em;
}
.secFunction ._type-01 .secFunction__note {
	margin-top: 55rem;
	border: 1px solid #000;
	padding: 35rem 35rem 35rem 55rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
.secFunction ._type-01 .secFunction__noteTtl {
	font-size: 21rem;
	line-height: 1.8;
	padding-right: 60rem;
	box-sizing: border-box;
}
.secFunction ._type-01 .secFunction__noteDesc {
	flex: 1;
}
.secFunction ._type-01 .secFunction__noteItem {
	padding-left: 16rem;
	box-sizing: border-box;
	font-size: 16rem;
	line-height: 1.8;
	position: relative;
}
.secFunction ._type-01 .secFunction__noteItem + .secFunction__noteItem {
	margin-top: 10rem;
}
.secFunction ._type-01 .secFunction__noteItem::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction ._type-01 .secFunction__grid {
	display: flex;
	align-items: center;
	margin-top: 100rem;
}
.secFunction ._type-01 .secFunction__gridImg {
	width: 585rem;
}
.secFunction ._type-01 .secFunction__gridImg video {
	width: 100%;
}
.secFunction ._type-01 .secFunction__gridBody {
	box-sizing: border-box;
	flex: 1;
}
.secFunction ._type-01 .secFunction__gridTtl {
	font-size: 26rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__gridDesc {
	margin-top: 35rem;
	font-size: 16rem;
	line-height: 2;
}
.secFunction ._type-01 .secFunction__gridDesc p + ul,
.secFunction ._type-01 .secFunction__gridDesc ul + p,
.secFunction ._type-01 .secFunction__gridDesc p + p {
	margin-top: 25rem;
}
.secFunction ._type-01 .secFunction__gridDesc li {
	font-size: 14rem;
	line-height: 1.8;
	padding-left: 18rem;
	box-sizing: border-box;
	position: relative;
}
.secFunction ._type-01 .secFunction__gridDesc li + li {
	margin-top: 5rem;
}
.secFunction ._type-01 .secFunction__gridDesc li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction ._type-01 .secFunction__gridDesc .note {
	margin-top: 15rem;
	display: block;
	font-size: 13rem;
	line-height: 1.6;
	text-indent: -3em;
	margin-left: 3em;
}
.secFunction ._type-01 .secFunction__gridNote {
	font-size: 13rem;
}
.secFunction ._type-01 ._type-imgL .secFunction__gridImg {
	order: 0;
}
.secFunction ._type-01 ._type-imgR .secFunction__gridImg {
	order: 2;
}
.secFunction ._type-01 ._type-imgL .secFunction__gridBody {
	padding-left: 55rem;
}
.secFunction ._type-01 ._type-imgR .secFunction__gridBody {
	padding-right: 55rem;
}

.secFunction ._type-01 .secFunction__point {
	text-align: center;
}
.secFunction ._type-01 .secFunction__pointTtl {
	font-size: 26rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__pointLead {
	margin-top: 30rem;
	font-size: 16rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__pointBlock {
	margin-top: 95rem;
}
.secFunction ._type-01 .secFunction__pointBlockTtl {
	font-size: 21rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__pointBlockLead {
	margin-top: 30rem;
	font-size: 16rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__pointBlockImgWrap {
	margin-top: 55rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.secFunction ._type-01 ._block-01 .secFunction__pointBlockImg {
	width: 560rem;
}
.secFunction ._type-01 ._block-02 .secFunction__pointBlockImg {
	width: 760rem;
}
.secFunction ._type-01 ._block-01 .secFunction__pointBlockImgWrap p {
	color: var(--color-base);
	font-size: 21rem;
	line-height: 1.8;
	padding: 0 25rem;
	box-sizing: border-box;
}

.secFunction ._type-01 .secFunction__point {
}




.secFunction ._type-01 .secFunction__mode {
	margin-top: 65rem;
	display: flex;
	justify-content: space-between;
}
.secFunction ._type-01 .secFunction__modeItem {
	width: 530rem;
	text-align: center;
}
.secFunction ._type-01 .secFunction__modeTtl {
	font-size: 21rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__modeTtl .small {
	font-size: 16rem;
	line-height: 1.8;
	display: block;
}
.secFunction ._type-01 .secFunction__modeLead {
	margin-top: 25rem;
	font-size: 16rem;
	line-height: 1.8;
	text-align: left;
	letter-spacing: 0.02em;
}
.secFunction ._type-01 .secFunction__modeList {
	margin-top: 45rem;
}
.secFunction ._type-01 .secFunction__modeListTtl {
	font-size: 16rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__modeItemWrap {
	margin: 20rem -6rem 0;
	display: flex;
	flex-wrap: wrap;
}
.secFunction ._type-01 .secFunction__modeItemWrap._type-center {
	justify-content: center;
}
.secFunction ._type-01 .secFunction__modeItemImg {
	width: 33.33333%;
	padding: 6rem;
	box-sizing: border-box;
}
.secFunction ._type-01 .secFunction__modeTxtList {
	margin-top: 15rem;
	text-align: left;
}
.secFunction ._type-01 .secFunction__modeTxtItem {
	padding-left: 1.5em;
	box-sizing: border-box;
	position: relative;
	font-size: 16rem;
	line-height: 1.8;
}
.secFunction ._type-01 .secFunction__modeTxtItem::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction ._type-01 .secFunction__modeListNote {
	text-indent: -3em;
	margin-left: 3em;
	font-size: 13rem;
	line-height: 1.8;
	margin-top: 15rem;
	display: block;
	text-align: left;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secFunction ._type-01 .secFunction__top {
		display: block;
	}
	.secFunction ._type-01 .secFunction__top._type-last {
		margin-top: 90rem;
	}
	.secFunction ._type-01 .secFunction__topTtl {
		font-size: 48rem;
		padding-right: 0;
	}
	.secFunction ._type-01 .secFunction__topLead {
		margin-top: 50rem;
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__topLead .note {
		font-size: 26rem;
		margin-top: 25rem;
	}
	.secFunction ._type-01 .secFunction__list {
		margin-top: 100rem;
		display: block;
		counter-reset: number 0;
	}
	/* _type-last */
	.secFunction ._type-01 .secFunction__top._type-last {
		margin-top: 120rem;
	}
	.secFunction ._type-01 ._type-last .secFunction__topLead {
		margin-top: 20rem;
	}
	.secFunction ._type-01 ._type-last .secFunction__topImg {
		width: 100%;
	}
	.secFunction ._type-01 .secFunction__item {
		width: 100%;
	}
	.secFunction ._type-01 .secFunction__item + .secFunction__item {
		margin-top: 90rem;
	}
	.secFunction ._type-01 .secFunction__itemBody {
	}
	.secFunction ._type-01 .secFunction__itemTtl {
		font-size: 42rem;
		padding: 35rem 50rem;
		min-height: 220rem;
	}
	.secFunction ._type-01 .secFunction__itemTtl::before {
		counter-increment: number 1;
		content: "0" counter(number);
		position: absolute;
		top: 50%;
		left: -85rem;
	}
	.secFunction ._type-01 .secFunction__itemKey {
		height: 170rem;
	}
	.secFunction ._type-01 .secFunction__itemDesc {
		margin-top: 30rem;
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__itemDesc .note {
		display: block;
		margin-top: 30rem;
		font-size: 26rem;
	}
	.secFunction ._type-01 .secFunction__itemDesc a::after {
		width: 22rem;
		height: 22rem;
		margin: 0 5rem;
	}
	.secFunction ._type-01 .secFunction__note {
		margin-top: 75rem;
		padding: 55rem 50rem;
		display: block;
	}
	.secFunction ._type-01 .secFunction__noteTtl {
		font-size: 42rem;
		padding-right: 0;
	}
	.secFunction ._type-01 .secFunction__noteItem {
		padding-left: 32rem;
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__noteItem + .secFunction__noteItem {
		margin-top: 20rem;
	}
	.secFunction ._type-01 .secFunction__grid {
		display: block;
		margin-top: 140rem;
	}
	.secFunction ._type-01 .secFunction__gridImg {
		width: 100%;
	}
	.secFunction ._type-01 .secFunction__gridTtl {
		margin-top: 50rem;
		font-size: 48rem;
	}
	.secFunction ._type-01 .secFunction__gridDesc {
		margin-top: 45rem;
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__gridDesc p + ul,
	.secFunction ._type-01 .secFunction__gridDesc ul + p,
	.secFunction ._type-01 .secFunction__gridDesc p + p {
		margin-top: 30rem;
	}
	.secFunction ._type-01 .secFunction__gridDesc li {
		font-size: 28rem;
		padding-left: 28rem;
	}
	.secFunction ._type-01 .secFunction__gridDesc li + li {
		margin-top: 5rem;
	}
	.secFunction ._type-01 .secFunction__gridNote {
		font-size: 26rem;
	}
	.secFunction ._type-01 .secFunction__gridDesc .note {
		margin-top: 20rem;
		font-size: 26rem;
	}
	.secFunction ._type-01 ._type-imgL .secFunction__gridBody {
		padding-left: 0;
	}
	.secFunction ._type-01 ._type-imgR .secFunction__gridBody {
		padding-right: 0;
	}


	.secFunction ._type-01 .secFunction__point {
		margin-top: 140rem;
	}
	.secFunction ._type-01 .secFunction__pointTtl {
		font-size: 48rem;
	}
	.secFunction ._type-01 .secFunction__pointLead {
		margin-top: 35rem;
		font-size: 32rem;
		text-align: left;
	}
	.secFunction ._type-01 .secFunction__pointBlock {
		margin-top: 80rem;
	}
	.secFunction ._type-01 .secFunction__pointBlockTtl {
		font-size: 42rem;
	}
	.secFunction ._type-01 .secFunction__pointBlockLead {
		margin-top: 30rem;
		font-size: 32rem;
		text-align: left;
	}
	.secFunction ._type-01 .secFunction__pointBlockImgWrap {
		margin-top: 0;
		display: block;
	}
	.secFunction ._type-01 ._block-01 .secFunction__pointBlockImg {
		width: 100%;
		margin-top: 70rem;
	}
	.secFunction ._type-01 ._block-02 .secFunction__pointBlockImg {
		width: 100%;
		margin-top: 70rem;
	}
	.secFunction ._type-01 ._block-01 .secFunction__pointBlockImgWrap p {
		font-size: 42rem;
		padding: 70rem 0 0;
		box-sizing: border-box;
		text-align: center;
	}


	.secFunction ._type-01 .secFunction__mode {
		margin-top: 0;
		display: block;
	}
	.secFunction ._type-01 .secFunction__modeItem {
		width: 100%;
		margin-top: 80rem;
	}
	.secFunction ._type-01 .secFunction__modeTtl {
		font-size: 42rem;
	}
	.secFunction ._type-01 .secFunction__modeTtl .small {
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__modeLead {
		margin-top: 35rem;
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__modeList {
		margin-top: 25rem;
	}
	.secFunction ._type-01 .secFunction__modeListTtl {
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__modeItemWrap {
		margin: 20rem -10rem 0;
		height: auto !important;
	}
	.secFunction ._type-01 .secFunction__modeItemWrap._type-center {
		justify-content: center;
	}
	.secFunction ._type-01 .secFunction__modeItemImg {
		width: 50%;
		padding: 10rem;
	}
	.secFunction ._type-01 .secFunction__modeTxtList {
		margin-top: 30rem;
	}
	.secFunction ._type-01 .secFunction__modeTxtItem {
		padding-left: 1.5em;
		font-size: 32rem;
	}
	.secFunction ._type-01 .secFunction__modeListNote {
		text-indent: -3em;
		margin-left: 3em;
		font-size: 26rem;
		margin-top: 15rem;
	}
}


.secFunction ._type-02 .secFunction__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30rem;
}
.secFunction ._type-02 .secFunction__item._type-3 {
	width: 33.3333%;
	padding: 25rem 30rem;
	box-sizing: border-box;
}
.secFunction ._type-02 .secFunction__item {
	width: 50%;
	padding: 25rem 30rem;
	box-sizing: border-box;
}
.secFunction ._type-02 .secFunction__itemInr {
}
.secFunction ._type-02 .secFunction__itemHead {
	text-align: center;
}
.secFunction ._type-02 .secFunction__itemLead {
	height: 29rem;
}
.secFunction ._type-02 .secFunction__itemLead img {
	height: 100%;
}
.secFunction ._type-02 .secFunction__itemTtl {
	margin-top: 5rem;
	font-size: 26rem;
	line-height: 1.6;
}
.secFunction ._type-02 .secFunction__itemImg {
	margin-top: 50rem;
}
.secFunction ._type-02 ._is-video .secFunction__itemImg {
	max-width: 480px;
	margin: 35rem auto 0;
}
.secFunction ._type-02 ._is-video .secFunction__itemImg video {
	width: 100%;
}
.secFunction ._type-02 .secFunction__itemBody {
	margin-top: 50rem;
}
.secFunction ._type-02 .secFunction__itemBody p {
	font-size: 16rem;
	line-height: 2.3;
	letter-spacing: 0.01em;
}
.secFunction ._type-02 .secFunction__itemBody .note {
	margin-top: 15rem;
	font-size: 13rem;
}
.secFunction ._type-02 .secFunction__itemBody ul {
	margin-top: 20rem;
}
.secFunction ._type-02 .secFunction__itemBody ul li {
	padding-left: 40rem;
	box-sizing: border-box;
	position: relative;
	font-size: 13rem;
	line-height: 1.8;
}
.secFunction ._type-02 .secFunction__itemBody ul li + li {
	margin-top: 10rem;
}
.secFunction ._type-02 .secFunction__itemBody ul li::before {
	content: "注）";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction ._type-02 .secFunction__bottom {
	margin-top: 120rem;
	display: flex;
	align-items: center;
}
.secFunction ._type-02 .secFunction__bottomImg {
	width: 585rem;
}
.secFunction ._type-02 .secFunction__bottomImg video {
	width: 100%;
}
.secFunction ._type-02 .secFunction__bottomBody {
	padding-left: 55rem;
	box-sizing: border-box;
	flex: 1;
}
.secFunction ._type-02 .secFunction__bottomTtl {
	font-size: 26rem;
	line-height: 1.8;
}
.secFunction ._type-02 .secFunction__bottomDesc {
	margin-top: 25rem;
	font-size: 16rem;
	line-height: 2.3;
	letter-spacing: 0.01em;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secFunction ._type-02 .secFunction__list {
		display: block;
		margin: 0;
	}
	.secFunction ._type-02 .secFunction__item._type-3 {
		width: 100%;
		padding: 60rem 0;
	}
	.secFunction ._type-02 .secFunction__item {
		width: 100%;
		padding: 60rem 0;
	}
	.secFunction ._type-02 .secFunction__item + .secFunction__item {
		border-top: 1px solid #ddd;
	}
	.secFunction ._type-02 .secFunction__itemLead {
		height: 70rem;
	}
	.secFunction ._type-02 .secFunction__itemTtl {
		margin-top: 15rem;
		font-size: 48rem;
	}
	.secFunction ._type-02 .secFunction__itemImg {
		margin-top: 30rem;
	}
	.secFunction ._type-02 .secFunction__itemBody {
		margin-top: 60rem;
	}
	.secFunction ._type-02 .secFunction__itemBody p {
		font-size: 32rem;
		line-height: 1.8;
	}
	.secFunction ._type-02 .secFunction__itemBody .note {
		margin-top: 30rem;
		font-size: 26rem;
	}
	.secFunction ._type-02 .secFunction__itemBody ul {
		margin-top: 50rem;
	}
	.secFunction ._type-02 .secFunction__itemBody ul li {
		padding-left: 60rem;
		font-size: 26rem;
	}
	.secFunction ._type-02 .secFunction__itemBody ul li + li {
		margin-top: 24rem;
	}
	.secFunction ._type-02 .secFunction__bottom {
		margin-top: 60rem;
		display: block;
		padding-top: 60rem;
		border-top: 1px solid #ddd;
	}
	.secFunction ._type-02 .secFunction__bottomImg {
		width: 100%;
		margin-top: 50rem;
	}
	.secFunction ._type-02 .secFunction__bottomBody {
		padding-left: 0;
	}
	.secFunction ._type-02 .secFunction__bottomTtl {
		font-size: 48rem;
		text-align: center;
	}
	.secFunction ._type-02 .secFunction__bottomDesc {
		margin-top: 50rem;
		font-size: 32rem;
	}
}


.secFunction ._type-03 .secFunction__top {
	text-align: center;
}
.secFunction ._type-03 .secFunction__topTtl {
	font-size: 26rem;
	line-height: 2;
}
.secFunction ._type-03 .secFunction__topLead {
	margin-top: 50rem;
	font-size: 16rem;
	line-height: 2;
}
.secFunction ._type-03 .secFunction__topLead a {
	color: var(--color-base);
}
.secFunction ._type-03 .secFunction__topLead a::after {
	content: " ";
	width: 11rem;
	height: 11rem;
	background: url(../common/images/icn_blank_gr.svg) no-repeat center center;
	background-size: 100% auto;
	margin: 0 3rem;
	display: inline-block;
}
.secFunction ._type-03 .md-btn {
	margin: 45rem;
	display: flex;
	justify-content: center;
}
.secFunction ._type-03 .secFunction__list {
	margin-top: 150rem;
}
.secFunction ._type-03 .secFunction__item {
	position: relative;
	padding-left: 125rem;
	box-sizing: border-box;
	margin-top: 120rem;
}
.secFunction ._type-03 .secFunction__itemHead {
}
.secFunction ._type-03 .secFunction__itemTtl {
	font-size: 24rem;
	line-height: 1.7;
	position: relative;
}
.secFunction ._type-03 .secFunction__itemTtl::before {
	content: " ";
	width: 80rem;
	height: 80rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: -125rem;
	transform: translateY(-30%);
}
.secFunction ._type-03 ._list-01 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_num01.svg);
}
.secFunction ._type-03 ._list-02 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_num02.svg);
}
.secFunction ._type-03 ._list-03 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_num03.svg);
}
.secFunction ._type-03 ._list-04 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_num04.svg);
}
.secFunction ._type-03 ._list-05 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_num05.svg);
}
.secFunction ._type-03 ._point-01 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_point01.svg);
}
.secFunction ._type-03 ._point-02 .secFunction__itemTtl::before {
	background-image: url(../images/sec_function03_point02.svg);
}
.secFunction ._type-03 .secFunction__itemDesc {
	margin-top: 20rem;
	font-size: 16rem;
	line-height: 2;
}
.secFunction ._type-03 .secFunction__itemDesc .bar {
	background-color: #8dd8f8;
	width: 28rem;
	height: 12rem;
	display: inline-block;
	margin: 0 5rem;
}
.secFunction ._type-03 .secFunction__itemDesc a {
	color: var(--color-base);
}
.secFunction ._type-03 .secFunction__itemDesc a::after {
	content: " ";
	width: 11rem;
	height: 11rem;
	background: url(../common/images/icn_blank_gr.svg) no-repeat center center;
	background-size: 100% auto;
	margin: 0 3rem;
	display: inline-block;
}
.secFunction ._type-03 .secFunction__itemNote {
	margin-top: 5rem;
	font-size: 13rem;
	line-height: 1.6;
}
.secFunction ._type-03 .secFunction__itemCts {
	margin-top: 30rem;
}

.secFunction ._type-03 .secFunction__note {
	margin-top: 100rem;
	padding: 25rem 40rem;
	box-sizing: border-box;
	border: 1px solid #ccc;
}
.secFunction ._type-03 .secFunction__noteTtl {
	font-size: 24rem;
	line-height: 1.7;
}
.secFunction ._type-03 .secFunction__noteList {
	margin-top: 20rem;
}
.secFunction ._type-03 .secFunction__noteListTtl {
	font-size: 21rem;
	line-height: 1.8;
}
.secFunction ._type-03 .secFunction__noteListDesc {
	margin-top: 10rem;
	padding-left: 10rem;
	box-sizing: border-box;
}
.secFunction ._type-03 .secFunction__noteListDesc p {
	padding-left: 15rem;
	box-sizing: border-box;
	position: relative;
	font-size: 16rem;
	line-height: 1.8;
}
.secFunction ._type-03 .secFunction__noteListDesc p + p {
	margin-top: 5rem;
}
.secFunction ._type-03 .secFunction__noteListDesc p::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction ._type-03 .secFunction__note + .secFunction__top {
	margin-top: 120rem;
}
.secFunction ._type-03 .secFunction__barList {
	margin-top: 70rem;
	overflow: hidden;
}
.secFunction ._type-03 .secFunction__barListTtl {
	position: relative;
	padding-right: 20rem;
	box-sizing: border-box;
	display: inline-block;
	z-index: 1;
	font-size: 21rem;
	line-height: 1.8;
}
.secFunction ._type-03 .secFunction__barListTtl::before {
	content: " ";
	width: 100vw;
	height: 1px;
	background-color: #989898;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.secFunction ._type-03 .secFunction__barListTtl::after {
	content: " ";
	width: 100%;
	height: 100%;
	background-color: var(--color-bg01);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.secFunction ._type-03 .secFunction__barListCts {
	margin-top: 20rem;
}
.secFunction ._type-03 .secFunction__barMovieWrap {
	display: flex;
	justify-content: space-between;
	gap: 75rem;
}
.secFunction ._type-03 .secFunction__barMovieItem {
	flex: 1;
}
.secFunction ._type-03 .secFunction__barMovieTtl {
	font-size: 16rem;
	line-height: 1.8;
}
.secFunction ._type-03 .secFunction__barMovieCts {
	margin-top: 15rem;
	position: relative;
	width: 500rem;
	height: 312rem;
}
.secFunction ._type-03 .secFunction__barMovieCts iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.secFunction ._type-03 .secFunction__barListDesc {
	font-size: 16rem;
	line-height: 2;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secFunction ._type-03 .secFunction__top {
	}
	.secFunction ._type-03 .secFunction__topTtl {
		font-size: 48rem;
	}
	.secFunction ._type-03 .secFunction__topLead {
		margin-top: 55rem;
		font-size: 32rem;
		text-align: left;
	}
	.secFunction ._type-03 .secFunction__topLead a::after {
		content: " ";
		width: 22rem;
		height: 22rem;
		margin: 0 5rem;
	}
	.secFunction ._type-03 .md-btn {
		margin: 70rem 0 0 0;
	}
	.secFunction ._type-03 .secFunction__list {
		margin-top: 110rem;
	}
	.secFunction ._type-03 .secFunction__item {
		padding-left: 0;
		margin-top: 100rem;
	}
	.secFunction ._type-03 .secFunction__itemHead {
	}
	.secFunction ._type-03 .secFunction__itemTtl {
		font-size: 48rem;
		line-height: 1.5;
		padding-left: 165rem;
	}
	.secFunction ._type-03 .secFunction__itemTtl::before {
		content: " ";
		width: 124rem;
		height: 124rem;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.secFunction ._type-03 ._list-01 .secFunction__itemTtl::before {
		background-image: url(../images/sec_function03_num01.svg);
	}
	.secFunction ._type-03 ._list-02 .secFunction__itemTtl::before {
		background-image: url(../images/sec_function03_num02.svg);
	}
	.secFunction ._type-03 ._list-03 .secFunction__itemTtl::before {
		background-image: url(../images/sec_function03_num03.svg);
	}
	.secFunction ._type-03 ._list-04 .secFunction__itemTtl::before {
		background-image: url(../images/sec_function03_num04.svg);
	}
	.secFunction ._type-03 ._list-05 .secFunction__itemTtl::before {
		background-image: url(../images/sec_function03_num05.svg);
	}
	.secFunction ._type-03 .secFunction__itemDesc {
		margin-top: 50rem;
		font-size: 32rem;
	}
	.secFunction ._type-03 .secFunction__itemDesc .bar {
		width: 50rem;
		height: 32rem;
	}
	.secFunction ._type-03 .secFunction__itemDesc a {
		color: var(--color-base);
	}
	.secFunction ._type-03 .secFunction__itemDesc a::after {
		content: " ";
		width: 22rem;
		height: 22rem;
		margin: 0 5rem;
	}
	.secFunction ._type-03 .secFunction__itemNote {
		margin-top: 5rem;
		font-size: 26rem;
	}
	.secFunction ._type-03 .secFunction__itemCts {
		margin-top: 70rem;
	}

	.secFunction ._type-03 .secFunction__note {
		margin-top: 130rem;
		padding: 60rem 50rem;
	}
	.secFunction ._type-03 .secFunction__noteTtl {
		font-size: 48rem;
	}
	.secFunction ._type-03 .secFunction__noteList {
		margin-top: 30rem;
	}
	.secFunction ._type-03 .secFunction__noteListTtl {
		font-size: 36rem;
	}
	.secFunction ._type-03 .secFunction__noteListDesc {
		margin-top: 20rem;
		padding-left: 0;
	}
	.secFunction ._type-03 .secFunction__noteListDesc p {
		padding-left: 32rem;
		font-size: 32rem;
	}
	.secFunction ._type-03 .secFunction__noteListDesc p + p {
		margin-top: 5rem;
	}
	.secFunction ._type-03 .secFunction__note + .secFunction__top {
		margin-top: 150rem;
	}
	.secFunction ._type-03 .secFunction__barList {
		margin-top: 140rem;
	}
	.secFunction ._type-03 .secFunction__barListTtl {
		padding-right: 0;
		padding-bottom: 25rem;
		font-size: 42rem;
		display: block;
	}
	.secFunction ._type-03 .secFunction__barListTtl::before {
		width: 100vw;
		top: auto;
		bottom: 0;
		left: 0;
		transform: translateY(0);
		z-index: 1;
	}
	.secFunction ._type-03 .secFunction__barListTtl::after {
		display: none;
	}
	.secFunction ._type-03 .secFunction__barListCts {
		margin-top: 20rem;
	}
	.secFunction ._type-03 .secFunction__barMovieWrap {
		display: block;
	}
	.secFunction ._type-03 .secFunction__barMovieItem {
		flex: 1;
		margin-top: 60rem;
	}
	.secFunction ._type-03 .secFunction__barMovieTtl {
		font-size: 32rem;
	}
	.secFunction ._type-03 .secFunction__barMovieCts {
		margin-top: 30rem;
		width: 650rem;
		height: 350rem;
	}
	.secFunction ._type-03 .secFunction__barMovieCts iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.secFunction ._type-03 .secFunction__barListDesc {
		font-size: 32rem;
		line-height: 2;
	}
}


.secFunction ._type-04 .secFunction__top {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 100rem;
}
.secFunction ._type-04 .secFunction__topImg {
	width: 440rem;
}
.secFunction ._type-04 .secFunction__topBody {
	padding-left: 100rem;
	box-sizing: border-box;
	flex: 1;
}
.secFunction ._type-04 .secFunction__topTtl {
	font-size: 26rem;
	line-height: 1.6;
}
.secFunction ._type-04 .secFunction__topDesc {
	margin-top: 40rem;
	font-size: 16rem;
	line-height: 2;
}
.secFunction ._type-04 .secFunction__point {
	margin-top: 20rem;
	text-align: center;
}
.secFunction ._type-04 .secFunction__pointTtl {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	font-size: 26rem;
	line-height: 2;
}
.secFunction ._type-04 .secFunction__pointCts {
	margin-top: 10rem;
}
.secFunction ._type-04 .secFunction__pointList {
	display: flex;
	gap: 25rem;
}
.secFunction ._type-04 .secFunction__pointItem {
	flex: 1;
}
.secFunction ._type-04 .secFunction__pointItemImg {
	margin-top: 20rem;
	position: relative;
}
.secFunction ._type-04 .secFunction__pointItemImg::before {
	content: " ";
	width: 2px;
	height: 40rem;
	background-color: #afafaf;
	position: absolute;
	bottom: -25rem;
	left: 50%;
	transform: translateX(-50%);
}
.secFunction ._type-04 .secFunction__pointItemTtl {
	font-size: 24rem;
	line-height: 1.6;
	margin-top: 30rem;
}
.secFunction ._type-04 .secFunction__pointItemDesc {
	margin-top: 15rem;
	font-size: 16rem;
	line-height: 2;
	letter-spacing: 0.01em;
	text-align: left;
}
.secFunction ._type-04 .secFunction__pointItemNote {
	margin-top: 15rem;
	position: relative;
	padding-left: 2em;
	font-size: 13rem;
	line-height: 1.6;
	text-align: left;
}
.secFunction ._type-04 .secFunction__pointItemNote::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.secFunction ._type-04 .secFunction__system {
	margin-top: 40rem;
}
.secFunction ._type-04 .secFunction__systemTtl {
	text-align: center;
	font-size: 26rem;
	line-height: 1.8;
}
.secFunction ._type-04 .secFunction__systemCts {
	margin-top: 25rem;
	background-color: #fff;
	padding: 45rem 40rem;
	box-sizing: border-box;
}
.secFunction ._type-04 .secFunction__systemImg {
	margin: 0 auto;
	width: 710rem;
}
.secFunction ._type-04 .secFunction__systemList {
	margin-top: 45rem;
}
.secFunction ._type-04 .secFunction__systemListTtl {
	font-size: 21rem;
	line-height: 1.8;
}
.secFunction ._type-04 .secFunction__systemListDesc {
	margin-top: 10rem;
}
.secFunction ._type-04 .secFunction__systemListDesc p {
	padding-left: 16rem;
	box-sizing: border-box;
	position: relative;
	font-size: 16rem;
	line-height: 1.8;
	margin-top: 5rem;
}
.secFunction ._type-04 .secFunction__systemListDesc p::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

.secFunction ._type-04 .secFunction__note {
	margin-top: 50rem;
	border: 1px solid #000;
	padding: 40rem;
	box-sizing: border-box;
	text-align: center;
}
.secFunction ._type-04 .secFunction__noteTtl {
	font-size: 21rem;
	line-height: 1.8;
}
.secFunction ._type-04 .secFunction__note .md-btn {
	margin-top: 30rem;
	justify-content: center;
}
.secFunction ._type-04 .secFunction__note .md-btn a {
	padding: 20rem 40rem;
	width: 350rem;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secFunction ._type-04 .secFunction__top {
		display: block;
		margin: 0;
	}
	.secFunction ._type-04 .secFunction__topImg {
		width: 450rem;
		margin: 50rem auto 0;
	}
	.secFunction ._type-04 .secFunction__topBody {
		padding-left: 0;
	}
	.secFunction ._type-04 .secFunction__topTtl {
		font-size: 48rem;
	}
	.secFunction ._type-04 .secFunction__topDesc {
		margin-top: 20rem;
		font-size: 32rem;
	}
	.secFunction ._type-04 .secFunction__point {
		margin-top: 120rem;
	}
	.secFunction ._type-04 .secFunction__pointTtl {
		padding: 0 75rem;
		font-size: 48rem;
	}
	.secFunction ._type-04 .secFunction__pointTtl::before,
	.secFunction ._type-04 .secFunction__pointTtl::after {
		content: " ";
		width: 80rem;
		height: 4rem;
	}
	.secFunction ._type-04 .secFunction__pointCts {
		margin-top: 50rem;
	}
	.secFunction ._type-04 .secFunction__pointList {
		display: block;
	}
	.secFunction ._type-04 .secFunction__pointItem {
		margin-top: 60rem;
	}
	.secFunction ._type-04 .secFunction__pointItemTtl {
		font-size: 42rem;
	}
	.secFunction ._type-04 .secFunction__pointItemImg {
		margin-top: 30rem;
	}
	.secFunction ._type-04 .secFunction__pointItemImg::before {
		content: " ";
		width: 4rem;
		height: 60rem;
		bottom: -38rem;
	}
	.secFunction ._type-04 .secFunction__pointItemNote {
		margin-top: 30rem;
		padding-left: 2em;
		font-size: 26rem;
	}
	.secFunction ._type-04 .secFunction__pointItemDesc {
		margin-top: 30rem;
		font-size: 32rem;
		text-align: left;
	}
	.secFunction ._type-04 .secFunction__system {
		margin-top: 100rem;
	}
	.secFunction ._type-04 .secFunction__systemTtl {
		font-size: 48rem;
	}
	.secFunction ._type-04 .secFunction__systemCts {
		margin-top: 40rem;
		padding: 45rem 0;
	}
	.secFunction ._type-04 .secFunction__systemImg {
		margin: 0 auto;
		width: 100%;
	}
	.secFunction ._type-04 .secFunction__systemList {
		margin-top: 75rem;
		padding: 0;
	}
	.secFunction ._type-04 .secFunction__systemListTtl {
		font-size: 48rem;
	}
	.secFunction ._type-04 .secFunction__systemListDesc {
		margin-top: 20rem;
	}
	.secFunction ._type-04 .secFunction__systemListDesc p {
		padding-left: 32rem;
		font-size: 32rem;
		margin-top: 10rem;
	}
	.secFunction ._type-04 .secFunction__systemListDesc p::before {
		content: "・";
		position: absolute;
		top: 0;
		left: 0;
	}
	.secFunction ._type-04 .secFunction__note {
		margin-top: 40rem;
		padding: 70rem 35rem;
	}
	.secFunction ._type-04 .secFunction__noteTtl {
		font-size: 42rem;
	}
	.secFunction ._type-04 .secFunction__note .md-btn {
		margin-top: 80rem;
	}
	.secFunction ._type-04 .secFunction__note .md-btn a {
		padding: 20rem 40rem;
		width: 100%;
	}
	.secFunction ._type-04 .secFunction__note .md-btn._is-blank a::before {
		right: 35rem;
	}
}



.secVoice {
	background-color: #005c36;
}
.secVoice .secVoice__inr {
	padding: 80rem 0;
	box-sizing: border-box;
}
.secVoice .md-ttl * {
	color: #fff;
}
.secVoice .secVoice__cts {
	margin-top: 40rem;
}
.secVoice .secVoice__list {
	display: flex;
	gap: 32rem;
}
.secVoice .secVoice__item {
	flex: 1;
}
.secVoice .secVoice__itemInr {
	background-color: #fff;
	padding: 35rem 50rem;
	box-sizing: border-box;
	height: 100%;
}
.secVoice .secVoice__itemNameWrap {
	display: flex;
	align-items: center;
}
.secVoice .secVoice__itemIcn {
	width: 64rem;
}
.secVoice .secVoice__itemName {
	padding-left: 25rem;
	box-sizing: border-box;
	font-size: 16rem;
	line-height: 1.6;
	display: flex;
	align-items: baseline;
}
.secVoice .secVoice__itemName span {
	font-size: 21rem;
	padding-right: 5rem;
}
.secVoice .secVoice__itemInfo {
	margin-top: 20rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.secVoice .secVoice__itemType {
	width: 100rem;
	color: var(--color-base);
	font-size: 16rem;
	line-height: 1.7;
}
.secVoice .secVoice__itemDesc {
	width: calc(100% - 100rem);
	padding-left: 32rem;
	box-sizing: border-box;
	position: relative;
	font-size: 16rem;
	line-height: 2;
}
.secVoice .secVoice__itemDesc::before {
	content: "：";
	color: var(--color-base);
	position: absolute;
	top: 0;
	left: 0;
}
.secVoice .secVoice__itemTxt {
	margin-top: 20rem;
	font-size: 16rem;
	line-height: 1.8;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secVoice .secVoice__inr {
		padding: 90rem 0;
	}
	.secVoice .md-ttl * {
	}
	.secVoice .secVoice__cts {
		margin-top: 70rem;
	}
	.secVoice .secVoice__list {
		display: block;
	}
	.secVoice .secVoice__item {
		margin-top: 70rem;
	}
	.secVoice .secVoice__itemInr {
		padding: 50rem;
	}
	.secVoice .secVoice__itemNameWrap {
	}
	.secVoice .secVoice__itemIcn {
		width: 90rem;
	}
	.secVoice .secVoice__itemName {
		padding-left: 30rem;
		font-size: 32rem;
	}
	.secVoice .secVoice__itemName span {
		font-size: 42rem;
		padding-right: 5rem;
	}
	.secVoice .secVoice__itemInfo {
		margin-top: 32rem;
	}
	.secVoice .secVoice__itemType {
		width: 150rem;
		font-size: 30rem;
	}
	.secVoice .secVoice__itemDesc {
		width: calc(100% - 150rem);
		padding-left: 40rem;
		font-size: 30rem;
	}
	.secVoice .secVoice__itemTxt {
		margin-top: 30rem;
		font-size: 32rem;
	}
}


.secSpec {
}

.secSpec .secSpec__inr {
	padding: 90rem 0;
	box-sizing: border-box;
}
.secSpec .md-ttl {
	text-align: left;
}
.secSpec .secSpec__cts {
	margin-top: 55rem;
}
.secSpec .secSpec__info {
	display: flex;
}
.secSpec .secSpec__infoSlide {
	width: 430rem;
}
.secSpec .secSpec__slide {
}
.secSpec .slider__item {
}
.secSpec .slider__itemTtl {
	margin-top: 10rem;
	font-size: 14rem;
	line-height: 1.8;
}
.secSpec .sliderNav {
	margin-top: 25rem;
	display: flex;
	gap: 15rem;
}
.secSpec .sliderNav li {
	width: 94rem;
	height: 108rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border: 2px solid transparent;
}
.secSpec .sliderNav li.slick-active {
	border: 2px solid var(--color-base);
}
.secSpec .sliderNav li:nth-of-type(1) {
	background-image: url(../images/sec_spec_slide01.jpg);
}
.secSpec .sliderNav li:nth-of-type(2) {
	background-image: url(../images/sec_spec_slide02.jpg);
}
.secSpec .sliderNav li:nth-of-type(3) {
	background-image: url(../images/sec_spec_slide03.jpg);
}
.secSpec .sliderNav li:nth-of-type(4) {
	background-image: url(../images/sec_spec_slide04.jpg);
}
.secSpec .sliderNav button {
	font-size: 0;
}
.secSpec .secSpec__infoMore {
	flex: 1;
	padding-left: 70rem;
	box-sizing: border-box;
}
.secSpec .secSpec__infoHead {
}
.secSpec .secSpec__infoTtl {
	font-size: 34rem;
	line-height: 1.8;
}
.secSpec .secSpec__infoPrice {
	margin-top: 10rem;
	font-size: 24rem;
	line-height: 1.8;
}
.secSpec .secSpec__infoPrice .unit {
	font-size: 16rem;
	line-height: 1.8;
}
.secSpec .secSpec__infoNote {
	font-size: 16rem;
	line-height: 1.4;
}
.secSpec .secSpec__infoColor {
	margin-top: 40rem;
}
.secSpec .secSpec__infoColorTip {
	width: 30rem;
	height: 30rem;
	background-color: #000;
}
.secSpec .secSpec__infoPoint {
	margin-top: 25rem;
	display: flex;
	flex-wrap: wrap;
}
.secSpec .secSpec__infoPointList {
	background-color: var(--color-bg01);
	padding: 5rem 10rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
.secSpec .secSpec__infoPointList + .secSpec__infoPointList {
	margin-left: 12rem;
}
.secSpec .secSpec__infoPointIcn {
	width: 38rem;
}
.secSpec .secSpec__infoPointName {
	padding-left: 10rem;
	font-size: 12rem;
	line-height: 1.8;
}
.secSpec .secSpec__infoPointNote {
	margin-top: 8rem;
	width: 100%;
	font-size: 13rem;
	line-height: 1.8;
}
.secSpec .secSpec__infoList {
	overflow: hidden;
}
.secSpec .secSpec__infoItem {
	padding: 15rem 0;
	box-sizing: border-box;
}
.secSpec .secSpec__infoItem + .secSpec__infoItem {
	border-top: 1px solid #ccc;
}
.secSpec .secSpec__infoItemTtl {
	font-size: 18rem;
	line-height: 1.8;
	padding-top: 15rem;
}
.secSpec .secSpec__infoListBlock {
	display: flex;
	align-items: center;
	padding: 15rem 0;
	box-sizing: border-box;
}
.secSpec .secSpec__infoListBlock + .secSpec__infoListBlock {
	border-top: 1px dotted #ccc;
}
.secSpec .secSpec__infoListBlock dt {
	font-size: 16rem;
	line-height: 1.8;
	width: 220rem;
	letter-spacing: 0.02em;
}
.secSpec .secSpec__infoListBlock dd {
	flex: 1;
	font-size: 16rem;
	line-height: 1.8;
	letter-spacing: 0.02em;
}
.secSpec .secSpec__infoList .note {
	font-size: 13rem;
	line-height: 1.7;
}
.secSpec .secSpec__infoList .note {
	font-size: 13rem;
	line-height: 1.7;
}
.secSpec .secSpec__infoBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 150rem;
	transform: translateY(-50%);
	background: #fff;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
	transition: opacity 0.3s linear,transform 0.3s linear,height 0.3s linear;
	position: relative;
	z-index: 1;
}
.secSpec .secSpec__infoBtn::before {
	content: " ";
	width: 100%;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	transition: opacity 0.3s ease-in-out;
}
.secSpec .secSpec__infoBtnInr {
	padding: 3rem 0;
	width: 90rem;
	text-align: center;
	font-size: 14rem;
	line-height: 2;
	border: 1px solid #ccc;
	background-color: #fff;
	cursor: pointer;
}
.secSpec .secSpec__infoBtnInr::before {
	content: "MORE";
}
.secSpec .js-open .secSpec__infoBtnInr::before {
	content: "CLOSE";
}
.secSpec .js-open .secSpec__infoBtn {
	transform: translateY(0%);
	height: 50rem;
}
.secSpec .js-open .secSpec__infoBtn::before {
	opacity: 0;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secSpec {
	}
	.secSpec .secSpec__inr {
		padding: 100rem 0;
	}
	.secSpec .secSpec__cts {
		margin-top: 35rem;
	}
	.secSpec .secSpec__info {
		display: block;
	}
	.secSpec .secSpec__infoSlide {
		width: 100%;
	}
	.secSpec .secSpec__slide {
	}
	.secSpec .slick-list {
		margin: 0 auto;
		max-width: 375rem;
	}
	.secSpec .slider__item {
	}
	.secSpec .slider__itemTtl {
		margin-top: 10rem;
		font-size: 14rem;
		line-height: 1.8;
	}
	.secSpec .sliderNav {
		margin-top: 35rem;
		gap: 20rem;
	}
	.secSpec .sliderNav li {
		width: 100rem;
		flex: none;
		height: 108rem;
		border: 2px solid transparent;
	}
	.secSpec .sliderNav li.slick-active {
		border: 2px solid var(--color-base);
	}
	.secSpec .sliderNav li:nth-of-type(1) {
		background-image: url(../images/sec_spec_slide01.jpg);
	}
	.secSpec .sliderNav li:nth-of-type(2) {
		background-image: url(../images/sec_spec_slide02.jpg);
	}
	.secSpec .sliderNav li:nth-of-type(3) {
		background-image: url(../images/sec_spec_slide03.jpg);
	}
	.secSpec .sliderNav li:nth-of-type(4) {
		background-image: url(../images/sec_spec_slide04.jpg);
	}
	.secSpec .sliderNav button {
		font-size: 0;
	}
	.secSpec .secSpec__infoMore {
		padding-left: 0;
		margin-top: 50rem;
	}
	.secSpec .secSpec__infoHead {
	}
	.secSpec .secSpec__infoTtl {
		font-size: 60rem;
	}
	.secSpec .secSpec__infoPrice {
		margin-top: 20rem;
		font-size: 42rem;
	}
	.secSpec .secSpec__infoPrice .unit {
		font-size: 32rem;
	}

	.secSpec .secSpec__infoNote {
		font-size: 32rem;
	}

	.secSpec .secSpec__infoColor {
		margin-top: 30rem;
	}
	.secSpec .secSpec__infoColorTip {
		width: 50rem;
		height: 50rem;
	}
	.secSpec .secSpec__infoPoint {
		margin-top: 50rem;
		gap: 22rem;
		justify-content: space-between;
	}
	.secSpec .secSpec__infoPointList {
		width: 48%;
	}
	.secSpec .secSpec__infoPointList + .secSpec__infoPointList {
		margin-left: 0;
	}
	.secSpec .secSpec__infoPointIcn {
		width: 85rem;
	}
	.secSpec .secSpec__infoPointName {
		padding-left: 10rem;
		font-size: 24rem;
	}
	.secSpec .secSpec__infoPointNote {
		margin-top: 10rem;
		width: 100%;
		font-size: 26rem;
	}
	.secSpec .secSpec__infoList {
		overflow: hidden;
	}
	.secSpec .secSpec__infoItem {
		padding: 18rem 0;
	}
	.secSpec .secSpec__infoItem + .secSpec__infoItem {
		border-top: 1px solid #ccc;
	}
	.secSpec .secSpec__infoItemTtl {
		font-size: 36rem;
		line-height: 1.8;
		padding-top: 18rem;
	}
	.secSpec .secSpec__infoListBlock {
		padding: 18rem 0;
		display: block;
	}
	.secSpec .secSpec__infoListBlock + .secSpec__infoListBlock {
		border-top: 1px dotted #ccc;
	}
	.secSpec .secSpec__infoListBlock dt {
		font-size: 32rem;
		width: 100%;
	}
	.secSpec .secSpec__infoListBlock dd {
		font-size: 32rem;
		margin-top: 10rem;
	}
	.secSpec .secSpec__infoList .note {
		font-size: 26rem;
		line-height: 1.7;
	}
	.secSpec .secSpec__infoBtn {
		height: 150rem;
	}
	.secSpec .secSpec__infoBtn::before {
	}
	.secSpec .secSpec__infoBtnInr {
		width: 160rem;
		font-size: 28rem;
		border: 1px solid #ccc;
		background-color: #fff;
		cursor: pointer;
	}
	.secSpec .secSpec__infoBtnInr::before {
		content: "MORE";
	}
	.secSpec .js-open .secSpec__infoBtnInr::before {
		content: "CLOSE";
	}
	.secSpec .js-open .secSpec__infoBtn {
		transform: translateY(0%);
		height: 50rem;
	}
	.secSpec .js-open .secSpec__infoBtn::before {
		opacity: 0;
	}
}


.secLineUp {
}
.secLineUp .secLineUp__inr {
}
.secLineUp .secLineUp__block {
	margin-top: 50rem;
	text-align: center;
	overflow: hidden;
}
.secLineUp .secLineUp__blockTtl {
	font-size: 24rem;
	line-height: 1.8;
	position: relative;
	z-index: 1;
	padding: 5rem 50rem;
	box-sizing: border-box;
	display: inline-block;
}
.secLineUp .secLineUp__blockTtl::before {
	content: " ";
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.secLineUp .secLineUp__blockTtl::after {
	content: " ";
	width: 100vw;
	height: 1px;
	background-color: var(--color-base);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -2;
}
.secLineUp .secLineUp__blockLead {
	margin-top: 10rem;
	font-size: 16rem;
	line-height: 1.8;
}
.secLineUp .secLineUp__blockList {
	margin-top: 35rem;
	display: flex;
	gap: 30rem;
}
.secLineUp .secLineUp__blockItem {
	width: 33.3333%;
	text-align: left;
}
.secLineUp .secLineUp__blockInr {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.secLineUp .secLineUp__blockImg {
}
.secLineUp .secLineUp__blockName {
	margin-top: 15rem;
	font-size: 18rem;
	line-height: 1.6;
	position: relative;
}
.secLineUp ._price-down01 .secLineUp__blockName,
.secLineUp ._price-down02 .secLineUp__blockName {
	padding-right: 110rem;
}
.secLineUp .secLineUp__blockName::before {
	content: " ";
	width: 100rem;
	height: 100rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
}
.secLineUp ._price-down01 .secLineUp__blockName::before {
	background-image: url(../images/icn_price_down01.svg);
}
.secLineUp ._price-down02 .secLineUp__blockName::before {
	background-image: url(../images/icn_price_down02.svg);
}
.secLineUp .secLineUp__blockName .note {
	font-size: 13rem;
}
.secLineUp .secLineUp__blockPrice {
	padding-top: 10rem;
	font-size: 21rem;
	line-height: 1.3;
	margin-top: auto;
}
.secLineUp .secLineUp__blockPrice .unit {
	font-size: 13rem;
	line-height: 1.3;
}
/*見え消し表示実装*/
.secLineUp .secLineUp__blockPrice._type-old {
	position: absolute;
	color: #b70404;
	font-size: 16rem;
	display: inline-block;
	padding: 0;
}
.secLineUp .secLineUp__blockPrice._type-old::before {
	content: " ";
	font-size: 14rem;
	width: 100%;
	height: 1px;
	background-color: #333;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.secLineUp .secLineUp__blockPrice._type-old .unit {
 	font-size: 12rem;
 }
.secLineUp .secLineUp__blockItem .md-btn {
	max-width: 190rem;
	margin-top: auto;
	padding-top: 30rem;
}
.secLineUp .secLineUp__blockItem .md-btn a {
	padding: 10rem 20rem;
}
.secLineUp .secLineUp__blockItem .md-btn._is-arw a::before {
	right: 20rem;
}
.secLineUp .secLineUp__blockOther {
	margin-top: 55rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.secLineUp .secLineUp__blockOtherList {
	width: calc(50% - 40rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.secLineUp .secLineUp__blockOtherTtl {
	font-size: 18rem;
	line-height: 1.8;
}
.secLineUp .secLineUp__blockOtherDesc {
	font-size: 18rem;
	line-height: 1.8;
}
.secLineUp .secLineUp__blockOtherDesc .unit {
	font-size: 13rem;
}
.secLineUp .secLineUp__blockOtherNote {
	width: 100%;
	text-align: right;
	margin-top: 50rem;
	font-size: 14rem;
	line-height: 1.7;
}

.secLineUp ._type-col {
	display: block;
}
.secLineUp ._type-col .secLineUp__blockItem {
	width: 100%;
}
.secLineUp ._type-col .secLineUp__blockItem + .secLineUp__blockItem {
	margin-top: 40rem;
}
.secLineUp ._type-col .secLineUp__blockInr {
	display: flex;
	align-items: center;
	flex-direction: row;
}
.secLineUp ._type-col .secLineUp__blockImg {
	width: 480rem;
}
.secLineUp ._type-col .secLineUp__blockBody {
	padding-left: 55rem;
	flex: 1;
}
.secLineUp ._type-col .secLineUp__blockHead {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.secLineUp ._type-col .secLineUp__blockName {
	font-size: 24rem;
	margin-top: 0;
}
.secLineUp ._type-col .secLineUp__blockPrice {
    /*見え消し表示実装のため削除*/
	/*font-size: 21rem;*/
	margin-top: 0;
}
.secLineUp ._type-col .secLineUp__blockInfo {
	margin-top: 30rem;
}
.secLineUp ._type-col .secLineUp__blockInfoTtl {
	font-size: 18rem;
	line-height: 1.8;
}
.secLineUp ._type-col .secLineUp__blockInfoList {
	margin-top: 5rem;
	display: flex;
	flex-wrap: wrap;
}
.secLineUp ._type-col .secLineUp__blockInfoItem {
	width: 50%;
	padding: 5rem 10rem 5rem 18rem;
	box-sizing: border-box;
	position: relative;
}
.secLineUp ._type-col .secLineUp__blockInfoItem::before {
	content: "-";
	position: absolute;
	top: 3rem;
	left: 0;
}

.secLineUp ._type-row {
	flex-wrap: wrap;
	gap: 0;
	margin: 0 -15rem;
}
.secLineUp ._type-row .secLineUp__blockItem {
	width: 50%;
	padding: 15rem;
	box-sizing: border-box;
}
.secLineUp ._type-row .secLineUp__blockInr {
	flex-direction: row;
	align-items: center;
}
.secLineUp ._type-row .secLineUp__blockImg {
	width: 140rem;
}
.secLineUp ._type-row .secLineUp__blockBody {
	flex: 1;
	padding-left: 45rem;
}
.secLineUp ._type-row .secLineUp__blockName {
	margin-top: 0;
	font-size: 18rem;
}
.secLineUp ._type-row .secLineUp__blockPrice {
	margin-top: 5rem;
	padding-top: 0;
	font-size: 18rem;
}
.secLineUp ._type-row .md-btn {
	padding-top: 15rem;
}
.secLineUp ._type-row .md-btn a {
	font-size: 15rem;
	padding: 6rem 20rem;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secLineUp .secLineUp__block {
		margin-top: 60rem;
	}
	.secLineUp .secLineUp__blockTtl {
		font-size: 48rem;
		padding: 0;
	}
	.secLineUp .secLineUp__blockTtl::before {
		display: none;
	}
	.secLineUp .secLineUp__blockTtl::after {
		width: 100vw;
		height: 1px;
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: -2;
	}
	.secLineUp .secLineUp__blockList {
		margin-top: 50rem;
		display: block;
	}
	.secLineUp .secLineUp__blockLead {
		margin-top: 40rem;
		font-size: 32rem;
		text-align: left;
	}
	.secLineUp .secLineUp__blockItem {
		width: 100%;
	}
	.secLineUp .secLineUp__blockItem + .secLineUp__blockItem {
		margin-top: 90rem;
	}
	.secLineUp .secLineUp__blockInr {
	}
	.secLineUp .secLineUp__blockImg {
	}
	.secLineUp .secLineUp__blockName {
		margin-top: 30rem;
		font-size: 36rem;
		padding-right: 0;
	}
	.secLineUp ._price-down01 .secLineUp__blockName,
	.secLineUp ._price-down02 .secLineUp__blockName {
		padding-right: 180rem;
	}
	.secLineUp .secLineUp__blockName::before {
		width: 180rem;
		height: 180rem;
	}
	.secLineUp ._price-down01 .secLineUp__blockName::before {
		background-image: url(../images/icn_price_down01.svg);
	}
	.secLineUp ._price-down02 .secLineUp__blockName::before {
		background-image: url(../images/icn_price_down02.svg);
	}
	.secLineUp .secLineUp__blockName .note {
		font-size: 26rem;
	}
	.secLineUp .secLineUp__blockPrice {
		padding-top: 18rem;
		font-size: 36rem;
	}
	.secLineUp .secLineUp__blockPrice .unit {
		font-size: 26rem;
	}
	.secLineUp .secLineUp__blockItem .md-btn {
		max-width: 100%;
		padding-top: 50rem;
	}
	.secLineUp .secLineUp__blockItem .md-btn a {
		padding: 30rem 55rem;
	}
	.secLineUp .secLineUp__blockItem .md-btn._is-arw a::before {
		right: 20rem;
	}

	.secLineUp .secLineUp__blockOther {
		margin-top: 60rem;
		display: block;
		text-align: left;
	}
	.secLineUp .secLineUp__blockOtherList {
		width: 100%;
		align-items: flex-start;
	}
	.secLineUp .secLineUp__blockOtherList + .secLineUp__blockOtherList {
		margin-top: 40rem;
	}
	.secLineUp .secLineUp__blockOtherTtl {
		font-size: 36rem;
	}
	.secLineUp .secLineUp__blockOtherDesc {
		font-size: 36rem;
	}
	.secLineUp .secLineUp__blockOtherDesc .unit {
		font-size: 26rem;
	}
	.secLineUp .secLineUp__blockOtherNote {
		text-align: left;
		margin-top: 50rem;
		font-size: 26rem;
		line-height: 1.7;
	}

	.secLineUp ._type-col {
		display: block;
	}
	.secLineUp ._type-col .secLineUp__blockItem {
		width: 100%;
	}
	.secLineUp ._type-col .secLineUp__blockItem + .secLineUp__blockItem {
		margin-top: 90rem;
	}
	.secLineUp ._type-col .secLineUp__blockInr {
		display: block;
	}
	.secLineUp ._type-col .secLineUp__blockImg {
		width: 100%;
	}
	.secLineUp ._type-col .secLineUp__blockBody {
		padding-left: 0;
		margin-top: 30rem;
	}
	.secLineUp ._type-col .secLineUp__blockHead {
		display: block;
	}
	.secLineUp ._type-col .secLineUp__blockName {
		font-size: 44rem;
		margin-top: 0;
	}
	.secLineUp ._type-col .secLineUp__blockPrice {
		font-size: 36rem;
        /*見え消し表示実装のため削除*/
		/*padding-top: 15rem;*/
	}
	.secLineUp ._type-col .secLineUp__blockInfo {
		margin-top: 30rem;
	}
	.secLineUp ._type-col .secLineUp__blockInfoTtl {
		font-size: 36rem;
	}
	.secLineUp ._type-col .secLineUp__blockInfoList {
		display: block;
	}
	.secLineUp ._type-col .secLineUp__blockInfoItem {
		width: 100%;
		padding: 15rem 10rem 15rem 1em;
		font-size: 36rem;
	}
	.secLineUp ._type-col .secLineUp__blockInfoItem::before {
		content: "-";
		position: absolute;
		top: 3rem;
		left: 0;
	}
	.secLineUp ._type-col .md-btn a {
		text-align: center;
	}

	.secLineUp ._type-row {
		flex-wrap: wrap;
		gap: 0;
		margin: 0;
	}
	.secLineUp ._type-row .secLineUp__blockItem {
		width: 100%;
		padding: 40rem 0 155rem 0;
		position: relative;
	}
	.secLineUp ._type-row .secLineUp__blockInr {
		flex-direction: row;
		align-items: center;
	}
	.secLineUp ._type-row .secLineUp__blockImg {
		width: 180rem;
	}
	.secLineUp ._type-row .secLineUp__blockBody {
		flex: 1;
		padding-left: 25rem;
	}
	.secLineUp ._type-row .secLineUp__blockName {
		margin-top: 0;
		font-size: 32rem;
	}
	.secLineUp ._type-row .secLineUp__blockPrice {
		margin-top: 5rem;
		padding-top: 0;
		font-size: 32rem;
	}
	.secLineUp ._type-row .md-btn {
		padding-top: 0;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.secLineUp ._type-row .md-btn a {
		font-size: 36rem;
		padding: 20rem 55rem;
		text-align: center;
	}
}


.secFaq {
	margin-top: 85rem;
	background-color: #ededed;
}
.secFaq .secFaq__inr {
	padding: 70rem 0;
	box-sizing: border-box;
}
.secFaq .secFaq__cts {
	margin-top: 60rem;
}
.secFaq .secFaq__block {
	margin-top: 30rem;
	background-color: #fff;
}
.secFaq .secFaq__blockTtl {
	position: relative;
	padding-left: 90rem;
	box-sizing: border-box;
	font-size: 18rem;
	line-height: 1.8;
	letter-spacing: 0.01em;
}
.secFaq .secFaq__blockTtl::before {
	content: "Q";
	color: var(--color-base);
	font-size: 18rem;
	line-height: 1.7;
	position: absolute;
	top: 22rem;
	left: 40rem;
}
.secFaq .secFaq__blockTtl::after {
	content: " ";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20rem 20rem 0 0;
	border-color: var(--color-base) transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.secFaq .secFaq__blockTtlInr {
	padding: 25rem 90rem 25rem 0;
	box-sizing: border-box;
	position: relative;
}
.secFaq .secFaq__blockTtlInr::before {
	content: " ";
	width: 11rem;
	height: 6rem;
	background: url(../common/images/icn_btn_arw_gr.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 40rem;
	transform: translateY(-50%) rotate(-180deg);
	transition: all 0.3s ease-in-out;
}
.secFaq .js-open .secFaq__blockTtlInr::before {
	transform: translateY(-50%) rotate(0);
}
.secFaq .secFaq__blockBox {
}
.secFaq .secFaq__blockBoxInr {
	padding: 0 90rem 25rem;
	box-sizing: border-box;
	font-size: 16rem;
	line-height: 1.8;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secFaq {
		margin-top: 145rem;
		background-color: #ededed;
	}
	.secFaq .secFaq__inr {
		padding: 60rem 0;
	}
	.secFaq .secFaq__cts {
		margin-top: 50rem;
	}
	.secFaq .secFaq__block {
		margin-top: 50rem;
	}
	.secFaq .secFaq__blockTtl {
		padding-left: 90rem;
		font-size: 36rem;
	}
	.secFaq .secFaq__blockTtl::before {
		content: "Q";
		font-size: 36rem;
		line-height: 1.7;
		top: 30rem;
		left: 30rem;
	}
	.secFaq .secFaq__blockTtl::after {
		border-style: solid;
		border-width: 34rem 34rem 0 0;
		border-color: var(--color-base) transparent transparent transparent;
	}
	.secFaq .secFaq__blockTtlInr {
		padding: 35rem 90rem 35rem 0;
	}
	.secFaq .secFaq__blockTtlInr::before {
		content: " ";
		width: 22rem;
		height: 12rem;
		right: 30rem;
	}
	.secFaq .js-open .secFaq__blockTtlInr::before {
	}
	.secFaq .secFaq__blockBox {
	}
	.secFaq .secFaq__blockBoxInr {
		padding: 0 90rem 35rem;
		font-size: 32rem;
		line-height: 1.8;
	}
}


.recommend {
}
.recommend .recommend__inr {
	padding: 100rem 0;
	box-sizing: border-box;
}
.recommend .recommend__cta {
	background: url(../images/recommend_bg.png) no-repeat center center;
	background-size: cover;
	height: 360rem;
	position: relative;
}
.recommend .recommend__cta .md-btn {
	position: absolute;
	bottom: 40rem;
	right: 145rem;
	width: 280rem;
}
.recommend .recommend__cta .md-btn a {
	padding: 15rem 45rem;
}
.recommend .recommend__block {
	margin-top: 90rem;
}
.recommend .recommend__blockTtl {
	text-align: center;
	font-size: 24rem;
	line-height: 1.8;
}
.recommend .recommend__list {
	margin: 35rem -15rem 0;
	display: flex;
}
.recommend .recommend__item {
	width: 33.33333%;
	padding: 0 15rem;
	box-sizing: border-box;
}
.recommend .recommend__item a {
	display: block;
	text-decoration: none;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.recommend {
	}
	.recommend .recommend__inr {
		padding: 150rem 0;
	}
	.recommend .recommend__cta {
		background: url(../images/sp_recommend_bg.png) no-repeat center center;
		background-size: cover;
		height: 590rem;
	}
	.recommend .recommend__cta .md-btn {
		bottom: 55rem;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width: 540rem;
	}
	.recommend .recommend__cta .md-btn a {
		padding: 25rem 55rem;
		text-align: center;
	}
	.recommend .recommend__block {
		margin-top: 110rem;
	}
	.recommend .recommend__blockTtl {
		font-size: 48rem;
	}
	.recommend .recommend__list {
		margin: 35rem 0 0;
		display: block;
	}
	.recommend .recommend__item {
		width: 100%;
		padding: 15rem 0;
	}
	.recommend .recommend__item a {
		display: block;
		text-decoration: none;
	}
}


.md-modal .modal__cts {
	background-color: var(--color-bg01);
	position: relative;
	width: 100%;
	max-width: 1200rem;
	padding: 40rem;
}
.md-modal .modal__list {
	display: flex;
	flex-wrap: wrap;
}
.md-modal .modal__item {
	width: 50%;
	padding: 10rem;
	box-sizing: border-box;
}
.md-modal .modal__itemInr {
	background-color: #fff;
	padding: 15rem;
	box-sizing: border-box;
	display: flex;
	position: relative;
}
.md-modal .modal__itemImg {
	width: 125rem;
}
.md-modal .modal__itemBody {
	flex: 1;
	padding-left: 15rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	position: relative;
}
.md-modal .modal__itemTtl {
	font-size: 18rem;
	line-height: 1.6;
}
.md-modal .modal__itemTtl .note {
	font-size: 13rem;
	line-height: 1.6;
}
.md-modal .modal__itemPrice {
	padding-right: 155rem;
	box-sizing: border-box;
	font-size: 18rem;
	line-height: 1.6;
	margin-top: auto;
}
.md-modal .modal__itemPrice .unit {
	font-size: 13rem;
	line-height: 1.6;
}
.md-modal .modal__itemPrice._type-old {
	position: absolute;
	bottom: 25rem;
	left: 15rem;
	color: #b70404;
	font-size: 16rem;
	display: inline-block;
	padding: 0;
}
.md-modal .modal__itemPrice._type-old::before {
	content: " ";
	width: 100%;
	height: 1px;
	background-color: #333;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.md-modal .modal__itemPrice._type-old .unit {
	font-size: 11rem;
}
.md-modal .md-btn {
	position: absolute;
	bottom: 15rem;
	right: 15rem;
}
.md-modal .md-btn a {
	width: 155rem;
	padding: 5rem 30rem;
}
.md-modal .md-btn._is-arw a::before {
	right: 15rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal .modal__cts {
		max-width: 100%;
		padding: 90rem 25rem;
		overflow-y: scroll;
		max-height: 80vh;
	}
	.md-modal .modal__list {
		display: block;
	}
	.md-modal .modal__item {
		width: 100%;
		padding: 20rem 0;
	}
	.md-modal .modal__itemInr {
		padding: 25rem;
		display: flex;
		position: relative;
		flex-wrap: wrap;
	}
	.md-modal .modal__itemImg {
		width: 125rem;
	}
	.md-modal .modal__itemBody {
		flex: 1;
		padding-left: 20rem;
	}
	.md-modal .modal__itemTtl {
		font-size: 32rem;
	}
	.md-modal .modal__itemTtl .note {
		font-size: 26rem;
	}
	.md-modal .modal__itemPrice {
		padding-right: 0;
		font-size: 32rem;
		margin-top: 34rem;
		text-align: right;
	}
	.md-modal .modal__itemPrice .unit {
		font-size: 26rem;
	}
	.md-modal .modal__itemPrice._type-old {
		bottom: 0;
		left: -25rem;
		color: #b70404;
		font-size: 32rem;
	}
	.md-modal .modal__itemPrice._type-old::before {
		top: 58%;
	}
	.md-modal .modal__itemPrice._type-old .unit {
		font-size: 22rem;
	}
	.md-modal .md-btn {
		position: static;
		width: 100%;
		margin-top: 30rem;
	}
	.md-modal .md-btn a {
		width: 100%;
		padding: 15rem 30rem;
		text-align: center;
	}
	.md-modal .md-btn._is-arw a::before {
		right: 30rem;
	}
}

/* 251212 追加 */

.secSpec .secFunction__note {
  max-width: 1200rem;
  margin: auto;
	padding: 25rem 40rem;
	box-sizing: border-box;
	border: 1px solid #ccc;
  text-align: center;
}
.secSpec .secFunction__noteTtl {
	font-size: 21rem;
	line-height: 1.7;
}
.secSpec .secFunction__noteList {
	margin-top: 20rem;
}
.secSpec .secFunction__noteListTtl {
	font-size: 21rem;
	line-height: 1.8;
}
.secSpec .secFunction__noteListDesc {
	margin-top: 10rem;
	padding-left: 10rem;
	box-sizing: border-box;
}
.secSpec .secFunction__noteListDesc p {
	padding-left: 15rem;
	box-sizing: border-box;
	position: relative;
	font-size: 16rem;
	line-height: 1.8;
}
.secSpec .secFunction__noteListDesc p + p {
	margin-top: 5rem;
}
.secSpec .secFunction__noteListDesc p::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.secSpec .secFunction__note .md-btn {
  margin-top: 30rem;
  justify-content: center;
}
.secSpec .secFunction__note .md-btn a {
  width: 520rem;
}

@media screen and (max-width: 768px) {
	.secSpec .secFunction__note {
		margin-top: 40rem;
		padding: 70rem 35rem;
	}
	.secSpec .secFunction__noteTtl {
		font-size: 42rem;
	}
	.secSpec .secFunction__note .md-btn {
		margin-top: 80rem;
	}
	.secSpec .secFunction__note .md-btn a {
		padding: 20rem 40rem;
		width: 100%;
    line-height: 1.6;
    padding-right: 30px;
	}
	.secSpec .secFunction__note .md-btn._is-blank a::before {
		right: 35rem;
	}
}
