@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: #009C8C;
	display: block;
	position: fixed;
	top: var(--s3);
	right: 0;
	z-index: 200;
	cursor: pointer;
	  clip-path: polygon(
	    25% 0%,
	    75% 0%,
	    100% 50%,
	    75% 100%,
	    25% 100%,
	    0% 50%
	  );
}
.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: #F8FCFC;
	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 #A7A7A7;
	display: block;
	font-weight: 700;
	line-height: 2;
	text-decoration: none;
	position: relative;
}
.gnavi-list__link::after {
	content: "";
	width: 2rem;
	height: 2rem;
	background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 1em;
	position: absolute;
	top: 50%;
	right: var(--s2);
	transform: translate(0, -50%) rotate(0);
	transition: transform 0.3s;
}
.gnavi-list__link--toggle::after {
	background: url(./img/arrow-01-green-down.svg) no-repeat center right / auto 1em;
}
.gnavi-list__link--toggle.is-open::after {
	transform: translate(20%, -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 {
    margin: var(--s6) auto;
    padding: var(--s4) var(--s6) var(--s10);
    background: #F8FCFC;
    position: relative;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s3) 0;
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    border-bottom: 1px solid #D8EAEB;
    margin-bottom: 2rem;
}
.related-article01-list {
    padding: 0 0 var(--s2);
    font-weight: 700;
}
.related-article01-list li {
    margin: 0;
    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: url(img/icon_list.svg) no-repeat center left;
    background-size: 16px;
    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;
}
.is-hidden {
	display: none;
}

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


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

.related-article01-btn {
    max-width: 280px;
    width: 100%;
    margin: var(--s5) auto;
    padding: 1.5rem 6rem 1.5rem 3rem;
    border: .3rem solid #009C8C;
    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;
    font-weight: bold;
}

  .related-article01-btn::before {
    content: "";
    width: 1.8rem;
    height: .3rem;
    background: #009C8C;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translate(0, -50%);
}
.related-article01-btn::after {
    content: "";
    width: .3rem;
    height: 1.8rem;
    background: #009C8C;
    position: absolute;
    top: 50%;
    right: 2.2rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.related-article01-btn:hover {
    opacity: 0.6;
}

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

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

	
}

/*------------------------------------------------------------
    以下からカスタム
*/

/*
---------------------------------------------
    navigation01 ※TOP、下層共通
*/
.header-area-upper {
	padding: var(--s1);
	text-align: right;
	position: absolute;
	left: 30px;
	z-index: 2;
}
.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
	    font-weight: bold;
}
.header-title::before {
	content: "PR";
	padding: .2rem;
	color: #fff;
	background-color: #333;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -2.4rem;
}
.header-title a {
	text-decoration: none;
}
.header-title a:hover {
	text-decoration: underline;
}
.gnavi-ctrl {
}
.gnavi-btn {
}
.gnavi-btn-close {
	display: none;
}
.gnavi-area {
	/* display: none; */
}
.toggle-content {
	display: none;
}
/*------------------------------------------
 Global menu settings
*/
.navigation01-menu-area {
	background-color: #ccc;
}
.navigation01-menu {
	display: flex;
	background-color: #fff;
}
.navigation01-menu li::before {
	display: none;
}
.navigation01-menu li a {
	padding: var(--s2) var(--s1);
	display: block;
	text-decoration: none;
}
.navigation01-menu li a:hover {
	opacity: .6;
}
/*
---------------------------------------------
    sp settings
*/
@media screen and (max-width: 767px) {
	.gnavi-ctrl {
		display: block;
		transition: opacity 0.6s, visibility 0.6s;
		opacity: 0;
		visibility: hidden;
	}
	.gnavi-ctrl.is-show {
		opacity: 1;
		visibility: visible;
	}
	#low-header .gnavi-ctrl {
		opacity: 1;
		visibility: visible;
	}

	.gnavi-btn span {
		width: var(--s4);
		height: 0.2rem;
		display: inline-block;
		background: #fff;
		position: absolute;
		left: 1rem;
		transform: translate(0, -50%);
		transition: transform 0.4s, opacity 0.4s;
	}
	.gnavi-btn span:nth-of-type(1) {
		top: 1.1rem;
	}
	.gnavi-btn span:nth-of-type(2) {
		top: 1.8rem;
	}
	.gnavi-btn span:nth-of-type(3) {
		top: 2.5rem;
	}
	.gnavi-btn.is-active span:nth-of-type(1) {
		transform: translateY(0.7rem) rotate(-45deg);
	}
	.gnavi-btn.is-active span:nth-of-type(2) {
		opacity: 0;
	}
	.gnavi-btn.is-active span:nth-of-type(3) {
		transform: translateY(-0.7rem) rotate(45deg);
	}
	.gnavi-btn-close {
		width: 80%;
		margin: 0 auto;
		padding: var(--s2);
		background: #fff;
		display: block;
		text-align: center;
	}
	.gnavi-btn-close__inner {
		padding: 0 0 0 var(--s3);
		display: inline-block;
		color: #000000;
		font-weight: 700;
		position: relative;
	}
	.gnavi-btn-close__inner::before {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #009C8C;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%) rotate(45deg);
	}
	.gnavi-btn-close__inner::after {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #009C8C;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%) rotate(135deg);
	}
	.gnavi-area {
		width: 100%;
		height: 100vh;
		padding: var(--s3) var(--s1) var(--s10);
		display: block;
		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);
		display: block;
		font-weight: 700;
		line-height: 2;
		text-decoration: none;
		position: relative;
	}
	.gnavi-list__link::after {
		content: "";
		position: absolute;
		top: 50%;
		right: var(--s2);
		transform: translate(0, -50%) rotate(0);
		transition: transform 0.3s;
	}
	.gnavi-list__link--toggle::after {
	}
	.gnavi-list__link--toggle.is-open::after {
		transform: translate(0, -50%) rotate(180deg);
	}
	.gnavi-list__sub {
		width: 100%;
		background: #fff;
	}
	.gnavi-list__low .gnavi-list__link {
		padding: var(--s2) var(--s4) var(--s2) var(--s4);
	}
	.gnavi-list__low .gnavi-list__link::after {
		content: "└";
		background: none;
		transform: translateY(-50%);
		position: absolute;
		top: 40%;
		left: 1rem;
	}
	.is-gnavi-open .gnavi-area {
		opacity: 1;
		transform: translateX(0);
	}
	/*------------------------------------------
	Global menu settings
	*/
	.navigation01-menu-area {
		display: none;
	}
}

.bg-01 {
  background: url('img/bg-01.png') repeat top left;
  background-size: cover;
  padding: 8rem 0;
}

#low-page .bg-01{
	background:#CEECE9;
	padding: 4rem 0;
}

#low-page .bg-01 .l-center{
	    padding: 0px 20px;
}
@media screen and (max-width: 767px) {
#low-page .bg-01 .l-center {
    padding: 0px 15px;
	}}

.sec1.lower-bottom{
    margin-bottom: -110px;
}

.section-title07-frame {
    margin-top: 5rem;
    position: relative;
}

.section-title07-frame .lead {
	margin: 0 0 4rem 0;
	line-height: 1.8;
}


.section-title07-frame::before {
    content: "3-SELECTIONS";
    width: 100%;
    font-size: 3rem;
    font-weight: 700;
    color: #86C2C2;
    text-align: center;
    position: absolute;
    top: -3rem;
    left: 0;
}
.sec2 .section-title07-frame::before{
    content: "IN DETAIL";
		color:#86c2c2;
}

.sec3 .section-title07-frame::before{
    content: "LIST";	
	color:#86c2c2;
}

.sec4 .section-title07-frame::before{
    content: "KINDS";	
	color:#86c2c2;	
}

.sec5 .section-title07-frame::before{
    content: "GUIDE";	
	color:#86c2c2;		
}

.sec6 .section-title07-frame::before{
    content: "EXAMPLE";	
	color:#86c2c2;		
}

.sec7 .section-title07-frame::before{
    content: "ANALYSIS";	
	color:#86c2c2;		
}

.section-title07 {
    width: 100%;
    padding: var(--s4) 0;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    line-height: 1.6;
    color: #000;
}

.section-title07 a{
    text-decoration:none;
    background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 2.5rem;
    padding: 0 var(--s7);
    display: inline-block;
}
.section-title07 a:hover{
	opacity:0.6;
}

.section-title07 span{
color: #00a08f;
    background: #ffffff;
    padding: 0 20px;
	font-size: 3rem;
}

@media screen and (max-width: 767px) {
	.section-title07 span{
		font-size:3rem;
	}}
	

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title07-frame {
        background-color: transparent;
        margin-top: 0rem;
    }
    .section-title07-frame::before {
        width: 100%;
        padding: var(--s1) 0;
        font-size: 2rem;
        top: -3rem;
    }
    .section-title07 {
        padding: var(--s2) 0;
        font-size: 2.6rem;
    }
}

/*------------------------------------------
    3box column settings
*/
.column-small {
    padding: 0 var(--s2) var(--s2);
    BACKGROUND: #ffffff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
}
.sec3 .column-small{
	padding:  var(--s2);
}
.sec3 .column-small .img-box{
	text-align:center;
	margin-bottom: 2rem;
}

.sec3 .column-small .img-box img{
	max-height:200px;
	width:auto;
}

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

.sec1 .thb-box-full{
text-align:center;
}

.sec1 .thb-box-full img{
	max-height:200px;
	width:auto;
}

.sec6 .thb-box-full{
	    margin-bottom: var(--s2);
}

.icon-title-area {position: relative;background: #00a08f;color: #fff;padding: 30px 0 40px;text-align: center;clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);}
.icon-title-obj-r {
	width: 11rem;
	height: 11rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #DEDEDE;
	color: var(--site-color03);
	border-radius: 11rem;
	position: absolute;
	top: -.8rem;
	left: -.8rem;
}
.icon-title-obj-r__inner {
	text-align: center;
	font-weight: 700;
}
.icon-title-r {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
.icon-title-small {
	font-size: 3rem;
	color: #FFF313;
}
 
.m-title01 {
	padding: var(--s1) var(--s1) var(--s2)var(--s1);
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}

.sec1 .m-title01{
	padding-top:var(--s3);
    padding-left: 0;
    padding-right: 0;
}

.m-title01 span{
	font-size: 2.3rem;
	color: var(--site-color03);
	display:block;
	border: none;
}
.m-title02 {
	padding: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	background-color: var(--site-color03);
}

.sec6 .m-title02{
	padding: var(--s3) var(--s2) var(--s2);
	background:#fff;
	color: var(--site-color03);
	text-align:center;
	border-bottom:1px solid #ccc;
	display: flex;
	align-items: center;
}

.sec6 .m-title02 a{
	color: #000000;
	text-decoration:none;
	background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 2rem;
	padding: 0 var(--s3) ;
	display:inline-block;
}

.sec6 .m-title02 a:hover{
	opacity:0.6;
}

.thb-listbox-bg-colored {
    padding-top: 2rem;
}
.thb-listbox-area {
    padding: 4rem var(--s2) var(--s2) var(--s2);
    background-color: #F2F9F9;
    position: relative;
}
.sec1 .thb-listbox-area{
    padding:  var(--s2);
	/*------------------------------------------
	    height: 380px;
*/
}
.osusumebox {
    height: 210px;
}
.sec1 .thb-listbox-area ul li{
   text-align:left;
}

.thb-listbox-title {
    margin-top: -5.5rem;
    padding: var(--s1);
    color: #fff;
    background-color: var(--site-color03);
    text-align: center;
}
.thb-listbox-subtitle {
    text-align: center;
    font-weight: 700;
}
.thb-listbox-list {
    width: 100%;
    padding-left: 2rem;
}
.thb-listbox-list li {
    padding: 0 var(--s1);
    line-height: 1.5;
    position: relative;    
}
.thb-listbox-list li::before {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("/img/icon-check.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    top: .3rem;
    left: -2rem;
}
.thb-listbox-list li span {
    margin-right: var(--s1);
    display: block;
    text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.sec1 .thb-listbox-area{
	    height: auto;
}
	.osusumebox {
    height: auto;
}
	.m-title01 span{
		font-size: 2.2rem;		
	}
	.icon-title-small{
		font-size: 2.8rem;
	}
	.icon-title-r{
		font-size: 2.2rem;
	}
	.sec6 .m-title02{
		font-size:2rem;
	}
    .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: 1.4rem;
        text-align: center;
    }
}

/*------------------------------------------
    1box column settings
*/
.column-medium {
    padding: 0 var(--s4) var(--s4);
    margin-bottom:  var(--s8);
    background: #ffffff;
    box-shadow: 0px 4px 6px 0px rgba(232, 235, 240, 1);
}
.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-item-title-frame {
	padding: var(--s3);
	background-color: var(--site-color03);
	position: relative;
	margin-bottom: 2rem;
}
.onb-item-title-icon {
	width: 8.5rem;
	height: 8.5rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: -4rem;
	left: -2rem;
}
.onb-item-title-icon img {
	width: 100%;
}
.l-onb-item-title {
	color: #fff;
}
.l-onb-item-title__side,
.l-onb-item-title__main {
	text-align: center;
	line-height: 1.2;
}
.l-onb-item-title__side span {
	font-size: 1.4rem;
}
.l-onb-item-title__side {
	width: calc((100% - var(--s2))*.3);
	font-size: 3.2rem;
	font-weight: 700;
	background-color: var(--site-color14);
}

.onb-item-title-catch {
	margin-bottom: var(--s1);
	font-size: 1.4rem;
	font-weight: 700;
	display: block;
}
.onb-item-title-catch--underline {
	padding-bottom: var(--s1);
	border-bottom: 5px solid var(--site-color15);
	display: inline-block;
}
.onb-item-title-title {
	font-size: 3rem;
	font-weight: 700;
}

.onb-item-title-title span{
	color:#FFF313;
	font-size:4rem;
}

/*------------------------------------------------------------
    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,
	.l-onb-item-title__main {
		width: 100%;
		font-size: 2.4rem;
	}

	.onb-item-title-title{
		font-size: 2rem;
	}
	
	.l-onb-item-title__side span,
	.l-onb-item-title__main span {
		font-size: 2.2rem;
	}


}

.onb-center-img {
	max-width: 64%;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 3rem;
}

.onb-center-img img{
	max-height: 500px;
	width:auto;
}

.case-two-large {
    background:#c4e8e4;
    padding: 1rem 4rem 7rem 4rem;
    margin: 5rem auto 0;
    margin-left: calc(var(--s4) * -1);
}

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

	.case-two-large{
	padding: 1rem 1rem 3rem;
	margin-left: calc(var(--s2) * -1);
	}
}

.onb-m-title5 {
	    line-height: 1.5;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #455683;
    margin:6rem 0 3rem;

}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-m-title5 span::before,
	.onb-m-title5 span::after {
		width: 4rem;
	}
	.onb-m-title5 span::before {
		margin-right: var(--s1);
	}
	.onb-m-title5 span::after {
		margin-left: var(--s1);
	}

	.onb-m-title5{
		font-size:2.2rem;
		margin: 4rem 0  2rem;
	}
}

.onb-casebox02-frame {
	margin-top: 2rem;
	background-color: #fff;
	position: relative;
}

.osusume-box{
	/* margin-bottom:8rem; */
}

.osusume-box .onb-casebox02-frame:first-child{
	position: relative;
}

.osusume-box .onb-casebox02-frame:first-child::before{
	content:"";
	position:absolute;
	right:-16px;
	top:0;
	background:#f3f7f9;
	height:100%;
	width:1px;
}

.case-two-large .onb-casebox02-frame{
	padding: var(--s2);
}

.l-onb-casebox02 {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s3);
	align-items: center;
}

.l-onb-casebox02.osusume-title{
	background: #F1F8F7;
	gap: var(--s2);
	padding: var(--s2);
}

.case-two-large .l-onb-casebox02__side {
	width: calc((100% - var(--s3))*.3);
}

.l-onb-casebox02__side {
	width: calc((100% - var(--s3))*.3);
}

.l-onb-casebox02.osusume-title .l-onb-casebox02__side{
    width: 50px;
}

.l-onb-casebox02__main {
	width: calc((100% - var(--s3))*.7);
}

.l-onb-casebox02.osusume-title .l-onb-casebox02__main{
	width:calc(100% - 70px);
}

.onb-casebox02-imgcap {
	margin-top: 1rem;
	text-align: center;
	font-size: 1.2rem;
}
.onb-casebox02-catch {
	font-size: 2rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
	background: #F1F8F7;
	padding: 1rem 2rem;
	margin-bottom: 1rem;
}

.sec2 .onb-casebox02-catch{
	margin-bottom:0;
}

.l-onb-casebox02.osusume-title .onb-casebox02-catch{
	padding:0;
	width:100%-webkit-fill-available
}

.onb-casebox02-caption {
	text-align: left;
}

.onb-iconbox02-frame {
	padding: var(--s4);
	background-color: var(--site-color09);
}
.onb-iconbox02-catch {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    background: #F2F9F9;
    background-size: 3rem auto;
    color: #009C8C;
}
.onb-iconbox02-caption {
	text-align-last: left;
}
 .twb-acc-list-frame {
	border: 1px solid #ccc;
}
.twb-acc-list-title {
	padding: var(--s2);
	background-color: #ccc;
	font-weight: 700;
}
.twb-acc-list-content {
	padding: var(--s2);
}
.twb-acc-list div {
	padding-bottom: var(--s2);
	display: flex;
	border-bottom: 1px solid #ccc;
}
.twb-acc-list div:last-child {
	border: none;
}
.twb-acc-list div dt,
.twb-acc-list div dd {
	width: 50%;
	line-height: 1.2;
}
.twb-acc-list div dd span {
	font-size: 1rem;
}
/*----------------------------------------------
	more content settings
*/
.more-content-gradation {
	position: relative;
	height: auto;
	max-height: 12rem;
	overflow: hidden;
	transition: max-height 1s;
}
.more-content-gradation::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.more-content-gradation.is-open::after {
	display: none;
}
.twb-acc-list-more-btn {
	max-width: 32rem;
	margin: 0 auto;
	position: relative;
}
.twb-acc-list-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	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;
}
.twb-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;
}
.twb-acc-list-more-btn:hover span {
	transform: translate(.8rem, .8rem);
}
.twb-acc-list-more-btn.is-open span {
	background: url('/img/acc-on.svg') no-repeat 95% center #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {

	.onb-casebox02-catch{
		font-size: 1.8rem;
		padding: 1rem;
	}
	.twb-acc-list-more-btn span {
		margin-right: var(--s1);
	}
	.twb-acc-list-more-btn span {
		transition: inherit;
		transform: none;
	}
	.twb-acc-list-more-btn:hover span {
		transform: none;
	}

	.osusume-box .onb-casebox02-frame:first-child::before{
		content:none;
	}
	
}

.youtube-area-frame {
	max-width: 72rem;
	margin: 0 auto 3rem;
}
.youtube-area {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}
.youtube-area iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.twb-m-title02 {
	padding: 1.6rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--site-color03);
	background-color: rgba(var(--site-color05-rgb), .3);
}

.onb-com-box-area {
	padding: var(--s2);
	border: 2px solid var(--site-color11);
}
.onb-com-box-img {
	width: 11.2rem;
	margin-left: var(--s2);
	margin-bottom: var(--s2);
	float: right;
}
.onb-com-box-img span {
	margin-top: var(--s1);
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
.onb-com-box-catch {
	margin-bottom: var(--s2);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
}

.sec2{
	background-image: linear-gradient(#ffffff, #eff7f6);
}

.sec5 {
    padding: 4rem 0 8rem;
}
.sec3{
    padding: 6rem 0 8rem;
}

 .bg-02 {
    padding: 8rem 0;
    background: url(img/bg-02.jpg) no-repeat top center;
    background-size: 100% auto;
}
.arrow {
	text-align: center;
}

.onb-com-box01-r-frame {
	padding: var(--s4);
	border-radius: 2rem;
	border: 3px solid var(--site-color05);
}
.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: 2;
}
.onb-com-box01-r-catch span {
	border-bottom: 7px solid rgba(108,192,183, .5);
}
.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) {

	.sec3, .sec5{
		padding: 8rem 0 4rem;
	}
	.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;
	}
}

.l-onb-flex-table {
	display: flex;
}
.onb-flex-table {
	border-collapse: collapse;
}
.onb-flex-table th,
.onb-flex-table td {
	padding: var(--s2);
	border: 1px solid #d3d3d3;
}
.onb-flex-table th {
	width: 34%;
	vertical-align: middle;
	font-weight: normal;
}
.onb-flex-table td {
	background-color: #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-flex-table {
		flex-direction: column;
	}
	.onb-flex-table + table {
		margin-top: -1px;
	}
}

.title-catch {
	padding: .8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	line-height: 1.5;
}

.sec3 .title-catch {
	padding: .8rem 0;	
	margin-bottom:3rem;
}

.sec3 .title-catch a{
	text-decoration:none;
	background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 2rem;
	padding: 0 var(--s2);
	display:block;
}

.title-catch span {
	font-size: 1.6rem;
}

.sec3 .title-catch span{
	display:block;
	color:#009C8C;
	font-size:2.2rem;
}


.thb-table {
	line-height: 1.5;
	border-collapse: collapse;
	border: 1px solid #D3D3D3;
}
.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #D3D3D3;
}
.thb-table th {
	width: 35%;
	background-color: #E9EFF0;
	text-align: left;
}

.acc-more-btn {
	max-width: 36rem;
	width: 100%;
	margin: var(--s5) auto;
	position: relative;
}
.acc-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 3rem 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;
	font-weight: bold;
	font-size: 1.7rem;
}

.acc-more-btn:hover span {opacity: 0.6;}
.acc-more-btn.is-open span {
	background: url('img/acc-on.svg') no-repeat 95% center #fff;
}
.more-content {
	display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn {
		margin-right: var(--s1);
	}
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}
	.acc-more-btn:hover span {
		transform: none;
	}
}

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

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

.twb-m-title02 {
	padding: 1.6rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	background-color: var(--site-color03);
	text-align:center;
	margin-bottom:2rem;
}

.twb-m-title02 a{
	color: #fff;
	text-decoration:none;
	background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 1em;
    padding: 0 var(--s7);
	display:inline-block;
}

.twb-m-title02 a:hover{
	opacity:0.6;
}

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

.simplified-chart-cpt {
	display: none;
}
.simplified-chart {
	border-collapse: collapse;
}
.simplified-chart th,
.simplified-chart td {
	min-width: 20rem;
	padding: var(--s2);
	line-height: 1.5;
	border: 1px solid #707070;
}
.simplified-chart th {
	background-color: #E8F6F5;
	text-align: center;
}
.simplified-chart tr:nth-child(1) th {
	background-color: var(--site-color03);
	color: #fff;
}
.simplified-chart td {
	background-color: #fff;
}
.simplified-chart td .font-large{
	font-size: 2.1rem;
}
.simplified-chart td .font-small{
	font-size: 1.2rem;
}
.simplified-chart-img {
	text-align: center;
}
.simplified-chart .btn-web {
	margin: var(--s2) 0;
	font-size: 1.4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {

	.bg-03{
		padding: 8rem 0 0rem;
	}

	.twb-m-title02.thb-box-full {
	    width: calc(100% + var(--s4));
	    margin-left: calc(var(--s2) * -1);
	    font-size: 2rem;
	    padding: 1rem 3rem 1rem 1rem;
	}
	.simplified-chart-cpt {
		margin-bottom: 1rem;
		display: block;
		padding: var(--s1);
		border: 1px solid #ccc;
		text-align: center;
		font-size: 1.2rem;
		border-radius: 2rem;
	}
	.l-scroll-x-sp .simplified-chart {
		width: inherit;
	}
	.l-scroll-x-sp .simplified-chart th,
	.l-scroll-x-sp .simplified-chart td {
		min-width: 20rem;
	}
}
.bg-04 {
    background: url(/img/bg-01.jpg) repeat top left;
    background-size: cover;
    padding: 8rem 0;
    background-image: linear-gradient(#c3e9e6, #ffffff);
}

.iconbox02-frame {
	padding: var(--s4);
	background-color: #f2f9f9;
}

.sec7 .iconbox02-frame {
	box-shadow: 0px 0px 6px 0px #E7F3F2;
	background:#fff;
	border:1px solid #ccc;
	margin-top:3rem;
}

.iconbox02-catch {
	padding: var(--s4) var(--s1) var(--s4) var(--s14);
	font-size: 2.6rem;
	font-weight: 700;
	color: #455683;
	line-height: 1.5;
	border-bottom: 3px solid #D8EAEB;
	background: url('img/icon-matome.svg') no-repeat center left;
	background-size: 10rem auto;
}

.sec7 .iconbox02-catch{
	color:#009C8C;
	font-size:2.4rem;
	background:none;
	padding: 0 var(--s2) var(--s2) 0;
}

.sec7 .iconbox02-catch a{
	text-decoration:none;
	color:#009C8C;
	background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 2.5rem;
	padding: 0 var(--s7) 0 0;
	display: inline-block;
}

.sec7 .iconbox02-catch a:hover{
	opacity:0.6;
}

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

.text-area {
    line-height: 2;
}
.summary-box-r {
    padding: var(--s4) 0;
    display: grid;
    grid-auto-rows: minmax(10px, auto) 1fr;
    grid-template-areas:
        "img catch"
        "img content";
}
.summary-box-r-catch {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ccc;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    grid-area: catch;
}


.summary-box-r-catch a, .summary-box-l-catch a{
    color: var(--site-color03);
	text-decoration:none;
    background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 2rem;
    padding: 0 var(--s7) 0 0;
    display: inline-block;
}

.summary-box-r-catch a:hover, .summary-box-l-catch a:hover{
	opacity:0.6;
}

.summary-box-r-img {
    padding-right: var(--s4);
    grid-area: img;
}
.summary-box-r-content {
    grid-area: content;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.sec7 .iconbox02-catch a{
		font-size:2rem;
		background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 2rem;
	}

    .summary-box-r {
        padding: var(--s2) 0 var(--s2);
        display: block;
    }
    .summary-box-r-catch {
        margin-bottom: var(--s2);
        font-size: 2.4rem;
    }
    .summary-box-r-img {
        padding-right: 0;
        margin-bottom: var(--s2);
    }

	.iconbox02-catch{
		background-size: 10rem auto;
		font-size: 2rem;
		padding: var(--s4) var(--s1) var(--s4) var(--s14);
	}    }
@media screen and (max-width: 767px) {
.iconbox02-catch {
    background-size: 7rem auto;
	}}


	.iconbox02-frame{
		padding: var(--s2);
		margin: 3rem 0;
	}
}

.text-area {
    line-height: 2;
}
.summary-box-l {
    padding: var(--s4) 0;
    display: grid;
    grid-auto-rows: minmax(10px, auto) 1fr;
    grid-template-areas:
        "catch img"
        "content img";
}
.summary-box-l-catch {
    font-size: 2.1rem;
    font-weight: 700;
    border-bottom: 2px solid #CCCCCC;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    color: var(--site-color03);
    line-height: 1.5;
    background-size: 6rem 6rem;
    grid-area: catch;
}
.summary-box-l-img {
    padding-left: var(--s4);
    grid-area: img;
}
.summary-box-l-content {
    grid-area: content;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .summary-box-l {
		/*------------------------------------------------------------
        padding: var(--s2);*/
        display: block;
    }
    .summary-box-l-catch, .summary-box-r-catch {
        margin-bottom: var(--s2);
        font-size: 2rem;
    }
    .summary-box-l-img {
        padding-left: 0;
        margin-bottom: var(--s2);
    }
}

.sec6 .m-title02 a {
    padding: 0 var(--s4);
}
.sec6 .m-title02 {
  display: flex;
    justify-content: center;
    align-items: center;
}

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

.sec3 .thb-table{
	margin: 3rem auto 1rem;
}

.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #D3D3D3;
}
.thb-table th {
	width: 35%;
	background-color: #F8FCFC;
	text-align: center;
}

.sec1 .thb-table th, .sec1 .thb-table td{
	padding: var(--s2);	
}

.sec1 .thb-table{
	margin-top:3rem;
}

.onb-com-box-area {
	padding: var(--s2);
	border: 2px solid var(--site-color11);
}

.onb-com-box-area.before-box, .onb-com-box-area.after-box{
	background:#F7F7F7;
	border:none;
	position: relative;
	padding: var(--s4) var(--s2);
	margin-top: 3rem;
} 
@media screen and (max-width: 767px) {
.onb-com-box-area.before-box, .onb-com-box-area.after-box {
    margin-top: 0rem;
	}}

.onb-com-box-area.after-box{
	background:#F3F7F9;
}

.onb-com-box-area.before-box::before{
	content:"";
	width: 22px;
	height: 27px;
	display: block;
	position: absolute;
	background: url(img/arrow.svg) no-repeat top center;
	background-size: cover;
	right: -27px;
	top: 50%;
	transform: translateY(-50%);
}

.onb-com-box-area.before-box .onb-com-box-img, .onb-com-box-area.after-box .onb-com-box-img{
	float:none;
	position:absolute;
	background:#889B9C;
	color:#fff;
	text-align: center;
	font-size: 22px;
	padding: 8px;
	margin: 0;
	width: auto;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
}

.onb-com-box-area.after-box .onb-com-box-img{
	background:#009C8C;	
}

.onb-com-box-img {
	width: 11.2rem;
	margin-left: var(--s2);
	margin-bottom: var(--s2);
	float: right;
}
.onb-com-box-img span {
	margin-top: var(--s1);
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
.onb-com-box-catch {
	margin-bottom: var(--s2);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
}

.onb-com-box-area.before-box .onb-com-box-catch , .onb-com-box-area.after-box .onb-com-box-catch{
	text-align: center;
	color: #798C8D;
	font-size: 2.2rem;
	border-bottom: 1px solid #ccc;
	padding-bottom: 2rem;
	margin-bottom: var(--s1);
}

.onb-com-box-area.after-box .onb-com-box-catch{
	color:#009C8C;
	border-bottom: 1px solid #CBE1E4;
}

 .onb-iconbox02-frame {
	background: #FFf;
	padding: 0;
}
.onb-iconbox02-catch {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	background: #F2F9F9;
	background-size: 3rem auto;
	color: #009C8C;
	text-align: center;
	padding: 1rem;
}
.onb-iconbox02-caption {
	text-align-last: left;
}

@media screen and (max-width: 767px) {
	.onb-com-box-area.before-box .onb-com-box-catch , .onb-com-box-area.after-box .onb-com-box-catch{
		font-size: 2rem;
	
	}
	
	.onb-com-box-area.before-box .onb-com-box-img, .onb-com-box-area.after-box .onb-com-box-img{
		font-size:1.6rem;
	}

	.onb-com-box-area.before-box::before{
		content: "";
		background: url(img/arrow.svg) no-repeat top center;
		background-size: cover;
		right: 47%;
		top: auto;
		bottom: -40px;
		transform: rotate(90deg);
	}

	.onb-com-box-area.before-box{
		margin-bottom: 6rem;
		margin-top: 3rem;
	}

	.onb-iconbox02-catch{
		font-size:1.8rem;
	}
}

 


.pc-fix-banner04 {
    width: 24rem;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 50;
}
.pc-fix-banner04-color1 {
    background-color: var(--site-color01);
}
.pc-fix-banner04-color2 {
    background-color: var(--site-color02);
}
.pc-fix-banner04-text {
    padding: var(--s2);
    color: #fff;
    position: relative;
}
.pc-fix-banner04-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-banner04-text a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.pc-fix-banner04-text a:hover {
    opacity: .7;
}
.pc-fix-banner04-text p {
    margin: 0;
    font-size: 1.4rem;
    text-align: center;
}
.pc-fix-banner04-text .text-small {
    font-size: 1.2rem;
    line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner04 {
        display: none;
    }

}

.onb-index02-frame {
    width: 100%;
}
.onb-index02-wrap {
    margin: var(--s6) auto;
    padding: var(--s4) var(--s3) var(--s4) var(--s3);
    background-color: var(--site-color07);
    position: relative;
}
.onb-index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url(img/icon_h4.svg) no-repeat left center;
    background-size: 2.5rem auto;
    position: relative;
}
.onb-index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    font-weight: 700;
    counter-reset: number 0; 
}
#toc ul.onb-index02-chapter li {
    position: relative;
}
#toc ul.onb-index02-chapter li:not(.onb-index02-chapter-h-three)::before {
    counter-increment: number 1;  
    content: counter(number, decimal-leading-zero);
    color: var(--site-color03);
    position: absolute;
    top: 0;
    left: -1.8em;
}
#toc ul li.onb-index02-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
#toc ul li.onb-index02-chapter-h a {
    display: block;
    text-decoration: none;
}
#toc ul li.onb-index02-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}
#toc ul li.onb-index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
#toc ul li.onb-index02-chapter-h-two::before,
#toc ul li.onb-index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.8em;
}
#toc ul li.onb-index02-chapter-h-three::before {
    content: "└";
}
/*----------------------------------------------
	more content settings
*/
#toc.onb-index02-gradation {
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
    border-top: 1px solid var(--site-color03);
    position: relative;
}
#toc.onb-index02-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, var(--site-color07) 100%);
}
#toc.onb-index02-gradation.is-open::after {
    display: none;
}
.onb-index02-btn {
    max-width: 36rem;
    margin: 2rem auto 0 auto;
    position: relative;
    z-index: 5;
}
.onb-index02-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 3rem 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;
    font-weight: bold;
}

.onb-index02-btn:hover span {
    opacity: 0.6;
}
.onb-index02-btn.is-open span {
    background: url('img/acc-on.svg') no-repeat 95% center #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    #toc .onb-index02-chapter {
        padding-left: var(--s4);
    }    
    .onb-index02-btn:hover span {
        transform: none;
    }

.onb-index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s5);
    font-size: 1.8rem;
}	
}


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

.mv-lower {
	height: 140px;
	background: #efeee0 url(img/mv_lower.jpg) no-repeat center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mv-lower .mv-inner {
	max-width: 420px;
	padding-top: 2rem;
}
.mv-lower .mv-logo {
	width: 210px;
	padding: 3.5rem 0 1.5rem;
}

.mv-lower a:hover {
	opacity: .6;
}	

@media screen and (max-width: 767px) {
	.mv-lower {
	    height: 100px;
	    background: #efeee0 url(img/sp_mv_lower.jpg) no-repeat center;
	    background-size: cover;
	}
}

/*------------------------------------------------------------
    icon-head02
*/

.icon-head02 {
	margin-top: var(--s4);
	margin-bottom: var(--s4);
	margin-left: var(--s4);
	padding: var(--s2) var(--s2) var(--s2) var(--s12);
	line-height: 1.5;
	font-size: 2.6rem;
	font-weight: 700;
	background-color: #F8FCFC;
	color: #455683;
	border-radius: 10px;
	position: relative;
}
.icon-head02::before {
	content: "";
	width: 10.3rem;
	height: 9rem;
	background: url('./img/icon-point.png') 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-head02 {
		margin-left: var(--s4);
		padding: var(--s1) var(--s1) var(--s1) var(--s8);
		font-size: 1.8rem;
	}
	.icon-head02::before {
		content: "";
		width: 6rem;
		height: 5rem;
		left: -2.2rem;
	}
}


.pc-fix-banner04 {
    width: 26rem;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}



.pc-fix-banner04.js-show{
    opacity:100;
}

.pc-fix-banner04-color1 {
    background-color: #fff;
    border: 5px solid #455683;
    border-radius: 5px 5px 0 5px;
}
.pc-fix-banner04-color2 {
    background: #009C8C url(img/bg_banner04-color2.jpg) no-repeat top center;
    background-size:cover;
    border-radius: 5px 5px 0 5px;
}
.pc-fix-banner04-color1 {
    padding: var(--s2) var(--s2) var(--s2) var(--s1);
    color: #455683;
    position: relative;
    background: #fff url(./img/arrow-01-blue-right.svg) no-repeat center right 0.5rem / auto 1em;
}
.pc-fix-banner04-color2::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid #52BBB0;
    border-bottom: .5rem solid #52BBB0;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}
.pc-fix-banner04-color1 a {
    color: #455683;
    font-weight: bold;
    text-decoration: none;
    display: block;
}
.pc-fix-banner04-color2 a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

.pc-fix-banner04-color2 a span {
    color: #FBF712;
	font-size:18px;
}

.pc-fix-banner04-text a:hover {
    opacity: .7;
}
.pc-fix-banner04-text p {
    margin: 0;
    font-size: 1.7rem;
    text-align: center;
}

.pc-fix-banner04-color2 p{
	line-height:1.6;
}

.pc-fix-banner04-text .text-small {
    font-size: 1.6rem;
    line-height: 1.5;
}

.pc-fix-banner04 {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sp-fix-banner07{
	display:none;
}

.pc-fix-banner04.js-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
	right: 20px;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner04, .pc-fix-banner07 {
        display: none;
    }
	

	
}






#visArea {
    background: #fff;
}

#visArea .mainArea {
    min-height: 24rem;
    margin: 0 auto;
    padding: 3rem 0 5rem 0;
    background-image: url(img/mv-right.png), url(img/mv.jpg);
    background-position: top right -5rem,top center;
    background-repeat: no-repeat;
    background-size: 60% auto, auto 100%;
    position: relative;
    z-index: 1;
}


#visArea .mainAreaInner {max-width: 140rem;margin:0 auto;padding-top: 2rem;}

#visArea .mainAreaInner .text-box {
    max-width: 43%;
    margin-left: 2rem;
}
@media screen and (max-width: 767px) {
#visArea .mainAreaInner .text-box {
    max-width: 43%;
    margin-left: 0rem;
	}}


#visArea .siteName {
    width: 20rem;
    margin: 0 0 1.5rem 0;
}

#visArea .title {
    margin: 0px 0 3rem 0;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
}

#visArea .logo {
    margin-bottom: 0rem;
    text-align: left;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
	    margin-left: 2rem;
	    margin-bottom: 1rem;
}

#visArea .title span {
    color: #009c8c;
    font-size: 6.2rem;
}

#visArea .title span.color{
	color:#CD361E;
	font-size:5rem;
}

#visArea p:not([class]) {
    margin: 0 0 3rem;
}
@media screen and (max-width: 767px) {
	#visArea p:not([class]) {
    margin: 0 0 0rem;
	}}

#visArea p:not([class]) span{
	font-weight:bold;
}

@media screen and (max-width: 767px) {
#visArea{
    background: url(img/sp_mv.png) no-repeat top center;
    background-size: 100% auto;
}

#visArea .mainAreaInner .text-box .mainTxtBox {
    padding-right: calc(var(--s1) + var(--s-2));
    padding-left: calc(var(--s1) + var(--s-2));
    background: none;
}

#visArea .title{
	font-size:2.6rem;
	text-align: center;
	background: none;
	padding-bottom: 20rem;
	margin-bottom:2rem;
	line-height: 4rem;
    margin-top: 1rem;
}

#visArea .mainAreaInner .text-box{
	max-width:100%;
}

#visArea .title span{
    font-size: 4rem;		
}


#visArea .title span.color {
    font-size: 3rem;
    margin: 0px 0 2rem 0;
}

.header-title {padding-left: 2.5rem;}

.header-title::before {
    left: 0;
}

#visArea .logo {
    max-width: 160px;
    margin: 0 auto;
}

#visArea .mainAreaInner{
	padding-top:0;
}

#visArea .mainArea {background: none;padding-top: 4rem;}    
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	
	.bg-01 {
    background-size: auto;
}
	
    .sp-fix-banner07 {
        display: none;
        width: 100%;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 50;
        transition: opacity 0.3s ease-in-out;
    }

	.sp-fix-banner07.js-show{
		display:block;
	}
	
    .sp-fix-banner07-grid {
        display: flex;
        justify-content: space-around;
    }
	
    .sp-fix-banner07-light,
    .sp-fix-banner07-dark {
        width: 50%;
        display: flex;
    }


    .sp-fix-banner07-text {
        padding: var(--s1);
        text-align: center;
        color: #fff;
        font-weight: bold;
        position: relative;
    }

	.sp-fix-banner07-light{
	        background: #009C8C url(img/bg_banner04-color2.jpg) no-repeat bottom center;
	        background-size: cover;
	}

	    .sp-fix-banner07-dark {
        background-color: #fff;
        border-width: 2px 0 0 2px;
        border-color: #455683;
        border-style: solid;
    }


	.sp-fix-banner07-light p span{
		border:none;
		color: #FBF712;
		font-size: 1.5rem;
	}


	.sp-fix-banner07-dark p span{
		font-size: 1.5rem;
	}
	
    .sp-fix-banner07-text::after {
        content: "";
        width: 0.1rem;
        height: 0.1rem;
        border-top: .5rem solid transparent;
        border-left: .5rem solid transparent;
        border-right: .5rem solid #55C2BB;
        border-bottom: .5rem solid #55C2BA;
        position: absolute;
        right: .5rem;
        bottom: .5rem;
    }

    .sp-fix-banner07-dark::after {
        width: 1rem;
        height: 1rem;
        background: url(./img/arrow-01-green-right.svg) no-repeat center right / auto 1rem;
        border:none;
        bottom: 50%;
        transform: translateY(50%);
        right: .5rem;
 }
	
    .sp-fix-banner07-text a {
        width: 100%;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

	.sp-fix-banner07-dark a{
		color:#455683;
	}

	
    .sp-fix-banner07-text a:hover {
        opacity: .7;
    }
    .sp-fix-banner07-text p {
        margin: 0;
        font-size: 1.2rem;
        line-height: 1.5;
        text-align: center;
    }
    .sp-fix-banner07-text p.text-small {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}

.thb-m-title04-sub {
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #199b8c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}



/*-------  クイズのフォーム  ------- */


.diagnostic-wrapper {
    max-width: 800px;
    margin: 3rem auto;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	border: 3px solid #009c8c;
  }

  /* ヘッダー部分 */
.quiz {
    font-size: 3rem;
    font-weight: bold;
    padding: 3rem;
    color: #ffffff;
    background: #009C8C url(img/bg_banner04-color2.jpg) repeat top center;
	text-align: center;
}
@media screen and (max-width: 767px) {
.quiz {
	font-size: 2.4rem;
    line-height: 1.4;
    background-size: cover;				
	}
}

  .form-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
  }

  /* --- 制御用ラジオボタン（全て非表示） --- */
  input[type="radio"] {
    display: none;
  }

  /* --- ブロック・レイアウト --- */
  .branch {
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .q-block, .result-block {
    text-align: center;
    position: relative;
    margin-top: 40px;
  }

  /* 下向き矢印（要素間の繋がり） */
  .branch > .q-block::before,
  .branch > .result-block::before {
    content: '↓';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #009c8c;
    font-size: 3rem;
    font-weight: bold;
  }

  /* --- 質問スタイル --- */
  .q-title {
    padding: 15px 30px;
    display: inline-block;
    margin: 0 auto 20px;
    font-weight: bold;
	font-size: 2.2rem;
    color: #009c8c;
  }

@media screen and (max-width: 767px) {
	.q-title {
    padding:0;
    font-size: 2rem;
    line-height: 1.4;
	}
.q-block, .result-block {
    text-align: center;
    position: relative;
    margin-top: 40px;
}}
	
  .q-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .q-options label {
    background-color: #fff;
    border: 2px solid #455683;
    padding: 15px 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #455683;
	  line-height: 2.2rem;
  }

  .q-options label span {
    font-size: 1.4rem;
    color: #7e7e7e;
    margin-top: 5px;
  }

  .q-options label:hover {
    background-color: #f9f9f9;
    border-color: #aaa;
  }

  /* カラム調整 */
  .col-2 label { flex: 1 1 calc(50% - 15px); max-width: 300px; }
  .col-4 label { flex: 1 1 calc(25% - 15px); min-width: 160px; max-width: 200px; }

  /* スマホ対応 */
  @media (max-width: 600px) {
    .col-2 label, .col-4 label { flex: 1 1 100%; max-width: 100%; }
  }

  /* --- 選択済み状態のスタイル（ラジオボタンのIDと連動） --- */
  #q0-yes:checked ~ .flow-container label[for="q0-yes"],
  #q0-no:checked ~ .flow-container label[for="q0-no"],
  #q1-y-1:checked ~ .flow-container label[for="q1-y-1"],
  #q1-y-2:checked ~ .flow-container label[for="q1-y-2"],
  #q1-y-3:checked ~ .flow-container label[for="q1-y-3"],
  #q1-y-4:checked ~ .flow-container label[for="q1-y-4"],
  #q1-n-1:checked ~ .flow-container label[for="q1-n-1"],
  #q1-n-2:checked ~ .flow-container label[for="q1-n-2"],
  #q1-n-3:checked ~ .flow-container label[for="q1-n-3"],
  #q1-n-4:checked ~ .flow-container label[for="q1-n-4"],
  #q3-1:checked ~ .flow-container label[for="q3-1"],
  #q3-2:checked ~ .flow-container label[for="q3-2"],
  #q2-1:checked ~ .flow-container label[for="q2-1"],
  #q2-2:checked ~ .flow-container label[for="q2-2"],
  #q2-3:checked ~ .flow-container label[for="q2-3"],
  #q2-4:checked ~ .flow-container label[for="q2-4"] {
    background-color: #f8fcfc;
    border-color: #009c8c;
    color: #009c8c;
    font-weight: bold;
    font-size: 1.8rem;
  }

  /* --- 結果ブロックスタイル --- */
  .result-block {
    padding: 30px 20px;
    border-radius: 10px; /* 楕円形 */
    margin: 40px auto 0;
    max-width: 450px;
    border: 2px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }
  @media (max-width: 600px) {
    .result-block { border-radius: 30px; } /* スマホでは角丸四角に調整 */
  }

  .result-a, .result-b, .result-d { background-color: #f4f8f7; border-color: #cce0d8; }
  .result-c { 
	background-color: #ffffec;
    border-color: #e1e0a9;
}

  .result-block h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #222;
  }
  .result-block p {
    margin: 0 0 20px;
    font-size: 1.8rem;
    color: #414141;
	 font-weight:bold;
  }

  button[type="reset"] {
    background-color: #455683;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: background 0.2s;
  }
  button[type="reset"]:hover { background-color: #444; }


  /* =========================================
     分岐ロジック (CSS Routing)
     ========================================= */
  #q0-yes:checked ~ .flow-container .branch-q0-yes { display: block; }
  #q0-no:checked ~ .flow-container .branch-q0-no { display: block; }

  #q1-y-1:checked ~ .flow-container .branch-q1-y-1 { display: block; }
  #q1-y-2:checked ~ .flow-container .branch-q1-y-2 { display: block; }
  #q1-y-3:checked ~ .flow-container .branch-q1-y-3 { display: block; }
  #q1-y-4:checked ~ .flow-container .branch-q1-y-4 { display: block; }

  #q1-n-1:checked ~ .flow-container .branch-q1-n-1 { display: block; }
  #q1-n-2:checked ~ .flow-container .branch-q1-n-2 { display: block; }
  #q1-n-3:checked ~ .flow-container .branch-q1-n-3 { display: block; }
  #q1-n-4:checked ~ .flow-container .branch-q1-n-4 { display: block; }

  #q3-1:checked ~ .flow-container .branch-q3-1 { display: block; }
  #q3-2:checked ~ .flow-container .branch-q3-2 { display: block; }

  #q2-1:checked ~ .flow-container .branch-q2-1 { display: block; }
  #q2-2:checked ~ .flow-container .branch-q2-2 { display: block; }
  #q2-3:checked ~ .flow-container .branch-q2-3 { display: block; }
  #q2-4:checked ~ .flow-container .branch-q2-4 { display: block; }


.quizA {
    font-size: 2.4rem;
    font-weight: bold;
    color: #009c8c;
	line-height: 1.4;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #cce0d8;
}
.result-block result-a p{
	font-size:1.6rem;
}

.mainTxtBox {
    width: 55rem;
}

@media screen and (max-width: 767px) {
	.mainTxtBox {
    width: auto;
}
}

.\33 sen {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6;
    color: #455683;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 1rem;
}
.simplified-chart-spfix-cpt {
    display: none;
}
@media screen and (max-width: 767px) {
    .simplified-chart-spfix-cpt {
        display: block;
        margin: 3rem 0 1rem 0;
        padding: 0.6rem 1rem;
        background: #f2f9f9;
        border-radius: 3rem;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .l-scroll-x-sp {
        width: 100%;
        padding-bottom: 0.6rem;
        overflow: hidden;
        overflow-x: scroll;
        overflow-y: visible;
    }
	.header-area-upper {
    left: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
}
}

/* 画像を囲む箱の設定 */
.scroll-wrapper {
  width: 100%; /* 画面幅いっぱいに広げる */
  overflow-x: auto; /* はみ出した部分を横スクロール可能にする */
  -webkit-overflow-scrolling: touch; /* スマホで指で滑らかにスクロールさせるための設定 */
  padding-bottom: 10px; /* スクロールバーが画像に被らないように少し余白を空ける */
}

/* 画像自体の設定 */
.scroll-image {
  max-width: none; /* 【重要】画面幅に合わせて縮小されるのを防ぐ */
  width: 600px; /* 画像の本来の横幅や、見せたい幅を指定（※ご自身の画像サイズに合わせて変更してください） */
  height: auto; /* 縦横比を維持 */
}

#low-page .sec1 {
    margin: 5rem 0;
}
#low-page .sec1 .thb-listbox-area ul {
    height: 310px;
}
@media screen and (max-width: 767px) {
	#low-page .sec1 .thb-listbox-area ul {
    height: auto;
}
}