@charset "utf-8";
/* ---------------------------------------------
navigation01 ※TOP、下層共通
--------------------------------------------- */
    /*
    ---------------------------------------------
        navigation01 ※TOP、下層共通
    */
    .header-area-upper {
        padding: var(--s1) var(--s1) var(--s1) var(--s3);
        text-align: left;
        margin: 0 auto;
        width: 100rem;
        display: block;
    }
    .header-title {
        font-size: 1.1rem;
        position: relative;
        z-index: 1;
        margin-left: 0;
    }
    .header-title::before {
        content: "PR";
        padding: .2rem;
        color: #fff;
        background-color: #333;
        transform: translateY(-50%);
        position: absolute;
        top: 35%;
        left: -2.4rem;
    }
    .header-title a {
        text-decoration: none;
    }
    .header-title a:hover {
        text-decoration: underline;
    }
    .gnavi-ctrl {
        display: none;
    }
    .gnavi-btn {
        display: none;
    }
    .gnavi-btn-close {
        display: none;
    }
    .gnavi-area {
        display: none;
    }
    .toggle-content {
        display: none;
    }
    /*------------------------------------------
     Global menu settings
    */
    .navigation01-menu-area {

    }
    .navigation01-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.4rem;
        position: relative;
    }
    .navigation01-menu li::before {
        display: none;
    }
    .navigation01-menu li a {
        padding: var(--s4) var(--s6);
        display: block;
        text-decoration: none;
        text-align: center;
    }
    .navigation01-menu li a:hover {
        opacity: .6;
    }

ul.navigation01-menu li:before {
    content: "";
    display: block;
    width: 1px;
    height: 40%;
    background: #222;
    position: absolute;
    left:0; 
    top:30%;
}
ul.navigation01-menu li:last-child:before{
    width: 0.5px;
}
ul.navigation01-menu li:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 40%;
    background: #222;
    position: absolute;
    right:0; 
    top:30%;    
}
    /*
    ---------------------------------------------
        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 {
            width: var(--s6);
            height: var(--s6);
            background: #5CB531;
            display: block;
            position: fixed;
            top: var(--s3);
            right: 0;
            z-index: 200;
            cursor: pointer;
        }
        .gnavi-btn span {
            width: var(--s4);
            height: 0.2rem;
            display: inline-block;
            background: #fff;
            position: absolute;
            left: 1.2rem;
            transform: translate(0, -50%);
            transition: transform 0.4s, opacity 0.4s;
        }
        .gnavi-btn span:nth-of-type(1) {
            top: 1.2rem;
            left: 0.8rem;
        }
        .gnavi-btn span:nth-of-type(2) {
            top: 2.4rem;
            left: 0.8rem;
        }
        .gnavi-btn span:nth-of-type(3) {
            top: 3.6rem;
            left: 0.8rem;
        }
        .gnavi-btn.is-active span:nth-of-type(1) {
            top:50%;
            left:0.8rem;
            transform: translateY(-50%) rotate(-45deg);
        }
        .gnavi-btn.is-active span:nth-of-type(2) {
            opacity: 0;
        }
        .gnavi-btn.is-active span:nth-of-type(3) {
            top:50%;
            left:0.8rem;
            transform: translateY(-50%) rotate(45deg);
        }
        .gnavi-btn-close {
            width: 50%;
            margin: 2rem auto 0;
            padding: var(--s2);
            background: #00787E;
            display: block;
            text-align: center;
            border-radius: 30rem;
        }
        .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%;
            height: 100vh;
            padding: var(--s3) var(--s1) var(--s10);
            display: block;
            background: #fff;
            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 {
            width: 15rem;
            margin: 0 var(--s8) 0 var(--s2);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            line-height: 1.5;
            -webkit-text-fill-color: transparent;
        }
        .gnavi-title a {
            text-decoration:none;
        }
        .gnavi-pc {
            display: none;
        }
        .gnavi-list {
            border-bottom: 1px solid #D6E9EA;
            position: relative;
            padding-top: 1rem;
        }
        .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 #D6E9EA;
            display: block;
            font-weight: 500;
            line-height: 2;
            text-decoration: none;
            position: relative;
            color: #222;
        }
        .gnavi-list__link::after {
            content: "";
            width: 1.4rem;
            height: 1.4rem;
            background: url("img/arrow-01-black-right.svg") no-repeat center/100% 1.5rem;
            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);
        }
        .header-area-upper {
            width:100%;
        }
        .header-title {
            margin-left:1rem;
        }
        /*------------------------------------------
        Global menu settings
        */
        .navigation01-menu-area {
            display: none;
        }
    }

/* 目次
-----------------------------------------*/
.index02-frame {
    width: 80%;
    margin: 0 auto 6rem;
    border: 1px solid #D6E9EA;
}

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

.index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s2);
    color: #00787E;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    background-size: 4rem auto;
    position: relative;
    border-bottom: 1px solid #5CB531;
}

.index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}

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

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

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

.index02-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}

.index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}

.index02-chapter-h-two::before,
.index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}

.index02-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: #5CB531;
    transform: translateY(-50%);
    top: .8em;
}

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

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

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

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

.index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    padding: 2rem 6rem;
    border: .2rem solid var(--site-color05);
    text-align: center;
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
}

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

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

.index02-btn:hover {
    opacity: 0.6;
}

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

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


/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    margin: var(--s6) auto;
    padding: var(--s1)  var(--s3)  var(--s4) var(--s3);
    background: #fff;
    position: relative;
    border: 1px solid #D6E9EA;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) 0;
    color: #00787E;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    background-size: 5rem auto;
    position: relative;
    border-bottom: 1px solid #5CB531;
}
.related-article01-list {
    padding: var(--s2) 0 var(--s2) 0;
    font-weight: 500;
}
.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: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #5CB531;
    position: absolute;
    top: .8rem;
    left: 0;
}
.related-article01-list a {
    display: block;
    text-decoration: none;
}
.related-article01-list a:hover {
    opacity: 0.6;
}
.relations-box.relations-box--column {
    display: flex;
    gap: 10px;
}
.relations-box__pic {
    flex: 0 0 150px;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .related-article01-list {
        padding: 0;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
    .related-article01-title {
        font-size:1.8rem;
        margin-bottom: 1.5rem;
    }
}

.pc-fix-banner01 {
    width: 20rem;
    background-color: #00787E;
    position: fixed;
    right: 0;
    bottom: 10rem;
    z-index: 50;
}
.pc-fix-banner01 a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.pc-fix-banner01 a:hover {
    opacity: .7;
}
.pc-fix-banner01-img {
    position: relative;
}
.pc-fix-banner01-text {
    padding: var(--s2);
    color: #fff;
    position: relative;
}
.pc-fix-banner01-text::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid #5CB531;
    border-bottom: .5rem solid #5CB531;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}
.pc-fix-banner01-text p {
    margin: 0;
    font-size: 2rem;
    text-align: center;
    line-height:1.4;
    font-weight:900;
    color:#FFD6AF;
}
.pc-fix-banner01-text p.text-small {
    font-size: 1.6rem;
    line-height: 1.5;
    color:#fff;
    background-color:#5CB531;
    width:50%;
    display: block;
    margin:0 auto 0.5rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner01 {
        display: none;
    }
}

.sp-fix-banner03 {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-fix-banner03 {
        display: block;
        background-color: #00787E;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 1000;
    }
    .sp-fix-banner03-text {
        color: #fff;
        position: relative;
        z-index: 2;
    }
    .sp-fix-banner03-text::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 30%;
        height: 100%;
        background: url("./img/banner_sp.png") no-repeat center / cover;
        content: '';
		z-index: 1;
		pointer-events: none;
    }
    .sp-fix-banner03-text a {
        padding: var(--s1) var(--s4) var(--s1) var(--s2);
        padding-left: calc((100% - var(--s1)) * .5);
        color: #FFD6AF;
        text-decoration: none;
        background: url("./img/arrow-01-wht-right.svg") no-repeat right 1rem center / 1rem auto;
        display: block;
        padding-left: 11rem;
        width: 100%;
        font-weight:900;
		z-index: 2;
		position: relative; 
    }
    .sp-fix-banner03-text a:hover {
        opacity: .7;
    }
    .sp-fix-banner03-text a span {
        background-color:#5CB531;
        padding: 0.3rem 0.3rem;
        font-size:1.4rem;
        display:inline-block;
        margin-bottom:0.3rem;
        color:#fff;
    }
}


.contents-area{
    background: url(./img/bg_contents.png) no-repeat 50% 0;
}

#low-page {
  padding-bottom:10rem;
}

/* mv
---------------------------------------------------------*/
.mainvisual.top {
	background: url(./img/mv.png) no-repeat 50% 0;
	padding:8rem 0;
	background-size:cover;
	z-index:-10;
}
.mainvisual.top .mv-title {
	border-bottom:1rem solid #5CB531;
	position:relative;
	display:inline-block;
	padding: 3rem 3rem 3rem 0;
	color:#fff;
	line-height:1.4;
	z-index: 5;
	margin-bottom: 3rem;
}
.mainvisual.top .mv-title:after {
    position: absolute;
    left: calc(45% - 50vw);
    top: 0;
    width: calc(100% + ((100vw - 52.5rem) / 2));
    height: 100%;
    background-color: rgb(0 120 126 / 0.85); 
	border-bottom:1rem solid #5CB531;
    content: "";
    pointer-events: none;
    z-index: -1;
}
.mainvisual.top .mv-title .logo {
	position: absolute;
	top:-5.7rem;
}
.mainvisual.top .mv-title .logo img {
	width:19.6rem;
}
.mainvisual.top .mv-title .small {
	font-size:3.2rem;
	font-weight:900;
}
.mainvisual.top .mv-title .middle {
	font-size:5.2rem;
	font-weight:900;
}
.mainvisual.top .mv-title .large {
	font-size:6.6rem;
	color:#FFD6AF;
	font-weight:900;
}
.mainvisual.top p{
	background:rgba(255, 255, 255, 0.56);
	padding:1.5rem;
	width:59rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .mainvisual.top {
        background: url(./img/mv_s.png) no-repeat 50% 0;
        background-size: 100%;
        padding-bottom: 3rem;
    }
    .mainvisual.top .mv-title {
        font-size:1.6rem;
        margin-top: 6rem;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    .mainvisual.top .mv-title:after {
        width: calc(100% + ((100vw - 30rem) / 2));
    }
    .mainvisual.top .mv-title .logo img {
	   width:15rem;
    }
    .mainvisual.top .mv-title .small {
	   font-size:2.6rem;
    }
    .mainvisual.top .mv-title .middle {
	   font-size:2.8rem;
    }
    .mainvisual.top .mv-title .large {
	   font-size:3.6rem;
    }
    .mainvisual.top p{
        width:100%;
    }
    .mainvisual.top .mv-title .logo {
        top:-4.3rem;
    }
    
    
}
/* mv lower
---------------------------------------------------------*/
.mainvisual.low{
	background:url(./img/mv-low.png) no-repeat 0 0;
	background-size:cover;
	padding: 3rem 0;
}
.mainvisual.low picture{
	width:1000px;
	display:block;
	margin:0 auto;
}
.mainvisual.low .logo_low{
	width:20%;
	display:block;
	margin: 0 auto;
}
.mainvisual.low a:hover{
    opacity: 0.6;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .mainvisual.low picture{
        width:inherit;
    }
    .mainvisual.low{
        background:url(./img/mv-low-sp.png) no-repeat 0 0;
        background-size:100%;
        padding: 1.5rem 0;
    }
    .mainvisual.low .logo_low{
        width:40%;
    }
}


/* 2.3.2 section-title02 */
.section-title02-frame {
    margin-top: 5rem;
    text-align: center;
    position: relative;
}
.section-title02 {
    font-size: 3.6rem;
    font-weight: 900;
    color: #222222;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 3rem;
}
.section-title02-sub {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--pri);
    text-align: center;
    position: absolute;
    top: -1.5em;
    left: 0;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title02 {
        font-size: 2.8rem;
        line-height: 1.5;
    }
}

  /* 3.0.8 icon-title-r (アイコン+タイトル/右側) */
.icon-title-area {
    display: flex;
    align-items: flex-start;
    gap: var(--s2);
    background-color: #00787E;
}
.icon-title-obj-r {
    width: 7rem;
    height: 7rem;
    flex-shrink: 0;
    margin-top: -2rem;
    margin-left: -1rem;
}
.icon-title-obj-r__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--pri);
    text-align: center;
    line-height: 1.2;
}
.icon-title-r {
    flex: 1;
    font-size: 3rem;
    font-weight: 700;
    color: #FFD6AF;
    line-height: 1.5;
    text-align: center;
}
.icon-title-r.sub {
    text-align: left;
    padding-left:2rem;
}
.two .icon-title-r {
    padding-top:1.2rem;
}
.two .icon-title-r.sub {
    padding-top:1rem;
    padding-left:0.5rem
}
.icon-title-small {
    font-size: 2.2rem;
    display: inline-block;
    color: #fff;
    line-height: 1.4;
}
.one .icon-title-small {
    margin-left:-1.5rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .one .icon-title-small {
        margin-left:0;
        font-size: 2rem;
    }
    .icon-title-r {
        font-size:2.6rem;
    }
    .box-full.two .icon-title-r{
	   padding-top:0.5rem;
    }


}

/* 3.0.1 m-title01 (box専用見出し/中央揃えテキストのみ) */
.m-title01 {
    padding: 1.6rem .8rem .8rem .8rem;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--pri-dark);
    text-align: center;
    line-height: 1.5;
}
.m-title01.three {
    font-size:2.5rem;
    padding-left: 0;
    padding-right: 0;
}

/* 3.7 listbox */
.listbox-bg-colored {
	padding-top: 2rem;
}

.listbox-area {
	margin: 1rem 0 3rem 0;
	padding: var(--s2) var(--s2) var(--s2) var(--s2);
	background-color:#E6F2F3;
	position: relative;
}
.listbox-area.first-child {
    background-color:#fff;
    padding-top:0;
    margin: 2rem 0 0 0;
	padding: 0 0 var(--s2);
}

.listbox-area ul li:before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #5CB531;
  position: absolute;
  top: 0.6rem;
  left: -1rem;
}

.listbox-title {
	padding: var(--s1);
	color: #222;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
}

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

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

.listbox-list li {
	margin: 0 0 0.5rem 0;
	padding: 0 var(--s1);
	line-height: 1.5;
	position: relative;
}

.listbox-list li:last-child {
	margin: 0;
}

.listbox-area.first-child .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;
    border-radius: inherit;
}

.listbox-list li span {
	margin-right: 0;
	text-align: center;
}


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

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

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

	.listbox-title {
		width: 80%;
		margin: -5rem auto 0 auto;
		padding: var(--s4) var(--s1) var(--s1);
		font-size: 1.8rem;
		text-align: center;
	}
    .m-title01 {
        font-size:2.4rem;
    }
}

/* 3.5 tag-list */
/* 3.5
-------------------------------------------------- */
    .taglist-title {
    	text-align: center;
    	font-size: 1.8rem;
    	line-height: 1.5;
    	font-weight: bold;
    }
    .tag-list-2c {
    	display: flex;
    	flex-wrap: wrap;
    	gap: var(--s1);
    	margin-bottom: 2rem;
    }
    .tag-list-2c li {
    	width: calc(94% / 3);
    	padding: var(--s1);
    	text-align: center;
    	line-height: 1.5;
    }
    .tag-list-2c li::before {
    	display: none;
    }
    .tag-colored {
    	background-color: #008ABE;
    	color: #fff;
    }
    .tag-white {
    	background-color: #CACED4;
    	color: #fff;
    }
    .tag-colored .tag-name,
    .tag-white .tag-name {
    	width: 100%;
    	height: 100%;
    	display: flex;	
    	align-items: center;
    	justify-content: center;
    }
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .tag-colored .tag-name,
    .tag-white .tag-name {
        font-size:1.5rem;
    }

}

/* 1.6 caption */
.caption {
    margin-top: var(--s2);
    font-size: 1.2rem;
    color: #666;
    text-align: left;
    line-height: 1.5;
}

/* 6.x bg-02 (背景用クラス) */
.bg-02 {
    background: url("img/bg_02.png") no-repeat 50% 0% #D6E9EA;
    background-size: contain;
}
/* 4.1.0 onb-img-title-box (1カラムbox専用見出し/大アイコン) */
.onb-img-title-box {
	width: calc(100% + 6.4rem);
	margin-left: -3.2rem;
}
.onb-img-title-area {
	display: flex;
	background-color: var(--pri-dark);
	align-items: end;
}
.onb-img-title-image {
	width: 20%;
	padding-left: var(--s4);
}
.onb-img-title-image img {
	margin-top: -6rem;
	width: 100%;
}
.onb-img-title {
	width: 80%;
	padding: var(--s2) var(--s2) var(--s3) var(--s1);
	color: #fff;
	line-height: 1.5;
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
}
.onb-img-title-sub {
	margin-bottom: var(--s1);
	padding: var(--s1);
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	border-bottom: 5px solid var(--acc);
	display: inline-block;
}
.onb-img-title-small {
	font-size: 1.4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-img-title-box {
		width: calc(100% + 3.2rem);
		margin-left: -1.6rem;
	}
	.onb-img-title-image {
		width: 40%;
		padding-left: var(--s1);
	}
	.onb-img-title {
		width: 60%;
		font-size: 2.4rem;
	}
}	

/* 4.1.3 onb-m-title5 (1カラムbox専用見出し/中央揃え罫線タイプ) */
.onb-m-title5 {
	line-height: 1.5;
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
}
.onb-m-title5 span {
	display: flex;
	align-items: center;
}
.onb-m-title5 span::before,
.onb-m-title5 span::after {
	content: "";
	min-width: 5%;
	height: 1px;
	background-color: var(--pri);
	flex-grow: 1;
}
.onb-m-title5 span::before {
	margin-right: var(--s2);
}
.onb-m-title5 span::after {
	margin-left: var(--s2);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-m-title5 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.4rem;
    }
}

/* 2.16 ex-contents */
.ex-contents {
    display: flex;
}
.ex-contents-left {
    padding: 1.5rem;
    background-color: #5CB531;
    font-size: 2.3rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}
.ex-contents-left span {
    width: 100%;
    font-size: 4.6rem;
    line-height: 1.5;
    text-align: center;
    display: block;
}
.ex-contents-right {
    padding: var(--s3) var(--s4);
    border:1px solid #5CB531;
}
.ex-contents-catch {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    color:#5CB531;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .ex-contents-left {
        padding: 0.8rem;
    }
    .ex-contents-left {
        font-size: 1rem;
    }
    .ex-contents-left span {
        font-size: 2rem;
    }
    .ex-contents-catch {
        font-size: 1.8rem;
    }
    .ex-contents-right {
        padding: var(--s2) var(--s2);
    }
    .ex-contents-right p {
        font-size: 1.5rem;
    }
}

/* 3.0.2 m-title02 (box専用見出し/左揃え背景ベタ塗り) */
.m-title02 {
	padding: 1.6rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	background-color: var(--pri-dark);
}

/* 2.10.3 summary-box-l */
.text-area {
    line-height: 2;
}
.summary-box-l {
    padding: 0;
    display: grid;
    grid-auto-rows: minmax(10px, auto) 1fr;
    grid-template-areas: "catch   img" "content img";
}
.summary-box-l-catch {
    padding: 1.6rem .8rem 1.6rem 6rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    background: url('img/icon_voice.png') no-repeat center left / auto 2.5em;
    grid-area: catch;
    color: #5CB531;
}
.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) {
    .text-area {
        font-size: 1.5rem;
    }
    .summary-box-l {
        padding: 0;
        display: block;
    }
    .summary-box-l-catch {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    .summary-box-l-img {
        padding-left: 0;
        margin-bottom: var(--s2);
    }
}

/* 2.3.6 section-title06 */
.section-title06-frame {
    margin-top: 5rem;
    position: relative;
    margin-bottom: 6rem;
    z-index: 0;
}
.section-title06-frame a {
    color:#fff;
    display: block;
	background: url(img/arrow_green.svg) no-repeat right 5rem center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

.section-title06-frame::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #00787E;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-right: 10px solid #5CB531;
}
.section-title06 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    position: relative;
    color: #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title06 {
        padding: var(--s2) var(--s1);
        font-size: 2.4rem;
        text-align: left;
    }
    .section-title06 a{
        background-position: right 2rem top 52%;
    }
    .section-title06-frame::after {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        border-right: 10px solid #5CB531
    }
    .section-title06-frame::before {
        display:none;
    }
    .section-title06-frame {
        margin-top: 4rem;
        margin-bottom:3rem
    }
    .section6 .section-title06 {
        padding: var(--s2) var(--s1);
        font-size: 2.4rem;
        text-align: left;
    }
    .section6 .section-title06 a{
        background-position: right 2rem top 52%;
    }
    
}
 

/* 2.2.1 right-img-box */
.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: 2rem;
    font-weight: 700;
    color: #5CB531;
    line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .right-img {
        width: 100%;
        margin-left: 0;
        padding-bottom: var(--s2);
        float: inherit;
        text-align: center;
    }
}

/* 4.30 l-grid-two (2カラム) */
/*------------------------------------------
    2box column settings
*/
.column-medium {
    padding: var(--s4);
    border: 1px solid #ccc;
}
.twb-box-full {
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .column-medium {
        padding: var(--s2);
    }
    .twb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
}

/* 3.11 com-box */
.com-box-frame {
    border: 1px solid var(--bg-sec);
}

.com-box-title {
    padding: var(--s1);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}

.com-box-area {
    padding: var(--s2);
    display: flow-root;
}

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

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

.com-box-catch {
    margin-bottom: var(--s2);
    font-weight: 700;
    color: var(--pri-dark);
    line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .com-box-area {
        padding: var(--s2) 0;
    }






}




     




/* 4.31 l-grid-three (3カラム) */
/*------------------------------------------
    3box column settings
*/
.column-small {
    padding: var(--s2);
    background-color: #E6F2F3;
}
.thb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
}



/* 1.1.4 acc-more-btn */
.acc-more-btn {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

/* .onb-more-btn
--------------------------------------------------------*/
.acc-more-btn {
	width: 46rem;
	margin: 4rem auto 4rem;
	padding: 2rem 6rem;
	background: #fff;
	border: .2rem solid #00787E;
	border-radius: 30rem;
	box-shadow: 5px 5px 0 0 #CACED4;
	font-weight: 700;
	text-align: center;
	position: relative;
	transition: opacity 0.3s;
	cursor: pointer;
}
#page .acc-more-btn {
    width:24rem;
}

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

.acc-more-btn::after {
	content: "";
	width: .2rem;
	height: 2rem;
	background: #00787E;
	position: absolute;
	top: 50%;
	right: 3.9rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.acc-more-btn:hover {
	opacity: 0.7;
}

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

.more-content {
	display: none;
}


/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn {
		width: 90%;
	}

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

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



/* 4.28.2 iconlist-line */
.icon-list-5c {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s1);
}
.icon-list-5c li {
    width: calc((100% - var(--s4))/ 5);
    font-size: 1.2rem;
    line-height: 1.5;
}
.icon-list-5c li::before {
    display: none;
}
@media screen and (max-width: 767px) {
    .onb-iconlist-bg {
        padding: var(--s2);
    }
    .l-onb-iconlist-line {
        flex-direction: column;
    }
    .l-onb-iconlist-line__side,
    .l-onb-iconlist-line__main {
        width: 100%;
    }
    .l-onb-iconlist-line__side img {
        width: 100%;
    }
    .icon-list-5c {
        gap: var(--s2);
    }
    .icon-list-5c li {
        width: calc((100% - var(--s4))/ 3);
    }
}

/* 4.29 l-onb-exbox-r */
.onb-exbox-frame {
    padding: var(--s2);
    background-color: var(--bg-pri);
}
.onb-exbox-frame p {
    font-size: 1.4rem;
}
.l-onb-exbox {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
}
.l-onb-exbox__side {
    width: calc((100% - var(--s3))*.35);
    padding: var(--s2);
    background-color: #fff;
}
.l-onb-exbox__main {
    width: calc((100% - var(--s3))*.65);
}
.onb-exbox-bgbox {
    padding: var(--s2);
    background-color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    word-break: break-all;
}
.onb-exbox-bgbox span {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: block;
}
.onb-exbox-img {
    padding-left: var(--s4);
    padding-right: var(--s4);
    text-align: center;
}
.onb-exbox-catch {
    margin: var(--s2) 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pri-dark);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .l-onb-exbox {
        flex-direction: column;
    }
    .l-onb-exbox__side,
    .l-onb-exbox__main {
        width: 100%;
    }
    .ex-box {
        display: flex;
        gap: var(--s1);
    }
    .onb-exbox-img {
        width: calc((100% - var(--s1))* .25);
        padding: 0;
    }
    .onb-exbox-catch {
        margin: var(--s1) 0 0 0;
    }
    .ex-box-content {
        width: calc((100% - var(--s1))* .75);
        text-align-last: left;
    }
}

/* 3.9 iconbox01 */
.iconbox01-bg-colored {
    padding-top: 4rem;
}

.iconbox01-area {
    padding: var(--s2);
    background-color: #F6F6F6;
    position: relative;
}

.iconbox01-image {
    width: 12.7rem;
    height: 2.7rem;
    position: absolute;
    top: -4rem;
    background-color: #00787E;
    color: #fff;
    text-align: center;
    padding-top: 0.4rem;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iconbox01-title {
    padding-left: 0;
    padding-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #00787E;
}

.iconbox01-title span {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
}

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


}

/* 1.1.3 btn-link */
.btn-link {
  text-align: right;
}

.btn-link a {
  margin: 0;
  padding: 1rem 3rem 1rem 0;
  background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 0.5em;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
}

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

/* SP settings */
@media screen and (max-width: 767px) {
  .btn-link {
    margin: var(--s1) auto;
  }

  .btn-link a {
    padding: 2.2rem 4rem;
    border: 1px solid #00787E;
    border-radius: 4rem;
    background: url("./img/arrow_green.svg") no-repeat 95% center/auto 1em;
    text-align: left;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    text-align: center;
    background-color: #fff;
  }

  .btn-link a:hover {
    opacity: 1;
  }
}

/* 3.0.3 m-title03 */
.m-title03 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    background: url(img/icon_company.png) no-repeat 0 1rem;
    padding: 1.5rem 0 1.8rem 4.5rem;
    border-bottom: 1px solid #5CB531;
    background-size: 3rem;
}
.m-title03 a {
    display: block;
	background: url(img/arrow_green.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

/* 3.2 imgbox */
.imgbox {
    margin-bottom: var(--s2);
    text-align: center;
}

.imgbox img {
    max-width: 100%;
    height: auto;
}

/* 1.7.0 table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--s2);
}

table th,
table td {
    padding: var(--s1);
    border: 1px solid #CACED4;
    text-align: left;
    background-color: #fff;
    font-size: 1.4rem;
}

table th {
    background-color: #F6F6F6;
    font-weight: 700;
    width: 29%;
    font-size: 1.4rem;
    text-align: center;
}

/* 2.13.3.4 com-box04-sp-float */
.com-box04-sp-float-frame {
    border: 2px solid #6CC0B7;
    margin-bottom: var(--s2);
    background-color: #fff;
    border-radius: 5px;
}

.com-box04-sp-float-area {
    padding: var(--s3);
    display: flow-root;
}

.com-box04-sp-float-img {
    width: 8rem;
    margin-right: var(--s5);
    margin-bottom: var(--s2);
    float: left;
    text-align: center;
    margin-top: 2rem;
}

.com-box04-sp-float-img img {
    width: 100%;
    height: auto;
}

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

.com-box04-sp-float-text {
    overflow: hidden;
}

.com-box04-sp-float-catch {
    margin-bottom: var(--s2);
    font-weight: 700;
    line-height: 1.5;
    border-bottom:2px solid #5CB531;
    padding-bottom:1.5rem;
    font-size:2rem;
}

/* SP settings */
@media screen and (max-width: 767px) {
    .com-box04-sp-float-img {
        width: 6rem;
        float: inherit;
        margin: 0 auto;
    }
    .com-box04-sp-float-catch {
        margin-top:2rem;
    }
}

/* bg-03, bg-05, bg-06 */
.bg-03 {
    background: url(img/bg_03.png) no-repeat 0% 0%;
    background-size:contain;
    /*! z-index: -5; */
    position: relative;
}

.bg-05 {
    background-color: var(--bg-pri);
}

.bg-06 {
    background-color: var(--bg-base);
}

/* .section1
--------------------------------------------------*/
.section1 {
	margin-bottom:0;
	padding: 0 0 8rem;
	background: url(./img/bg_01.png) no-repeat 50% -20%;
	background-size: cover;
}
.lead {
    line-height:1.4;
    margin-bottom:5rem;
    text-align: center;
}
.section1 .column-small {
    padding: 0 var(--s2) var(--s2);
    border: 1px solid #D6E9EA;
    background-color: #fff;
    margin-top:3rem;
}
.section1 .box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
    padding: 1rem var(--s2) 1rem;
    background-color: #00787E;
    color: #fff;
}
.section1 .l-grid-three{
    margin-bottom:1.5rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section1 {
        padding-bottom:4rem;
        background: url(./img/bg_01.png) no-repeat 50% 0;
        background-size: cover;
    }
    .lead {
        margin-bottom:1rem;
        text-align:left;
    }
}

/* .section2
--------------------------------------------------*/
.section2 {
	margin-top:0;
	margin-bottom:0;
	padding: 20rem 0;
}
.section2 .l-stack {
    background-color:#fff;
}
.section2 .l-stack.air,
.section2 .l-stack.mc{
    margin-top:5rem;
}
.section2 .inner {
    padding: 1rem 5rem 5rem;
}
.section2 .center-img  {
    text-align: center;
    max-width:70%;
    margin: 0 auto;
}
.section2 .icon-title-area {
    padding: 1rem 0;
    position: relative;
}
.section2 .icon-title-obj-r {
    content:"";
    width: 12.2rem;
    height: 11.3rem;
    margin-top: -2rem;
    margin-left: 2rem;
    position: absolute;
}
.section2 .m-title01{
    margin:0;
    padding: 0;
    font-size:3.2rem;
}
.section2 .m-title02{
    background-color:#00787E;
    padding:0.8rem 0 0.8rem 6rem;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    margin-top: 4rem;
}
.section2 .m-title02:before{
    content:"";
    width:1rem;
    height:7.5rem;
    background-color:#5CB531;
    position:absolute;
    transform: skewX(-38deg);
    top:0;
    left:1.8%;
}
.section2 .btn-web a{
    padding-top:2rem;
    padding-bottom:2rem;
}
.section2 .onb-taglist-bg {
	padding: var(--s2);
	background-color: #F6F6F6;
}
.onb-taglist-title {
	text-align: center;
	font-size: 2.1rem;
}
.tag-list-6c {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2);
}
.tag-list-6c li {
	width: calc((100% - var(--s10))/ 6);
	padding: .8rem;
	text-align: center;
	line-height: 1.5;
}
.tag-list-6c li::before {
	display: none;
}
.onb-tag-colored {
	background-color: #008ABE;
	color: #fff;
}
.onb-tag-white {
	background-color: #CACED4;
    color:#fff;
}
.onb-tag-colored .tag-name,
.onb-tag-white .tag-name {
	width: 100%;
	height: 100%;
	display: flex;	
	align-items: center;
	justify-content: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-taglist-bg {
		padding: var(--s2);
	}
	.tag-list-6c {
		gap: var(--s1);
	}
	.tag-list-6c li {
		/*! width: calc((100% - var(--s1))/ 2); */
		width: calc(93% / 3);
		padding: var(--s1);
		text-align: center;
		line-height: 1.5;
	}
    .section2 {
        padding-top:6rem;
        padding-bottom: 8rem;
    }
    .section2 .icon-title-obj-r {
        width: 7rem;
        height: 7rem;
        flex-shrink: 0;
        margin-top: -2rem;
        margin-left: 1rem;
    }
    .section2 .inner {
        padding: 1.5rem;
    }
    .section2 .m-title02{
        margin-top:0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        font-size: 2.2rem;
        padding-left: 3rem;
        margin-bottom: 1.5rem;
    }
    .section2 .m-title02:before{
        height:10rem;
        transform: inherit;
        top:0;
        left:0;
    }
    .section2 .l-stack.air,
    .section2 .l-stack.mc{
        margin-top:1rem;
    }
    .section2 .center-img  {
        max-width:100%;
    }
    .section2 .btn-tel {
        margin-top:0;
    }

}


/* .section3
--------------------------------------------------*/
.section3 {
	margin-top:0;
	margin-bottom:0;
	padding: 8rem 0 0;
}
.section3 .l-grid-three .tag {
    background-color:#fff;
    padding:1.5rem 1rem 0;
    margin:2rem 0;
}
.section3 .l-grid-three p {
    margin:2rem 0;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section3 {
        padding-top:3rem;
        padding-bottom: 8rem;
    }






}

/* .section4
--------------------------------------------------*/
.section4 {
	margin-top:8rem;
	margin-bottom:0;
	padding: 8rem 0 10rem;
}
.section4.bg-04 {
    background: url(img/bg_03.png) no-repeat 0 0 #E6F2F3;
    z-index: -10;
}
.section4 .column-small {
    padding: var(--s2);
    background-color: #fff;
    border-top: 4px solid #00787E;
}
.section4 a {
    display: block;
	background: url(img/arrow_green.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section4 {
	   margin-top:0;
       padding-top:4rem;
    }
    .section4 .section-title06 {
        padding: var(--s2) var(--s1);
        font-size: 2.4rem;
        text-align: left;
    }
    .section4 .section-title06 a{
        background-position: right 2rem top 52%;
    }





}

/* .section5
--------------------------------------------------*/
.section5 {
	margin-top:8rem;
	margin-bottom:8rem;
	padding: 6rem 0;
}
.section5 .column-small{
    background-color:#F6F6F6;
    padding:0;
}
.section5 a{
    display: block;
	background: url(img/arrow_green.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section5 {
	   margin-top:0;
        padding-top:4rem;
	   margin-bottom: 0;
	   padding-bottom: 0;
    }
    .section5 .section-title06 {
        padding: var(--s2) var(--s1);
        font-size: 2.4rem;
        text-align: left;
    }
    .section5 .section-title06 a{
        background-position: right 2rem top 52%;
    }
    .section5 .column-small{
        margin-top:3rem;
    }

}

/* .section6
--------------------------------------------------*/
.section6 {
	margin-top:8rem;
	margin-bottom:0;
	padding: 6rem 0 8rem;
}
.section6.bg-06 {
    background: url(img/bg_03.png) no-repeat 0 0 #E6F2F3;
}
.section6 a{
    display: block;
	background: url(img/arrow_green.svg) no-repeat right 1rem center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
    padding-right: 4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section6 {
        padding-bottom: 6rem;
    }
    .section6 .btn-link a{
        background-color:#fff;
    }

}

/* conclusion-box-frame
-------------------------------------------------------------------*/
.conclusion-box-frame {
	margin-top: 10rem;
	padding: var(--s2) var(--s4) var(--s4) var(--s4);
	background-color: #E6F2F3;
	margin-bottom: 10rem;
}
.conclusion-box-ttl {
	position: relative;
}
.conclusion-box-ttl__icon {
	width: 10.5rem;
	height: 10.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("img/icon_matome.png") no-repeat 0 0;
	position: absolute;
	left: 0rem;
	top: -4rem;
}
.conclusion-box-ttl__icon span {
	color: #fff;
	font-size: 2rem;
}
.conclusion-box-ttl__text {
	padding-top: var(--s2);
	padding-bottom: var(--s2);
	margin-left: 15rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 1px solid #00787E;
	color: #5CB531;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.conclusion-box-ttl__icon {
		width: 8rem;
		height: 8rem;
		right: 50%;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.conclusion-box-ttl__text {
		margin-left: 0;
		padding-left: 0;
		padding-top: var(--s6);
		padding-bottom: var(--s2);
	}
	.l-onb-conclusion-img {
		width: 36%;
	}
}