@charset "utf-8";
/*---------------------------------------------
    base settings
*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
  --s13: calc(var(--s1) * 13);
  --s14: calc(var(--s1) * 14);
  /* Color settings */
  --site-color01: #de583b;
  --site-color02: #066e93;
  --site-color03: #66b574;
  --site-color04: #faf7a8;
  --site-color05: #080403;
  --site-color06: #666666;
  --site-color07: #f5f5e1;
  --site-color08: #f4f4f4;
  --site-color09: #eae227;
  --site-color14: #648eee;
  --site-color15: #926fc9;
}
/*
---------------------------------------------
    背景
*/
.bg-01 {
    background: var(--site-color02);
    background-size: cover;
}

.bg-02 {
    background: url('./img/bg-02.svg') repeat top left;
    background-size: cover;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.bg-02 {
		background-size: 100vh;
	}
}

.bg-03 {
    background: var(--site-color07);
    background-size: 100vw;
}

.bg-04 {
    background: var(--site-color04);
    background-size: cover;
}

.bg-05 {
    background: var(--site-color07);
    background-size: cover;
}

.bg-06 {
    background: url('./img/bg-06.jpg') repeat top left;
    background-size: cover;
}

/*------------------------------------------
	bg-01
*/

.bg-01 p:not(class) {
	color: #fff;
}

.bg-01 ul {
	padding-left: 1.5vw;
	background: #fff;
	padding: 3rem;
	border-radius: 2rem;
}

.bg-01 ul li {
	/* color: #fff; */
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 0.5em;
}

.bg-01 .iconbox02-frame p {
	color: var(--site-color05);
	color: #fff;
}

@media screen and (max-width: 767px) {
	.bg-01 ul li {
		font-size: 1.8rem;
	}
	
}


/*------------------------------------------
	btn-settings
*/
.btn-ancher a {
  background: var(--site-color14) url("./img/arrow-01-wht-down.svg") no-repeat center right 2rem/auto 0.8em;
  background-size: 12px auto;
  border: unset;
  color: #fff;
  padding: var(--s2) var(--s4);
}

.btn-ancher::after {
	background: #425d9c;
}

.btn-web a {
    background: var(--site-color01) url(./img/arrow-01-wht-right.svg) no-repeat center right 2rem / auto 0.8em;
    background-size: 14px auto;
    padding: var(--s2) var(--s4);
}

.btn-web::after {
  background-color: #a7442e;
}

.btn-internal a {
    background: var(--site-color14) url(./img/arrow-01-wht-right.svg) no-repeat center right 2rem / auto 1em;
    background-size: 14px auto;
    color: #fff;
    border: none;
    padding: var(--s2) var(--s4);
}

.btn-internal::after {
	background: #425d9c;
}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .btn-link {
        width: 80%;
    }
    .btn-link a {
        text-align: center;
    }
	.btn-ancher, .btn-ancher:after, .btn-web, .btn-web:after, .btn-internal, .btn-internal:after {
		width: 85%;
		margin: 0 auto;
	}
	.btn-ancher a, .btn-ancher:after, .btn-web a, .btn-web:after, .btn-internal a, .btn-internal:after {
		width: 100%;
		margin: 0 auto;
	}
	#low-page .btn-ancher a, #low-page .btn-web a, #low-page .btn-internal a {
		margin: 3rem auto;
	}
}

/*
---------------------------------------------
    accordion
*/
.acc-more-btn {
	width: 32rem;
	margin: 0 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: #fff url('./img/accordion-plus.svg') no-repeat 95% center;
	display: block;
	text-align: center;
	font-weight: 700;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}
.acc-more-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #D6D6D6;
	border-width: 0 1px 1px 0;
	transform: translate(.6rem, .6rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.acc-more-btn:hover span{
	transform: translate(.6rem, .6rem);
}
.acc-more-btn.is-open span {
	background: #FFEDAB url('./img/accordion-minus.svg') no-repeat 95% center;
}
.more-content {
	display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}
	.acc-more-btn:hover span {
		transform: none;
	}
}

/*------------------------------------------
    MV
*/
.mainvisual {
	background: url(./img/mv-bg.jpg) left top repeat;
	background-size: 1.72rem;
	margin-top: 0;
	padding: var(--s3) 0 var(--s10);
	position: relative;
	overflow: hidden;
}

.mainvisual.lower {
	padding: var(--s3) var(--s3) var(--s2);
}

.mainvisual.lower .picture {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.mainvisual {
		padding: var(--s3) 0 var(--s10);
		margin-bottom: 6rem;
	}
	.mainvisual.lower {
		padding: var(--s2) 0 var(--s3);
		margin-bottom: 0;
	}
    #pankuzuWrap {
        padding: 0 0 1rem;
    }
}

.mainvisual:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: 0;
	bottom: 0;
	border-style: solid;
	border-color: transparent transparent var(--site-color02) transparent;
	border-width: 0px 0px 140px 110vw;
	pointer-events: none;
	z-index: 0;
}

.mainvisual:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: 0;
	bottom: 0;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	border-width: 0px 0px 90px 100vw;
	pointer-events: none;
	z-index:0;
}

.mainvisual-inner {
	width: min(1100px, calc(100% - 3rem));
	margin: 0 auto;
}

.mainvisual-inner:before {
	content: "";
	position: absolute;
	width: 8.0rem;
	height: 8.5rem;
	left: calc(50% - 62rem);
	bottom: 16rem;
	background: url(img/MV-orn.svg) left bottom no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 50;
}

.mainvisual-inner:after {
	content: "";
	position: absolute;
	background: url(img/mv-img.png) right center no-repeat, url(img/MV-orn.svg) right top no-repeat;
	background-size: contain, 8rem;
	width: 640px;
	height: 554px;
	right: calc(50% - 640px);
	bottom: calc(50% - 277px);
	z-index: 10;
}

@media screen and (max-width: 767px) {
	.mainvisual:before {
		border-width: 0px 0px 4rem 110vw;
	}

	.mainvisual:after {
		border-width: 0px 0px 2rem 100vw;
	}

	.mainvisual-inner:after {
		content: none;		
	}
}

.right-img-logo {
	width: min(1300px, 100%);
	margin: 0 auto 3rem;
	top: 0;
	position: relative;
	height:100px;
	overflow: hidden;
}
.mainvisual.lower .right-img-logo {
	width: 100%;
}

.right-img-logo:hover{
	opacity: 0.6;
}
.right-img-logo img {
	position: absolute;
	width: 250px;
	height: 100%;
	left: 0;
	text-align: center;
	margin: auto;
}
@media screen and (max-width: 767px) {
	.mainvisual.lower .right-img-logo {
		width: 25rem;
	}
	.right-img-logo img {
	position: absolute;
	width: 100%;
	left: 0;
	text-align: center;
	margin: auto;
	}
	.right-img-logo {
		width: 25rem;
		height: 11rem;
		margin: 0 auto var(--s2);
		text-align: center;
	}
}

.mainvisual-inner .right-img-catch {
	font-size: 3.4rem;
	color: var(--site-color05);
	width: min(570px,100%);
	line-height: 1.3;
}

.mainvisual-inner .right-img-catch .txt-g,
.mainvisual-inner .right-img-catch .txt-o,
.mainvisual-inner .right-img-catch .txt-n {
	font-size: 5.0rem;
}

@media screen and (max-width: 767px) {
	.mainvisual-inner .right-img-catch {
		font-size: 5.5vw;
		text-align: center;
		line-height: 12vw;
	}
	.mainvisual-inner .right-img-catch .txt-g,
	.mainvisual-inner .right-img-catch .txt-o,
	.mainvisual-inner .right-img-catch .txt-n {
		font-size: 7.5vw;
	}
}

.mainvisual-inner .right-img-catch .txt-g {
	color: var(--site-color03);
}

.mainvisual-inner .right-img-catch .txt-o {
	color: var(--site-color01);
}

.mainvisual-inner .right-img-catch .txt-n {
	background: var(--site-color02);
	color: #fff;
	padding: 0 var(--s3) calc(var(--s1) - 0.3rem);
	margin-right: var(--s1);
	border-radius: 16px;
	line-height: 1.5;
	justify-content: center;
	align-items: center;
}

.mv-txt {
	line-height: 1.9;
	width: min(570px, 100%);
}

.mainvisual-inner .btn-area {
	 width: min(570px, 100%);
}

.mainvisual-inner .btn-ancher {
	width: 400px;
}

@media screen and (max-width: 767px) {
	.mainvisual-inner .btn-ancher {
		width: 85%;
	}	
}


/*------------------------------------------
    section
*/
.section01,
.section02,
.section03,
.section05,
.section06,
.section07,
.section10,
.section11,
.section12,
.section13 {
	padding: 120px 0 calc(120px + 5rem);
	border-radius: 5rem 5rem 0 0;
	margin-top: -5rem;
	margin-bottom: -5rem;
}
.section06 {
	padding: 120px 0 calc(120px + 5rem);
	border-radius: 5rem 5rem 0 0;
	margin-top: 0;
	margin-bottom: -5rem;
}
.section10 {
	margin-top: 0;
}
.section12 {
	padding-top: calc(12rem + 6rem);
	padding-bottom: 6rem;
}

@media screen and (max-width: 767px) {
	.section01,
	.section02,
	.section03,
	.section05,
	.section06,
	.section07,
	.section11,
	.section12,
	.section13 {
		margin: 0;
		padding: 0;
	}
	.section10 {
		padding: 9rem 0 16rem;
	}
}


/*------------------------------------------
	section04
*/
.section04 {
	padding: 0 0 120px;
}

#low-page .section04 {
	padding: 0 0 120px;
	margin: 120px 0 -120px;
	position: relative;
	width: 99.4vw;
	margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
	#low-page .section04 {
		padding: 0 calc(var(--s1) + var(--s-2)) 5rem;
		margin: 5rem -2.7vw -10rem;
	}

}


.section04 .l-grid-three > div:nth-child(2) .title-catch {
	    background: var(--site-color03);
}

.section04 .l-grid-three > div:nth-child(2) > div:nth-child(3) .arrow-title {
	background-color: var(--site-color03);
}

.section04 .l-grid-three > div:nth-child(2) > div:nth-child(3) .arrow-title::after {
	border-right: 1.5rem solid var(--site-color03);
    border-bottom: 1.5rem solid var(--site-color03);
}

.section04 .l-grid-three > div:nth-child(3) .title-catch {
	    background: var(--site-color15);
}

.section04 .l-grid-three > div:nth-child(3) > div:nth-child(3) .arrow-title {
	background-color: var(--site-color15);
}

.section04 .l-grid-three > div:nth-child(3) > div:nth-child(3) .arrow-title::after {
	border-right: 1.5rem solid var(--site-color15);
    border-bottom: 1.5rem solid var(--site-color15);
}

/*------------------------------------------
	section05
*/
#second .onb-img-title-area {
	background: var(--site-color03);
}

#second .onb-m-title5 span::before,
#second .onb-m-title5 span::after {
    background-color: var(--site-color03);
}

#third .onb-img-title-area {
	background: var(--site-color15);
}

#third .onb-m-title5 span::before,
#third .onb-m-title5 span::after {
    background-color: var(--site-color15);
}

.section05 .onb-iconbox02-frame > div:nth-child(2) .onb-iconbox02-catch {
	background: url('./img/number-icon-2.svg') no-repeat center left;
	background-size: 4.8rem auto;	
}

.section05 .onb-iconbox02-frame > div:nth-child(3) .onb-iconbox02-catch {
	background: url('./img/number-icon-3.svg') no-repeat center left;
	background-size: 4.8rem auto;	
}

#second .onb-iconbox02-catch {
	border-bottom: 2px solid var(--site-color03);
}

#second  .l-stack-large > div:nth-child(3) > div  .onb-iconbox04-catch {
	border-bottom: 3px solid var(--site-color03);
}

#third .onb-iconbox02-catch {
	border-bottom: 2px solid var(--site-color15);
}

#third  .l-stack-large > div:nth-child(3) > div  .onb-iconbox04-catch {
	border-bottom: 3px solid var(--site-color15);
}

.section08,
.section09 {
	padding: 0;
}

.section08.l-pickup-contents01 {
	CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
	background-color: var(--site-color07);
	background-size: 1.72rem;
	width: 100%;
	background-size: 16px 16px;
	background-position: 50% 50%;
	background-image: repeating-linear-gradient( 90deg, rgba(0,0,0,.05) , rgba(0,0,0,.05) 1px, transparent 1px, transparent 16px),repeating-linear-gradient( 0deg, rgba(0,0,0,.05) , rgba(0,0,0,.05) 1px, var(
	--site-color07) 1px, var(--site-color07) 16px);
	padding: 0;
}

@media screen and (max-width: 767px) {
	.section08.l-pickup-contents01 {
		border-radius: 0;
	}
}

.section09.l-pickup-contents01 {
	background: var(--site-color02);
}


.section09.l-pickup-contents01 .pickup-contents01-catch,
.section09.l-pickup-contents01 .pickup-contents01-catch a,
.section09.l-pickup-contents01 p:not(class) {
	color: #fff;
}

/*------------------------------------------
	.section02
*/
.section02 .section-title03 {
	color: #fff;
}

.section02 .section-title03 .txt_bold {
	font-size: 4.2rem;
	color: #f5eb00;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section02,
    .section03,
    .section07,
    .section08,
    .section11,
    .section12 {
    	padding: 9rem 0;
    }
    .section01 {
		margin-top: 0;
		margin-bottom: 6rem;
	}
	
	.section02 .section-title03 .txt_bold {
		font-size: 3.2rem;
	}

	.section04 {
    	padding: 0 0 11rem;
    }

	.section05 {
		margin-top: -5rem;
		padding: 9rem 0;
	}
	 .section06 {
		 padding: 9rem 1.5rem 0;
	}
	 .section11 {
		 padding: 9rem 0;
	}
    .section12 {
    	padding: 9rem 0 0;
    }
	.section13 {
    	padding: 9rem 0 6rem;
    }
}

/*------------------------------------------
	txt-area
*/
.txt-area {
	padding: 1rem 2rem;
}

/*
---------------------------------------------
    navigation02 ※TOP、下層共通
*/
.header-area-upper {
	padding: calc(var(--s1) - 0.5rem) var(--s1) var(--s1);
	text-align: right;
	background: var(--site-color05);
	color: #fff;
}
.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
	color: #fff;
	padding-left: 1rem;
}
.header-title::before {
	content: "PR";
	padding: .2rem 0.5rem;
	font-weight: 700;
	color: var(--site-color05);
	background-color: #fff;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -2.4rem;
}
.header-title a {
	text-decoration: none;
	color: #fff;
}
.header-title a:hover {
	text-decoration: underline;
}

/*------------------------------------------
	sp settings
*/

@media screen and (max-width: 767px) {
	.header-area-upper {
	    padding-left: var(--s4);
	    text-align: left;
	}
}

.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(--s7);
	background: #333;
	border-radius: 50%;
	display: block;
	position: fixed;
	top: var(--s3);
	right: var(--s1);
	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.8rem;
}
.gnavi-btn span:nth-of-type(3) {
	top: 4.0rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
	transform: translateY(1.1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
	opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
	transform: translateY(-1.1rem) 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: #F5F5F5;
	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 #333;
	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 #333;
	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);
}

/*------------------------------------------
	related-article01
*/
.related-article01-frame {
    border: 5px solid #DBDBDB;
    border-radius: 15px;
    margin: var(--s6) auto;
    padding: var(--s2)  var(--s4) var(--s4) var(--s4);
    background: #fff;
    position: relative;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) 0;
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    border-bottom: 2px dotted #707070;
}
.related-article01-list {
    padding: var(--s2) 0 var(--s2) var(--s2);
    font-weight: 700;
}
.related-article01-list li {
    margin: 0;
    padding-left: 3rem;
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.related-article01-list li::before {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: var(--site-color01);
    position: absolute;
    top: .6rem;
    left: 0;
}
.related-article01-list a {
    display: block;
    text-decoration: none;
}
.related-article01-list a:hover {
    opacity: 0.6;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .related-article01-frame {
        padding: var(--s3);
    }
    .related-article01-title {
        padding: 0 0 var(--s2);
    }
    .related-article01-list {
        padding: 0;
    }
}

/*
---------------------------------------------
    pickup-contents01-l ※MV
*/
.l-pickup-contents01 {
    width: 100%;
    min-height: 52rem;
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    position: relative;
}
.l-pickup-contents01--reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.l-pickup-contents01-box {
    flex: 1;
}
.l-pickup-contents01-box img {
    min-height: 52rem;
    display: block;
    object-fit: cover;
}
.l-pickup-contents01-content {
    max-width: 50rem;
    padding: 0 var(--s8);
    position: relative;
    z-index: 5;
}
.l-pickup-contents01-content--reverse {
    margin-left: auto;
}
.pickup-contents01-catch {
    margin-bottom: 1rem;
    color: #2EAD70;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
}
.btn-pickup-contents01 {
    margin: var(--s5) auto 0 auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-pickup-contents01 {
        min-height: inherit;
        flex-direction: column;
    }
    .l-pickup-contents01-content {
        max-width: inherit;
        padding: var(--s4) var(--s2);
    }
    .l-pickup-contents01-box img {
        min-height: inherit;
        object-fit: inherit;
    }
    .pickup-contents01-catch {
        font-size: 2.4rem;
    }
}

/*------------------------------------------
 目次
*/
.onb-index01-frame {
    width: 50rem;
    margin: 6rem auto;
    border: 5px solid #DBDBDB;
    border-radius: 20px;
}

.section01 .onb-index01-frame {
	margin: 0 auto 9rem;
}

.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3);
    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;
    position: relative;
    cursor: pointer;
}
.onb-index01-title::before {
	content: "";
	position: absolute;
	display: block;
	background: var(--site-color01);
	border-radius: 15px;
	width: 7px;
	height: 28px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.onb-index01-title::after {
	content: "";
	width: 2.7rem;
	height: 2.7rem;
	background: url('./img/accordion-plus.svg') no-repeat 0 0 /100% auto;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translate(0, -50%);
}
.onb-index01-title.is-open::after {
	background-image: url('./img/accordion-minus.svg');
}
.onb-index01-chapter {
    padding: var(--s3) var(--s1) var(--s2) var(--s1);
    font-weight: 700;
    border-top: 2px dotted #707070;
}
.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(--s1);
    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.0em;
}
.onb-index01-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-index01-chapter-h-three::before {
    content: "└";
}
.more-content {
    display: none;
}
.onb-index01-content {
    background-color: #fff;
    margin-top: 1rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-index01-frame,
	.section01 .onb-index01-frame {
        width: 85vw;
        margin-bottom: 6rem;
    }
	.onb-index01-wrap {
	    margin: 0 auto;
	    padding: var(--s1) var(--s3);
	    background-color: transparent;
	    position: relative;
	}
	.onb-index01-chapter {
		padding-right: 0;
	}
}

/*------------------------------------------
 top_ttl
*/

/* section-title01 */
.section-title01-frame {
    padding-top: 24rem;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
	.section-title01-frame {
		padding-top: 20rem;
	}
}

#low-page .l-center .section-title01-bg {
    padding: 0;
	background: none;
}
@media screen and (max-width: 767px) {
    #low-page .l-center .section-title01-bg {
        padding: var(--s4) var(--s2) var(--s3) var(--s2);
        background: unset;
    }
}
#low-page .section-title01-frame::before {
	background: none;
}
.section-title01-frame {
	padding-top: 12rem;
	margin: 0 calc(50% - 49vw);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
   .section-title01-frame {
		padding-top: 9rem;
		margin: 0 calc(50% - 50vw);
	}
	.section-title01-frame::before {
	    content: "";
	    width: 110vw;
	    min-height: 59.8rem;
	    background: url("./img/section-title01-bg.jpg") no-repeat center top;
	    background-size: 100%;
	}
	.l-center .l-center {
	    padding: 0;
  }
}

.section-title01-bg {
    padding: var(--s4) var(--s7) 0;
    background: linear-gradient(to bottom, rgba(245, 245, 225, 0.4), rgba(245, 245, 225, 0));
    position: relative;
    z-index: 2;
}
.section-title01 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    position: relative;
}
.section-title01::before {
    content: "SELECTION";
    padding: 0 var(--s2);
    font-size: 1.8rem;
    transform: translateX(-50%);
    background: var(--site-color03);
    color: #fff;
    position: absolute;
    top: -3rem;
    left: 50%;
    z-index: 3;
    border-radius: 2rem;
}
.section-title01::after {
    content: "";
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--site-color09);
    position: absolute;
    top: -2rem;
    left: 50%;
    z-index: 2;
}
.section-title01 .small {
	font-size: 2.1rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title01-bg {
        padding: var(--s4) var(--s2) var(--s3) var(--s2);
        background: unset;
    }
    .section-title01 {
        margin-bottom: var(--s3);
        font-size: 2.4rem;
    }
    .section-title01::before {
        font-size: 1.4rem;
    }    
}

/* section-title02 */
.section-title02-frame {
    /* margin-top: 6rem; */
    text-align: center;
    position: relative;
}
.section-title02 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
.section-title02-sub {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--site-color02);
    text-align: center;
    position: absolute;
    top: -1.5em;
    left: 0;
}
.section-title02-sub span {
    width: 100%;
    padding: 0 var(--s2);
    position: relative;
    background-color: #fff;
}
.section-title02-sub span::before,
.section-title02-sub span::after {
    content: "";
    width: 16rem;
    height: 5px;
    background-color: #EFEFEF;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    z-index: 2;
}
.section-title02-sub span::before {
    left: -16rem;
}
.section-title02-sub span::after {
    right: -16rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title02 {
        font-size: 2.4rem;
    }
    .section-title02-sub span::before,
    .section-title02-sub span::after {
        width: 7rem;
        height: 3px;
    }
    .section-title02-sub span::before {
        left: -7rem;
    }
    .section-title02-sub span::after {
        right: -7rem;
    }
}

/* section-title03 */
.section-title03 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    line-height: 1.5;
}

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

/*------------------------------------------
	section-title04
*/
.section-title04 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 3.2rem;
	line-height: 1.5;
}
.section-title04 .small {
	font-size: 2.4rem;
}
.section-title04::after {
    content: "";
    width: 10rem;
    height: 6px;
    background-color: var(--site-color01);
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
    line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title04 {
        font-size: 2.6rem;
        line-height: 1.5;
    }
	.section-title04 .small {
		font-size: 1.9rem;
	}
	.section06 .section-title04 {
		margin-top: 0;
	}
}

/*------------------------------------------
	1box_m-title05
*/
.onb-m-title5 {
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}
.onb-m-title5 span {
	display: flex;
	align-items: center;
}
.onb-m-title5 span::before,
.onb-m-title5 span::after {
	content: "";
	min-width: 5%;
	height: 3px;
	background-color: var(--site-color02);
	flex-grow: 1;
	line-height: 1.5;
}
.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: 2.0rem;
	}
	.onb-m-title5 span::before,
	.onb-m-title5 span::after {
		width: 1rem;
	}
	.onb-m-title5 span::before {
		margin-right: var(--s1);
	}
	.onb-m-title5 span::after {
		margin-left: var(--s1);
	}
}

/*------------------------------------------
	icon-head01
*/
.icon-head01 {
	margin-top: var(--s3);
	margin-bottom: var(--s5);
	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-color07);
	position: relative;
}
.icon-head01::before {
	content: "";
	width: 12rem;
	height: 12.23rem;
	background: url('./img/icon-check-dummy.svg') no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -4rem;
}
/*------------------------------------------------------------
    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: 2.0rem;
	}
	.icon-head01::before {
		content: "";
		width: 8rem;
		height: 8rem;
		left: -3.2rem;
	}
}

/*------------------------------------------
	ttl-hover
*/
.section-title01 a,
.section-title02 a,
.section-title03 a,
.section-title04 a,
.m-title02 a,
.onb-com-box01-r-catch a,
.twb-m-title02 a,
.thb-iconbox01-title a,
.pickup-contents01-catch a {
    display: block;
    background: url(./img/arrow-01-black-right.svg) no-repeat center right 12% / auto 2rem;
    text-decoration: none;
}

.twb-m-title02 a {
    background: url(./img/arrow-01-wht-right.svg) no-repeat center right 0 / auto 2rem;
    background-size: 15px auto;
    padding-right: 3rem;
    -webkit- transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
}

.m-title02 a,
.thb-iconbox01-title a,
.onb-com-box01-r-catch a,
.pickup-contents01-catch a {
    background: url(./img/arrow-01-black-right.svg) no-repeat center right 0 / auto 2rem;
    background-size: 15px auto;
    padding-right: 3rem;
    -webkit- transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
}

.section-title01 a:hover,
.section-title02 a:hover,
.section-title03 a:hover,
.section-title04 a:hover,
.m-title02 a:hover,
.onb-com-box01-r-catch a:hover,
.twb-m-title02 a:hover,
.thb-iconbox01-title a:hover,
.pickup-contents01-catch a:hover {
	opacity: 0.6;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title01 a,
	.section-title02 a,
	.section-title03 a,
	.section-title04 a,
	.m-title02 a,
	.onb-com-box01-r-catch a,
	.twb-m-title02 a,
	.thb-iconbox01-title a,
	.pickup-contents01-catch a {
	    background: url(./img/arrow-01-black-right.svg) no-repeat center right 0 / auto 2rem;
	}
	.twb-m-title02 a {
	    background: url(./img/arrow-01-wht-right.svg) no-repeat center right 0 / auto 2rem;
	}
}

/*------------------------------------------
	pickup-contents01-l
*/
.l-pickup-contents01 {
    width: 100%;
    min-height: 52rem;
    display: flex;
    align-items: center;
    background-color: #e2e2e2;
    position: relative;
}
.l-pickup-contents01--reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.l-pickup-contents01-box {
    flex: 1;
}
.l-pickup-contents01-box img {
    min-height: 52rem;
    display: block;
    object-fit: cover;
}
.l-pickup-contents01-content {
    max-width: 50rem;
    padding: 0 var(--s8);
    position: relative;
    z-index: 5;
}
.l-pickup-contents01-content--reverse {
    margin-left: auto;
}
.pickup-contents01-catch {
    margin-bottom: 1rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
}
.btn-pickup-contents01 {
    margin: var(--s5) auto 0 auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-pickup-contents01 {
        min-height: inherit;
        flex-direction: column;
    }
    .l-pickup-contents01-content {
        max-width: inherit;
        padding: var(--s4) var(--s2);
    }
    .l-pickup-contents01-box img {
        min-height: inherit;
        object-fit: inherit;
    }
    .pickup-contents01-catch {
        font-size: 2.4rem;
    }
}

/*------------------------------------------
	pickup-contents01-r
*/
.l-pickup-contents01 {
    width: 100%;
    min-height: 52rem;
    display: flex;
    align-items: center;
    background-color: #e2e2e2;
    position: relative;
}
.l-pickup-contents01-box {
    flex: 1;
}
.l-pickup-contents01-box img {
    min-height: 60rem;
    display: block;
    object-fit: cover;
}
.l-pickup-contents01 img {
	/* padding-right: var(--s5); */
}
.l-pickup-contents01--reverse img {
	/* padding-left: var(--s5); */
	padding-right: 0;
}
.l-pickup-contents01-content {
    max-width: 52rem;
    padding: 0;
    position: relative;
    z-index: 5;
}
.section08 .l-pickup-contents01-content {
    padding: 0 var(--s5) 0 0;
}
.section09 .l-pickup-contents01-content {
    padding: 0 0 0 var(--s5);
}
@media screen and (max-width: 767px) {
	.section08 .l-pickup-contents01-content,
	.section09 .l-pickup-contents01-content {
	    padding: var(--s8) var(--s2);
	}
}
.pickup-contents01-catch {
    margin-bottom: 1rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site-color02);
}

.pickup-contents01-catch span,
.pickup-contents01-catch a span {
	color: var(--site-color05);
}

.pickup-contents01-catch a {
    margin-bottom: 1rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site-color02);
}
.pickup-contents01-catch .small {
	font-size: 2.0rem;
	display: contents;
}
.pickup-contents01-catch .pr {
	background: #000;
	padding: 0 1rem 0.4rem;
	margin-right: 3rem;
	text-align: center;
	color: #fff;
}
.btn-pickup-contents01 {
    margin: var(--s5) auto 0 auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-pickup-contents01 {
        min-height: inherit;
        flex-direction: column;
    }
    .l-pickup-contents01-content {
        max-width: inherit;
        padding: var(--s4) var(--s2) var(--s6);
    }
    .l-pickup-contents01-box img {
        min-height: inherit;
        object-fit: inherit;
        padding-left: 0;
        padding-right: 0;
		margin: 2rem 0;
    }
    .pickup-contents01-catch,
	.pickup-contents01-catch a {
        font-size: 2.4rem;
		text-align: center;
    }
	.pickup-contents01-catch .small {
		font-size: 1.8rem;
	}
}

/*------------------------------------------
	right-img
*/
.right-img-box {
	display: flow-root;
}
.right-img {
	width: 40%;
	margin-left: var(--s3);
	padding-bottom: var(--s1);
	float: right;
}
.right-img-catch {
	margin-bottom: 1.6rem;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.5;
}
.right-img-catch span {
	font-size: 2.8rem;
	color: var(--site-color01);	
}

#page .right-img-catch,
#low-page .right-img-catch {
	color: var(--site-color01);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.right-img {
		width: 76vw;
		margin: 0 auto;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
	}
	.section01 .right-img-catch {
		text-align: center;
	}
}

/*------------------------------------------
	left-img
*/
.left-img-box {
	display: flow-root;
	margin: 6rem 0;
}
.left-img {
	width: 40%;
	margin-right: var(--s4);
	padding-bottom: var(--s1);
	float: left;
}
.left-img-catch {
	margin-bottom: 1.6rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--site-color01);
}
#page .left-img-catch,
#low-page .left-img-catch {
	color: var(--site-color01);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.left-img {
		width: 100%;
		margin-right: 0;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
	}
}

/*------------------------------------------
	center-img
*/
.center-img {
	max-width: 64%;
	margin: 0 auto 1.5rem;
}

#low-page .center-img {
	margin: 3rem auto;
}

.center-img-catch {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

#page .center-img-catch,
#low-page .center-img-catch {
	color: var(--site-color01);
}

.center-img-catch span {
	color: var(--site-color01);
	font-size: 2.8rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.center-img {
		max-width: 100%;
		margin-top: 3rem;
	}
}

/*------------------------------------------
	iconbox02
*/
.iconbox02-frame {
	padding: var(--s3) var(--s4);
	/* background-color: #Fff; */
	border-radius: 20px;
}
.iconbox02-catch {
	padding: var(--s2) var(--s1) var(--s4) var(--s7);
	color: var(--site-color01);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 2px dotted #707070;
	background: url('./img/dummy-icon.png') no-repeat 0 10px;
	background-size: 4.8rem auto;
}
.iconbox02-caption {
	text-align-last: left;
}
@media screen and (max-width: 767px) {
	.iconbox02-frame {
		padding: var(--s1) var(--s2) var(--s2);
	}
	.iconbox02-catch {
		padding-bottom: var(--s2);
		background-position: 0 15px;
	}
	.iconbox02-frame p {
		line-height: 1.6;
	}
}

/*------------------------------------------
    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);
    }
}

.onb-img-title-box {
	width: calc(100% + 6.4rem);
	margin-left: -3.2rem;
}
.section05 .onb-img-title-box {
	margin-bottom: 3rem;
}
.onb-img-title-area {
	display: flex;
	background-color: var(--site-color02);
	align-items: end;
}
.onb-img-title-image {
	width: 20%;
	padding-left: var(--s4);
}
.onb-img-title-image img {
	margin: 1rem 0;
	width: 100%;
	/* border-radius: 50%; */
	width: 158px;
	height: 158px;
	clip-path: circle(50%);
	object-fit: cover;
}
.onb-img-title {
	width: 80%;
	padding: var(--s2) var(--s2) var(--s3) var(--s1);
	margin-left: -10%;
	color: #fff;
	line-height: 1.5;
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
}
.onb-img-title-sub {
	margin-bottom: 1.5rem;
	padding: var(--s1) var(--s2);
	background-color: #fff;
	color: var(--site-color05);
	font-size: 2.4rem;
	line-height: 1.5;
	display: inline-block;
	border-radius: 16px;
}
.onb-img-title-small {
	font-size: 1.4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-img-title-area {
		display: block;
	}
	.onb-img-title-box {
		width: calc(100% + 3.2rem);
		margin-left: -1.6rem;
	}
	.onb-img-title-image {
		width: 0;
		padding-left: 0;
		display: none;
	}
	.onb-img-title-image img {
		display: none;
	}
	.onb-img-title {
		width: 60%;
		font-size: 2.4rem;
	}
	.section05 .onb-img-title-area .onb-img-title {
	    width: 100%;
	    font-size: 6vw;
	    margin-left: 0;
	    padding: var(--s2) var(--s2) var(--s3) calc(var(--s2) + 10rem);
	    padding-bottom: 4.5rem;
	    position: relative;
	    /* text-align: left; */
	   }
	.section05 .onb-img-title-area .onb-img-title::before {
		content: "";
		position: absolute;
		background: url(img/section05img1a.png) center;
		background-size: cover;
		width: 38vw;
		height: calc(100% - 11.5rem);
		left: 2rem;
		bottom: 1rem;
		width: 10rem;
		height: 10rem;
		clip-path: circle(50%);
		object-fit: cover;
	}
	.section05 .onb-img-title-area .onb-img-title-sub {
        width: calc(100% + 10rem);
        margin-left: -10rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
	#second .onb-img-title-area .onb-img-title::before {
		background: url(img/section05img2a.png) center;
		background-size: cover;
	}
	#second .onb-img-title-area .onb-img-title {
	    width: 100%;
	    font-size: 6vw;
	    margin-left: 0;
	    padding-bottom: 3rem;
	    position: relative;
	    /* text-align: left; */
	   }
	#second .onb-img-title-area .onb-img-title-sub {
        width: calc(100% + 10rem);
        margin-left: -10rem;
        margin-bottom: 2rem;
        text-align: center;
    }
	#third .onb-img-title-area .onb-img-title::before {
		background: url(img/section05img3a.png) center;
		background-size: cover;
	}
}

/*------------------------------------------
	1box_iconbox02
*/
.onb-iconbox02-frame {
	padding: var(--s4);
	background-color: var(--site-color07);
}
.onb-iconbox02-catch {
	padding: var(--s2) var(--s1) var(--s3) var(--s7);
	margin-bottom: 2rem;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 2px solid var(--site-color02);
	background: url('./img/number-icon-1.svg') no-repeat center left;
	background-size: 4.8rem auto;
}
.onb-iconbox02-caption {
	text-align-last: left;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-iconbox02-frame {
		padding: var(--s2);
	}
	.onb-iconbox02-catch {
		padding-right: 0;
		font-size: 1.8rem;
	}
}

/*------------------------------------------
	1box_iconbox04
*/
.onb-iconbox04-frame {
	padding: var(--s2);
	background-color: var(--site-color08);
	justify-content: flex-start;
}
.onb-iconbox04-catch {
	padding: 0 0 .8rem 4.6rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 3px solid var(--site-color02);
	background: url('./img/dialog.png') no-repeat center left;
	background-size: 3.8rem auto;
}
.onb-iconbox04-caption {
	text-align-last: left;
}

/*------------------------------------------
	1box_com-box01-l
*/
.onb-com-box01-l-frame {
	padding: var(--s4);
	background-color: #fff;
	border-radius: 2rem;
}
.l-onb-com-box01-l {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: var(--s3);
}
.l-onb-com-box01-l__side {
	width: calc((100% - var(--s3))*.2);
}
.l-onb-com-box01-l__side img {
	max-width: 100%;
}
.section11 .l-onb-com-box01-l__side img,
.section11 .l-onb-com-box01-r__side img {
	border-radius: 50%;
}
.l-onb-com-box01-l__main {
	width: calc((100% - var(--s3))*.8);
}
.onb-com-box01-l-imgcap {
	margin-top: var(--s1);
	text-align: center;
	font-size: 1.2rem;
}
.onb-com-box01-l-catch {
	margin-bottom: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
}
.onb-com-box01-l-caption {
	text-align: left;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-com-box01-l {
		display: flow-root;
	}
	.l-onb-com-box01-l__side {
		width: 30%;
		margin-left: var(--s2);
		margin-bottom: var(--s2);
		float: right;
	}
	.l-onb-com-box01-l__main {
		width: 100%;
	}
	.onb-com-box01-l-catch {
		font-size: 1.8rem;
	}
	.onb-com-box01-l-imgcap {
		font-size: 1rem;
	}
}

/*------------------------------------------
	1box_com-box01-r
*/
.onb-com-box01-r-frame {
	padding: var(--s4);
	background-color: #fff;
	border-radius: 2rem;
}
.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);
}
.onb-com-box01-r-catch {
	margin-bottom: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--site-color02);
}
.onb-com-box01-r-catch a {
	color: var(--site-color02);
}
.onb-com-box01-r-imgcap {
	margin-top: var(--s1);
	text-align: center;
	font-size: 1.2rem;
}
.onb-com-box01-r-caption {
	text-align-last: left;
}
/*------------------------------------------------------------
    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;
	}
	.section11 .onb-com-box01-r-catch {
		font-size: 4.8vw;
	}
	.onb-com-box01-r-imgcap {
		font-size: 1rem;
	}
}

/*------------------------------------------
	com-box04-r
*/
.com-box04-frame {
	padding: var(--s4);
	margin: 6rem 0;
	border: 5px solid var(--site-color02);
	border-radius: 20px;
}
.com-box04-title {
	margin-bottom: var(--s4);
	padding: var(--s1) var(--s3);
	background-color: var(--site-color02);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	border-radius: 15px;
}
.com-box04-area {
	display: flex;
	gap: var(--s4);
}
.com-box04-text {
	width: calc((100% - var(--s4))*.8);
}
.com-box04-img {
	width: calc((100% - var(--s4))*.2);
	text-align: center;
}
.com-box04-frame .com-box04-img img {
	border-radius: 50%;
	border: 1px solid #ccc;
}
.com-box04-img span {
	margin-top: var(--s1);
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
.com-box04-catch {
	margin-bottom: var(--s2);
	color: var(--site-color01);
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.com-box04-frame {
		padding: var(--s2);
	}
	.com-box04-area {
		flex-direction: column;
		gap: var(--s2);
	}
	.com-box04-title {
		margin-bottom: var(--s2);
		font-size: 1.8rem;
		padding: var(--s1) var(--s2);
	}
	.com-box04-img {
		width: 50%;
		margin: 0 auto;
	}
	.com-box04-text {
		width: 100%;
	}
	.com-box04-catch {
		font-size: 1.8rem;
	}
}

/*------------------------------------------
    2box column settings
*/
.column-medium {
    border: none;
    background: #fff;
}
.l-grid-two .column-medium {
    padding: 0 var(--s4) var(--s1);
}

.twb-box-full {
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
}
.column-medium  .txt-area {
	padding: 2rem 2rem;
}
.section05 .column-medium {
	padding-top: 0;
}
.section05 .txt-area {
	padding: 1rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .column-medium {
        padding: var(--s2);
    }
	.l-grid-two .column-medium {
		padding: 0 var(--s2) var(--s2);
	}
    .twb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
	.column-medium .txt-area {
		padding: 0 0 2rem;
	}
	.section03 .column-medium .txt-area {
		padding; 2rem 2rem 2rem:
	;
		padding: 2rem 2rem 1rem;
	}

}

/*------------------------------------------
	2box_icon-title-r
*/
.twb-icon-title-area {
	background-color: var(--site-color02);
	position: relative;
}
.twb-icon-title-obj-r {
	width: 7rem;
	height: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: .3rem solid #F16915;
	border-radius: 11rem;
	position: absolute;
	top: calc(50% - 3.5rem);
	left: -.8rem;
}
.twb-icon-title-obj-r__inner {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
}
.twb-icon-title-r {
	padding: 1.6rem 1.6rem 1.6rem 7.5rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
}
.twb-icon-title-small {
	font-size: 1.8rem;
}

.section-title06-frame {
    position: relative;
}
.section-title06-frame::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #fff;
    border-radius: 0 15px 15px 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    background: url(./img/mv-bg.jpg) left top repeat;
    background-size: 1.72rem;
}
.section-title06 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 1;
    background: url(./img/mv-bg.jpg) left top repeat;
    background-size: 1.72rem;
    border-radius: 0 5rem 5rem 0;
}
.section-title06 .small {
	font-size: 2.4rem;
	background: var(--site-color03);
	padding: 0 2rem;
	color: #fff;
	border-radius: 5rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title06 {
        padding: var(--s2) var(--s2);
        font-size: 2.6rem;
        display: block;
        padding-top: 6rem;
    }
	.section-title06 .small {
		font-size: 2.0rem;
		display: block;
		margin: -3rem 0;
		padding: 1rem;
	}
    
}

/*------------------------------------------
	2box_m-title02
*/
.twb-m-title02 {
	padding: 1.6rem 3rem;
	margin-bottom: 2rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	background-color: var(--site-color02);
}

.twb-m-title02 a {
	color: #fff;
}

.l-grid-two .column-medium {
  background: var(--site-color08);
}
.section12 .l-grid-two .column-medium {
  padding-bottom: 3rem;
}

/*------------------------------------------
    3box column settings
*/
.column-small {
    padding: 0 var(--s2)var(--s2);
    background: #fff;
    border: 1px solid #DBDBDB;
}
.thb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
}

/*------------------------------------------
	3box_catch
*/
.title-catch {
	padding: 1.6rem .8rem 1.6rem .8rem;
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: #fff;
	/* border-bottom: 0.5rem solid var(--site-color02); */
	background: var(--site-color02);
}
.title-catch span {
	font-size: 2.0rem;
	/* color: var(--site-color05); */
}
.section04 .title-catch {
	margin-bottom: 1rem;
}

/*------------------------------------------
	3box_arrow-title
*/
.arrow-title {
	margin-bottom: 2.3rem;
	padding: var(--s2) var(--s2) var(--s3);
	font-size: 2rem;
	font-weight: 700;
	background-color: var(--site-color02);
	text-align: center;
	line-height: 1.5;
	position: relative;
	color: #fff;
}
.arrow-title::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 1.5rem solid transparent;
	border-left: 1.5rem solid transparent;
	border-right: 1.5rem solid var(--site-color02);
	border-bottom: 1.5rem solid var(--site-color02);
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	left: 50%;
	bottom: -1.3rem;
}
.arrow-title-sub {
	padding: var(--s1);
	margin-bottom: 2.0rem;
	background-color: #fff;
	color: var(--site-color05);
	border-radius: 16px;
	font-size: 2.2rem;
	line-height: 1.5;
	display: inline-block;
	width: 100%;
}
.arrow-title-small {
	font-size: 1.4rem;
}

/*------------------------------------------
	3box_m-title02
*/
.m-title02 {
	padding: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--site-color02);
	background-color: var(--site-color08);
}

.m-title02 a {
	color: var(--site-color02);
}

/*------------------------------------------
	3column_btn-anchor-flex
*/
/* ボタンの共通設定はcommon.cssに記載 */
/* SPでの余白の調整 */
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-grid-three-flex .btn-ancher {
        margin: var(--s1) var(--s1) var(--s1) 0;
    }
}

/*------------------------------------------
	dl
*/
.dl-style dt {
	padding-left: var(--s2);
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.dl-style dt::before {
	content: "";
	position: absolute;
	display: block;
	background: var(--site-color01);
	border-radius: 15px;
	width: 7px;
	height: 155%;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.dl-style dd {
	font-size: 1.6rem;
	line-height: 2;
}

/*------------------------------------------
	3box_listbox
*/
.thb-listbox-bg-colored {
    padding-top: 2rem;
}
.thb-listbox-area {
    padding: 4rem var(--s2) var(--s2) var(--s2);
    background-color: var(--site-color08);
    position: relative;
}
.thb-listbox-title {
    margin-top: -5.5rem;
    padding: var(--s1);
    color: #fff;
    background-color: var(--site-color02);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thb-listbox-subtitle {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--site-color02);
}
.thb-listbox-list {
    width: 100%;
    padding-left: 2.5rem;
}
.thb-listbox-list li {
    padding: var(--s1) 0;
    line-height: 1.5;
    position: relative;
}
.thb-listbox-list li::before {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("./img/icon-check.png") no-repeat left center;
    background-size: contain;
    position: absolute;
    top: 1rem;
    left: -2.5rem;
}
.thb-listbox-list li span {
    margin-right: var(--s1);
    display: block;
    text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .thb-listbox-area {
        padding: var(--s5) var(--s2) var(--s2) var(--s2);
    }
    .thb-listbox-list li {
        font-size: 1.4rem;
    }
    .thb-listbox-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }
    .thb-listbox-title {
        width: 80%;
        margin: -5rem auto 0 auto;
        padding: var(--s1);
        font-size: 2.4rem;
        text-align: center;
    }
}

/*------------------------------------------
	3box_iconbox01
*/
.thb-iconbox01-bg-colored {
    padding-top: 0;
}
.thb-iconbox01-area {
    padding: var(--s2);
    background-color: var(--site-color07);
    position: relative;
}
.thb-iconbox01-image {
    width: 7.2rem;
    height: 7.2rem;
    position: absolute;
    top: -1.6rem;
    left: -.8rem;
}
.thb-iconbox01-title {
    padding-left: var(--s6);
    padding: var(--s1) var(--s5) var(--s3) var(--s5);
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid var(--site-color02);
    display: flex;
    justify-content: center;
    align-items: center;
}
.thb-iconbox01-title span {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
}

/*------------------------------------------
	simplified-chart
*/
.simplified-chart-cpt {
	display: none;
}
.simplified-chart {
	border-collapse: collapse;
}
.simplified-chart th,
.simplified-chart td {
	min-width: 20rem;
	padding: var(--s2);
	font-size: 2.2rem;
	line-height: 1.5;
	border: 1px solid #707070;
}
.simplified-chart th {
	background-color: var(--site-color08);
	color: var(--site-color02);
	text-align: center;
	padding: var(--s1) var(--s2);
	width: calc(100% / 3);
}
.simplified-chart td {
	background-color: #fff;
	font-size: 1.4rem;
	text-align: center;
}
.simplified-chart-box tbody tr:nth-child(2) > td {
	background: #efefef;
}
.simplified-chart td .font-large{
	font-size: 2.0rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background: var(--site-color02);
	display: block;
	margin-bottom: 2rem;
}
.simplified-chart-box tbody tr:nth-child(2) > td span {
	background: #fff;
	color: var(--site-color05);
}
.simplified-chart td .font-small{
	font-size: 1.2rem;
}
.simplified-chart-img {
	text-align: center;
	margin-bottom: 2rem;
}
.simplified-chart-img img {
	width: 4rem;
}
.simplified-chart-btn {
	margin-top: 1rem;
}
.simplified-chart-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-btn a:hover {
	opacity: .7;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.simplified-chart-cpt {
		display: block;
		padding: 3rem 0 0;
		text-align: center;
		font-size: 1.2rem;
	}
	.l-scroll-x-sp .simplified-chart {
		width: inherit;
	}
	.section06 .l-scroll-x-sp .simplified-chart {
		margin-top: 0;
	}
	.l-scroll-x-sp .simplified-chart th,
	.l-scroll-x-sp .simplified-chart td {
		min-width: 20rem;
	}
}

/*------------------------------------------
	lower-banner
*/
	
/* pc-fix-banner02 */
.pc-fix-banner02 {
    width: 20rem;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 50;
    filter: drop-shadow(2px 2px 2px rgba(000, 000, 000, 0.3));
}
.pc-fix-banner02 a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.pc-fix-banner02 a:hover {
    opacity: .7;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner02 {
        display: none;
    }
}

/* pc-fix-banner03 */
.pc-fix-banner03 {
    width: 24rem;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 50;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner03 {
        display: none;
    }
}

/* pc-fix-banner03 */
.pc-fix-banner03,
.pc-fix-banner02 {
    width: clamp(40px, 12vw, 200px);
    position: fixed;
    right: 0;
    bottom: 14rem;
    z-index: 50;
    filter: drop-shadow(2px 2px 2px rgba(000, 000, 000, 0.3));
}

.pc-fix-banner03 a:hover {
	opacity: 0.6;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner03 {
        display: none;
    }
}

/* sp-fix-banner05 */
.sp-fix-banner05 {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-fix-banner05 {
        display: block;
        width: 100%;
        background-color: #fff;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 50;
    }
    .sp-fix-banner05 a {
        color: #fff;
        text-decoration: none;
        display: block;
        position: relative;
    }
    .sp-fix-banner05 a:hover {
        opacity: .7;
    }
}

/* sp-fix-banner06 */
.sp-fix-banner06 {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-fix-banner06 {
        display: block;
        width: 100%;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 50;
        filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(000, 000, 000, 0.3));
    }
    .sp-fix-banner06-grid {
        display: flex;
        gap: var(--s1);
    }
    .sp-fix-banner06 a {
        color: #fff;
        text-decoration: none;
        display: block;
        position: relative;
    }

    .sp-fix-banner06 a:hover {
        opacity: .7;
    }
}

/*------------------------------------------
	extra-settings
*/
/*------------------------------------------
	pankuzu
*/
#pankuzuWrap .l-center {
  max-width: 100%;
}

/*------------------------------------------
	arrow-img
*/
.arrow-img {
	width: 7rem;
	margin: 0 auto;
}

.section04 .arrow-img {
	margin: 2rem auto;
}

/* btn-area */
.btn-area .btn-web,
.btn-area .btn-tel,
.btn-area .btn-internal,
.btn-area .btn-ancher {
	margin: 3rem auto;
}

/* for strengthening */
.section04 .for-sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.section04 .for-sp {
		display: flex;
		justify-content: center;
	}
}
.caption.scroll {
	text-align: left;
	word-wrap: break-word;
	word-break: break-all;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: #aeaeae #e7e7e7;
	scrollbar-width: thin;
}

.caption.scroll br {
	display: none;
	scrollbar-width: thin;
}

.caption.scroll::-webkit-scrollbar {
    width: 12px; /* 縦方向のスクロールバーの幅 */
    height: 12px; /* 横方向のスクロールバーの高さ */
    background: #000;
	scrollbar-width: thin;
}

.caption.scroll::-webkit-scrollbar-track {
    margin: 0 0;
    box-shadow: none;
    background: #f1f1f1; /* トラックの背景色 */
    border-radius: 10px; /* 角を丸くする */
    box-shadow: inset 0 0 5px grey; /* 内側に影を追加 */
}

.caption.scroll::-webkit-scrollbar-thumb {
    background: #fff;
    box-shadow: none;
    border-radius: 1px;
	scrollbar-width: thin;
    background: linear-gradient(90deg, #999, #555); /* グラデーションを使用 */
    border-radius: 10px; /* 角を丸くする */
    border: 2px solid #f1f1f1; /* つまみの周りに余白を作成 */
}

.caption.scroll::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

.caption.scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #888, #333); /* ホバー時のグラデーション */
}

.caption.scroll a {
    color: #888;
    text-decoration: underline;
}

/*------------------------------------------
	selection
*/
.caption.selection {
	text-align: left;
}

/*------------------------------------------
	.l-grid-three-flex.for-sp .btn-ancher
*/
@media screen and (max-width: 767px) {
	.l-grid-three-flex.for-sp {
        --minimum: calc((100% - var(--s1)) / 2);
        flex-wrap: wrap;
        margin: 0 0 3rem;
    }
	.l-grid-three-flex.for-sp .btn-ancher {
		width: 41vw;
		margin: 1rem 0;
	}
	.l-grid-three-flex.for-sp .btn-ancher a{
        background-size: 1.4rem auto;
        width: 100%;
        height: 100%;
        display: grid;
        place-content: center;
        padding: var(--s1) var(--s4);
    }
	.l-grid-three-flex.for-sp .btn-ancher::after {
		transform: translate(0.5rem, 0.5rem);
		width: 100%;
	}
	
}
/*------------------------------------------
	page-top
*/
@media screen and (max-width: 767px) {
    .page-top {
        width: 6rem;
        height: 6rem;
        bottom: var(--s11) !important;
    }
}
.summary-txt {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.summary-txt {
		font-size: 2rem;
		line-height: 1.5;
	}
	.summary-txt span {
		font-size: 2.4rem;
	}
	.section06 .summary-txt {
		margin: 3rem auto;
	}
}

.txt-area.summary-txt-box {
	padding: 0;
}

.summary-txt span {
	font-size: 32px;
	color: var(--site-color01);
	line-height: 1.6;
}

@media screen and (max-width: 767px) {
	.summary-txt span {
		font-size: 2.4rem;
		line-height: 1.5;
	}
}

/*------------------------------------------
	footer
*/
.footer-area,
.footer-menu__link {
    background: var(--site-color02);
    color: #fff;
    padding: var(--s8) 0 0;
}

.footer-menu__link {
    color: #fff;
    padding: 0 1rem;
}

.footer-area-logo {
	width: 24rem;
}

.footer-menu {
	margin-top: 3rem;
}

.footer-menu-title__link,
.footer-menu__item {
    color: #fff;
}

.footer-menu-title {
    border-bottom: 1px solid #fff;
    font-size: 1.6rem;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
	.footer-menu__link {
	    padding: var(--s2);
	    border-bottom: 1px solid #fff;
	}
    .footer-menu {
        padding: 0.3rem 0;
        background: rgba(255, 255, 255, 0.8);
        gap: 0;
        margin-top: 0;
    }
}

/*------------------------------------------
	sentence
*/
.txt_bold {
    font-weight: 700;
    color: var(--site-color01);
}

.txt_bold.cl {
	color: var(--site-color05);
}

/*------------------------------------------
	lower
*/

/*------------------------------------------
　ttl
*/
#low-page h1:not([class]) {
    margin: 6rem auto 8rem;
}

#low-page h2:not([class]) {
  width: 100%;
  padding: var(--s2);
  margin: 9rem 0 3rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--site-color02);
  border-radius: 15px;
} 

#low-page h2:not([class]) a {
  color: #fff;
  background: url('./img/arrow-01-wht-right.svg') no-repeat center right / auto 1em;
  background-size: 20px auto;
}

#low-page h3:not([class]) {
    margin: 4rem 0 2rem;
}

#low-page h4:not([class]) {
    margin: 4rem 0 2rem;
}

#low-page h5:not([class]) {
    margin: 3rem 0 1rem;
}

@media screen and (max-width: 767px) {
	#low-page h2:not([class]) {
		font-size: 2.1rem;
		margin-top: 6rem;
	}

	#low-page h3:not([class]) {
		margin-top: 4rem;
	}

	#low-page h4:not([class]) {
		margin-top: 3rem;
	}

}

/*------------------------------------------

*/
ul:not([class]) {
	margin: 0;
}

#low-page ul:not([class]) {
	margin: 3rem 0;
}

.section04 ul:not([class]) {
	margin: 1rem 0 0;
}

/*------------------------------------------
	table
*/
table, .l-grid-three, .l-grid-three-flex, .l-grid-two-large, .onb-iconbox02-frame {
	margin: 0;
	grid-gap: var(--s2);
}

#low-page table,
#low-page .l-grid-three,
#low-page .l-grid-three-flex,
#low-page .l-grid-two-large,
#low-page .onb-iconbox02-frame {
	margin: 3rem 0;
}

.section05 table {
	margin-bottom: 0;
}

.section06 .l-grid-three {
	margin: 0;
}

table th {
    background-color: var(--site-color08);
    text-align: center;
}

.section05 table th {
	width: 25%;
}

body {
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.l-grid-three {
		grid-gap: var(--s6);
	}
	#low-page table {
		word-break: break-all;
	}
}
/*------------------------------------------
	simplified-chart
*/
.simplified-chart-box {
	background: var(--site-color07);
	width: min(1100px, 100%);
	margin: var(--s10) auto;
	border-radius: var(--s6);
	padding: var(--s8) var(--s4);
}

.simplified-chart td {
	font-size: 1.8rem;
	font-weight: 700;
	vertical-align: top;
}

@media screen and (max-width: 767px) {
	.simplified-chart-box {
		padding: var(--s8) var(--s1) var(--s4);
	}
}

.section04 .btn-area .btn-web {
	margin-top: 0;
}

/*------------------------------------------
	list
*/
#low-page ul:not([class]) {
	margin: 3rem 0;
}
#low-page .section04 ul:not([class]) {
	margin: 0;
}
#low-page .section04 .l-grid-three {
	margin-bottom: 0;
}

ul:not([class]) li::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.8rem;
}
ul:not([class]) li {
    padding-left: 1.0em;
}

.l-grid-two-large {
    margin-bottom: 2rem;
}

/*------------------------------------------
	footer menu
*/
.footer-disclaimer__label,
.footer-disclaimer__text {
  color: var(--site-color05);
}

@media screen and (max-width: 767px) {
	.footer-menu-title__link::after {
    	content: "";
    width: var(--s2);
	    height: 100%;
    	background: url("./img/arrow-01-wht-down.svg") no-repeat center/100%;
    	position: absolute;
    	top: 0;
    	right: var(--s2);
    	transform: rotate(0);
    	transition: transform 0.3s;
   	}
  }	


