@charset "utf-8";
p:not([class]) {
    line-height: 1.7;
    font-size: 1.5rem;
}
body {font-size: 1.5rem;}

@media screen and (max-width: 767px) {
	.l-stack-xlarge {
    gap: var(--s2);
}
}
/*
---------------------------------------------
    navigation01 ※TOP、下層共通
*/
.header-area--top {
	position: absolute;
	width: 100%;
}
.header-area--low {
	position: absolute;
	width: 100%;	
}
.header-area-upper {
	padding: var(--s1);
	text-align: right;
	position: relative;
	z-index: 1;
}
.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
}
.header-title::before {
	content: "PR";
	padding: .2rem;
	color: #fff;
	background-color: #333;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -2.4rem;
}
.header-title a {
	text-decoration: none;
}
.header-title a:hover {
	text-decoration: underline;
}
.gnavi-ctrl {
	display: none;
}
.gnavi-btn {
	display: none;
}
.gnavi-btn-close {
	display: none;
}
.gnavi-area {
	display: none;
}
.toggle-content {
	display: none;
}
/*------------------------------------------
 Global menu settings
*/
.navigation01-menu-area {
	background-color: #2E2E2E;
}
.navigation01-menu {
	display: flex;
	background-color: #2E2E2E;
	position: relative;
}

.navigation01-item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.navigation01-item:first-child {
	&::before {
		display: none;
	}
}

.navigation01-menu li::before {
	position: absolute;
	content: "";
	top: 50%;
	transform: translatey(-50%);
	left: 0;
	width: 1px;
	height: 56px;
	background-color: #474747;
}
.navigation01-menu li a {
	padding: var(--s2) 4.5rem;
	display: block;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 1.36;
}
.navigation01-menu li a:hover {
	opacity: .6;
}
/*
---------------------------------------------
    sp settings
*/
@media screen and (max-width: 767px) {
	.header-title {
    font-size: 1rem;
	}
	.gnavi-ctrl {
		display: block;
		transition: opacity 0.6s, visibility 0.6s;
		opacity: 0;
		visibility: hidden;
	}
	.gnavi-ctrl.is-show {
		opacity: 1;
		visibility: visible;
	}
	#low-header .gnavi-ctrl {
		opacity: 1;
		visibility: visible;
	}
	.gnavi-btn {
		width: var(--s7);
		height: var(--s6);
		background: #333;
		display: block;
		position: fixed;
		top: var(--s4);
		right: 0;
		z-index: 200;
		cursor: pointer;
	}
	.gnavi-btn span {
		width: var(--s4);
		height: 0.2rem;
		display: inline-block;
		background: #fff;
		position: absolute;
		left: 1.2rem;
		transform: translate(0, -50%);
		transition: transform 0.4s, opacity 0.4s;
	}
	.gnavi-btn span:nth-of-type(1) {
		top: 1.7rem;
	}
	.gnavi-btn span:nth-of-type(2) {
		top: 2.4rem;
	}
	.gnavi-btn span:nth-of-type(3) {
		top: 3.1rem;
	}
	.gnavi-btn.is-active span:nth-of-type(1) {
		transform: translateY(0.7rem) 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.7rem) rotate(45deg);
	}
	.gnavi-btn-close {
		width: 80%;
		margin: 0 auto;
		padding: var(--s2);
		background: #fff;
		display: block;
		text-align: center;
		border: 1px solid #21893A;
		border-radius: 4rem;
	}
	.gnavi-btn-close__inner {
		padding: 0 0 0 var(--s3);
		display: inline-block;
		color: #333;
		font-weight: 700;
		position: relative;
	}
	.gnavi-btn-close__inner::before {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #21893a;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%) rotate(45deg);
	}
	.gnavi-btn-close__inner::after {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #21893a;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%) rotate(135deg);
	}
	.gnavi-area {
		width: 100%;
		height: 100vh;
		padding: var(--s3) var(--s1) var(--s10);
		display: block;
		background: #F7F7F7;
		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/arrow-01-black-right.svg") no-repeat center/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/arrow-01-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);
	}
	/*------------------------------------------
	Global menu settings
	*/
	.navigation01-menu-area {
		display: none;
	}
}
/* ---------------------------------------------
下層コンテンツエリア
--------------------------------------------- */
#low-page.l-center {
	margin: var(--s3) auto var(--s10);
}
#low-page h1:not([class]){
    margin-bottom: var(--s3);
}
/* ---------------------------------------------
index02(目次)
--------------------------------------------- */
.onb-index02-frame {
    width: 100%;
}
.onb-index02-wrap {
    margin: var(--s6) auto;
    padding: var(--s1) var(--s3) var(--s4) var(--s3);
    background-color: #F4F4F4;
    position: relative;
}
.onb-index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/icon-gear.png") no-repeat left center;
    background-size: 3.7rem auto;
    position: relative;
}
.onb-index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    font-weight: 700;
    counter-reset: number 0; 
}
#toc ul.onb-index02-chapter li {
    position: relative;
}
#toc ul.onb-index02-chapter li:not(.onb-index02-chapter-h-three)::before {
    counter-increment: number 1;  
    content: counter(number, decimal-leading-zero);
    color: #21893A;
    position: absolute;
    top: 0;
    left: -1.8em;
}
#toc ul li.onb-index02-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
#toc ul li.onb-index02-chapter-h a {
    display: block;
    text-decoration: none;
}
#toc ul li.onb-index02-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}
#toc ul li.onb-index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
#toc ul li.onb-index02-chapter-h-two::before,
#toc ul li.onb-index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.8em;
}
#toc ul li.onb-index02-chapter-h-three::before {
    content: "└";
}
/*----------------------------------------------
	more content settings
*/
#toc.onb-index02-gradation {
    margin-top: 1.4rem;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
    border-top: 1px solid var(--site-color03);
    position: relative;
}
#toc.onb-index02-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-color09) 100%);
}
#toc.onb-index02-gradation.is-open::after {
    display: none;
}
.onb-index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    position: relative;
    z-index: 5;
}
.onb-index02-btn span {
    width: 100%;
    margin: var(--s2) auto;
    padding: 2rem 6rem 2rem 3rem;
    border: .2rem solid #21893A;
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #fff;
    display: block;
    text-align: center;
	font-weight: bold;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}
.onb-index02-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #21893A;
    border-width: 0 1px 1px 0;
    transform: translate(0.3rem, 0.6rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.onb-index02-btn:hover span {
    transform: translate(0.3rem, 0.6rem);
}
.onb-index02-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    #toc .onb-index02-chapter {
        padding-left: var(--s4);
    }    
    .onb-index02-btn:hover span {
        transform: none;
    }
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    margin: var(--s6) auto;
    padding: var(--s1)  var(--s3)  var(--s4) var(--s3);
    background: #F2F2F2;
    position: relative;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s8);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/icon-gear.png") no-repeat left center;
    background-size: 3.7rem auto;
    position: relative;
    border-bottom: 1px solid #B1B1B1;
}
.related-article01-list {
    padding: var(--s2) 0 var(--s2) var(--s2);
    font-weight: 700;
}
.related-article01-list li {
    margin: 0 0 0 var(--s2);
    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: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #21893A;
    position: absolute;
    top: .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;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-index02-title {
		font-size: 1.8rem;
	}
    .related-article01-list {
        padding: 2rem 0 0;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
}

.simplified-chart-spfix-cpt {
	display: none;
}
.simplified-chart-spfix {
	border-collapse: collapse;
}
.simplified-chart-spfix th,
.simplified-chart-spfix td {
	min-width: 13rem;
	padding: 1rem .9rem;
	line-height: 1.5;
	border: 1px solid #B1B1B1;
}
.simplified-chart-spfix th {
	background-color: #D0D0D0;
	text-align: center;
}
.simplified-chart-spfix tr:nth-child(1) th {
	color: #fff;
	font-size: 1.6rem;
	padding: 1.6rem 1rem;
}
.simplified-chart-spfix tr:nth-child(1) th span {
	color: #ffb400;
	font-weight: bold;
	font-size: 2rem;
}

.simplified-chart-spfix td {
	background-color: #fff;
	font-size: 1.4rem;
}
.simplified-chart-spfix td.item-area {text-align: center;}
.simplified-chart-spfix td .font-large{
	font-size: 1.8rem;
	font-weight: 700;
}
.item-catch {
	font-weight: bold;
	font-size: 1.7rem;
	line-height: 1.47;
	color: #1F7731;
}
.simplified-chart-spfix .item-title-catch01,
.simplified-chart-spfix .item-title-catch02,
.simplified-chart-spfix .item-title-catch03 {
	width: 44.8rem;
}
.simplified-chart-spfix .item-title-catch01 {
	background-color: #333;
}
.simplified-chart-spfix .item-title-catch02 {
	background-color: #333;
}
.simplified-chart-spfix .item-title-catch03 {
	background-color: #333;
}
.simplified-chart-spfix td .font-small{
	font-size: 1.6rem;
	font-weight: 700;
}
.simplified-chart-spfix-img {
	margin-top: 1rem;
	text-align: center;
	width: 100%;
	height: 16rem;
}
.simplified-chart-spfix-img img {
	width: 100%;
	height: 16rem;
	object-fit: contain;
}
.simplified-chart-spfix-btn {
	margin-top: 1rem;
}
.simplified-chart-spfix-btn a {
	padding: var(--s1) var(--s4) var(--s1) var(--s2);
	border: 3px solid #484140;
	border-radius: 1rem;
	text-decoration: none;
	display: inline-block;
	background: url("./img/btn-arrow.svg") no-repeat 95% center #FFEFD6;
}
.simplified-chart-spfix-btn a:hover {
	opacity: .7;
}
.simplified-chart-spfix .btn-web {
	margin: 0;
	border-radius: 100vmax;
}
.simplified-chart-spfix .btn-web a {
	border-radius: 100vmax;
	font-size: 1.4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.simplified-chart-spfix .btn-web a {
		font-size: 1.2rem;
		background: #EB7500 url("./img/icon-web.svg") no-repeat center right 1rem / auto 0.8em;
	}
	.simplified-chart-spfix-cpt {
		margin-bottom: 1rem;
		display: block;
		padding: var(--s1);
		text-align: center;
		font-size: 1.2rem;
		border-radius: 2rem;
		background-color: #fff;
	}
	.l-scroll-x-sp .simplified-chart-spfix {
		width: inherit;
	}
	.l-scroll-x-sp .simplified-chart-spfix .caption {
		line-height: 1.4;
		font-size: 1.1rem;
	}
	.l-scroll-x-sp .simplified-chart-spfix th,
	.l-scroll-x-sp .simplified-chart-spfix td {
		min-width: 20rem;
		font-size: 1.2rem;
		line-height: 1.4;
		padding: .8rem .8rem;
	}
	.simplified-chart-spfix tr:nth-child(1) th{
		font-size: 1.3rem;
		padding: 1rem;
	}
	
	.simplified-chart-spfix tr:nth-child(1) th span {
		font-size: 1.6rem;
	}
	
	.l-scroll-x-sp .simplified-chart-spfix th:first-child {
		min-width: 7.5rem;
		position: sticky;
		left: 0;
		z-index: 10;
	}
	.item-catch{
		font-size: 1.2rem;
	}
}
.section-title07-frame {
    margin-top: 5rem;
    position: relative;
}
.section-title07-frame::before {
	position: absolute;
    content: "";
    left: 50%;
	transform: translatex(-50%);
}
.sec01 .section-title07-frame::before {
    width: 53.4rem;
	height: 6.3rem;
    top: -5rem;
	background: transparent url('./img/txt-sec-tit-01.png') no-repeat center center / contain;
}
.sec02 .section-title07-frame::before {
    width: 43.8rem;
	height: 6.3rem;
    top: -5rem;
	background: transparent url('./img/txt-sec-tit-02.png') no-repeat center center / contain;
}
.sec03 .section-title07-frame::before {
    width: 44.8rem;
	height: 6.3rem;
    top: -5rem;
	background: transparent url('./img/txt-sec-tit-03.png') no-repeat center center / contain;
}
.sec04 .section-title07-frame::before {
    width: 35.2rem;
	height: 6.3rem;
    top: -5rem;
	background: transparent url('./img/txt-sec-tit-04.png') no-repeat center center / contain;
}
.sec01 .section-title07 {
	color: #fff;
}
.sec01-lead {
	color: #fff;
	line-height: 1.7;
    font-size: 1.5rem;
	text-align: center;
}
.section-title07 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.6rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    position: relative;
	line-height: 1.4;
}
.sec02 .section-title07{
	margin-bottom: 2rem;
}
.section-title07 a {
	text-decoration: none;
}
.section-title07 a:hover {
	opacity: .6;
}
.sec-tit-link a {
	display: inline-block;
    text-decoration: none;
    padding: 0 4rem .1rem 4rem;
    background: url(img/arrow-01-blg-right.svg) no-repeat center right;
    background-size: 12px auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title07-frame {
        background-color: transparent;
    }
    .section-title07-frame::before {
        width: 100%;
        padding: var(--s1) 0;
        font-size: 6rem;
        top: -6rem;
    }
	.sec01 .section-title07-frame::before {
    width: calc(53.4rem / 2);
    height: calc(6.3rem / 2);
    top: -5rem;
	}
	.sec02 .section-title07-frame::before {
    width: calc(43.8rem / 2);
    height: calc(6.3rem / 2);
    top: -5rem;
	}
	.sec03 .section-title07-frame::before {
    width: calc(44.8rem / 2);
    height: calc(6.3rem / 2);
    top: -5rem;
	}
	.sec04 .section-title07-frame::before {
    width: calc(35.2rem / 2);
    height: calc(6.3rem / 2);
    top: -5rem;
	}
    .section-title07 {
        padding: var(--s2) var(--s2) 0 var(--s2);
        font-size: 2.4rem;
		line-height: 1.3;
    }
	.sec02 .section-title07 {
		margin-bottom: 2rem;	
	}
}

/*------------------------------------------------------------
    背景
*/
.sec01, .sec02, .sec03, .sec04, .sec05, .sec06{
  padding: 8rem 0 14rem;
}
.sec01 {
  background: url('./img/bg-01.jpg') repeat top left;
  background-size: cover;
}
.sec02 {
  background: #e7e7e7 url('./img/bg-02.jpg') no-repeat center top;
  background-size: cover;
	background-attachment: fixed;
	position: relative;
}
.sec03 {
	position: relative;
	z-index: 1;
}
.sec03 .center-img {
	max-width: 100%;
	margin-inline: auto;
	text-align: center;
}
.sec03 .center-img img {
	height: 19rem;
	object-fit: contain;
	background-color: #fff;
}
.sec03::after,
.sec04::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 58.3rem;
	height: 56.8rem;
	background: transparent url('./img/bg-03.png') no-repeat center center / contain;
	z-index: -1;
}
.sec04 {
  background-color: #e6e6e6;
	position: relative;
	z-index: 1;
}
.sec05 {
}
.sec06 {
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.sec01, .sec02, .sec03, .sec04, .sec05, .sec06{
      padding: 3rem 0 7rem;
	}
	.sec02 {
	  background: #e7e7e7 url(./img/bg-02_sp.jpg) no-repeat center top;
      background-size: cover;
	  background-attachment: fixed;
	}
	.sec03::after, .sec04::after {
		width: calc(58.3rem / 3);
		height: calc(56.8rem / 3);
	}
}


/*------------------------------------------
    1box column settings
*/
.sec02 .column-medium {
    padding: 0 var(--s4) var(--s4);
    border: 1px solid #ccc;
    background: #ffffff;
    position: relative;
    z-index: 1;
    margin-bottom: 8rem;
}
.sec02 .column-medium:last-child {
	margin-bottom: 0;
}
.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);
    }
	.sec02 .column-medium {
		margin-bottom: 3rem;
	}
	.sec02 .column-medium:last-child {
		margin-bottom: 0;
	}
    .onb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
}
.onb-item-title-frame {
	padding: var(--s3) var(--s2);
	background-color: #333333;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.onb-item-title-frame::before {
	position: absolute;
	content: "";
	width: 44.7rem;
	height: 43.5rem;
	top: 50%;
	transform: translatey(-50%);
	right: 0;
	background: transparent url('./img/icon-triangle-large.svg') no-repeat center center / contain;
	z-index: -1;
}
.onb-item-title-icon {
	width: 8.5rem;
	height: 8.5rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: -4rem;
	left: -2rem;
}
.onb-item-title-icon img {
	width: 100%;
}
.l-onb-item-title {
	color: #fff;
	display: flex;
	align-items: center;
	gap: var(--s2);
}
.l-onb-item-title__side,
.l-onb-item-title__main {
	padding: var(--s1);
	text-align: center;
	line-height: 1.2;
}
.l-onb-item-title__side span {
	font-size: 1.4rem;
}
.l-onb-item-title__side {
	width: calc((100% - var(--s2))*.4);
	font-size: 1.9rem;
	font-weight: 700;
	background-color: #474747 ;
}

.l-onb-item-title__side span {
	color: #ffb400;
	font-size: 2.3rem;
}

.l-onb-item-title__main {
	width: calc((100% - var(--s2))*.7);
}
.onb-item-title-catch {
	margin-bottom: var(--s1);
	font-size: 2.4rem;
	font-weight: 700;
	display: block;
}
.onb-item-title-catch--underline {
	padding-bottom: var(--s1);
	border-bottom: 5px solid #258D3A;
	display: inline-block;
}
.onb-item-title-title {
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-item-title-frame {
		padding: var(--s2);
	}
	.onb-item-title-title{
		font-size: 2.4rem;
	}
	.onb-item-title-catch{
		font-size: 1.6rem;
	}
	.onb-item-title-icon {
		width: 6rem;
		height: 6rem;
		position: absolute;
		top: -2rem;
		left: -1rem;
	}
	.l-onb-item-title {
		flex-direction: column;
	}
	
	.l-onb-item-title__main {
		width: 100%;
		font-size: 1.8rem;
	}
	
	.l-onb-item-title__main span {
		font-size: 1.2rem;
	}
	
	.l-onb-item-title__side {
		font-size: 1.6rem;
		width: 100%;
	}
	.l-onb-item-title__side span {
		font-size: 1.8rem;
	}
}
.onb-m-title5 {
	line-height: 1.8;
	font-size: 2.7rem;
	font-weight: 700;
	text-align: center;
	margin-top: 2rem;
}
.onb-m-title5 span {
	display: flex;
	align-items: center;
}
.onb-m-title5 span::before,
.onb-m-title5 span::after {
	content: "";
	min-width: 5%;
	height: 1px;
	background-color: #258D3A;
	flex-grow: 1;
}
.onb-m-title5 span::before {
	margin-right: var(--s2);
}
.onb-m-title5 span::after {
	margin-left: var(--s2);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-m-title5 {
		font-size: 1.8rem;
		margin-top: 1rem;
	}
	.onb-m-title5 span::before,
	.onb-m-title5 span::after {
		width: 2rem;
	}
	.onb-m-title5 span::before {
		margin-right: var(--s1);
	}
	.onb-m-title5 span::after {
		margin-left: var(--s1);
	}
}
.onb-casebox02-frame {
	margin-top: 2rem;
	padding: 2.7rem 2.8rem;
	background-color: #f2f2f2;
	position: relative;
}
.onb-casebox02-sub {
	padding: var(--s1) var(--s3);
	background-color: var(--site-color03);
	color: #fff;
	font-size: 2.1rem;
	transform: translateX(-50%);
	position: absolute;
	top: -2rem;
	left: 50%;
}
.l-onb-casebox02 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.l-onb-casebox02__side {
	flex: 0 0 19.6382%;
/* 	calc((7.6rem / 38.7rem) * 100%); */
}
.l-onb-casebox02__main {
	flex: 0 0 77.7777%;
/* 	calc((30.1rem / 38.7rem) * 100%); */
}
.onb-casebox02-imgcap {
	margin-top: 1rem;
	text-align: center;
	font-size: 1.2rem;
}
.onb-casebox02-catch {
	font-size: 2.3rem;
	font-weight: 700;
	color: #1F7731;
	line-height: 1.5;
}
.onb-casebox02-caption {
	text-align: left;
}
.onb-m-title6 {
	padding: .5rem 1rem .8rem 1rem;
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 700;
	border-left: .6rem solid #21893A;
}
.onb-listbox-area {
    margin-top: 1rem;
    padding: var(--s5) var(--s5) var(--s4) var(--s5);
    background-color: var(--site-color06);
    position: relative;
}
.onb-listbox-title {
    margin-top: -5rem;
    text-align: center;
}
.onb-listbox-title span {
    padding: .8rem;
    color: #fff;
    background-color: var(--site-color03);
    display: inline-block;
}
.onb-listbox-subtitle {
    text-align: center;
    font-weight: 700;
}
.onb-listbox-list {
    width: 100%;
}
.onb-listbox-list li {
    padding-left: var(--s5);
    line-height: 1.5;
    background: url('./img/icon-check.svg') no-repeat top left;
    background-size: 2.4rem 2.4rem;
}
.onb-listbox-list li span {
    margin-right: var(--s1);
    display: block;
    text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-casebox02-frame{
		padding: var(--s3);
		margin-top: 0;
	}
    .onb-listbox-area {
        margin-top: 1.8rem;
        padding: var(--s2) var(--s2) var(--s2) var(--s2);
    }
    .onb-listbox-list li {
        font-size: 1.4rem;
    }
    .onb-listbox-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }
    .onb-listbox-title {
        margin: -5rem auto 0 auto;
        padding: var(--s2);
        font-size: 1.8rem;
        text-align: center;
    }
	.onb-casebox02-catch {
		font-size: 1.8rem;
	}
	.onb-m-title6 {
		font-size: 1.6rem;
	}
}
.youtube-area-frame {
	max-width: 72rem;
	margin: 0 auto;
	display: contents;
}
.youtube-area {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}
.youtube-area iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.onb-iconbox03-frame {
	margin-top: 1.5rem;
	padding: 2rem 1.6rem 1.6rem;
	background-color: #F2F2F2;
}
.onb-iconbox03-frame p {
	font-size: 1.4rem;
}
.onb-iconbox03-sub {
	margin-top: -3rem;
	text-align: center;
}
.onb-iconbox03-sub span {
	padding: var(--s1) var(--s2);
	display: inline-block;
	background-color: var(--site-color03);
	color: #fff;
}
.onb-iconbox03-img {
	padding-left: 10rem;
	padding-right: 10rem;
}
.onb-iconbox03-catch {
	padding-bottom: 1.6rem;
	font-size: 1.9rem;
	font-weight: 700;
	color: #333;
	line-height: 1.3;
	border-bottom: 2px solid #258D3A;
}

.onb-iconbox03-caption {
    margin: 10px 0;
    overflow: auto;
    white-space: nowrap;
	text-align-last: left;
	font-size: 1rem;
	line-height: 1.5;
}
/* for chrome, safari */
.onb-iconbox03-caption::-webkit-scrollbar {
    height: 5px;
}
.onb-iconbox03-caption::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #C0C0C0;
}
.onb-iconbox03-caption::-webkit-scrollbar-track {
    border-radius: 2px;
    background: #eee;
}


.onb-taglist-bg {
	padding: var(--s4);
	background-color: var(--site-color06);
}
.onb-taglist-title {
	text-align: center;
	font-size: 2.1rem;
}
.tag-list-6c {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2);
}
.tag-list-6c li {
	width: calc((100% - var(--s10))/ 6);
	padding: .8rem;
	text-align: center;
	line-height: 1.5;
}
.tag-list-6c li::before {
	display: none;
}
.onb-tag-colored {
	background-color: var(--site-color14);
	color: #fff;
}
.onb-tag-white {
	border: 1px solid var(--site-color16);
	background-color: #fff;
	color: var(--site-color16);
}
.onb-tag-colored .tag-name,
.onb-tag-white .tag-name {
	width: 100%;
	height: 100%;
	display: flex;	
	align-items: center;
	justify-content: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-taglist-bg {
		padding: var(--s2);
	}
	.tag-list-6c {
		gap: var(--s1);
	}
	.tag-list-6c li {
		width: calc((100% - var(--s1))/ 2);
	}
	.onb-iconbox03-img {
		padding-left: 11rem;
		padding-right: 11rem;
	}
	.onb-iconbox03-catch{
		font-size: 1.6rem;
	}
}
.l-onb-flex-table {
	display: flex;
}
.onb-flex-table {
	border-collapse: collapse;
}
.onb-flex-table .onb-m-tr th,
.onb-flex-table .onb-m-tr td{
	padding-top: 1.9rem;
	padding-bottom: 1.9rem;
}
.onb-flex-table th,
.onb-flex-table td {
	padding: var(--s1);
	border: 1px solid #B1B1B1;
}
.onb-flex-table th {
	width: 34%;
	background-color: #D0D0D0;
	vertical-align: middle;
	font-weight: bold;
}
.onb-flex-table td {
	background-color: #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-flex-table {
		flex-direction: column;
	}
	.onb-flex-table + table {
		margin-top: -1px;
	}
}
.twb-m-title02 {
	margin-bottom: 2.7rem;
	padding: 1.6rem;
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1.5;
	color: #333;
	background-color: #f2f2f2;
}


/*------------------------------------------
    2box column settings
*/
.column-medium {
    padding: 3.4rem 3.7rem 2.2rem;
    border: 1px solid #D8D8D8;
    background: #ffffff;
}
.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: 0 var(--s2) var(--s2);
    }
    .twb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
	.sec02 .column-medium {
		padding: 0 var(--s2) var(--s2);
	}
	.twb-m-title02 {
		font-size: 1.8rem;
	}
	.sec02 .column-medium .btn-tel a {
		margin-top: -3rem;
	}
	.sec02 .column-medium .btn-tel::after {
		height: 166%;
	}
}
.twb-title-catch {
	padding: .8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: #333;
	text-align: center;
	line-height: 1.5;
	border-bottom: 4px solid #258D3A;
}
.twb-title-catch span {
	font-size: 1.6rem;
}
.twb-title-catch a {
	text-decoration: none;
	display: block;
	padding-right: var(--s4);
	background: url(./img/arrow-01-blg-right.svg) no-repeat center right / auto 1em;
}
.twb-title-catch a:hover {
	opacity: .6;
}
/*------------------------------------------
    3box column settings
*/
.column-small {
    padding: var(--s2);
    border: 1px solid #D8D8D8;
	background-color: #E6E6E6;
}
.thb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
}
.m-title03 {
	padding: var(--s2) var(--s1) var(--s3) var(--s7);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
	border-bottom: 5px solid rgba(var(--site-color05-rgb), .5);
	background: url('./img/icon-dummy.png') no-repeat center left;
	background-size: 4.8rem auto;
}
.thb-table {
	line-height: 1.5;
	border-collapse: collapse;
	border: 1px solid #B1B1B1;
}
.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #B1B1B1;
	background-color: #fff;
}
.thb-table th {
	width: 35%;
	background-color: #D0D0D0;
	text-align: left;
}
.thb-table td {
	word-break: break-all;
}
.m-title02 {
	padding: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	background-color: #333;
	margin: -1.6rem -1.6rem 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.m-title02::before {
	position: absolute;
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    top: 0;
    left: 0;
    background: transparent url('./img/icon-triangle-small.svg') no-repeat center center / contain;
    z-index: -1;
}
.m-title02 a {
	text-decoration: none;
	color: #fff;
	display: block;
    padding: 0 3rem 0 0;
    background: url(img/arrow-01-blg-right.svg) no-repeat center right;
    background-size: 12px auto;
}
.m-title02 a:hover {
	opacity: .7;
}
.onb-center-img {
	max-width: 45%;
	margin: 0 auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-center-img {
		max-width: 100%;
	}
	.onb-center-img img {
		max-width: 100%;
		height: 30rem;
		object-fit: contain;
	}
}
.acc-more-btn {
	max-width: 46rem;
  width: 85%;
	margin: var(--s5) auto;
	position: relative;
}
.acc-more-btn span {
	width: 100%;
	padding: 2rem 6rem 2rem 3rem;
	border: .2rem solid #21893A;
	border-radius: 4rem;
	background: url('./img/acc-off.svg') no-repeat 95% center #fff;
	display: block;
	font-weight: bold;
	font-size: 2.2rem;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}
.acc-more-btn::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: #21893A;
	border-width: 0 1px 1px 0;
	transform: translate(0.3rem, 0.6rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.acc-more-btn:hover span {
	transform: translate(0.3rem, 0.6rem);
}
.acc-more-btn.is-open span {
	background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}
.more-content {
/* 	height: 0; */
/* 	overflow: hidden; */
/* 	transition: 0.3s; */
	display: none;
}
/* .more-content.more-content--show {
    height: calc-size(auto, size);
} */
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn span {
		transition: inherit;
		transform: none;
		font-size: 1.5rem;
	}
	.acc-more-btn:hover span {
		transform: none;
	}
}
.sp-scroll-table {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-scroll-table {
        margin-bottom: 1rem;
        display: block;
        padding: var(--s1);
        border: 1px solid #ccc;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 2rem;
    }    
}
.conclusion-box-frame {
	margin-top: 7rem;
	padding: var(--s2) var(--s4) var(--s4) var(--s4);
	background: url('./img/conclusion-bg.png') no-repeat bottom right #F0F0F1;
}
.conclusion-box-ttl {
	position: relative;
}
.conclusion-box-ttl__icon-frame {
	position: absolute;
	left: -4.8rem;
	bottom: 1rem;
	z-index: 10;
}
.conclusion-box-ttl__icon {
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #21893a;
}
.conclusion-box-ttl__icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #B1B1B1;
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	z-index: -1;
}
.conclusion-box-ttl__icon span {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
}
.conclusion-box-ttl__text {
	padding-top: var(--s2);
	padding-bottom: 1.6rem;
	margin-left: 10rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.6;
	color: #333;
	border-bottom: 2px solid #258D3A;
}
.conclusion-box-content {
	z-index: 5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.conclusion-box-frame {
		background-size: 144% auto;
		margin-top: 5rem;
	}
	.conclusion-box-ttl__icon-frame {
		top: -3.2rem;
		left: -3.6rem;
		bottom: inherit;
	}
	.conclusion-box-ttl__icon {
		width: 6rem;
		height: 6rem;
	}
	.conclusion-box-ttl__text {
		margin-left: 0;
		padding-left: 5rem;
		padding-top: var(--s1);
		padding-bottom: var(--s2);
		font-size: 1.8rem;
	}
	.l-onb-conclusion-img {
		width: 36%;
	}
}
.pc-fix-banner01 {
    width: 25rem;
    background-color: #000;
    position: fixed;
    right: 0;
    bottom: 14rem;
    z-index: 50;
}
.pc-fix-banner01 a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.pc-fix-banner01 a:hover {
    opacity: .7;
}
.pc-fix-banner01-img {
    position: relative;
}
.pc-fix-banner01-img::before {
    content: "比較ですぐわかる！";
    width: 14.7rem;
    height: auto;
	background-color: #333;
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: 5;
	font-weight: bold;
	font-size: 1.7rem;
	padding: 1.2rem 1.8rem 1rem;
	white-space: nowrap;
}
.pc-fix-banner01-text {
	position: absolute;
	top: 58%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
    padding: var(--s2);
    color: #fff;
}
.pc-fix-banner01-text p {
    margin: 0;
	font-weight: bold;
    font-size: 2rem;
	line-height: 1.2;
    text-align: left;
}
.pc-fix-banner01-kana {
	font-size: 2.3rem;
}

.pc-fix-banner01-num {
	font-size: 3.5rem;
}

.pc-fix-banner01-sen {
	font-size: 2.2rem;
}

.pc-fix-banner01-text p.text-small {
    font-size: 1.2rem;
    line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner01 {
        display: none;
    }
}
.com-box04-sp-float-frame {
	padding: var(--s4);
	border: 1px solid #D8D8D8;
	background: #fff;
	position: relative;
}
.com-box04-sp-float-frame::before {
	position: absolute;
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    top: 0;
    left: 0;
    background: transparent url('./img/icon-triangle-small.svg') no-repeat center center / contain;
}
.com-box04-sp-float-title {
	margin-bottom: var(--s4);
	padding: var(--s1);
	background-color: var(--site-color12);
	color: var(--site-color03);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}
.com-box04-sp-float-area {
	display: flex;
	gap: var(--s4);
}
.com-box04-sp-float-text {
	width: calc((100% - var(--s4))*.8);
}
.com-box04-sp-float-text .caption {
	color: var(--site-color13);
}
.com-box04-sp-float-img {
	width: calc((100% - var(--s2))*.2);
	text-align: center;
}
.com-box04-sp-float-img span {
	margin-top: var(--s1);
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
.com-box04-sp-float-catch {
	margin-bottom: var(--s2);
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1.5;
}
.com-box04-sp-float-catch a {
	text-decoration: none;
    display: inline-block;
    padding-right: var(--s4);
    background: url(./img/arrow-01-blg-right.svg) no-repeat center right / auto 1em;
	color: #1F7731;
}
.com-box04-sp-float-catch a:hover {
	opacity: .6;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.com-box04-sp-float-frame {
		padding: var(--s2);
	}
	.com-box04-sp-float-title {
		margin-bottom: var(--s2);
		font-size: 1.8rem;
	}
	.com-box04-sp-float-area {
		display: flow-root;
	}
	.com-box04-sp-float-img {
		width: calc((100% - var(--s4))*.4);
	}
	.com-box04-sp-float-img--left {
		margin-right: var(--s2);
		margin-bottom: var(--s2);
		float: left;
	}
	.com-box04-sp-float-text {
		width: 100%;
	}
	.com-box04-sp-float-catch {
		font-size: 1.8rem;
	}
	.com-box04-sp-float-catch a {
    display: block;
	padding-right: var(--s2);
	}
}
	.section-title05 {
		width: 100%;
		margin-top: 4rem;
		padding: var(--s2);
		font-size: 2rem;
		font-weight: 700;
		color: #ffffff;
		line-height: 1.5;
		text-align: center;
		background-color: #333;
		position: relative;
	}
	.section-title05::before {
		position: absolute;
		content: "";
		width: 2.8rem;
		height: 2.8rem;
		top: 0;
		left: 0;
		background: transparent url('./img/icon-triangle-small.svg') no-repeat center center / contain;
	}
	.section-title05 a {
		color: #fff;
		text-decoration: none;
		display: block;
		padding-right: var(--s4);
		background: url(./img/arrow-01-blg-right.svg) no-repeat center right / auto 1em;
	}
	.section-title05 a:hover {
		opacity: .6;
	}
	.conclusion-box-ttl__icon span {
    font-size: 1.5rem;
	}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title05 {
        padding: var(--s2);
        font-size: 2.1rem;
    }
	.low-center-img-catch {
    margin-bottom: 1.6rem;
	}
	.sec-tit-link a {
    padding: 0 2rem .1rem 1rem;
		line-height: 1.3;
	}
	.m-title02 {
    font-size: 1.8rem;
	}
	.twb-title-catch {
	font-size: 1.8rem;
	}
}

@media screen and (max-width: 767px) {
	#low-page .sp-table-vertical table {
  	margin: 1rem 0;
  	}
}
.low-center-img iframe {
	margin: 1.5rem 0;
}

ul ul.subList{
	margin-top: 1.5rem;
}
