@charset "utf-8";
/* ---------------------------------------------
acc ※TOP、下層共通
--------------------------------------------- */
.acc-more-btn {
	max-width: 46rem;
  width: 100%;
	margin: var(--s5) auto;
	position: relative;
}
.acc-more-btn span {
    width: 80%;
    margin: var(--s5) auto;
    padding: 2rem 6rem 2rem 7rem;
    border-radius: 4rem;
    background: url(./img/acc-off.svg) no-repeat 95% center #E8ECEF;
    display: block;
    text-align: center;
    font-weight: bold;
    transform: translate(0, 0);
    transition: transform 0.3s;
}
.acc-more-btn::after {
    content: '';
    display: block;
    width: 80%;
    height: 100%;
    background-color: #A6AFB8;
    border-width: 0 1px 1px 0;
    transform: translate(5.4rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.acc-more-btn:hover span {
	transform: translate(.8rem, .8rem);
}
.acc-more-btn.is-open span {
	background: url('./img/acc-on.svg') no-repeat 95% center #E8ECEF;
}
.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;
	}
}
/* ---------------------------------------------
navigation01 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
	padding: var(--s1);
	text-align: right;
	background: var(--site-color03);
}
.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
	color: #fff;
}
.header-title::before {
	content: "PR";
	padding: .2rem;
	color: #222;
    background-color: #fff;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -2.4rem;
}
.header-title a {
	text-decoration: none;
	color: #fff;
}
.header-title a:hover {
	text-decoration: underline;
}
.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 {
    border-bottom: 1px solid #E8ECEF;
	border-top: 1px solid #E8ECEF;
    padding: 0 4rem;
    background: #fff;
    z-index: 100;
}
.navigation01-menu {
	display: flex;
	    justify-content: space-between;
}
.navigation01-menu li {
    position: relative;
    flex: 1;
    text-align: center;
}
.navigation01-menu li::before {
	display: none;
}
.navigation01-menu li a {
	padding: var(--s2) var(--s2);
	display: block;
	text-decoration: none;
	text-align: center;
}
.navigation01-menu li a:hover {
	opacity: .6;
}
.navigation01-menu li a::before {
    content: "";
    position: absolute;
    background: #E8ECEF;
    width: 1px;
    height: 70%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* 先頭 li の左側に線を追加 */
.navigation01-menu li:first-child a::after {
    content: "";
    position: absolute;
    background: #E8ECEF;
    width: 1px;
    height: 70%;
    left: 0; /* 左側に配置 */
    top: 50%;
    transform: translateY(-50%);
}
/*
---------------------------------------------
    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(--s7);
		height: var(--s6);
		background: #333;
		display: block;
		position: fixed;
		top: var(--s3);
		right: 0;
		z-index: 200;
		cursor: pointer;
	}
	.gnavi-btn span {
		width: var(--s4);
		height: 0.2rem;
		display: inline-block;
		background: #fff;
		position: absolute;
		left: 1.2rem;
		transform: translate(0, -50%);
		transition: transform 0.4s, opacity 0.4s;
	}
	.gnavi-btn span:nth-of-type(1) {
		top: 1.7rem;
	}
	.gnavi-btn span:nth-of-type(2) {
		top: 2.4rem;
	}
	.gnavi-btn span:nth-of-type(3) {
		top: 3.1rem;
	}
	.gnavi-btn.is-active span:nth-of-type(1) {
		transform: translateY(0.7rem) rotate(-45deg);
	}
	.gnavi-btn.is-active span:nth-of-type(2) {
		opacity: 0;
	}
	.gnavi-btn.is-active span:nth-of-type(3) {
		transform: translateY(-0.7rem) rotate(45deg);
	}
	.gnavi-btn-close {
		width: 80%;
		margin: 0 auto;
		padding: var(--s2);
		background: #333;
		display: block;
		text-align: center;
		border-radius: 30px;
	}
	.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: #F5F5F5;
		overflow-x: hidden;
		overflow-y: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		transform: translateX(100%);
		transition: transform 0.8s ease, opacity 0.8s ease;
		opacity: 0;
	}
	.gnavi-title {
		min-height: var(--s6);
		margin: 0 var(--s8);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.6rem;
		font-weight: 700;
		text-align: center;
		line-height: 1.5;
	}
	.gnavi-pc {
		display: none;
	}
	.gnavi-list {
		border-bottom: 1px solid #333;
		position: relative;
	}
	.gnavi-list li {
		padding-left: 0;
	}
	.gnavi-list__item::before {
		display: none;
	}
	.gnavi-list__link {
		width: 100%;
		margin: 0 auto;
		padding: var(--s2) var(--s4) var(--s2) var(--s2);
		border-top: 1px solid #333;
		display: block;
		font-weight: 700;
		line-height: 2;
		text-decoration: none;
		position: relative;
	}
	.gnavi-list__link::after {
		content: "";
		width: 1.4rem;
		height: 1.4rem;
		background: url("img/arrow-01-black-right.svg") no-repeat center/100% auto;
		position: absolute;
		top: 50%;
		right: var(--s2);
		transform: translate(0, -50%) rotate(0);
		transition: transform 0.3s;
	}
	.gnavi-list__link--toggle::after {
		background-image: url("img/arrow-01-black-down.svg");
	}
	.gnavi-list__link--toggle.is-open::after {
		transform: translate(0, -50%) rotate(180deg);
	}
	.gnavi-list__sub {
		width: 100%;
		background: #fff;
	}
	.gnavi-list__low .gnavi-list__link {
		padding: var(--s2) var(--s4) var(--s2) var(--s4);
	}
	.gnavi-list__low .gnavi-list__link::after {
		content: "└";
		background: none;
		transform: translateY(-50%);
		position: absolute;
		top: 40%;
		left: 1rem;
	}
	.is-gnavi-open .gnavi-area {
		opacity: 1;
		transform: translateX(0);
	}
	/*------------------------------------------
	Global menu settings
	*/
	.navigation01-menu-area {
		display: none;
	}
}

/* ---------------------------------------------
index02(目次)
--------------------------------------------- */
.onb-index02-frame {
    width: 100%;
}
.onb-index02-wrap {
    margin: var(--s6) auto;
    padding: var(--s1) var(--s3) var(--s2) var(--s3);
    background-color: #fff;
    border: #222222 1px solid;
    position: relative;
}
.onb-index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s2);
    color: var(--site-color03);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    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: #247DB8;
    position: absolute;
    font-weight: bold;
    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 #222222;
    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%, #fff 100%);
}
#toc.onb-index02-gradation.is-open::after {
    display: none;
}
.onb-index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    position: relative;
    z-index: 5;
}
.onb-index02-btn span {
    width: 100%;
    margin: var(--s3) auto;
    padding: 2rem 6rem 2rem 7rem;
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #E8ECEF;
    display: block;
    text-align: center;
    font-weight: bold;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}
.onb-index02-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #A6AFB8;
    border-width: 0 1px 1px 0;
    transform: translate(.8rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.onb-index02-btn:hover span {
    transform: translate(.8rem, .8rem);
}
.onb-index02-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #E8ECEF;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    #toc .onb-index02-chapter {
        padding-left: var(--s4);
    }    
    .onb-index02-btn:hover span {
        transform: none;
    }
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    border: 1px solid var(--site-color09);
    margin: var(--s6) auto;
    padding: var(--s1)  var(--s3)  var(--s4) var(--s3);
    background: #fff;
    position: relative;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s2);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    border-bottom: 1px solid #222222;
}
.related-article01-list {
    padding: var(--s2) 0 var(--s2) var(--s2);
    font-weight: 700;
}
.related-article01-list li {
    margin: 0 0 0 var(--s2);
    padding-left: 1.5em;
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.related-article01-list li + li {
    margin-top: 10px;
}
.related-article01-list li::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background-color: #247DB8;
    position: absolute;
    top: .9rem;
    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;
		margin-top: 2rem;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
}
/* ---------------------------------------------
top
--------------------------------------------- */
.sec01 {
    padding-bottom: 8rem;
}
.sec02 {
    padding: 0 0 9rem;
}
.sec03, .sec04 {
    padding: 9rem 0;
}
/*------------------------------------------
    bg
*/
.bg-03 {
  background: #fff url('./img/bg-01.png') repeat center;
  background-size: cover;
}
.bg-04 {
  background-color: #E8ECEF;
	margin-bottom: -5rem;
}
/*------------------------------------------
    1box column settings
*/
.column-medium {
    padding: var(--s4);
    border: 1px solid #ccc;
}
.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);
    }
}
/*------------------------------------------
    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);
    }
}
/*------------------------------------------
    3box column settings
*/
.column-small {
    padding: var(--s2);
}
.thb-box-full {
    width: calc(100% + var(--s6));
    margin-left: calc(var(--s3)* -1);
}

.mh_dl {
    display: grid;
}

/* ---------------------------------------------
top h2
--------------------------------------------- */
.section-title07-frame {
    margin-top: 5rem;
    position: relative;
}
span.bg {
    display: table;
    background: #247DB8;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 3rem;
    margin: 1rem auto;
}
.sec01 .section-title07-frame::before {
    content: "RECOMMENDED";
    width: 100%;
    font-size: 9rem;
    font-weight: 700;
    color: transparent;
    text-align: center;
    position: absolute;
    top: -7rem;
    left: 0;
	font-family: 'oswald', sans-serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #717171;
}
.sec03 .section-title07-frame::before {
    content: "FEATURES";
    width: 100%;
    font-size: 9rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F1C2C3;
    text-align: center;
    position: absolute;
    top: -7rem;
    left: 0;
	font-family: 'oswald', sans-serif;
}
.sec04 .section-title07-frame::before {
    content: "Pros & Cons";
    width: 100%;
    font-size: 9rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F1C2C3;
    text-align: center;
    position: absolute;
    top: -7rem;
    left: 0;
	font-family: 'oswald', sans-serif;
}
.section-title07 {
    width: 100%;
    padding: var(--s6) var(--s12) 0;
    margin-bottom: 3rem;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    line-height: 1.6;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title07-frame {
        background-color: transparent;
    }
    .section-title07-frame::before {
        width: 100%;
        padding: var(--s1) 0;
        font-size: 6rem;
        top: -6rem;
    }
    .section-title07 {
        padding: var(--s2) var(--s2) 0 var(--s2);
        font-size: 2.4rem;
    }
}

/* ---------------------------------------------
sec01
--------------------------------------------- */
#low-page .sec01 .column-small, .designpage .sec01 .column-small {
    background: #fff;
	padding: 0 var(--s2);
	border: none;
}
.sec01 .column-small ul.ex {
    margin: 0 0 2rem;
}
.sec01 .column-small ul li {
   position: relative;
    padding-left: 2rem;
}
.sec01 .column-small ul li span {

}
.sec01 .column-small ul li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #247DB8;
    position: absolute;
    top: 0.45em;
    left: 0;
}
.sec01 .column-small ul.thb-listbox-list li::before {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    border-radius: inherit;
    background-color: transparent;
    position: absolute;
    top: 0.1em;
    left: -16px;
}
.arrow-title {
	margin-bottom: 2.3rem;
	padding: var(--s2);
    background: #DFE5E9;
    border-bottom: 1px solid #222222;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	position: relative;
	font-size: 2.2rem;
}
.arrow-title img {
    margin-top: 1rem;
	width: auto;
    height: 130px;
}
.arrow-title::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 1.5rem solid transparent;
	border-left: 1.5rem solid transparent;
	border-right: 1.5rem solid var(--site-color03);
	border-bottom: 1.5rem solid var(--site-color03);
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	left: 50%;
	bottom: -1.5rem;
}
.arrow-title-sub {
	padding: var(--s1);
	margin-bottom: .8rem;
	background-color: #AD0306;
	font-size: 2.1rem;
	color: #fff;
	line-height: 1;
	display: inline-block;
}
.arrow-title-small {
	font-size: 1.4rem;
}
.sec01 .thb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2)* -1);
}

.m-title01 {
	padding: var(--s2) var(--s1) var(--s3)var(--s1);
	font-size: 2.2rem;
	font-weight: 700;
	color: #247DB8;
	text-align: center;
	line-height: 1.5;
	display: flex;
    justify-content: center;
    align-items: center;
}

.thb-taglist-title {
	text-align: center;
	font-size: 1.8rem;
    font-weight: bold;
	line-height: 1.5;
	border-bottom: 1px solid #000;
    padding-bottom: 1rem;
}
.thb-tag-list-2c {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s1);
}
.thb-tag-list-2c li {
	width: calc((100% - var(--s1))/ 2);
	padding: var(--s1);
	text-align: center;
	line-height: 1.5;
}
.thb-tag-list-2c li::before {
	display: none;
}
.thb-tag-colored {
	background-color: var(--site-color14);
	color: #fff;
}
.thb-tag-white {
	border: 1px solid var(--site-color16);
	background-color: #fff;
	color: var(--site-color16);
}
.thb-tag-colored .tag-name,
.thb-tag-white .tag-name {
	width: 100%;
	height: 100%;
	display: flex;	
	align-items: center;
	justify-content: center;
}
.thb-listbox-bg-colored {
    padding-top: 2rem;
}
.thb-listbox-area {
    padding: 5rem var(--s2) var(--s2) var(--s2);
    background-color: #EFEFEF;
    position: relative;
    display: block;
}
.thb-listbox-title {
    display: table;
    margin: -6.5rem auto 1rem;
    padding: var(--s1);
    color: #fff;
    font-weight: bold;
    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;
    display: block;
}
.thb-listbox-list li {
    padding: 0 var(--s1);
    margin-bottom: 1rem;
    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) {
    .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: -5.5rem auto 1rem auto;
        padding: var(--s1);
        font-size: 1.4rem;
        text-align: center;
    }
}
/* ---------------------------------------------
sec02
--------------------------------------------- */
#low-page .sec02 .column-medium {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 0 var(--s4) var(--s8);
}
.sec02 .column-medium {
    padding: 0  var(--s4) var(--s8);
    background: #fff;
	box-shadow: 8px 8px 0px 0px #777777;
}
.sec02 .btn-web {
    margin: var(--s1) auto var(--s2);
}
.section-title01-frame {
    padding-top: 2rem;
	padding-bottom: 4rem;
    position: relative;
}
.section-title01-frame p {
    color: #32373c;
}
.section-title01-bg {
    padding: 10rem 7.2rem 3.2rem 7.2rem;
    position: relative;
    z-index: 2;
}
.section-title01 {
    margin-bottom: 5rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: #32373c;
    line-height: 1.5;
    text-align: center;
    position: relative;
}
.section-title01::before {
    content: "DETAILS";
    padding: 0 var(--s2);
    font-size: 2.2rem;
    transform: translateX(-50%);
    color: #AD0306;
    position: absolute;
    top: -4.8rem;
    left: 50%;
    z-index: 3;
	font-family: 'oswald', sans-serif;
}
.section-title01::after {
    content: "";
    height: 1px;
    transform: translateX(-50%);
    background-color: #ccc;
    position: absolute;
    top: -2rem;
    left: 50%;
    z-index: 2;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	#low-page .sec02 .column-medium {
    padding: 0 var(--s2) var(--s4);
}
	.section-title01-frame {
	padding-bottom: 0;
}
    .section-title01-bg {
        padding: var(--s7) var(--s2) var(--s1) var(--s2);
    }
    .section-title01 {
        margin-bottom: var(--s3);
        font-size: 2.4rem;
    }
    .section-title01::before {
        font-size: 1.8rem;
        top: -3.2rem;
    }    
	.sec02 .btn-web {
    margin: 0 auto;
}
	.sec02 .btn-tel {
    margin: 1rem 0;
}
}
.onb-img-title-box {
	width: calc(100% + 6.4rem);
	margin-left: -3.2rem;
    position: relative;
}
.onb-img-title-box::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 1.5rem solid transparent;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid var(--site-color03);
    border-bottom: 1.5rem solid var(--site-color03);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    bottom: -1.3rem;
}
.onb-img-title-area {
	display: flex;
	background-color: var(--site-color03);
    justify-content: center;
    align-items: center;
}
.onb-img-title-image {
	width: 14%;
    padding-left: var(--s2);
    text-align: right;
}
.onb-img-title-image img {
	width: 80%;
}
.onb-img-title {
    padding: var(--s4) var(--s4) var(--s4) var(--s2);
    color: #fff;
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
}
.onb-img-title-sub {
    padding: var(--s2);
    color: #fff;
    font-size: 3.2rem;
    line-height: 1;
    display: inline-block;
    background: #AD0306;
    margin-right: 1rem;
}
.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;
	}
}

.onb-center-img {
	max-width: 64%;
	margin: 0 auto 3rem;
}
.onb-center-img .caption {
    text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-center-img {
		max-width: 100%;
        margin: 0 auto;
	}	
}

.section-title04 {
    margin-top: 5rem;
	margin-bottom: 4rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: #247DB8;
    text-align: center;
    position: relative;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title04 {
        font-size: 2.2rem;
        line-height: 1.5;
		margin: 3rem 0;
    }
}

.onb-m-title6 {
    padding: .5rem 1rem .8rem 1rem;
    margin-top: 6rem;
    line-height: 1.5;
    font-size: 2.2rem;
    font-weight: 700;
    border-bottom: 1px solid #191919;
    text-align: center;
}

.conclusion-box-frame {
	margin-top: 3rem;
	padding: var(--s2) var(--s4) var(--s4) var(--s4);
	background: url('./img/conclusion-bg.png') repeat-y top right #E9E9E9;
}
.conclusion-box-ttl {
	position: relative;
}
.conclusion-box-ttl__icon-frame {
	position: absolute;
	left: -4.8rem;
	bottom: 1rem;
	z-index: 10;
}
.conclusion-box-frame .caption {
    text-align: left;
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.conclusion-box-ttl__icon {
	width: 9rem;
	height: 9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #247DB8;
}
.conclusion-box-ttl__icon span {
    color: #fff;
    font-size: 4rem;
    font-family: 'oswald', sans-serif;
    font-weight: bold;
}
.conclusion-box-ttl__text {
	padding-top: var(--s2);
	padding-bottom: var(--s3);
	margin-left: 7rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	border-bottom: 1px solid var(--site-color03);
}
.conclusion-box-content {
	z-index: 5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.conclusion-box-frame {
        background-size: 50% auto;
        padding: var(--s2) var(--s3) var(--s4) var(--s3);
    }
	.conclusion-box-ttl__icon-frame {
		top: -3.2rem;
		left: -3.6rem;
		bottom: inherit;
	}
	.conclusion-box-ttl__icon {
		width: 6rem;
		height: 6rem;
	}
	.conclusion-box-ttl__text {
		margin-left: 0;
		padding-left: 4rem;
		padding-top: var(--s1);
		padding-bottom: var(--s2);
		        font-size: 1.8rem;
	}
	.l-onb-conclusion-img {
		width: 36%;
	}
}

.onb-2column-slider {
    padding-bottom: 3rem;
}
.onb-2column-slider .caption {
    text-align: center;
}
.onb-2column-slider.right {
    background: #F2F2F2;
    padding: 3rem 3rem 2rem 3rem;
}
.onb-2column-slider.right .dl-style {
    margin: 0 0 2rem;
}
.onb-2column-slider.right .dl-style dt {
    margin: 0 0 1rem;
}
.onb-2column-slider .swiper-button-next,
.onb-2column-slider .swiper-button-prev {
    width: 2rem;
    height: 2rem;
    top: 45%;
}
.onb-2column-slider .swiper-button-next:hover,
.onb-2column-slider .swiper-button-prev:hover {
    opacity: .6;
}
.onb-2column-slider .swiper-button-next::after,
.onb-2column-slider .swiper-rtl .swiper-button-prev::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("./img/slider-arrow-right.svg") no-repeat center center;
    background-size: contain;
}
.onb-2column-slider .swiper-button-prev::after,
.onb-2column-slider .swiper-rtl .swiper-button-next::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("./img/slider-arrow-left.svg") no-repeat center center;
    background-size: contain;
}

.swiper-backface-hidden .swiper-slide {
    text-align: center;
}
.swiper-backface-hidden .swiper-slide img {
    object-fit: contain;
    height: 240px;
    background: #fff;
}
.dl-style dt {
	padding-left: var(--s1);
	margin: 2rem 0 1rem;
	border-left: 5px solid #247DB8;
	color: #247DB8;
	font-weight: 700;
}
.dl-style dd {
	line-height: 2;
	padding: 0 0 0 1.5rem;
	position: relative;
}

.dl-style dd::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #247DB8;
    position: absolute;
    top: 0.75em;
    left: 0;
}

.text-area {
	line-height: 1.6;
}
.summary-box-l {
    padding: var(--s4);
    margin-bottom: 3rem;
    border: 1px solid #222222;
    display: grid;
    grid-auto-rows: minmax(10px, auto) 1fr;
    grid-template-areas: "catch img" "content img";
}
.summary-box-l-content .caption {
    text-align: left;
	overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
/* スクロールバー全体を対象にする */
.summary-box-l-content .caption::-webkit-scrollbar {
    width: 6px; /* スクロールバーの幅 */
    height: 6px; /* スクロールバーの高さ */
}

/* スクロールバーの背景部分をカスタマイズ */
.summary-box-l-content .caption::-webkit-scrollbar-track {
    background: #f1f1f1; /* スクロールバーの背景色 */
    border-radius: 5px; /* 角丸にする */
}

/* スクロールバーの操作部分をカスタマイズ */
.summary-box-l-content .caption::-webkit-scrollbar-thumb {
    background: #bebebe; /* スクロールバーの操作部分の背景色 */
    border-radius: 5px; /* 角丸にする */
}
.summary-box-l-catch {
    padding: var(--s2) var(--s1) var(--s2) var(--s9);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    background: url('./img/icon-case01.svg') no-repeat center left / auto 2em;
    background-size: 6rem 6rem;
    grid-area: catch;
	margin-bottom: 2rem;
}
.summary-box-l:nth-child(2) .summary-box-l-catch {
    background: url('./img/icon-case02.svg') no-repeat center left / auto 2em;
    background-size: 6rem 6rem;
	margin-bottom: 2rem;
}
.summary-box-l-img {
    padding-left: var(--s4);
    grid-area: img;
}
.summary-box-l-content {
    grid-area: content;
	width: 520px;
}
.summary-box-l-img .caption {
    text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .text-area {
        font-size: 1.4rem;
    }
    .summary-box-l {
        padding: var(--s2);
        display: block;
    }
    .summary-box-l-catch {
        margin-bottom: var(--s2);
        font-size: 1.8rem;
        line-height: 1.4;
        padding: 0 var(--s1) 0 var(--s9);
    }
    .summary-box-l-img {
        padding-left: 0;
        margin-bottom: var(--s2);
    }
	.onb-2column-slider.right {
    background: #F2F2F2;
    padding: 3rem 2rem 2rem;
}
	.summary-box-l-content {
    grid-area: content;
	width: 100%;
}
}

.l-onb-access-table {
	display: flex;
	gap: var(--s2);
}
.l-onb-access-table__side {
	width: calc((100% - var(--s2))*.4);
}
.l-onb-access-table__main {
	width: calc((100% - var(--s2))*.6);
}
.l-onb-access-table__main table {
    margin: 0 !important;
}
.onb-access-table {
	border-collapse: collapse;
}
.onb-access-table th,
.onb-access-table td {
	padding: var(--s2);
	border: 1px solid #D3D3D3;
}
.onb-access-table th {
	width: 34%;
	background-color: #E9EFF0;
	vertical-align: middle;
	font-weight: normal;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-access-table {
		flex-direction: column;
	}
	.l-onb-access-table__side,
	.l-onb-access-table__main {
		width: 100%;
	}
    .onb-access-table th {
        width: 100%;
    }
    .onb-access-table td {
        width: 100%;
    }
}

/* ---------------------------------------------
sec03
--------------------------------------------- */
.left-img-box {
	display: flow-root;
}
.left-img {
	width: 40%;
	margin-right: var(--s4);
	padding-bottom: var(--s1);
	float: left;
}
.left-img-catch {
	margin-bottom: 1.6rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.left-img {
		width: 100%;
		margin-right: 0;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
	}
}
/* ---------------------------------------------
sec04
--------------------------------------------- */
#low-page .sec04 .column-medium {
    background: #fff;
}
#low-page .sec04 .column-medium .caption {
    text-align: left;
}
.twb-m-title01 {
	padding: .8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	line-height: 1.5;
}

.twb-m-title05 {
	padding-bottom: 1.6rem;
	margin-bottom: 2rem;
	display: grid;
	align-items: center;
	grid-gap: var(--s2);
	grid-template-columns: 8.6rem 1fr;
	border-bottom: 1px solid #222222;
}
.twb-m-title05__right {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
}

/* ---------------------------------------------
pickup-contents03-l
--------------------------------------------- */
.l-pickup-contents03-l {
    width: 100%;
    background: #E8ECEF;
    position: relative;
	margin: 10rem 0 7rem;
	box-shadow: 8px 8px 0px 0px #777777;
}
.l-pickup-contents03-l::before {
    content: "";
    width: 8rem;
    height: 8rem;
    background: url(/wp/wp-content/uploads/icon-point.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
}
.l-pickup-contents03-l-catch {
    padding: var(--s4) var(--s8) var(--s4) var(--s14);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    grid-area: catch;
    background: #222;
    color: #fff;
    margin-bottom: 4rem;
}
.l-pickup-contents03-l-img {
    padding: var(--s8);
    grid-area: image;
}
.l-pickup-contents03-l-content {
    padding: 0 var(--s8) var(--s8) var(--s8);
    grid-area: content;
    position: relative;
    z-index: 5;
}
.btn-pickup-contents03 {
    margin: var(--s5) auto 0 auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-pickup-contents03-l {
        grid-template-columns: none;
        grid-template-areas: inherit;
		margin: 6rem 0;
    }
    .l-pickup-contents03-l::before {
        width: 5.8rem;
        height: 5.8rem;
        top: 1.6rem;
        left: 1rem;
    }
    .l-pickup-contents03-l-catch {
        padding: var(--s2) var(--s2) var(--s2) var(--s10);
        font-size: 2rem;
		margin-bottom: 2rem;
		
    }
    .l-pickup-contents03-l-img {
        padding: var(--s2);
    }
    .l-pickup-contents03-l-content {
        max-width: inherit;
        padding: 0 var(--s2) var(--s4) var(--s2);
    }
    .l-pickup-contents03-l-catch,
    .l-pickup-contents03-l-img,
    .l-pickup-contents03-l-content {
        grid-area: inherit;
    }
}

/* ---------------------------------------------
3box
--------------------------------------------- */
.l-grid-three .tmpl {
    margin: 6rem 0;
}
#low-page .l-grid-three {
    --minimum: calc((100% - var(--s2)* 2) / 3);
    display: grid;
    grid-gap: var(--s2);
}
.sec01.lower .column-small, .designpage .column-small {
    background: #fff;
    padding: 0 var(--s2) var(--s2);
}

#low-page .l-grid-three.top-grid {
    --minimum: calc((100% - var(--s2)* 2) / 2);
    margin: 4rem 0 0;
}

.m-title02 {
    padding: var(--s2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    background-color: var(--site-color09);
    display: flex;
    align-items: center;
}
.m-title02 a {
    text-decoration: none;
    display: block;
    background: url(img/arrow-01-wh-right.svg) no-repeat center right;
    background-size: 7px auto;
    padding-right: 3rem;
	color: #fff;
}
.m-title02 a:hover {
    opacity: 0.6;
}
#low-page .thb-table {
	line-height: 1.5;
	border-collapse: collapse;
	border: 1px solid #D3D3D3;
	margin-block: 0!IMPORTANT;
    word-break: break-all;
}
.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #D3D3D3;
}
.thb-table th {
	width: 16%;
	background-color: #F2F2F2;
	text-align: left;
}

/* ---------------------------------------------
com-box04-r
--------------------------------------------- */
.com-box04-frame {
	padding: var(--s4);
    background: #fff;
	margin: 3rem 0;
	border: 1px solid #222222;
}
.com-box04-title {
	margin-bottom: var(--s2);
	padding: var(--s2);
	background-color: #f0f0f0;
	color: var(--site-color03);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}
.com-box04-title a {
    background: url(img/arrow-01-bk-right.svg) no-repeat center right ;
    background-size: 7px auto;
    padding-right: 3rem;
    text-decoration: none;
}

.com-box04-title a:hover{
	opacity:.6;
}

.com-box04-area {
	display: flex;
	gap: var(--s4);
}
.com-box04-text p {
    line-height: 1.5;
}
.com-box04-text .caption {
	color: var(--site-color13);
}
.com-box04-img {
	width: calc((100% - var(--s4))*.2);
	text-align: center;
}
.com-box04-img span {
	margin-top: var(--s1);
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
.com-box04-catch {
	margin-bottom: var(--s2);
	color: var(--site-color03);
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.com-box04-frame {
		padding: var(--s2);
	}
	.com-box04-area {
		flex-direction: column;
		gap: var(--s2);
	}
	.com-box04-title {
		margin-bottom: var(--s2);
		font-size: 1.8rem;
	}
	.com-box04-img {
		width: 50%;
		margin: 0 auto;
	}
	.com-box04-text {
		width: 100%;
	}
	.com-box04-catch {
		font-size: 1.8rem;
	}
}


/* ---------------------------------------------
footer_banner
--------------------------------------------- */

.txt-concept {
    max-width: 860px;
    color: #fff;
    line-height: 1.67;
    margin: 0 auto 7rem;
}

.sec04 .txt-concept {
    color: #373A3C;
}
.sec01.lower {
    background: url(img/bg-sec01-2.png) no-repeat bottom -23rem center, linear-gradient(180deg, #919191, #3D3D3D);
    background-size: cover;
    padding: 8rem 0 15rem;
	margin-bottom: -5rem;
}

.sec01 .section-title07 {
    color: #fff;
}
.sec01 .l-stack-xlarge,
.sec03 .l-stack-xlarge,
.sec04 .l-stack-xlarge {
    display: block;
}
.sec01 .btn-web a {
    background: url(./img/icon-web.svg) no-repeat center left 1.3rem / 1.8rem auto, linear-gradient(90deg, #8B0002, #C20003);
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
}

.sec02 .dl-style dd {
    line-height: 1.5;
}
.sec02 .dl-style dd::before {
    display: none;
}
.sec02 .onb-access-table th {
    background: #F2F2F2;
}

@media screen and (max-width: 767px) {
	.txt-concept {
        margin: 0 auto 3rem;
}
    .sec01.lower {
        background: url(img/bg-sec01-2.png) no-repeat bottom center, linear-gradient(180deg, #919191, #3D3D3D);
        background-size: cover;
        padding: 4rem 0 6rem;
    }
    .sec01 .section-title07-frame::before,
    .sec03 .section-title07-frame::before,
    .sec04 .section-title07-frame::before {
        font-size: 4rem;
        top: -4rem;
    }
    span.bg {
        font-size: 1.8rem;
        margin: 0 auto;
    }
    .onb-img-title-area {
    }
    .onb-img-title-image {
        width: 30%;
        margin: 0 auto;
        padding: 0;
    }
    .onb-img-title {
        width: 100%;
        font-size: 2rem;
        padding: 2rem;
		text-align: center;
    }
    .onb-img-title-sub {
        font-size: 2.3rem;
        padding: .6rem;
        margin-right: .4rem;
    }
    .onb-m-title6 {
        padding: 0 0 .8rem;
		font-size: 2rem;
		margin-top: 3rem;
    }
    .sec03 {
        padding: 0 0 5rem;
    }
	.sec04 {
        padding: 5rem 0;
    }
	.sec04 .txt-concept {
    margin: 0 auto 3rem;
}
}


.pc-fix-banner01 {
    width: 19rem;
    position: fixed;
    right: 0;
    bottom: 13rem;
    z-index: 50;
}
.pc-fix-banner01 a {
    color: #fff;
    text-decoration: none;
    display: block;
    border: 1px solid #707070;
}
.pc-fix-banner01 a:hover {
    opacity: .7;
}
.pc-fix-banner01-img {
    position: relative;
}
.pc-fix-banner01-img::before {
    content: "";
    width: 6.2rem;
    height: 2.2rem;
    background: url("./img/icon_pickup.png") no-repeat center center;
    background-size: 62px 22px;
    position: absolute;
    top: -1.1rem;
    left: .5rem;
    z-index: 5;
}
.pc-fix-banner01-text {
    padding: var(--s2);
    color: #fff;
    position: relative;
    background: linear-gradient(90deg, #065E97, #247DB8);
    font-weight: bold;
}
.pc-fix-banner01-text::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid #fff;
    border-bottom: .5rem solid #fff;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}
.pc-fix-banner01-text p {
    margin: 0;
    font-size: 2rem;
}
.pc-fix-banner01-text p.text-small {
    font-size: 1.2rem;
    line-height: 1.5;
}
.sp-fix-banner01 {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner01 {
        display: none;
    }
#low-page {
}
.sp-fix-banner01 {
    display: block;
    width: 70%;
    background-color: #247DB8;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}
.sp-fix-banner01-text a {
    text-decoration: none;
}
.sp-fix-banner01-text a p {
    padding: var(--s2) var(--s2) var(--s1);
    color: #fff;
    position: relative;
	        font-weight: bold;
}
.sp-fix-banner01-text::before {
    content: "";
    width: 6rem;
    height: 2rem;
    background: url(./img/icon_pickup.png) no-repeat center center;
    background-size: cover;
    border: 1px solid #fff;
    position: absolute;
    top: -1rem;
    left: .5rem;
    z-index: 5;
}
}
/* ---------------------------------------------
top 2box
--------------------------------------------- */

.twb-m-title04-frame {
	position: relative;
}
.twb-m-title04 {
	padding: var(--s5) var(--s1) var(--s1) var(--s1);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	border-bottom: 1px solid #333;
	margin-bottom: 2rem;
}
.twb-m-title04-sub {
	padding: .8rem;
    font-size: 1.3rem;
    font-weight: normal;
    color: #fff;
    background-color: #247db8;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}
.twb-m-title04 a {
    background: url(img/arrow-01-bk-right.svg) no-repeat center right;
    background-size: 7px auto;
    padding-right: 2rem;
    text-decoration: none;
}
.twb-m-title04 a:hover {
    opacity: 0.6;
}
#low-page .column-medium {
    padding: var(--s4);
    border: none;
    background: #eee;
}
#low-page .l-grid-two {
    margin: 4rem 0;
}
#low-page .column-small {
    border: 1px solid #333;
    background: #fff;
    padding: 0 var(--s3) var(--s3);
}
#low-page .column-small .caption {
    text-align: center;
}
.name {
    font-size: 1.6rem;
    font-weight: bold;
    padding-top: 1rem;
    color: #32373c;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    #low-page .l-grid-three {
    margin: 5rem auto;
}
	#low-page .column-small {
    flex: auto;
    width: auto;
}
	#low-page .column-medium {
    padding: var(--s3);
}
}