@charset "utf-8";
/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
	padding: var(--s1);
	text-align: right;
}
.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-btn-close {
	display: none;
}
.toggle-content {
	display: none;
}
.gnavi-ctrl {
	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: var(--site-color01);
	display: block;
	position: fixed;
	top: var(--s3);
	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: #333;
	display: block;
	text-align: center;
}
.gnavi-btn-close__inner {
	padding: 0 0 0 var(--s3);
	display: inline-block;
	color: #fff;
	font-weight: 700;
	position: relative;
}
.gnavi-btn-close__inner::before {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(45deg);
}
.gnavi-btn-close__inner::after {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #fff;
	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: var(--site-color04);
	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: 2px solid var(--site-color03);
	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: 2px solid var(--site-color03);
	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/100% auto;
	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);
}

/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
    width: 100%;
    background-color: var(--site-color09);
}
.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3);
    border: solid 0.1rem #D0D3E0;
    background-color: transparent;
    position: relative;
}
.onb-index01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/dummy-icon.png") no-repeat left center;
    background-size: 4rem auto;
    position: relative;
    cursor: pointer;
}
.onb-index01-title::before {
    content: "";
    width: 2rem;
    height: 0.3rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(0, -50%);
}
.onb-index01-title::after {
    content: "";
    width: 0.3rem;
    height: 2rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.onb-index01-title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}
.onb-index01-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}
.onb-index01-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.onb-index01-chapter-h a {
    display: block;
    text-decoration: none;
}
.onb-index01-chapter-h a:hover {
    opacity: .6;
}
.onb-index01-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}
.onb-index01-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
.onb-index01-chapter-h-two::before,
.onb-index01-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}
.onb-index01-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: var(--site-color02);
    transform: translateY(-50%);
    top: .8em;
}
.onb-index01-chapter-h-three::before {
    content: "└";
}
.more-content {
    display: none;
}
.onb-index01-content {
    background-color: #fff;
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    border-radius: 4%;
    margin: var(--s6) auto;
    padding: var(--s1)  var(--s3)  var(--s4) var(--s3);
    background: #fff;
    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/dummy-icon.png") no-repeat left center;
    background-size: 5rem auto;
    position: relative;
}
.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: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: #9B9B9B;
    position: absolute;
    top: .6rem;
    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) {
    .related-article01-list {
        padding: 0;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
}

/* ---------------------------------------------
TOPのCSS
--------------------------------------------- */

/* 2.3.5 section-title05 */
.section-title05 {
    width: 100%;
    margin: 5rem auto;
    padding: var(--s4) var(--s12);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    background-color: #F5F5F5;
    position: relative;
    border-radius: 15px;
}
.section-title05 a {
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
    display: block;
}
@media screen and (max-width: 767px) {
    .section-title05 {
        padding: var(--s2);
        font-size: 2.4rem;
    }

}

/* 1.1.4 acc-more-btn */
.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/acc-off.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;
}
@media screen and (max-width: 767px) {
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}
	.acc-more-btn:hover span {
		transform: none;
	}
}

/* 4.31 column-small */
.column-small {
    padding: var(--s2);
    border: 1px solid var(--line);
}

/* 2.7.1 simplified-chart-spfix */
.simplified-chart-spfix-cpt {
	text-align: center;
	margin: 0 auto auto;
}
.simplified-chart-spfix {
	border-collapse: collapse;
}
.simplified-chart-spfix th,
.simplified-chart-spfix td {
	min-width: 16rem;
	padding: var(--s2);
	line-height: 1.5;
	text-align: center;
	border: 1px solid #707070;
}
.simplified-chart-spfix th,
.simplified-chart-spfix tr:nth-child(1) th:nth-child(1) {
	background-color: #505050;
	color: #fff;
	min-width: 20rem;
}
.simplified-chart-spfix tr th:nth-child(1) {
  background-color: var(--site-color01);
  color: #fff;
  padding-left: var(--s6);
}
.simplified-chart-spfix tr th a {
  color: #fff;
}
.simplified-chart-spfix td {
	background-color: #fff;
}
.simplified-chart-spfix td li {
	text-align: initial;
}
.simplified-chart-spfix td .font-large{
	font-size: 2.1rem;
}
.simplified-chart-spfix td .font-small{
	font-size: 1.2rem;
}
.simplified-chart-spfix .btn-web {
	margin: var(--s1) 0;
}
.simplified-chart-spfix .btn-web a {
	padding: var(--s1) var(--s3) var(--s1) var(--s2);
	background-position: 92% center;
}
.simplified-chart-spfix-img {
	text-align: center;
}
.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;
}
@media screen and (max-width: 767px) {
	.simplified-chart-spfix-cpt {
		margin: 0;
		display: block;
		padding: 0;
		border: 1px solid var(--txt-sub);
		text-align: center;
		font-size: 1.2rem;
		border-radius: 2rem;
	}
	.l-scroll-x-sp .simplified-chart-spfix {
		width: inherit;
	}
	.l-scroll-x-sp .simplified-chart-spfix th,
	.l-scroll-x-sp .simplified-chart-spfix td {
		min-width: 20rem;
	}
	.l-scroll-x-sp .simplified-chart-spfix th:first-child {
		min-width: 15rem;
		position: sticky;
		left: 0;
		z-index: 10;
	}
}

/* 2.3.7 section-title07 */
.section-title07-frame {
    margin-top: 5rem;
    position: relative;
}
.section-title07-frame::before {
    content: "INDEX";
    font-size: 17.5rem;
    font-weight: bold;
    text-align: center;
    color: #EEF8F3;
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin: auto;
}
.section-title07 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    position: relative;
}
@media screen and (max-width: 767px) {
    .section-title07-frame {
        background-color: transparent;
    }
    .section-title07-frame::before {
        width: 100%;
        padding: var(--s1) 0;
        font-size: 5rem;
        top: -20px;
    }
    .section-title07 {
        padding: var(--s2) var(--s2) 0 var(--s2);
        font-size: 2.4rem;
    }
}

/* 4.0 onb-iconbox03 */
.onb-iconbox03-frame {
    padding: var(--s4) var(--s2) var(--s2);
    background-color: var(--site-color04);
    border-radius: 15px;
    position: relative;
}
.onb-iconbox03-frame p {
    font-size: 1.4rem;
}
.onb-iconbox03-frame .caption {
    margin: 0;
}
.onb-iconbox03-sub {
    text-align: center;
    position: absolute;
    top: -1.5rem;
    transform: translateX(-50%);
    left: 50%;
}
.onb-iconbox03-sub span {
    padding: var(--s1) var(--s2);
    display: inline-block;
    background-color: var(--site-color03);
    border-radius: 50vh;
    font-weight: 700;
	color: var(--site-color04);
}
.onb-iconbox03-img {
    padding: var(--s2);
}
.onb-iconbox03-catch {
    padding-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px dashed #707070;
    color: var(--pri-dark);
}
.onb-iconbox03-caption {
    text-align-last: left;
}
@media screen and (max-width: 767px) {
    .onb-iconbox03-img {
        padding: 0;
		width: 90%;
    }
}

/* 2.3.4 onb-acc-list, l-onb-access-table */
.onb-acc-list-frame {
    font-weight: 700;
    text-align: center;
    border-radius: 12px 12px 0 0;
}
.onb-acc-list-title {
	padding: var(--s2);
	background-color: var(--site-color05);
	font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    border-radius: 12px 12px 0 0;
}
.onb-acc-list-content {
    padding: var(--s2);
}
.onb-acc-list div {
    padding-bottom: var(--s2);
    display: flex;
    border-bottom: 1px solid var(--line);
}
.onb-acc-list div:last-child {
    border: none;
}
.onb-acc-list div dt,
.onb-acc-list div dd {
    width: 50%;
    line-height: 1.2;
}
.onb-acc-list div dd span {
    font-size: 1.4rem;
}
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}
.more-content-gradation.is-open::after {
    display: none;
}
.onb-acc-list-more-btn {
    max-width: 32rem;
    margin: var(--s2) auto;
    position: relative;
    transform: translate3d(0, 0, 0);
}
.onb-acc-list-more-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 6rem 2rem 3rem;
    border: .1rem solid #707070;
    border-radius: 4rem;
    background: #fff url('./img/acc-off.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-acc-list-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-acc-list-more-btn:hover span{
    transform: translate(.6rem, .6rem);
}
.onb-acc-list-more-btn.is-open span {
    background: url('./img/accordion-minus.svg') no-repeat 95% center;
}
@media screen and (max-width: 767px) {
    .onb-acc-list-more-btn span {
        transition: none;
        transform: none;
    }
    .onb-acc-list-more-btn:hover span {
        transform: none;
    }
}
.l-onb-access-table {
    display: flex;
    gap: var(--s2);
}
.l-onb-access-table__side {
    width: calc((100% - var(--s2))*.4);
}
.l-onb-access-table__main {
    width: calc((100% - var(--s2))*.6);
}
.onb-access-table {
    border-collapse: collapse;
}
.onb-access-table th,
.onb-access-table td {
    padding: var(--s2);
    border: 1px solid #707070;
}
.onb-access-table th {
    width: 34%;
    background-color: #FFEAD6;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .l-onb-access-table {
        flex-direction: column;
    }
    .l-onb-access-table__side,
    .l-onb-access-table__main {
        width: 100%;
    }
}

/* 2.8.0 l-onb-com-box03-r and related classes */
.l-onb-com-box03-r {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s5);
}
.l-onb-com-box03-r__side {
    width: calc((100% - var(--s5))*.2);
}
.l-onb-com-box03-r__side img {
    max-width: 100%;
}
.l-onb-com-box03-r__main {
    width: calc((100% - var(--s5))*.8);
}
.onb-com-box03-r-imgcap {
    margin-top: var(--s1);
    text-align: center;
    font-size: 1.2rem;
}
.onb-com-box03-r-catch {
    margin-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--pri-dark);
}
.onb-com-box03-r-caption {
    text-align: left;
}
@media screen and (max-width: 767px) {
    .onb-com-box03-arrow-l::before,
    .onb-com-box03-arrow-l::after {
        top: 2rem;
    }
    .onb-com-box03-r-frame {
        padding: var(--s2);
    }
} 
/* 2.3.7 section-title07 */
.section-title07-frame {
    margin-top: 5rem;
    position: relative;
}
.section-title07-frame::before {
    content: "INDEX";
    font-size: 17.5rem;
    font-weight: bold;
    text-align: center;
    color: #EEF8F3;
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin: auto;
}
.section-title07 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    position: relative;
}
@media screen and (max-width: 767px) {
    .section-title07-frame {
        background-color: transparent;
    }
    .section-title07-frame::before {
        width: 100%;
        padding: var(--s1) 0;
        font-size: 5rem;
        top: -20px;
    }
    .section-title07 {
        padding: var(--s2) var(--s2) 0 var(--s2);
        font-size: 2.4rem;
    }
}

/* 4.0 onb-iconbox03 */
.onb-iconbox03-frame {
    padding: var(--s4) var(--s2) var(--s2);
    background-color: #F5F5F5;
    border-radius: 15px;
    position: relative;
}
.onb-iconbox03-sub {
    text-align: center;
    position: absolute;
    top: -1.5rem;
    transform: translateX(-50%);
    left: 50%;
}
.onb-iconbox03-sub span {
    padding: var(--s1) var(--s2);
    display: inline-block;
    background-color: #FFD22D;
    border-radius: 50vh;
    font-weight: 700;
}
.onb-iconbox03-img {
    margin: 0 auto;
}
.onb-iconbox03-catch {
    padding-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px dashed #707070;
    color: var(--pri-dark);
}
.onb-iconbox03-caption {
    text-align-last: left;
}
@media screen and (max-width: 767px) {
    .onb-iconbox03-img {
        padding-left: var(--s11);
        padding-right: var(--s11);
    }
}

/* 2.3.4 onb-acc-list, l-onb-access-table */
.onb-acc-list-frame {
    font-weight: 700;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.onb-acc-list-title {
    font-weight: 700;
    text-align: center;
    border-radius: 12px 12px 0 0;
}
.onb-acc-list-content {
    padding: var(--s2);
}
.onb-acc-list div {
    padding-bottom: var(--s2);
    display: flex;
    border-bottom: 1px solid var(--line);
}
.onb-acc-list div:last-child {
    border: none;
}
.onb-acc-list div dt,
.onb-acc-list div dd {
    width: 50%;
    line-height: 1.2;
}
.onb-acc-list div dd span {
    font-size: 1.4rem;
}
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}

.more-content-gradation.is-open::after {
    display: none;
}
.onb-acc-list-more-btn {
    max-width: 32rem;
    margin: var(--s5) auto;
    position: relative;
    transform: translate3d(0, 0, 0);
}
.onb-acc-list-more-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 6rem 2rem 3rem;
    border: .1rem solid #707070;
    border-radius: 4rem;
    background: #fff url('./img/acc-off.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-acc-list-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-acc-list-more-btn:hover span{
    transform: translate(.6rem, .6rem);
}
.onb-acc-list-more-btn.is-open span {
    background: #fff url('./img/accordion-minus.svg') no-repeat 95% center;
}
@media screen and (max-width: 767px) {
    .onb-acc-list-more-btn span {
        transition: none;
        transform: none;
    }
    .onb-acc-list-more-btn:hover span {
        transform: none;
    }
}
.l-onb-access-table {
    display: flex;
    gap: var(--s2);
}
.l-onb-access-table__side {
    width: calc((100% - var(--s2))*.4);
}
.l-onb-access-table__main {
    width: calc((100% - var(--s2))*.6);
}
.onb-access-table {
    border-collapse: collapse;
}
.onb-access-table th,
.onb-access-table td {
    padding: var(--s2);
    border: 1px solid #707070;
}
.onb-access-table th {
    width: 34%;
    background-color: #FFEAD6;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .l-onb-access-table {
        flex-direction: column;
    }
    .l-onb-access-table__side,
    .l-onb-access-table__main {
        width: 100%;
    }
}

/* 2.8.0 l-onb-com-box03-r and related classes */
.l-onb-com-box03-r {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s5);
}
.l-onb-com-box03-r__side {
    width: calc((100% - var(--s5))*.2);
}
.l-onb-com-box03-r__side img {
    max-width: 100%;
}
.l-onb-com-box03-r__main {
    width: calc((100% - var(--s5))*.8);
}
.onb-com-box03-r-imgcap {
    margin-top: var(--s1);
    text-align: center;
    font-size: 1.2rem;
}
.onb-com-box03-r-catch {
    margin-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--pri-dark);
}
.onb-com-box03-r-caption {
    text-align: left;
}
@media screen and (max-width: 767px) {
    .onb-com-box03-arrow-l::before,
    .onb-com-box03-arrow-l::after {
        top: 2rem;
    }
    .onb-com-box03-r-frame {
        padding: var(--s2);
    }
} 
/* ComponentStart: 2.3.5, section-title05 */
.section-title05 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin: var(--s6) auto var(--s4);
    background: linear-gradient(to right,#D1F6FB 0%,#D1EEFB 33%,#D1EAFA 66%, #D0E3F8 100%);
}

@media screen and (max-width: 767px) {
    .section-title05 {
        padding: var(--s2);
        font-size: 2.4rem;
    }
    .section-title05::before,
    .section-title05::after {
        width: 5rem;
        height: 5rem;
    }
    .section-title05::before {
        top: -3rem;
    }
    .section-title05::after {
        bottom: -3rem;
    }
}
/* ComponentEnd: 2.3.5 */

/* ComponentStart: 4.31, l-grid-three */
.column-small {
    padding: var(--s2);
    border: 1px solid var(--line);
}
/* ComponentEnd: 4.31 */

/* ComponentStart: 3.9, iconbox01 */
.iconbox01-bg-colored {
    padding-top: 4rem;
}
.iconbox01-area {
    padding: var(--s2);
    background-color: #F5F5F5;
    position: relative;
}
.iconbox01-image {
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: -3.2rem;
    left: -1.6rem;
}
.iconbox01-title {
    padding-left: var(--s9);
    padding-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #ED6D1F;
    color: #ED6D1F;
}
.iconbox01-title span {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
}
/* ComponentEnd: 3.9 */
/* 2.3.7 section-title07 */
.section-title07-frame {
    margin-top: 5rem;
    position: relative;
}
.section-title07-frame::before {
    content: "INDEX";
    font-size: 17.5rem;
    font-weight: bold;
    text-align: center;
    color: #EEF8F3;
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin: auto;
}
.section-title07 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    position: relative;
}
@media screen and (max-width: 767px) {
    .section-title07-frame {
        background-color: transparent;
    }
    .section-title07-frame::before {
        width: 100%;
        padding: var(--s1) 0;
        font-size: 5rem;
        top: -20px;
    }
    .section-title07 {
        padding: var(--s2) var(--s2) 0 var(--s2);
        font-size: 2.4rem;
    }
}

/* 4.0 onb-iconbox03 */
.onb-iconbox03-frame {
    padding: var(--s4) var(--s2) var(--s2);
    background-color: var(--site-color04);
    border-radius: 20px;
    position: relative;
}

.onb-iconbox03-sub {
    text-align: center;
    position: absolute;
    top: -1.5rem;
    transform: translateX(-50%);
    left: 50%;
}
.onb-iconbox03-sub span {
    padding: var(--s1) var(--s2);
    display: inline-block;
    background-color: #FFD22D;
    border-radius: 50vh;
    font-weight: 700;
}
.onb-iconbox03-img {
    padding-left: var(--s7);
    padding-right: var(--s7);
}
.onb-iconbox03-catch {
    padding-bottom: 2rem;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid var(--site-color01);
    color: var(--pri-dark);
}
.onb-iconbox03-caption {
    text-align-last: left;
}
@media screen and (max-width: 767px) {
    .onb-iconbox03-img {
        padding-left: var(--s11);
        padding-right: var(--s11);
    }
}

/* 2.3.4 onb-acc-list, l-onb-access-table */
.onb-acc-list-frame {
    font-weight: 700;
    text-align: center;
    border-radius: 12px 12px 0 0;
}
.onb-acc-list-frame ul {
  text-align: left;
  font-weight: normal;
}
.onb-acc-list-frame p {
  text-align: left;
  font-weight: normal;
}
.onb-acc-list-title {
    font-weight: 700;
    text-align: center;
    border-radius: 12px 12px 0 0;
}
.onb-acc-list-content {
    padding: var(--s2);
}
.onb-acc-list div {
    padding-bottom: var(--s2);
    display: flex;
    border-bottom: 1px solid var(--line);
}
.onb-acc-list div:last-child {
    border: none;
}
.onb-acc-list div dt,
.onb-acc-list div dd {
    width: 50%;
    line-height: 1.2;
}
.onb-acc-list div dd span {
    font-size: 1.4rem;
}
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}
.more-content-gradation.is-open::after {
    display: none;
}
.onb-acc-list-more-btn {
    max-width: 32rem;
    margin: var(--s5) auto;
    position: relative;
    transform: translate3d(0, 0, 0);
}
.onb-acc-list-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/acc-off.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-acc-list-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-acc-list-more-btn:hover span{
    transform: translate(.6rem, .6rem);
}
.onb-acc-list-more-btn.is-open span {
    background: #fff url('./img/accordion-minus.svg') no-repeat 95% center;
}
@media screen and (max-width: 767px) {
    .onb-acc-list-more-btn span {
        transition: none;
        transform: none;
    }
    .onb-acc-list-more-btn:hover span {
        transform: none;
    }
}
.l-onb-access-table {
    display: flex;
    gap: var(--s2);
}
.l-onb-access-table__side {
    width: calc((100% - var(--s2))*.4);
}
.l-onb-access-table__main {
    width: calc((100% - var(--s2))*.6);
}
.onb-access-table {
    border-collapse: collapse;
}
.onb-access-table th,
.onb-access-table td {
    padding: var(--s2);
    border: 1px solid #707070;
}
.onb-access-table th {
    width: 34%;
    background-color: #FFEAD6;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .l-onb-access-table {
        flex-direction: column;
    }
    .l-onb-access-table__side,
    .l-onb-access-table__main {
        width: 100%;
    }
}

/* 2.8.0 l-onb-com-box03-r and related classes */
.l-onb-com-box03-r {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s5);
}
.l-onb-com-box03-r__side {
    width: calc((100% - var(--s5))*.2);
}
.l-onb-com-box03-r__side img {
    max-width: 100%;
}
.l-onb-com-box03-r__main {
    width: calc((100% - var(--s5))*.8);
}
.onb-com-box03-r-imgcap {
    margin-top: var(--s1);
    text-align: center;
    font-size: 1.2rem;
}
.onb-com-box03-r-catch {
    margin-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--pri-dark);
}
.onb-com-box03-r-caption {
    text-align: left;
}
@media screen and (max-width: 767px) {
    .onb-com-box03-arrow-l::before,
    .onb-com-box03-arrow-l::after {
        top: 2rem;
    }
    .onb-com-box03-r-frame {
        padding: var(--s2);
    }
} 


.l-cpn-sp-vertical--wrap {
	border-radius: 20px;
	background: rgb(214,242,229);
	background: linear-gradient(90deg, rgb(236,249,255) 50%, rgb(247,248,251) 50%);
	margin-top: var(--s8);
}
.l-cpn-sp-vertical {
	display: flex;
	margin-top: 4rem;
}
.cpn-sp-vertical {
	width: 50%;
	padding: 0 var(--s4) var(--s4) var(--s4);
	position: relative;
}
.cpn-sp-vertical-content {
	position: relative;
	z-index: 5;
}
.cpn-sp-vertical--left {
	padding-right: 10rem;
}
.cpn-sp-vertical--right {
	padding-left: 10rem;
}
.cpn-sp-vertical-title {
	margin-bottom: var(--s6);
	padding: var(--s2);
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.5;
	position: relative;
}
.cpn-sp-vertical-title::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 1.5rem solid transparent;
	border-left: 1.5rem solid transparent;
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	left: 50%;
	bottom: -1.3rem;
}
.cpn-sp-vertical-title--light {
	background-color: var(--site-color01);
	border-radius: 15px;
}
.cpn-sp-vertical-title--light::after {
  border-right: 1.5rem solid var(--site-color01);
  border-bottom: 1.5rem solid var(--site-color01);
}
.cpn-sp-vertical-title--dark {
  background-color: var(--site-color03);
	border-radius: 15px;
}
.cpn-sp-vertical-title--dark::after {
  border-right: 1.5rem solid var(--site-color03);
  border-bottom: 1.5rem solid var(--site-color03);
}
.cpn-sp-vertical-box {
	padding-bottom: var(--s4);
}
.cpn-sp-vertical-box__ttl {
	color: var(--site-color01);
	margin-bottom: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}
.cpn-sp-vertical-box__txt {
	margin-bottom: 1.6rem;
	line-height: 1.5;
}
.cpn-sp-vertical-box__heading {
	margin-bottom: 1.6rem;
	color: #2EAD70;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
.cpn-sp-vertical-pic {
	margin-bottom: var(--s2);
	text-align: center;
}
.cpn-sp-vertical-circle-area {
	position: relative;
}
.cpn-sp-vertical-circle {
	width: 14rem;
	height: 14rem;
	padding: 0 var(--s2);
	border-radius: 14rem;
	text-align: center;
  background-color: var(--site-color02);
  color: #fff;
}

.cpn-sp-vertical-second {
	border-color: #E53092;
}
.cpn-sp-vertical-third {
	border-color: #2EAD70;
}
.cpn-sp-vertical-circle .demelit {
    background: var(--site-color02);
}
.cpn-sp-vertical-circle p {
	line-height: 1.3;
	font-weight: 700;
	margin-top: var(--s4);
	padding: var(--s3) var(--s-2);
}
.cpn-sp-vertical-circle__img {
	width: 5rem;
	height: 5rem;
	margin: 1rem auto;
}
.cpn-sp-vertical-first,
.cpn-sp-vertical-second,
.cpn-sp-vertical-third {
	position: absolute;
	right: -17rem;
	z-index: 10;
}
.cpn-sp-vertical-first {
	top: 30%;
}
.cpn-sp-vertical-second {
	top: 10%;
}
.cpn-sp-vertical-third {
	top: 5%;
}
/*----------------------------------
Accordion settings
*/
.cpn-sp-vertical-content .acc-more-btn {
	max-width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 100px;
	text-align: center;
	position: relative;
	transition: opacity 0.3s;
	cursor: pointer;
	background: #FFEDAB;
	font-size: 1.6rem;
	font-weight: bold;
}
.cpn-sp-vertical-content .acc-more-btn::before {
	content: "";
	width: 2.7rem;
	height: 2.7rem;
	background: url('./img/acc-off.svg') no-repeat 0 0 /100% auto;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translate(0, -50%);
}
.cpn-sp-vertical-content .acc-more-btn:hover {
	opacity: 0.6;
}
.cpn-sp-vertical-content .acc-more-btn.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}
.more-content {
	display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-cpn-sp-vertical--wrap {
		background: none;
	}
	.l-cpn-sp-vertical {
		flex-direction: column;
	}
	.cpn-sp-vertical {
		width: 100%;
		padding: var(--s2);
	}
	.cpn-sp-vertical--left {
		background-color: #D6F2E5;
		border-radius: 20px 20px 0 0 ;
	}
	.cpn-sp-vertical--right {
		background-color: #EFEFEF;
		border-radius: 0 0 20px 20px;
	}
	.cpn-sp-vertical-box {
		border: none;
		display: flow-root;
	}
	.comparison-box__heading {
		font-size: 1.7rem;
		text-align: left;
	}
	.cpn-sp-vertical-pic-float {
		width: calc(100% * .45);
		margin-right: var(--s2);
		margin-bottom: var(--s1);
		float: left;
	}
	.cpn-sp-vertical-circle {
		width: calc(100% + 3.2rem);
		height: inherit;
		margin-top: -1.6rem;
		margin-left: -1.6rem;
		margin-bottom: 1.6rem;
		padding: var(--s1);
		border-radius: 0;
		display: flex;
		gap: var(--s2);
		align-items: center;
	}
	.cpn-sp-vertical-circle__img {
		width: calc((100% - var(--s2))*.15);
		height: inherit;
		margin: 0;
	}
	.cpn-sp-vertical-first,
	.cpn-sp-vertical-second,
	.cpn-sp-vertical-third {
		position: inherit;
		top: inherit;
		right: inherit;
	}
	.cpn-sp-vertical-arrow {
		margin-bottom: 8rem;
		position: relative;
	}
	.cpn-sp-vertical-arrow::after {
		content: "";
		width: 8rem;
		height: calc(8rem / 2 * tan(45deg));
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		background-color: var(--site-color09);
		transform: translateX(-50%);
		position: absolute;
		left: 50%;
		bottom: -6rem;
	}
}

/*------------------------------------------
    1box column settings
*/
.column-medium {
    padding: var(--s4);
    border: 1px solid var(--site-color09);
}
.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);
    }
}

.section-title04 {
    margin-top: 5rem;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 3.2rem;
    line-height: 1.5;
}
.section-title04::after {
    content: "";
    width: 7rem;
    height: 6px;
    background-color: #2EAD70;
    border-radius: 100px;
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title04 {
        font-size: 2.1rem;
        line-height: 1.4;
    }
}



.onb-item-title-frame {
	padding: var(--s4);
	background-color: var(--site-color01);
	border-radius: 20px;
	position: relative;
	margin-top: -3.5rem;
}
.onb-item-title-icon {
	width: 8.5rem;
	height: 8.5rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
    top: 3rem;
    left: 3rem;
}
.onb-item-title-icon img {
	width: 100%;
}
.l-onb-item-title {
	display: flex;
	gap: var(--s2);
}
.l-onb-item-title__side,
.l-onb-item-title__main {
	padding: var(--s2);
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.2;
}
.l-onb-item-title__side span {
	font-size: 2.4rem;
	color: var(--site-color01);
    display: block;
}
.l-onb-item-title__side {
	width: calc((70% - var(--s1))*.3);
	font-size: 3.2rem;
	color: var(--site-color01);
	background-color: #fff;
	border-radius: 15px;
	padding: 2.5rem 0;
    right: 2rem;
	position: absolute;
}
.l-onb-item-title__main {
	width: calc((100% - var(--s2))*.7);
	color: #fff;
}
.onb-item-title-catch {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
	display: block;
	line-height: 1.4;
}
.onb-item-title-catch b {
	border-bottom: 5px solid #FFD22D;
}
.onb-item-title-title {
	font-size: 3.8rem;
	font-weight: 700;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-item-title-frame {
		padding: var(--s2);
	}
	.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__side span {
    font-size: 1.4rem;
}
 .l-onb-item-title__main {
    width: 100%;
    font-size: 2.0rem;
  }
  .l-onb-item-title__side {
    width: 18%;
    font-size: 1.4rem;
    top: 1.5rem;
    right: 1rem;
  }
	.onb-item-title-catch b {
		border-bottom: 3px solid #FFD22D;
	}
	.onb-item-title-title {
	font-size: 2.0rem;
	padding: 0 var(--s6) 0 0;
}
}



.ex-contents-spv {
    display: flex;
}
.ex-contents-spv-left {
    padding: 1.6rem 3.2rem;
    background-color: var(--site-color01);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 15px 0 0 15px;
}
.ex-contents-spv-left::after {
    content: "";
    width: 2rem;
    height: calc(6rem / 2);
    background-color: var(--site-color01);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -1.5rem;
}
.ex-contents-spv-left span {
    width: 100%;
    font-size: 5.2rem;
    line-height: 1.5;
    text-align: center;
    display: block;
}
.ex-contents-spv-right {
    padding: var(--s6) var(--s4);
    background-color: #F5F5F5;
    border-radius: 0 15px 15px 0;
}
.ex-contents-spv-catch {
    color: var(--site-color01);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}
.ex-contents-spv-catch a {
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
    display: block;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .for-pc {
        display: none;
    } 
    .ex-contents-spv {
        flex-direction: column;
    }
    .ex-contents-spv-left {
		font-size: 1.5rem;
        padding: 0.8rem;
        position: relative;
        display: block;
        text-align: center;
        border-radius: 15px 15px 0 0;
    }
    .ex-contents-spv-left::after {
        width: 4rem;
        height: calc(4rem / 2);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        transform: translateX(-50%);
        top: inherit;
        left: 50%;
        right: inherit;
        bottom: -1.5rem;
    }
    .ex-contents-spv-left {
        font-size: 1rem;
    }
    .ex-contents-spv-left span {
        font-size: 2rem;
        display: inline;
    }
    .ex-contents-spv-right {
        padding: 3.2rem 1.6rem 3.2rem 1.6rem;
        border-radius: 0 0 15px 15px;
    }
    .ex-contents-spv-catch {
        font-size: 1.6rem;
    }
    .ex-contents-spv-right p {
        font-size: 1.4rem;
    }
}

.twb-iconbox01-area {
    padding: var(--s4);
    background-color: var(--site-color05);
    position: relative;
    border-radius: 20px;
}
.twb-iconbox01-image {
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 2.4rem;
    left: 3.4rem;
}
.twb-iconbox01-title {
    padding-left: var(--s9);
    padding-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    border-bottom: 1px solid var(--site-color01);
    color: var(--site-color01);
}
.twb-iconbox01-title span {
    margin-bottom: var(--s1);
    font-size: 2.1rem;
    line-height: 1.5;
    display: block;
}
.twb-iconbox01-title a {
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
    display: block;
	background-size: 1rem auto;
}
/*------------------------------------------
    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);
    }
}
.twb-bg-colored {
    padding-top: 4rem;
}
.twb-listbox-area {
    padding: var(--s5);
    background-color: var(--site-color05);
    border-radius: 20px;
    position: relative;
}
.twb-listbox-title {
    margin-top: -5rem;
    text-align: center;
    font-weight: 700;
}
.twb-listbox-title span {
    padding: .8rem;
    background-color: #FFD22D;
    border-radius: 50vh;
    display: inline-block;
}
.twb-listbox-subtitle {
    text-align: center;
    font-weight: 700;
}
.twb-listbox-list {
    width: 100%;
}
.twb-listbox-list li {
    font-weight: 700;
    padding-left: var(--s4);
    line-height: 1.5;
    background: url(./img/icon-check-mini.png) no-repeat top left;
    background-size: 2.4rem 2.4rem;
}
.twb-listbox-list li span {
    margin-right: var(--s1);
    display: block;
    text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .twb-listbox-area {
        padding: var(--s2) var(--s2) var(--s2) var(--s2);
    }
    .twb-listbox-list li {
        font-size: 1.4rem;
        padding-left: var(--s4);
        background: url(./img/icon-check.png) no-repeat top left;
        background-size: 1.8rem auto;
    }
    .twb-listbox-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }
    .twb-listbox-title {
        width: 80%;
        margin: -5rem auto 0 auto;
        padding: var(--s2);
        font-size: 1.8rem;
        text-align: center;
    }
}
.onb-acc-list-frame {
	border: 4px solid var(--site-color05);
	border-radius: 20px;
}
.onb-acc-list-title {
	padding: var(--s2);
	background-color: var(--site-color05);
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	border-radius: 12px 12px 0 0;
}
.onb-acc-list-content {
	padding: var(--s2);
}
.onb-acc-list div {
	padding-bottom: var(--s2);
	display: flex;
	border-bottom: 1px solid var(--site-color09);
}
.onb-acc-list div:last-child {
	border: none;
}
.onb-acc-list div dt,
.onb-acc-list div dd {
	width: 50%;
	line-height: 1.2;
}
.onb-acc-list div dd span {
	font-size: 1.4rem;
}
.more-content-gradation {
	position: relative;
	height: auto;
	max-height: 12rem;
	overflow: hidden;
	transition: max-height 1s;
}
.more-content-gradation.is-open::after {
	display: none;
}
.onb-acc-list-more-btn {
	max-width: 32rem;
	margin: var(--s5) auto;
	position: relative;
	transform: translate3d(0, 0, 0); /* 描画対策のGPU処理 */
}
.onb-acc-list-more-btn span {
	width: 100%;
	margin: var(--s2) auto var(--s-2);
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 4rem;
	background: #fff url('./img/acc-off.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-acc-list-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-acc-list-more-btn:hover span{
	transform: translate(.6rem, .6rem);
}
.onb-acc-list-more-btn.is-open span {
	background: #fff url('./img/accordion-minus.svg') no-repeat 95% center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-acc-list-more-btn span {
		transition: none;
		transform: none;
	}
	.onb-acc-list-more-btn:hover span {
		transform: none;
	}
}
.onb-iconbox03-frame {
	padding: var(--s4) var(--s2) var(--s2);
	background-color: #F5F5F5;
	border-radius: 15px;
	position: relative;
	margin-top: var(--s3);
}

.onb-iconbox03-sub {
	text-align: center;
	position: absolute;
	top: -1.5rem;
	transform: translateX(-50%);
	left: 50%;
}
.onb-iconbox03-sub span {
	padding: var(--s1) var(--s2);
	display: inline-block;
	background-color: var(--site-color03);
	border-radius: 50vh;
	font-weight: 700;
}
.onb-iconbox03-catch {
	padding-bottom: 2rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 1px solid var(--site-color01);
	color: var(--site-color01);
	text-align: center;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.onb-iconbox03-catch a {
   font-size: 2.1rem;
   font-weight: 700;
   line-height: 1.5;
   text-align: center;
   background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
   display: block;
	 background-size: 1rem auto;
   padding: 0 20px;
   width: 100%;
}
.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-com-box01-r-frame {
	padding: var(--s2);
	border: 4px solid #c4e4e7;
	border-radius: 20px;
}
.l-onb-com-box01-r {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s3);
}
.l-onb-com-box01-r__side {
	width: calc((100% - var(--s3))*.2);
}
.l-onb-com-box01-r__side img {
	max-width: 100%;
}
.l-onb-com-box01-r__main {
	width: calc((100% - var(--s3))*.8);
}
.l-onb-com-box01-r__main p span{
	font-weight: bold;
}
.onb-com-box01-r-catch {
	margin-bottom: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--site-color01);
}
.onb-com-box01-r-imgcap {
	margin-top: var(--s1);
	text-align: center;
	font-size: 1.2rem;
}
.onb-com-box01-r-caption {
	text-align: left;
	overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-com-box01-r {
		display: flow-root;
	}
	.l-onb-com-box01-r__side {
		width: 30%;
		margin-right: var(--s2);
		margin-bottom: var(--s2);
		float: left;
	}
	.l-onb-com-box01-r__main {
		width: 100%;
	}
	.onb-com-box01-r-catch {
		font-size: 1.8rem;
	}
	.onb-com-box01-r-imgcap {
		font-size: 1rem;
	}
	.onb-com-box01-r-caption {
		text-align: right;
	}
}

/* ---------------------------------------------
下層のCSS
--------------------------------------------- */
.onb-index02-frame {
    width: 100%;
    border-radius: 20px;
	background: var(--site-color04);
}
.onb-index02-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3) var(--s2) var(--s3);
    position: relative;
}
.onb-index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
}
.onb-index02-title::before {
	content: "";
	position: absolute;
	display: block;
	background: url(./img/index-icon.svg) no-repeat left center;
	border-radius: 15px;
	width: 55px;
	height: 55px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.onb-index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
    border-top: 2px dotted #707070;
}
.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 {
    margin-left: var(--s2);
    position: relative;
}
.onb-index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
.onb-index02-chapter-h-two::before,
.onb-index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}
.onb-index02-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: var(--site-color01);
    transform: translateY(-50%);
    top: .8em;
}
.onb-index02-chapter-h-three::before {
    content: "└";
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .onb-index02-title {
  font-size: 1.8rem;
  padding-left: var(--s7);
}
}
/*----------------------------------------------
	more content settings
*/
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}
.more-content-gradation.is-open::after {
    display: none;
}
.onb-index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    padding: 2rem 6rem 2rem 3rem;
    border: 0.1rem solid #707070;
    border-radius: 100px;
    text-align: center;
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: bold;
}
.onb-index02-btn::before {
	content: "";
	width: 2.7rem;
	height: 2.7rem;
	background: url('./img/acc-off.svg') no-repeat 0 0 /100% auto;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translate(0, -50%);
}
.onb-index02-btn:hover {
    opacity: 0.6;
}
.onb-index02-btn.is-open::before {
    background-image: url('./img/accordion-minus.svg');
}

.pc-fix-banner01 {
    width: 20rem;
    background-color: var(--site-color06);
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 50;
}
.pc-fix-banner01 a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.pc-fix-banner01 a:hover {
    opacity: .7;
}
.pc-fix-banner01::before {
    content: "CHECK";
    width: 5.6rem;
    height: 1.5rem;
    background: #D8B914 no-repeat center center;
    background-size: auto;
    border-radius: 50%;
    position: absolute;
    top: -1.5rem;
    left: 0.5rem;
    z-index: 5;
    font-size: 1.5rem;
    padding: 1rem;
    color: #fff;
    font-weight: bold;
}
.pc-fix-banner01-text {
    padding: var(--s3) var(--s2) var(--s2);
    color: #fff;
    position: relative;
	font-weight:bold;
}
.pc-fix-banner01-text::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid #fff;
    border-bottom: .5rem solid #fff;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}
.pc-fix-banner01-text p {
    margin: 0;
    font-size: 1.4rem;
    text-align: center;
	line-height: 1.4;
}
.pc-fix-banner01-text p.text-small {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--site-color06);
    background: #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner01 {
        display: none;
    }
}


.sp-fix-banner01 {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-fix-banner01 {
        display: block;
        width: 70%;
        background-color: var(--site-color06);
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 50;
    }
    .sp-fix-banner01-text {
        padding: var(--s2);
        color: #fff;
        position: relative;
    }
    .sp-fix-banner01-text::before {
        content: "CHECK";
        width: 5.6rem;
        height: 1.5rem;
        background: #D8B914 no-repeat center center;
        background-size: auto;
        border-radius: 50%;
        position: absolute;
        top: -1.5rem;
        left: 0.5rem;
        z-index: 5;
        font-size: 1.5rem;
        padding: 1rem;
    }
    .sp-fix-banner01-text p {
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.7;
        padding-top: var(--s1);
    }
    .sp-fix-banner01-text a {
        padding-right: 1.6rem;
        color: #fff;
        text-decoration: none;
        background: url("./img/arrow-01-wht-right.svg") no-repeat right center / 1rem auto;
        display: block;
    }
    .sp-fix-banner01-text a:hover {
        opacity: .7;
    }
}


/* ---------------------------------------------
追加要素
--------------------------------------------- */

.simplified-chart-spfix th, .simplified-chart-spfix tr:nth-child(1) th:nth-child(1) {
  background-color: var(--site-color03);
  color: #fff;
  padding: 16px;
}
.simplified-chart-spfix tr th:nth-child(1) {
  background-color: var(--site-color01);
  color: #fff;
}

.simplified-chart-spfix tr th a {
  color: #fff;
}
#index  a:active, a:hover {
    opacity: .5;
}
#index a {
  text-decoration: none;
}
.btn-line {
    display: none;
}
.sp {
  display: none;
}
.table-info {
    width: 25%;
}
.table-cost {
    width: 25%;
}
#sec00 {
    background: var(--site-color04);
}
#sec01 {
    background: linear-gradient(to bottom, var(--site-color04), #ECF9FF);
    padding-bottom: var(--s8);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
.btn-line {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
    z-index: 5;
    display: block;
}

.btn-line a {
    width: 100%;
    margin: 0;
    padding: var(--s2) var(--s6) var(--s2) var(--s5);
    background: #07b53b url(./img/arrow-01-wht-right.svg) no-repeat center right 2.5rem / auto 1em;
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    border-radius: 25rem;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}

.btn-line:hover a {
    transform: translate(0.8rem, 0.8rem);
}
.pc {
    display: none;
}
#low-page table {
    margin-block: 4rem;
	max-width:100%;
}
}
.icon-head01 {
	margin-top: var(--s8);
	margin-bottom: var(--s4);
	margin-left: var(--s4);
	padding: var(--s2) var(--s2) var(--s2) var(--s12);
	line-height: 1.5;
	font-size: 2.8rem;
	font-weight: 700;
	background-color: var(--site-color05);
	border-radius: 0 15px 15px 0 ;
	position: relative;
}
.icon-head01::before {
	content: "";
	width: 12rem;
	height: 12rem;
	background: url('./img/icon-check.png') no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -4rem;
	border-radius: 100px;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.icon-head01 {
		margin-left: var(--s4);
		padding: var(--s1) var(--s1) var(--s1) var(--s8);
		font-size: 1.8rem;
	}
	.icon-head01::before {
		content: "";
		width: 8rem;
		height: 8rem;
		left: -3.2rem;
	}
	.host table {
  	  width: 100%;
 	   table-layout: fixed;
}

	.host th {
 	   width: 28%;
}

	.host td {
	  padding: 8px 12px;
 	 white-space: normal;
	  word-wrap: break-word;
 	 overflow-wrap: anywhere;
}
}


/* ---------------------------------------------
sec01
--------------------------------------------- */
.sp-table-vertica {
  text-align: center;
  font-weight: bold;
}
.sp-table-vertical th { 
  text-align: center;
}
.sp-table-vertical .blue {
  background: var(--site-color01);
  color: #fff;
}
.sp-table-vertical .skyblue {
  background: var(--site-color01);
  color: #fff;
}
#sec01 .l-scroll-x-sp {
    overflow-x: scroll;
	overflow-y: hidden;
}
#sec01 .caption {
  text-align: left;
}

#sec01 .acc-list-title {
	padding: var(--s2);
	background-color: var(--site-color06);
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--site-color03);
}
#sec01 .acc-list div {
	padding-bottom: var(--s2);
	display: flex;
	border-bottom: 1px solid #B1B1B1;
}
#sec01 .acc-list div:last-child {
	border: none;
}
#sec01 .acc-list div dt,
#sec01 .acc-list div dd {
	width: 50%;
	line-height: 1.2;
}
#sec01 .acc-list div dd span {
	font-size: 1.4rem;
}
/*----------------------------------------------
	more content settings
*/
#sec01 .more-content-gradation {
	position: relative;
	height: auto;
	max-height: 50rem;
	overflow: hidden;
	transition: max-height 1s;
	overflow-x: scroll;
    cursor: grab;
    user-select: none;
}
#sec01 .more-content-gradation:active {
    cursor: grabbing; 
}

#sec01 .more-content-gradation.is-open::after {
	display: none;
}
#sec01 .acc-list-more-btn {
	max-width: 32rem;
	margin: 0 auto;
	position: relative;
	transform: translate3d(0, 0, 0); /* 描画対策のGPU処理 */
}
#sec01 .acc-list-more-btn span {
	width: 100%;
	margin: var(--s5) auto 0;
	padding: 2rem 6rem 2rem 3rem;
	border: .2rem solid var(--site-color05);
	border-radius: 4rem;
	background: url('./img/acc-off.svg') no-repeat 95% center #fff;
	display: block;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}
#sec01 .acc-list-more-btn::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--site-color03);
	border-width: 0 1px 1px 0;
	transform: translate(.8rem, .8rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
#sec01 .acc-list-more-btn:hover span {
	transform: translate(.8rem, .8rem);
}
#sec01 .acc-list-more-btn.is-open span {
	background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}
#sec01 .no1 {
  position: relative;
  background: var(--site-color01) url(./img/ranking-no1.png) no-repeat;
  background-size: 4rem;
  background-position: 5px 5px;
}
#sec01 .no2 {
  position: relative;
  background: var(--site-color01) url(./img/ranking-no2.png) no-repeat;
  background-size: 4rem;
  background-position: 5px 5px;
}
#sec01 .no3 {
  position: relative;
  background: var(--site-color01) url(./img/ranking-no3.png) no-repeat;
  background-size: 4rem;
    background-position: 5px 5px;
}
#sec01 .no4 {
  position: relative;
  background: var(--site-color01) url(./img/ranking-no4.png) no-repeat;
  background-size: 4rem;
    background-position: 5px 5px;
}
#sec01 .no5 {
  position: relative;
  background: var(--site-color01) url(./img/ranking-no5.png) no-repeat;
  background-size: 4rem;
    background-position: 5px 5px;
}
#sec01 .no6 {
  position: relative;
  background: var(--site-color01) url(./img/ranking-no6.png) no-repeat;
  background-size: 4rem;
  background-position: 5px 5px;
}


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


/* ---------------------------------------------
sec02
--------------------------------------------- */
#sec02 .l-scroll-x-sp .blue {
  background: var(--site-color01);
  width: 40%;
  padding: var(--s2);
  font-size: 1.7rem;
	color: #fff;
	text-align: center;
}

#sec02 .l-scroll-x-sp .skyblue {
  background: var(--site-color03);
  width: 40%;
  padding: var(--s2);
  font-size: 1.7rem;
	color: #fff;
	text-align: center;
}

.sp-scroll-table {
    display: none;
}
.cpn-sp-vertical-circle:nth-child(2) {
  background: var(--site-color09);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
#sec02 .l-scroll-x-sp .blue {
  width: 100%;
}
#sec02 .l-scroll-x-sp .skyblue {
  width: 100%;
}
#sec02 .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;
    }  
.cpn-sp-vertical-circle p {
  margin: 0 auto;
  padding: var(--s2);
  font-size: 1.9rem;
  text-align: center;
}
.cpn-sp-vertical-title--dark {
  margin: var(--s1) auto var(--s4)auto;
}
}

/* ---------------------------------------------
sec03
--------------------------------------------- */
#sec03 .btn-web {
  margin: var(--s1) auto;
}

#sec03 .column-medium {
  padding-bottom: var(--s8);
  border-radius: 2rem 2rem 0 0;
  background: #fff;
}
.bg-03 {
  background: rgba(255,255,255,0.5) url(./img/mv-bg-0301.png) no-repeat;
  background-size: contain;
  padding-bottom: var(--s13);
}
#sec03 .l-grid-two-large img {
  padding: var(--s2);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
#sec03 .btn-line {
  background: #07b53b;
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
  z-index: 5;
  border-radius: 5rem;
  }

}

/* ---------------------------------------------
sec04
--------------------------------------------- */
#sec04 h3 {
  width: 100%;
  margin-block: 5rem 2rem;
  padding: var(--s2);
  font-size: 3.2rem;
  font-weight: 700;
  background-color: var(--site-color02);
  border-left: 12px solid #81CFD8;
  color: #ffffff;
}
#sec04 h3 a {
  background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto .7em;
  display: block;
  color: #fff;
}
#sec04 .address-list li {
    margin-left: var(--s3);
}
#sec04 .address-list li::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: var(--site-color01);
    transform: translateY(-50%);
    top: .8em;
    position: absolute;
    left: -2rem;
}
#sec04 .onb-iconbox03-img {
		padding: 0;
	}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
#sec04 h3 {
  margin-block: 2rem -2rem;
  font-size: 2.5rem;
}
  .ex-contents-spv-left {
    font-size: 1.7rem;
  }
}
/* ---------------------------------------------
sec05
--------------------------------------------- */



/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
.twb-iconbox01-title span {
  font-size: 1.9rem;
}
}
/* ---------------------------------------------
mainvisual
--------------------------------------------- */
.contents-area .mainvisual {
  background: var(--site-color04);
  padding: var(--s2) 0;
  position: relative;
  overflow: hidden;
}
.contents-area .mainvisual img {
  width: 23rem;
  margin: 0 auto var(--s2);
  display: block;
}
.hero-area .mv-title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.7;
  color: var(--site-color01);
}
.hero-area .mv-title span {
  font-size: 1.7rem;
  background: var(--site-color03);
  color: #fff;
  padding: var(--s1);
}
.mv .hero-area {
  margin: 12rem auto 20rem;
  width: 45rem;
  text-align: center;
}
.hero-area::before {
  content: "";
  position: absolute;
  background: url(./img/mv-bg-hero.png) no-repeat;
  background-size: 55rem auto;
  background-position: center;
  display: block;
  width: 100%;
  height: 100%;
  top: -35px;
  left: 0;
}
.mv .hero-area .layer-box {
    position: relative;
    z-index: 1;
}
.mainvisual::before {
  content: "";
  position: absolute;
  background: url(./img/mv-bg-02.png) no-repeat;
  background-size: 100%;
  background-position: center;
  top: -1.3rem;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  opacity: .4;
}

.mainvisual::after {
  content: "";
  position: absolute;
  background: url(./img/mv-bg-01.png) no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 1rem;
  display: block;
  width: 100%;
  height: 100%;
}
.contents-area .mainvisual img {
  width: 23rem;
  display: block;
}
.contents-area .mainvisual .sub-title {
  font-weight: bold;
  color: var(--site-color08);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
.contents-area .mainvisual {
  padding: var(--s1) 0;
}
.contents-area .mainvisual img {
  width: 18rem;
  margin: var(--s1) auto 0;
}
.contents-area .mainvisual::before {
  display: none;
}

.mainvisual {
  max-width: 100%;
}
.mv {
  max-width: 100%;
}
.mv .hero-area {
  max-width: 100%;
  padding: var(--s3);
}
.hero-area .mv-title span {
  line-height: 1.1;
  padding: var(--s-2);
  font-size: 1.5rem;
}
.hero-area .mv-title {
  font-size: 2.4rem;
  line-height: 1.5;
}
.hero-area::before {
  content: "";
  position: absolute;
  background: url(./img/mv-bg-02.png) no-repeat;
  background-size: 40rem auto;
  background-position: center;
  display: block;
  width: 100%;
  height: 100%;
  top: -24rem;
  left: 0;
  opacity: .5;
}
.contents-area .mainvisual .layer-box img {
  margin: var(--s2) auto;
  width: 16rem;
}
 .mv .hero-area {
    max-width: 100%;
    padding: var(--s3);
    margin: var(--s5) auto 0;
  }
.hero-area::after {
  content: "";
  position: absolute;
  background: url(./img/mv-bg-03-sp.png) no-repeat;
  background-size: 34rem auto;
  background-position: right;
  display: block;
  width: 100%;
  height: 100%;
  top: -17.5rem;
  left: -1rem;
  opacity: .8;
}
.mainvisual::after {
    width: auto;
}
.twb-iconbox01-title a {
    padding: 0 15px 0 0;
}
.mainvisual::before,
.mainvisual::after {
    content: none;
}
.mv .hero-area .layer-box {
    margin: var(--s5) auto 0;
}
}
/* ---------------------------------------------
その他追加したもの
--------------------------------------------- */
#sec01 .more-content-gradation::after {
    content: none;
}

.simplified-chart-spfix thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

.simplified-chart-spfix th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
}

#sec01 .no1,
#sec01 .no2,
#sec01 .no3,
#sec01 .no4,
#sec01 .no5,
#sec01 .no6 {
    position: sticky;
}

#sec01 .more-content-gradation {
    width: calc(-1rem + 100vw);
    height: 200vh !important;
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}

}

.simplified-chart-spfix th.school-name:first-child {
    z-index: 50;
}

.simplified-chart-spfix thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

.simplified-chart-spfix th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
}

#sec01 .no1,
#sec01 .no2,
#sec01 .no3,
#sec01 .no4,
#sec01 .no5,
#sec01 .no6 {
    position: sticky;
}

#sec01 .more-content-gradation {
    height: 80vh;
}

#sec01 .more-content-gradation.is-open {
    overflow: scroll;
}


.mainvisual.lower-m::before,
.mainvisual.lower-m::after {
    content: none;
}

.onb-iconbox03-frame p.details-text {
    line-height: 2;
    padding: var(--s-2);
}