@charset "utf-8";

/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
	padding: 0.5rem 1rem;
}

.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
}

.header-title::before {
	display: inline-block;
	width: 2.8rem;
	height: 1.8rem;
	margin: 0 0.5rem 0 0;
	background: #000;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.7rem;
	text-align: center;
	content: "PR";
}

.header-title a {
	text-decoration: none;
}

.header-title a:hover {
	text-decoration: underline;
}

.gnavi-ctrl {
	display: none;
}



	.gnavi-btn-close {
		display: none;
	}

	.toggle-content {
		display: none;
	}

	.gnavi-ctrl {
		display: block;
		transition: opacity 0.6s, visibility 0.6s;
		opacity: 0;
		visibility: hidden;
	}

	.gnavi-ctrl.is-show {
		opacity: 1;
		visibility: visible;
	}

	.gnavi-btn {
		width: 4rem;
		height: 4rem;
		background: #e6523c;
		background: -webkit-linear-gradient(0deg, rgba(230, 82, 60, 1) 0%, rgba(242, 109, 50, 1) 100%);
		background: linear-gradient(0deg, rgba(230, 82, 60, 1) 0%, rgba(242, 109, 50, 1) 100%);
		border-radius: 0.5rem;
		display: block;
		position: fixed;
		top: 2rem;
		right: 1rem;
		z-index: 200;
		cursor: pointer;
	}

	.gnavi-btn span {
		width: 3rem;
		height: 0.2rem;
		display: inline-block;
		background: #fff;
		position: absolute;
		left: 0.5rem;
		transform: translate(0, -50%);
		transition: transform 0.4s, opacity 0.4s;
	}

	.gnavi-btn span:nth-of-type(1) {
		top: 1.2rem;
	}

	.gnavi-btn span:nth-of-type(2) {
		top: 2rem;
	}

	.gnavi-btn span:nth-of-type(3) {
		top: 2.8rem;
	}

	.gnavi-btn.is-active span:nth-of-type(1) {
		transform: translateY(0.8rem) rotate(-45deg);
	}

	.gnavi-btn.is-active span:nth-of-type(2) {
		opacity: 0;
	}

	.gnavi-btn.is-active span:nth-of-type(3) {
		transform: translateY(-0.8rem) rotate(45deg);
	}

	.gnavi-btn-close {
		width: 80%;
		margin: 0 auto;
		padding: var(--s2);
		background: #fff;
		border: 1px solid #f37230;
		display: block;
		text-align: center;
	}

	.gnavi-btn-close__inner {
		padding: 0 0 0 var(--s3);
		display: inline-block;
		font-weight: 700;
		position: relative;
	}

	.gnavi-btn-close__inner::before {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #f37230;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%) rotate(45deg);
	}

	.gnavi-btn-close__inner::after {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #f37230;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%) rotate(135deg);
	}

	.gnavi-area {
		width: 100%;
		max-width: 37.5rem;
		height: 100vh;
		padding: var(--s3) var(--s1) var(--s10);
		display: block;
		background: #fffdf0;
		overflow-x: hidden;
		overflow-y: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		transform: translateX(100%);
		transition: transform 0.8s ease, opacity 0.8s ease;
		opacity: 0;
	}

	.gnavi-title {
		min-height: var(--s6);
		margin: 0 var(--s8);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.6rem;
		font-weight: 700;
		text-align: center;
		line-height: 1.5;
	}

	.gnavi-pc {
		display: none;
	}

	.gnavi-list {
		border-bottom: 1px solid #a7a7a7;
		position: relative;
	}

	.gnavi-list li {
		padding-left: 0;
	}

	.gnavi-list__item::before {
		display: none;
	}

	.gnavi-list__link {
		width: 100%;
		margin: 0 auto;
		padding: var(--s2) var(--s4) var(--s2) var(--s2);
		border-top: 1px solid #a7a7a7;
		display: block;
		font-weight: 700;
		line-height: 2;
		text-decoration: none;
		position: relative;
	}

	.gnavi-list__link::after {
		content: "";
		width: 1.4rem;
		height: 1.4rem;
		background: url(img/arrow02-black.svg) no-repeat center;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: var(--s2);
		transform: translate(0, -50%) rotate(0);
		transition: transform 0.3s;
	}

	.gnavi-list__link--toggle::after {
		background-image: url(img/arrow02-black-down.svg);
	}

	.gnavi-list__link--toggle.is-open::after {
		transform: translate(0, -50%) rotate(180deg);
	}

	.gnavi-list__sub {
		width: 100%;
		background: #fff;
	}

	.gnavi-list__low .gnavi-list__link {
		padding: var(--s2) var(--s4) var(--s2) var(--s4);
	}

	.gnavi-list__low .gnavi-list__link::after {
		content: "└";
		background: none;
		transform: translateY(-50%);
		position: absolute;
		top: 40%;
		left: 1rem;
	}

	.is-gnavi-open .gnavi-area {
		opacity: 1;
		transform: translateX(0);
	}



/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
	width: 83rem;
	margin: 6rem auto 8rem auto;
	padding: 3rem 5rem 4rem 5rem;
	background: var(--site-color04);
	position: relative;
}

.related-article01-title {
	padding: 0 0 var(--s2) 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	position: relative;
	border-bottom: 1px solid #ddd;
}

.related-article01-list {
	padding: var(--s2) 0;
	font-weight: 700;
}

.related-article01-list li {
	padding-left: 1.5em;
	font-size: 100%;
	line-height: 1.7;
	position: relative;
}

.related-article01-list li+li {
	margin-top: 10px;
}

.related-article01-list li::before {
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	background: url(img/title-bg-02.png) no-repeat left top;
	background-size: contain;
	position: absolute;
	top: 0.8rem;
	left: 0;
}

.related-article01-list a {
	display: block;
	text-decoration: none;
}

.related-article01-list a:hover {
	opacity: 0.6;
}

.relations-box.relations-box--column {
	display: flex;
	gap: 10px;
}

.relations-box__pic {
	flex: 0 0 150px;
}

.is-hidden {
	display: none;
}

.related-article01-more {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 50%);
	background-color: transparent;
	width: 100%;
	height: 25%;
	position: absolute;
	bottom: -5rem;
	left: 0;
	padding: 2rem 0;
}


.related-article01-more.is-closed {
	display: none;
}

.related-article01-btn {
	width: 28rem;
	margin: 2rem auto 0 auto;
	padding: 2rem 5rem;
	background: #fff;
	border: 2px solid #c6c9ce;
	border-radius: 6rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
	font-weight: 700;
	text-align: center;
	position: relative;
	transition: 0.2s;
	cursor: pointer;
}

.related-article01-btn::before {
	content: "";
	width: 2rem;
	height: .3rem;
	background: #c6c9ce;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
}

.related-article01-btn::after {
	content: "";
	width: .3rem;
	height: 2rem;
	background: #c6c9ce;
	position: absolute;
	top: 50%;
	right: 2.9rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.related-article01-btn:hover {
	opacity: 0.7;
}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.related-article01-frame {
		width: 100%;
		padding: 3rem 2rem 4rem 2rem;
	}

	.related-article01-list {
		padding: 1rem 0 0.5rem 0;
	}

	.related-article01-list li {
		margin-left: 0;
	}
}

/*------------------------------------------
    3box column settings
*/
.thb-box-full {
	width: calc(100% + var(--s4));
	margin-left: calc(var(--s2) * -1);
}

/*------------------------------------------
    1box column settings
*/
.column-medium {
	padding: var(--s4);
	border: 1px solid var(--site-color09);
	background: #fff;
}

.onb-box-full {
	width: calc(100% + var(--s8));
	margin-left: calc(var(--s4) * -1);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.column-medium {
		padding: var(--s2);
	}

	.onb-box-full {
		width: calc(100% + var(--s4));
		margin-left: calc(var(--s2) * -1);
	}
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title03 {
		font-size: 2.4rem;
		line-height: 1.5;
	}
}

.thb-table {
	line-height: 1.5;
	border-collapse: collapse;
	border: 1px solid #B0A8A7;
}

.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #B0A8A7;
}

.thb-table th {
	width: 35%;
	background-color: #FFEAD6;
	text-align: left;
}

.acc-more-btn {
	max-width: 32rem;
	margin: var(--s5) auto;
	position: relative;
}

.acc-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 4rem;
	background: #FFEDAB url('/img/accordion-plus.svg') no-repeat 95% center;
	display: block;
	text-align: center;
	font-weight: 700;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}

.acc-more-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #D6D6D6;
	border-width: 0 1px 1px 0;
	transform: translate(.6rem, .6rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.acc-more-btn:hover span {
	transform: translate(.6rem, .6rem);
}

.acc-more-btn.is-open span {
	background: #FFEDAB url('/img/accordion-minus.svg') no-repeat 95% center;
}

.more-content {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}

	.acc-more-btn:hover span {
		transform: none;
	}
}

/*------------------------------------------
    2box column settings
*/
.column-medium {
	padding: var(--s4);
	border: 1px solid var(--site-color09);
}

.twb-box-full {
	width: calc(100% + var(--s8));
	margin-left: calc(var(--s4) * -1);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.column-medium {
		padding: var(--s2);
	}

	.twb-box-full {
		width: calc(100% + var(--s4));
		margin-left: calc(var(--s2) * -1);
	}
}

.icon-title-area {
	background-color: #FFD22D;
	position: relative;
}

.icon-title-obj-r {
	width: 11rem;
	height: 11rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: .3rem solid #F16915;
	border-radius: 11rem;
	position: absolute;
	top: -.8rem;
	left: -.8rem;
}

.icon-title-obj-r__inner {
	text-align: center;
	font-weight: 700;
}

.icon-title-r {
	padding: 1.6rem 1.6rem 1.6rem 12rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.icon-title-small {
	font-size: 1.4rem;
}

.iconbox02-frame {
	padding: var(--s2) var(--s4) var(--s4);
	background-color: #F5F5F5;
	border-radius: 20px;
}

.iconbox02-catch {
	padding: var(--s2) var(--s1) var(--s4) var(--s7);
	color: var(--site-color01);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 2px dotted #707070;
	background: url('/img/dummy-icon.png') no-repeat 0 10px;
	background-size: 4.8rem auto;
}

.iconbox02-caption {
	text-align-last: left;
}

@media screen and (max-width: 767px) {
	.iconbox02-frame {
		padding: var(--s1) var(--s2) var(--s2);
	}

	.iconbox02-catch {
		padding-bottom: var(--s2);
		background-position: 0 15px;
	}

	.iconbox02-frame p {
		line-height: 1.6;
	}
}

.icon-head02 {
	position: relative;
	margin: 5rem 0 3rem 0;
	padding: 2.2rem 2.5rem 2.5rem 14rem;
	background: var(--site-color02);
	border-radius: 1rem;
	font-size: 2.6rem;
	line-height: 1.4;
	font-weight: 700;
}

.icon-head02::before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 8.8rem;
	height: 8.8rem;
	background: var(--site-color01);
	border-radius: 1rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.1;
	content: "POINT";
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.icon-head02 {
		padding: 2rem 2rem 2rem 8.5rem;
		font-size: 1.8rem;
	}

	.icon-head02::before {

		left: 1rem;
		width: 6.4rem;
		height: 6.4rem;
		font-size: 1.6rem;
	}
}


.conclusion-box-frame {
	margin: 6rem 0;
	background: var(--site-color04);
	border-radius: 1rem;
}

.conclusion-box-ttl {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 3rem;
	border-bottom: 3px solid #fff;
}

.conclusion-box-ttl__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8.8rem;
	height: 8.8rem;
	background: var(--site-color01);
	background: -webkit-linear-gradient(0deg, rgba(234, 84, 61, 1) 0%, rgba(243, 111, 49, 1) 100%);
	background: linear-gradient(0deg, rgba(234, 84, 61, 1) 0%, rgba(243, 111, 49, 1) 100%);
	border-radius: 1rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.1;
}

.conclusion-box-ttl__text {
	display: flex;
	align-items: center;
	width: calc(100% - 8.8rem);
	padding: 0 0 0 3rem;
	color: #ea543d;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.conclusion-box-text {
	padding: 1rem 4rem 4rem 4rem;
}

.conclusion-box-text .btn-internal,
.conclusion-box-text .btn-web {
	margin-bottom: 0;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.conclusion-box-ttl {
		padding: 1.5rem;
	}

	.conclusion-box-ttl__icon {
		width: 6.4rem;
		height: 6.4rem;
		font-size: 1.5rem;
	}

	.conclusion-box-ttl__text {
		width: calc(100% - 6.4rem);
		padding: 0 0 0 1rem;
		font-size: 2rem;
	}

	.conclusion-box-text {
		padding: 0 1.5rem 2.5rem 1.5rem;
	}

}


/* ---------------------------------------------
index02(目次)
--------------------------------------------- */
.onb-index02-frame {
	width: 100%;
	counter-reset: count;
    margin-bottom: 3rem;
}

.onb-index02-wrap {
	margin: 0 auto;
	padding: var(--s1) var(--s3) var(--s4) var(--s3);
	background: var(--site-color04);
	position: relative;
}

.onb-index02-title {
	padding: var(--s2) var(--s2) var(--s2) 5.5rem;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.1;
	position: relative;
	border-bottom: 1px solid #cbd3da;
}

.onb-index02-title::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4.6rem;
	height: 2.8rem;
	background: url(img/title-bg-01.png) no-repeat left top;
	background-size: contain;
	content: "";
}

.onb-index02-chapter {
	padding: var(--s2) var(--s2) var(--s2) var(--s4);
	font-weight: 700;
	counter-reset: number 0;
}

.onb-index02-chapter-h {
	margin: 0 0 0 var(--s2);
	font-size: 100%;
	line-height: 1.7;
	position: relative;
}

.onb-index02-chapter-h a {
	display: block;
	text-decoration: none;
}

.onb-index02-chapter-h a:hover {
	opacity: .6;
}

.onb-index02-chapter-h-two {
	padding-left: 3rem;
	position: relative;
}

.onb-index02-chapter-h-three {
	padding-left: 4.5rem;
	position: relative;
}

.onb-index02-chapter-h-two::before,
.onb-index02-chapter-h-three::before {
	position: absolute;
	top: 0.1rem;
	left: 2.4rem;
}

.onb-index02-chapter-h-two::before {
	position: absolute;
	left: 0;
	top: 1.3rem;
	transform: translateY(-50%);
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
	color: var(--site-color01);
	font-size: 1.5rem;
	font-weight: 700;
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
}

.onb-index02-chapter-h-three::before {
	content: "└";
}


/*----------------------------------------------
	more content settings
*/
.more-content-gradation {
	position: relative;
	height: auto;
	max-height: 12rem;
	overflow: hidden;
	transition: max-height 1s;
}

.more-content-gradation::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	background: linear-gradient(to bottom, transparent 0%, var(--site-color04) 100%);
}

.more-content-gradation.is-open::after {
	display: none;
}

.onb-index02-btn {
	max-width: 40rem;
	margin: 2rem auto 0 auto;
	padding: 2.5rem 5rem;
	background: #fff;
	border: 2px solid #c6c9ce;
	border-radius: 6rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
	font-weight: 700;
	text-align: center;
	position: relative;
	transition: 0.2s;
	cursor: pointer;
}

.onb-index02-btn::before {
	content: "";
	width: 2rem;
	height: .2rem;
	background: #c6c9ce;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
}

.onb-index02-btn::after {
	content: "";
	width: .2rem;
	height: 2rem;
	background: #c6c9ce;
	position: absolute;
	top: 50%;
	right: 2.9rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.onb-index02-btn:hover {
	opacity: 0.7;
}

.onb-index02-btn.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}

.thb-listbox-area {
	padding: 4rem var(--s2) var(--s2) var(--s2);
	background-color: #F5F5F5;
	border-radius: 20px;
	position: relative;
}

.thb-listbox-subtitle {
	text-align: center;
	font-weight: 700;
}

.thb-listbox-list {
	width: 100%;
	padding-left: 3rem;
}

.thb-listbox-list li {
	font-weight: 700;
	padding: var(--s1);
	line-height: 1.5;
	position: relative;
}

.thb-listbox-list li::before {
	content: "";
	width: 2.5rem;
	height: 2.5rem;
	background: url("/img/icon-check.png") no-repeat left center;
	background-size: contain;
	position: absolute;
	top: 1rem;
	left: -2.5rem;
}

.thb-listbox-list li span {
	margin-right: var(--s1);
	display: block;
	text-align: center;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {

	.onb-index02-wrap {
		padding: var(--s1) var(--s2) var(--s3) var(--s2);
	}

	.onb-index02-chapter {
		padding: var(--s2) 0;
	}

	.thb-listbox-area {
		padding: var(--s5) var(--s2) var(--s2) var(--s2);
	}

	.thb-listbox-list li {
		font-size: 1.4rem;
	}

	.thb-listbox-list--three li {
		width: calc((100% - var(--s2)) / 2);
	}
}

.thb-more-btn {
	max-width: 32rem;
	margin: var(--s5) auto;
	position: relative;
}

.thb-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 4rem;
	background: #FFEDAB url('/img/accordion-plus.svg') no-repeat 95% center;
	display: block;
	text-align: center;
	font-weight: 700;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}

.thb-more-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #D6D6D6;
	border-width: 0 1px 1px 0;
	transform: translate(.6rem, .6rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.thb-more-btn:hover span {
	transform: translate(.6rem, .6rem);
}

.thb-more-btn.is-open span {
	background: #FFEDAB url('/img/accordion-minus.svg') no-repeat 95% center;
}

.more-content {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.thb-more-btn span {
		transition: inherit;
		transform: none;
	}

	.thb-more-btn:hover span {
		transform: none;
	}
}

.acc-more-btn {
	max-width: 32rem;
	margin: var(--s5) auto;
	position: relative;
}

.acc-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 4rem;
	background: #FFEDAB url('/img/accordion-plus.svg') no-repeat 95% center;
	display: block;
	text-align: center;
	font-weight: 700;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}

.acc-more-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #D6D6D6;
	border-width: 0 1px 1px 0;
	transform: translate(.6rem, .6rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.acc-more-btn:hover span {
	transform: translate(.6rem, .6rem);
}

.acc-more-btn.is-open span {
	background: #FFEDAB url('/img/accordion-minus.svg') no-repeat 95% center;
}

.more-content {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}

	.acc-more-btn:hover span {
		transform: none;
	}
}

.onb-icon-title-frame {
	padding: var(--s4);
	background-color: #2EAD70;
	border-radius: 20px;
	position: relative;
	margin: 0 3rem;
}

.onb-icon-title-icon {
	width: 12rem;
	height: 12rem;
	overflow: hidden;
	position: absolute;
	top: -4rem;
	left: 0;
	border: 3px solid #fff;
	border-radius: 100px;
	box-shadow: -10px 0 0 0 #EEEEEE;
}

.onb-icon-title-icon img {
	width: 100%;
}

.onb-icon-title {
	text-align: center;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
}

.onb-icon-title small {
	font-size: 2.1rem;
}

.onb-icon-title-catch {
	margin-bottom: .8rem;
	font-size: 1.6rem;
	display: block;
	line-height: 1.5;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-icon-title-frame {
		padding: var(--s2);
	}

	.onb-icon-title {
		font-size: 2.4rem;
	}

	.onb-icon-title small {
		font-size: 1.6rem;
	}

	.onb-icon-title-catch {
		padding-left: var(--s3);
		font-size: 1.4rem;
	}

	.onb-icon-title-icon {
		width: 6rem;
		height: 6rem;
		position: absolute;
		top: -2rem;
		left: -2rem;
		border-width: 2px;
	}
}

.onb-center-img {
	max-width: 64%;
	margin: 0 auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-center-img {
		max-width: 100%;
	}
}

.onb-com-box-title {
	padding: var(--s1);
	background-color: #c9c9c9;
	line-height: 1.5;
}

.onb-com-box-img {
	width: 11.2rem;
	margin-left: var(--s2);
	margin-bottom: var(--s2);
	float: right;
}

.onb-com-box-img span {
	margin-top: var(--s1);
	display: block;
	font-size: 1.2rem;
	text-align: center;
}

.onb-iconbox03-frame {
	padding: var(--s4) var(--s2) var(--s2);
	background-color: #f5f5f5;
	border-radius: 15px;
	position: relative;
}

.onb-iconbox03-img {
	padding-left: var(--s7);
	padding-right: var(--s7);
}

.onb-iconbox03-caption {
	text-align-last: left;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-iconbox03-img {
		padding-left: var(--s11);
		padding-right: var(--s11);
	}
}

.onb-more-btn {
	max-width: 32rem;
	margin: var(--s5) auto;
	position: relative;
}

.onb-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 4rem;
	background: #FFEDAB url('/img/accordion-plus.svg') no-repeat 95% center;
	display: block;
	text-align: center;
	font-weight: 700;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}

.onb-more-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #D6D6D6;
	border-width: 0 1px 1px 0;
	transform: translate(.6rem, .6rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.onb-more-btn:hover span {
	transform: translate(.6rem, .6rem);
}

.onb-more-btn.is-open span {
	background: #FFEDAB url('/img/accordion-minus.svg') no-repeat 95% center;
}

.more-content {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-more-btn span {
		transition: inherit;
		transform: none;
	}

	.onb-more-btn:hover span {
		transform: none;
	}
}

.l-onb-flex-table {
	display: flex;
}

.onb-flex-table {
	border: none;
	border-top: 1px solid #B0A8A7;
}

.onb-flex-table:first-child {
	border-left: 1px solid #B0A8A7;
}

.onb-flex-table th,
.onb-flex-table td {
	padding: var(--s2);

}

.onb-flex-table th {
	width: 35%;
	background-color: #FFEAD6;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-flex-table {
		flex-direction: column;
	}

	.onb-flex-table {
		border-left: 1px solid #B0A8A7;
	}

	.onb-flex-table+table {
		margin-top: -1px;
	}
}


/*--------------------------------------
mainvisual
---------------------------------------*/
.mainvisual {
	position: relative;
	min-height: 50rem;
	color: #151e2f;
}

.mainvisual::before {
	position: absolute;
	left: 0;
	top: 3rem;
	width: 100%;
	height: 41rem;
	background: url(img/mv-img-04.png) no-repeat left top;
	background-size: contain;
	content: "";
	z-index: -2;
}

.mainvisual .mv-inner {
	width: 120rem;
	margin: 0 auto;
	padding: 3rem 0 5rem 0;
}

.mainvisual .mv-txt {
	position: relative;
	width: 60rem;
}

.mainvisual .mv-logo {
	width: 15rem;
	margin: 0 0 3rem 0;
}

.mainvisual .mv-sitename {
	margin: 0 0 2rem 0;
}

.mainvisual .mv-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.4;
}

.mainvisual .mv-title .txt-1 {
	display: inline-block;
	margin: 0 1rem 0 0;
	color: #f47230;
	font-size: 3.7rem;
}

.mainvisual .mv-title .txt-2 {
	color: #e95045;
	font-size: 8rem;
}

.mainvisual p:not([class]) {
	margin: 0;
}

.mainvisual p:not([class])>span:not([class]) {
	border-bottom: 2px solid var(--site-color01);
	font-weight: 700;
}

.mv-wrapper {
	position: relative;
	overflow: hidden;
}

.swiper {
	position: absolute;
	top: 50%;
	left: calc(50% + 45rem);
	transform: translate(-50%, -50%) rotate(15deg);
	width: 76rem;
	height: 76rem;
	z-index: -1;
}

.swiper-wrapper {
	transition-timing-function: linear;
	will-change: transform;
}

.swiper-slide {
	height: 32rem !important;
}

.swiper-slide {
	position: relative;
	overflow: hidden;
}

.swiper-slide img {
	width: auto;
	height: 100%;
}


@media screen and (max-width: 767px) {
	.mainvisual {
		position: relative;
		min-height: auto;
	}

	.mainvisual::before {
		top: 15rem;
		height: 20rem;
	}

	.mainvisual .mv-inner {
		width: 100%;
		padding: 1.5rem 1.5rem 3rem 1.5rem;
	}

	.mainvisual .mv-txt {
		width: 100%;
	}

	.mainvisual .mv-logo {
		width: 12rem;
		margin: 0 auto 2.5rem auto;
	}

	.mainvisual .mv-sitename {
		margin: 0 0 4rem 0;
	}

	.mainvisual .mv-title {
		font-size: 1.8rem;
		text-align: center;
	}

	.mainvisual .mv-title .txt-1 {
		font-size: 2.1rem;
	}

	.mainvisual .mv-title .txt-2 {
		font-size: 3.6rem;
	}

	.mv-img {
		margin: 0 0 3rem 0;
	}

	.swiper {
		position: relative;
		top: 0;
		left: -3rem;
		transform: rotate(-10deg);
		width: calc(100vw + 3rem);
		height: 16rem;
	}

	.swiper-slide {
		width: 28rem !important;
		height: 16rem !important;
	}

	.swiper-slide img {
		width: 28rem !important;
		height: 16rem !important;
	}


}


/*--------------------------------------
mainvisual-lower
---------------------------------------*/
.mainvisual-lower .mv-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 14rem;
	background: #f8f8f8 url(img/mv-bg-01.png) no-repeat center center;
	background-size: cover;
	text-align: center;
}

.mainvisual-lower .mv-logo {
	width: 15rem;
	margin: 0 auto;
}

.mainvisual-lower .mv-logo a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {

	.mainvisual-lower .mv-inner {
		width: 100%;
		height: 8rem;
		padding: 0;
		background: #f8f8f8 url(img/mv-bg-02.png) no-repeat center center;
		background-size: cover;
	}

}


/*--------------------------------------
accordion
---------------------------------------*/
.accordion-item {
	display: none;
}

.accordion-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 40rem;
	margin: 3rem auto 4rem auto;
	padding: 2rem 4rem;
	background: #fff;
	border: 2px solid #c6c9ce;
	border-radius: 6rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: 0.2s;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.accordion-btn::before {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 1.6rem;
	height: 1.6rem;
	background: url(img/accordion-plus.png) no-repeat left top;
	background-size: contain;
	content: "";
	transform: translate(0, -50%);
	z-index: 2;
}

.accordion-btn.is-open::before {
	background: url(img/accordion-minus.png) no-repeat left top;
	background-size: contain;
}

.accordion-btn:hover {
	opacity: 0.7;
}


@media screen and (max-width: 767px) {

	.accordion-btn {
		max-width: 90%;
	}

}


/*--------------------------------------
gnav pc
---------------------------------------*/
.navigation01-menu-area {
	margin: 2rem auto;
}

.navigation01-menu {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.navigation01-menu::before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.2rem;
	height: 100%;
	background: #e8ebf0;
	content: "";
}

.navigation01-menu li {
	display: flex;
	flex: 1;
	position: relative;
}

.navigation01-menu li::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.2rem;
	height: 100%;
	background: #e8ebf0;
	content: "";
}

.navigation01-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1.2rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.navigation01-menu li a:hover {
	opacity: .6;
}

@media screen and (max-width: 767px) {

	.navigation01-menu-area {
		display: none;
	}

}


/*--------------------------------------
banner
---------------------------------------*/
.fix-banner01 {
	position: fixed;
	right: 0;
	bottom: 12rem;
	z-index: 50;
}

.fix-banner01 a {
	display: block;
	position: relative;
	width: 22rem;
	padding: 1.8rem 1rem 1.6rem 1rem;
	background: #000000;
	background: -webkit-linear-gradient(0deg, rgba(234, 84, 61, 1) 0%, rgba(244, 114, 48, 1) 100%);
	background: linear-gradient(0deg, rgba(234, 84, 61, 1) 0%, rgba(244, 114, 48, 1) 100%);
	border: 1px solid #ea543d;
	border-radius: 1rem 0 0 1rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	text-decoration: none;
}

.fix-banner01 a::before {
	position: absolute;
	right: 0.4rem;
	bottom: 0.4rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 1rem 1rem;
	border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
	content: "";
}

.fix-banner01 a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.fix-banner01 a span {
	display: inline-block;
	margin: 0 0 0.2rem 0;
	padding: 0.1rem 0.5rem;
	background: #fff;
	color: #000;
	font-size: 1.9rem;
}

@media screen and (max-width: 767px) {

	.fix-banner01 {
		left: 0;
		right: auto;
		bottom: 0;
	}

	.fix-banner01 a {
		width: auto;
		max-width: calc(100vw - 6rem);
		padding: 0.8rem 1.2rem 0.6rem 1.2rem;
		border-radius: 0 1rem 0 0;
		font-size: 1.4rem;
		font-weight: 700;
		line-height: 1.4;
		text-align: center;
		text-decoration: none;
	}

	.fix-banner01 a:hover {
		text-decoration: none;
		opacity: 0.7;
	}

	.fix-banner01 a span {
		font-size: 1.6rem;
	}

}


/*--------------------------------------
common
---------------------------------------*/
#low-page {
	padding: 0 0 5rem 0;
}

.section-title04 {
	position: relative;
	margin: 0 0 3rem 0;
	color: #000;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.section-title04 span {
	display: inline-block;
	margin: 1rem 0;
	padding: 0 1rem 0.2rem 1rem;
	background: var(--site-color01);
	color: #fff;
	font-size: 4.3rem;
}

p.lead {
	margin: 0 auto 4rem auto;
	line-height: 1.8;
}

.section-title03 {
	position: relative;
	margin: 0 0 3rem 0;
	padding: 6rem 0 0 0;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.section-title03::before {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 6rem;
	height: 3.7rem;
	background: url(img/title-bg-04.png) no-repeat left top;
	background-size: contain;
	content: "";
}

.section-title03 a {
	display: inline-block;
	padding: 0 5rem;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 3rem auto;
	color: inherit;
	text-decoration: none;
}

.section-title03 a:hover {
	opacity: 0.7;
}

.l-center.host {
	padding: 8rem 0 4rem 0;
}

@media screen and (max-width: 767px) {

	#low-page {
		padding: 0 1.5rem 2rem 1.5rem;
	}

	.section-title04 {
		font-size: 2.1rem;
	}

	.section-title04 span {
		font-size: 2.8rem;
	}

	p.lead {
		margin: 0 auto 3rem auto;
	}

	.section-title03 {
		font-size: 2.4rem;
	}

	.section-title03 a {
		padding: 0 3rem;
		background-size: 2rem auto;
	}

	.section-title03 a:hover {
		opacity: 0.7;
	}

	.l-center.host {
		padding: 3rem 0;
	}

}


/*--------------------------------------
sec1
---------------------------------------*/
.sec1 {
	position: relative;
	padding: 7rem 0;
}

.sec1::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #eee url(img/sec1-bg-01.jpg) no-repeat left top;
	background-size: cover;
	content: "";
	z-index: -2;
	    background-attachment: fixed;
}

.sec1 .l-center {
	max-width: 120rem;
}

.sec1 .section-title04::before {
	position: absolute;
	left: 50%;
	top: 3rem;
	transform: translateX(-50%);
	width: calc(100vw - 20rem);
	height: calc(100% + 5rem);
	background: url(img/sec1-bg-02.png) no-repeat center top;
	background-size: contain;
	content: "";
	z-index: -1;
}

.sec1 p.lead {
	margin: 0 auto 5rem auto;
	text-align: center;
}

.sec1 p.note {
	margin: 3rem 0 0 0;
	color: #474747;
	font-size: 1rem;
	line-height: 1.4;
}

.sec1 .column-small {
	position: relative;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.sec1 .arrow-title {
	position: absolute;
	left: 50%;
	top: -4rem;
	transform: translateX(-50%);
	width: calc(100% - 10rem);
	margin: 0;
	padding: 1.5rem 1rem;
	background: #fff;
	border: 3px solid #df6427;
	border-radius: 1rem;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	z-index: 1;
}

.sec1 .arrow-title::before {
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 9px 0 9px;
	border-color: #fff transparent transparent transparent;
	content: "";
}

.sec1 .list-title {
	position: relative;
	margin: 0 0 6rem 0;
	padding: 4rem 2.5rem 2.5rem 2.5rem;
	background: #df6427;
	background: -webkit-linear-gradient(0deg, rgba(217, 77, 55, 1) 0%, rgba(223, 100, 39, 1) 100%);
	background: linear-gradient(0deg, rgba(217, 77, 55, 1) 0%, rgba(223, 100, 39, 1) 100%);
	border-radius: 0.8rem 0.8rem 0 0;
	color: #fff;
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec1 .list-title::before {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 3rem;
	background: url(img/sec1-bg-03.png) no-repeat left top;
	background-size: 100% 3rem;
	content: "";
}

.sec1 .list-title span {
	display: block;
	margin: 0 0 1rem 0;
	padding: 0 0 0 4.8rem;
	background: url(img/sec1-bg-04.png) no-repeat left center;
	background-size: 26px auto;
}

.sec1 .list-title span:last-child {
	margin: 0;
}

.sec1 .m-title01 {
	margin: 0 0 4rem 0;
	padding: 0 2rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec1 .fig {
	text-align: center;
}

.sec1 .fig+.caption {
	padding: 0 2rem;
}

.sec1 .ttl-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2rem 0 0 0;
	padding: 1.5rem 1rem;
	background: var(--site-color01);
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec1 .txt-1 {
	padding: 2.5rem 2rem;
	background: #fffdf0;
}

.sec1 .txt-1-2,
.sec1 .txt-1-3 {
	margin: 2.5rem 0 0 0;
}

.sec1 .m-title03 {
	margin: 0 0 1rem 0;
	padding: 0 0 0 4.4rem;
	background: url(img/sec1-bg-05.png) no-repeat left center;
	background-size: 33px auto;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec1 .txt-1-2 .m-title03 {
	background: url(img/sec1-bg-06.png) no-repeat left center;
	background-size: 33px auto;
}

.sec1 .txt-1-3 .m-title03 {
	background: url(img/sec1-bg-07.png) no-repeat left center;
	background-size: 33px auto;
}

.sec1 .ttl-2 {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	background: #ffe9a1;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec1 .txt-2 {
	padding: 2rem 2rem 0 2rem;
}

.sec1 .txt-1 span:not([class]),
.sec1 .txt-2 span:not([class]) {
	color: #eb6d2c;
	font-weight: 700;
}

.sec1 .thb-listbox-title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.5rem 0;
	color: #eb6d2c;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec1 .accordion-btn {
	max-width: 75%;
	margin: 2rem auto;
	font-size: 1.5rem;
}

.sec1 .accordion-item {
	padding: 0 2rem 0 2rem;
}

.sec1 .btn-web {
	max-width: 75%;
	margin: 3rem auto;
}

.sec1.lower-cnts .l-center {
	padding-right: var(--s2);
	padding-left: var(--s2);
}

.sec1.lower-cnts {
	margin: 6rem 0;
	padding: 5rem 0;
}

.sec1.lower-cnts .section-title04::before {
	display: none;
	content: none;
}

.sec1.lower-cnts .arrow-title {
	width: calc(100% - 4rem);
}

.sec1.lower-cnts .list-title {
	padding: 4rem 1.5rem 2rem 1.5rem;
	font-size: 2rem;
	line-height: 1.4;
}

.sec1.lower-cnts .m-title01 {
	font-size: 2.2rem;
}

.sec1.lower-cnts .ttl-1 {
	padding: 1.5rem 0.5rem;
	font-size: 1.8rem;
}

.sec1.lower-cnts .txt-1 {
	padding: 2.5rem 1.5rem;
}

.sec1.lower-cnts .txt-2 {
	padding: 2rem 1.5rem 0 1.5rem;
}

.sec1.lower-cnts .thb-listbox-title {
	font-size: 1.7rem;
}

.sec1.lower-cnts .accordion-btn {
	max-width: 90%;
}

.sec1.lower-cnts .btn-web {
	max-width: 90%;
}

#low-page .sec1.lower-cnts ul:not([class]) {
	margin-block: 0;
}

@media screen and (max-width: 767px) {

	.sec1 {
		padding: 4rem 0;
	}

	.sec1::before {
		background: #eee url(img/sec1-bg-01.jpg) no-repeat center top;
		background-size: 150% auto;
	}

	.sec1 .l-center {
		max-width: 100%;
	}

	.sec1 .section-title04::before {
		top: 2rem;
		width: calc(100vw - 2rem);
	}

	.sec1 p.note {
		margin: 2rem 0 0 0;
	}

	.sec1 .column-small {
		margin: 0 0 4rem 0;
	}

	.sec1 .column-small:last-child {
		margin: 0;
	}

	.sec1 .arrow-title {
		width: calc(100% - 4rem);
	}

	.sec1 .list-title,
	.sec1.lower-cnts .list-title {

		padding: 4rem 2rem 2.5rem 2rem;
		font-size: 2rem;
	}

	.sec1 .m-title01,
	.sec1.lower-cnts .m-title01 {
		font-size: 2.6rem;
	}

	.sec1 .fig {
		text-align: center;
	}

	.sec1 .fig+.caption {
		padding: 0 2rem;
	}

	.sec1 .ttl-1,
	.sec1.lower-cnts .ttl-1 {
		font-size: 2rem;
	}

	.sec1 .txt-1,
	.sec1.lower-cnts .txt-1 {
		padding: 2.5rem 1.5rem;
	}

	.sec1 .m-title03,
	.sec1.lower-cnts .m-title03 {
		font-size: 1.8rem;
	}

	.sec1 .m-title03:nth-of-type(1) {
		margin: 0 0 1.5rem 0;
	}

	.sec1 .ttl-2,
	.sec1.lower-cnts .ttl-2 {
		font-size: 2rem;
	}

	.sec1 .txt-2 {
		padding: 2rem 1.5rem 0 1.5rem;
	}

	.sec1 .thb-listbox-title,
	.sec1.lower-cnts .thb-listbox-title {
		font-size: 1.8rem;
	}

	.sec1 .accordion-btn {
		max-width: calc(100% - 3rem);
	}

	.sec1 .accordion-item {
		padding: 0 1.5rem;
	}

	.sec1 .btn-link {
		width: 100%;
		margin: 3rem auto 0 auto;
	}

	.sec1 .btn-web,
	.sec1 .btn-tel {
		max-width: calc(100% - 3rem);
		margin: 3rem auto;
	}

	.sec1.lower-cnts .l-center {
		padding-right: var(--s2);
		padding-left: var(--s2);
	}

	.sec1.lower-cnts {
		margin: 5rem 0;
		padding: 4rem 0;
	}

}


/*--------------------------------------
sec2
---------------------------------------*/
.sec2 {
	padding: 7rem 0;
	background: #fffcf0;
}

.sec2 .bg-02 {
	background: url(img/sec2-bg-01.png) no-repeat center top 3rem;
}

.sec2 .column-medium {
	margin: 0 0 7rem 0;
	padding: 0;
	background: #fff;
	border: none;
	border-radius: 1.2rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}

.sec2 .column-medium:last-child {
	margin: 0;
}

.sec2 .list-title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 3rem 3rem 1rem 3rem;
	background: #d94e36;
	background: -webkit-linear-gradient(0deg, rgba(217, 78, 54, 1) 0%, rgba(223, 100, 39, 1) 100%);
	background: linear-gradient(0deg, rgba(217, 78, 54, 1) 0%, rgba(223, 100, 39, 1) 100%);
	border-radius: 1rem 1rem 0 0;
}

.sec2 .list-title-wrap::before {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 3rem;
	background: url(img/sec2-bg-02.png) no-repeat left top;
	background-size: 100% 3rem;
	content: "";
}

.sec2 .list-title {
	color: #fff;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec2 .list-title span {
	display: block;
    margin: 0 0 1rem 0;
    padding: 0 0 0.2rem 4.8rem;
    background: url(img/sec1-bg-04.png) no-repeat left center;
    background-size: 26px auto;
    text-align: left;
    font-size: 3.4rem;
}

.sec2 .inner {
	padding: 7rem 3rem 3rem 3rem;
}

.sec2 .name {
	position: relative;
	margin: 0 0 6rem 0;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec2 .name::before {
	position: absolute;
	left: 50%;
	top: calc(100% + 1rem);
	transform: translateX(-50%);
	width: 10rem;
	height: 0.5rem;
	background: #ffe9a1;
	content: "";
}

.sec2 .fig,
.sec2 .fig+.caption {
	text-align: center;
}

.sec2 .fig img {
	max-width: 70%;
}

.sec2 .onb-m-title5 {
	margin: 6rem 0 3rem 0;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec2 .onb-m-title5 span {
	border-bottom: 2px solid #ffe9a1;
}

.sec2 .onb-com-box-area {
	background: var(--site-color04);
	border-radius: 1rem;
}

.sec2 .onb-com-box-catch {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: var(--site-color01);
	border-radius: 0.8rem 0.8rem 0 0;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec2 .onb-com-box-text {
	padding: 2rem;
}

.sec2 .case-title-1 {
	margin: 4rem 0 1rem 0;
	color: #ea543d;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec2 .onb-m-title5+.case-title-1 {
	margin: 0 0 1rem 0;
}

.sec2 .case-title-2 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec2 .l-grid-three {
	margin: 5rem 0 0 0;
}

.sec2 .l-grid-three+.caption {
	text-align: left;
}

.sec2 .onb-iconbox03-frame {
	position: relative;
	margin: 0 0 1.5rem 0;
	padding: 4rem 2rem 2rem 2rem;
	background: #fffcf0;
	border: 1px solid #ffbe9c;
	border-radius: 1rem;
}

.sec2 .onb-iconbox03-frame:nth-child(1) {
	background: var(--site-color04);
}

.sec2 .onb-iconbox03-frame::before {
	position: absolute;
	left: calc(100% - 0.7rem);
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	background: url(img/sec2-bg-03.png) no-repeat left top;
	background-size: contain;
	content: "";
	z-index: 1;
}

.sec2 .onb-iconbox03-frame:nth-child(3)::before {
	display: none;
	content: none;
}

.sec2 .onb-iconbox03-sub {
	position: absolute;
	left: 50%;
	top: -2rem;
	transform: translateX(-50%);
	text-align: center;
}

.sec2 .onb-iconbox03-sub span {
	display: inline-block;
	padding: 0.6rem 4rem;
	background: var(--site-color01);
	border-radius: 0.5rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec2 .onb-iconbox03-catch {
	margin: 0 0 1.5rem 0;
	color: #ea543d;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.ex-contents {
	display: flex;
}

.ex-contents-left {
	display: flex;
	align-items: center;
	padding: 1.6rem 3.2rem;
	background: var(--site-color01);
	border-radius: 1rem 0 0 1rem;
}

.ex-contents-left span {
	display: block;
	width: 100%;
	text-align: center;
}

.ex-contents-left span img {
	width: 3rem;
}

.ex-contents-right {
	width: 100%;
	padding: 2rem 3rem;
	background: var(--site-color04);
	border-radius: 0 1rem 1rem 0;
}

.ex-contents-catch {
	margin: 0 0 1.5rem 0;
	color: #ea543d;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec2 table th {
	width: 30%;
}


@media screen and (max-width: 767px) {

	.sec2 {
		padding: 4rem 0;
	}

	.sec2 .bg-02 {
		background: url(img/sec2-bg-01.png) no-repeat center top 2rem;
		background-size: 95% auto;
	}

	.sec2 .column-medium {
		margin: 0 0 5rem 0;
	}

	.sec2 .list-title-wrap {
		padding: 3rem 1.5rem 1rem 1.5rem;
	}

	.sec2 .list-title {
		font-size: 2rem;
	}

	.sec2 .inner {
		padding: 6rem 1.2rem 3rem 1.2rem;
	}

	.sec2 .name {
		margin: 0 0 5rem 0;
		font-size: 2.4rem;
	}

	.sec2 .fig img {
		max-width: 100%;
	}

	.sec2 .onb-m-title5 {
		margin: 5rem 0 2.5rem 0;
		font-size: 2rem;
	}

	.sec2 .onb-com-box-catch {
		font-size: 1.8rem;
	}

	.sec2 .onb-com-box-text {
		padding: 1.5rem;
	}

	.sec2 .case-title-1 {
		margin: 3rem 0 1rem 0;
		font-size: 1.8rem;
	}

	.sec2 .case-title-2 {
		font-size: 1.7rem;
	}

	.sec2 .l-grid-three {
		margin: 5rem 0 0 0;
		grid-gap: 0;
	}

	.sec2 .l-grid-three+.caption {
		text-align: left;
	}

	.sec2 .onb-iconbox03-frame {
		position: relative;
		margin: 5rem 0 0 0;
		padding: 4rem 2rem 2rem 2rem;
		background: #fffcf0;
		border: 1px solid #ffbe9c;
		border-radius: 1rem;
	}

	.sec2 .onb-iconbox03-frame:nth-child(1) {
		margin: 0;
	}

	.sec2 .onb-iconbox03-frame::before {
		/* position: absolute; */
		left: 50%;
		top: calc(100% - 0.6rem);
		transform: translateX(-50%) rotate(90deg);
	}

	.sec2 .onb-iconbox03-frame:nth-child(3)::before {
		display: none;
		content: none;
	}

	.sec2 .onb-iconbox03-sub {
		position: absolute;
		left: 50%;
		top: -2rem;
		transform: translateX(-50%);
		text-align: center;
	}

	.sec2 .onb-iconbox03-sub span {
		font-size: 1.8rem;
	}

	.ex-contents-left {
		padding: 1rem;
	}

	.ex-contents-left span img {
		width: 2.4rem;
	}

	.ex-contents-right {
		padding: 1.5rem 2rem;
	}

	.ex-contents-catch {
		margin: 0 0 1rem 0;
		font-size: 1.8rem;
	}

	.sec2 table th {
		width: 32%;
		padding: 1rem 0.5rem;
	}

}


/*--------------------------------------
sec3
---------------------------------------*/
.sec3 {
	padding: 6rem 0;
}


.sec3 .l-grid-three {
	--minimum: calc((100% - var(--s3)* 2) / 3);
	display: grid;
	grid-gap: var(--s3);
}

.sec3 .column-small {
	margin: 0 0 1rem 0;
	padding: 3rem 1.5rem;
	background: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

.sec3 .column-small .title-catch {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 2rem 0;
	color: #eb6d2c;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec3 .column-small .title-catch a {
	display: block;
	width: 100%;
	padding: 0.1rem 3rem 0.1rem 0;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.sec3 .column-small .title-catch a:hover {
	opacity: 0.7;
}

.sec3 .column-small .fig,
.sec3 .column-small .fig+.caption {
	text-align: center;
}

.sec3 .column-small .fig+.caption {
	margin: 0.8rem 0 1.5rem 0;
}

.sec3 .column-small table {
	margin: 2rem 0;
	font-size: 1.5rem;
}

.sec3 .column-small table td,
.sec3 .column-small table th {
	padding: 1rem;
}

.sec3 .column-small table th {
	width: 30%;
	text-align: center;
}

.link {
	text-align: right;
}

.link a {
	display: inline-block;
	min-height: 2rem;
	margin: 0;
	padding: 0.2rem 2.8rem 0.3rem 0;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 2rem auto;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: underline;
}

.link a:hover {
	text-decoration: none;
	opacity: 0.7;
}

@media screen and (max-width: 767px) {

	.sec3 {
		padding: 4rem 0 2rem 0;
	}

	.sec3 .accordion-item {
		padding: 0 0 3rem 0;
	}

}


/*--------------------------------------
sec4
---------------------------------------*/
.sec4 {
	padding: 7rem 0;
	background: #fbfbfb;
}

.sec4 .l-grid-two,
.l-grid-two-flex {
	--minimum: calc((100% - var(--s3)) / 2);
	display: grid;
	grid-gap: var(--s3);
}

.sec4 .column-medium {
	margin: 0 0 1rem 0;
	padding: 3rem 2rem;
	background: #fff;
	border: none;
	border-radius: 0.5rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

.sec4 .twb-title-catch {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 0 3rem 0;
	color: #eb6d2c;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec4 .twb-title-catch::before {
	position: absolute;
	left: 50%;
	top: calc(100% + 0.8rem);
	transform: translateX(-50%);
	width: 0.2rem;
	height: 3rem;
	background: var(--site-color01);
	content: "";
}

.sec4 .twb-title-catch a {
	display: block;
	width: 100%;
	padding: 0.1rem 3rem;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.sec4 .fig {
	margin: 0 0 1.5rem 0;
	text-align: center;
}

.sec4 .link {
	margin: 1rem 0 0 0;
}

@media screen and (max-width: 767px) {

	.sec4 {
		padding: 4rem 0;
	}

	.sec4 .twb-title-catch {
		font-size: 2rem;
	}

}


/*--------------------------------------
sec5
---------------------------------------*/
.sec5 {
	padding: 7rem 0 2rem 0;
}

.sec5 .block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 5rem 0;
}

.sec5 .block .box-fig {
	width: calc((100% - 2rem) / 2);
	text-align: center;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

.sec5 .block .box-txt {
	width: calc((100% - 2rem) / 2);
	padding: 2rem 2.5rem;
	background: #fbfbfb;
	border-radius: 0.5rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

.sec5 .block .box-txt .fig {
	display: none;
}

.sec5 .block .box-txt .ttl {
	margin: 0 0 1.5rem 0;
	padding: 0 0 1.5rem 0;
	border-bottom: 1px solid #e8ebf0;
	color: #eb6d2c;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec5 .block .box-txt .ttl a {
	display: block;
	padding: 0.1rem 3rem 0.1rem 0;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.sec5 .link {
	margin: 1rem 0 0 0;
}

.sec5 .block:last-child .box-fig {
	order: 2;
}

.sec5 .block:last-child .box-txt {
	order: 1;
}

@media screen and (max-width: 767px) {

	.sec5 {
		padding: 4rem 0 2rem 0;
	}

	.sec5 .block {
		margin: 0 0 3.5rem 0;
	}

	.sec5 .block .box-fig {
		display: none;
	}

	.sec5 .block .box-txt {
		width: 100%;
		padding: 2rem 2.5rem;
		background: #fbfbfb;
		border-radius: 0.5rem;
		box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
	}

	.sec5 .block .box-txt .fig {
		display: block;
		margin: 0 0 1.5rem 0;
		text-align: center;
	}

	.sec5 .block .box-txt .ttl {
		font-size: 2rem;
	}

}


/*--------------------------------------
sec6
---------------------------------------*/
.sec6 {
	padding: 7rem 0;
	background: #fbfbfb;
}

.sec6 .l-grid-three {
	--minimum: calc((100% - var(--s3)* 2) / 3);
	display: grid;
	grid-gap: var(--s3);
}

.sec6 .column-small {
	background: #fff;
	border-radius: 0.6rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

.sec6 .column-small .ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 2rem 2rem 6rem;
	background: #fffcf0 url(img/title-bg-01.png) no-repeat left 1.5rem center;
	background-size: 5rem auto;
	border-radius: 0.5rem 0.5rem 0 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec6 .column-small .ttl a {
	display: block;
	width: 100%;
	padding: 0.1rem 3rem 0.1rem 0;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.sec6 .column-small .title-catch a:hover {
	opacity: 0.7;
}

.sec6 .column-small .inner {
	padding: 2rem;
}

.sec6 .link {
	margin: 1rem 0 0 0;
}


@media screen and (max-width: 767px) {

	.sec6 {
		padding: 4rem 0;
	}

	.sec6 .column-small .ttl {
		font-size: 2rem;
	}

	.sec6 .column-small .inner {
		padding: 2rem 1.5rem;
	}

}


/*--------------------------------------
sec7
---------------------------------------*/
.sec7 {
	padding: 7rem 0;
}

.sec7 .btn-link {
	margin: 6rem 0 0 0;
}

.sec7 .title {
	margin: 4rem 0 2rem 0;
	padding: 1.2rem 2.5rem;
	background: var(--site-color04);
	border-radius: 1rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec7 .title a {
	display: block;
	padding: 0.2rem 4rem 0.2rem 0;
	background: url(img/arrow01-orange.svg) no-repeat right center;
	background-size: 3rem auto;
	color: inherit;
	text-decoration: none;
}

@media screen and (max-width: 767px) {

	.sec7 {
		padding: 4rem 0 8rem 0;
	}

	.sec7 .btn-link {
		margin: 4rem auto 0 auto;
	}

	.sec7 .title {
		padding: 1.2rem 2rem;
		font-size: 2rem;
	}

	.sec7 .title a {
		padding: 0.2rem 3rem 0.2rem 0;
		background-size: 2rem auto;
	}

}

.l-stack-small a {
    display: block;
    text-decoration: none;
	font-weight: bold;
}

li.chapter-h.chapter-h-two {
    position: relative;
	font-size: 1.7rem;
	    margin-bottom: 1.5rem;
}
li.chapter-h.chapter-h-three {
    font-size: 1.5rem;
	    margin-bottom:2rem;
}
.chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
    counter-reset: number 0;
	padding-left: 3rem;
}

li.chapter-h.chapter-h-two::before {
    position: absolute;
    left: -3rem;
    top: 1.3rem;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: rgb(244 114 48);
    font-size: 1.6rem;
    font-weight: bold;
    content: counter(number, decimal-leading-zero);
    counter-increment: number 1;
}

li.chapter-h.chapter-h-three::before {
    content: "└";
    display: inline-block;
    position: absolute;
    left: -2rem;
}

.thb-listbox-bg-colored span {
    color: #eb6d2c;
    font-weight: bold;
}

.conclusion-box-frame .l-stack-small a{
    display: block;
    text-decoration: none;
    font-weight: bold;
	margin-top:3rem;
}

.sec2 .onb-iconbox03-frame:nth-child(2) {
    background: #fffefa;
}

@media screen and (max-width: 767px) {
 .sec2 .list-title span {
    font-size: 2.2rem;
}

.low-right-img-box
Specificity: (0,1,0)
 {
    display: flow-root;
    margin-block: 2rem;
}
.scroll-table {
    font-weight: bold;
    margin-top: 4rem;
}
}

.scroll-table {
    display:none;
}