@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;
}

@media screen and (max-width: 767px) {
	.gnavi-ctrl {
		opacity: 1;
		visibility: visible;
	}
}

.gnavi-btn {
	width: var(--s7);
	height: var(--s6);
	background: var(--site-color02);
	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: var(--site-color02);
	display: block;
	text-align: center;
}

.gnavi-btn-close__inner {
	padding: 0 0 0 var(--s3);
	display: inline-block;
	color: #fff;
	position: relative;
}

.gnavi-btn-close__inner::before {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(45deg);
}

.gnavi-btn-close__inner::after {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(135deg);
}

.gnavi-area {
	width: 100%;
	max-width: 37.5rem;
	height: 100vh;
	padding: var(--s3) var(--s1) var(--s10);
	display: block;
	background: var(--site-color04);
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	transform: translateX(100%);
	transition: transform 0.8s ease, opacity 0.8s ease;
	opacity: 0;
}

.gnavi-title {
	min-height: var(--s6);
	margin: 0 0 0 var(--s2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	line-height: 1.5;
	width: 64%;
}

.gnavi-pc {
	display: none;
}

.gnavi-list {
	border-bottom: 1px solid #333;
	position: relative;
}

.gnavi-list li {
	padding-left: 0;
	background: var(--site-color03);
}

.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 var(--site-color02);
	display: block;
	font-weight: 900;
	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/0.8rem auto;
	position: absolute;
	top: 50%;
	right: var(--s2);
	transform: translate(0, -50%) rotate(0);
	transition: transform 0.3s;
}

.gnavi-list__link--toggle::after {
	background-image: url("img/arrow-01-black-down.svg");
}

.gnavi-list__link--toggle.is-open::after {
	transform: translate(0, -50%) rotate(180deg);
}

.gnavi-list__sub {
	width: 100%;
	background: #fff;
}

.gnavi-list__low .gnavi-list__link {
	padding: var(--s2) var(--s4) var(--s2) var(--s4);
}

.gnavi-list__low .gnavi-list__link::after {
	content: "└";
	background: none;
	transform: translateY(-50%);
	position: absolute;
	top: 40%;
	left: 1rem;
}

.is-gnavi-open .gnavi-area {
	opacity: 1;
	transform: translateX(0);
}

/* =====================================================
index01(目次)
===================================================== */
.onb-index01-frame {
	width: 100%;
	background-color: var(--site-color03);
}

.onb-index01-wrap {
	margin: var(--s3) auto var(--s5);
	padding: var(--s1) var(--s3);
	background-color: transparent;
	position: relative;
}

.onb-index01-title {
	padding: var(--s2) var(--s2) var(--s2) var(--s4);
	color: var(--site-color01);
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1;
	position: relative;
	cursor: pointer;
}

.onb-index01-title span::before {
	content: "";
	width: 0.8rem;
	height: 2.2rem;
	background-color: var(--site-color02);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) skewX(-35deg);
	border-radius: 1.6rem;
}

.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);
}

#toc .onb-index01-chapter {
	padding: var(--s2) var(--s2) var(--s2) var(--s7);
	font-weight: 900;
	counter-reset: number 0;
}

#toc ul li.chapter-h-two::before,
#toc ul li.onb-index01-chapter-h-two::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
	color: var(--site-color14);
	position: absolute;
	top: 0;
	left: -1.8em;
}

#toc ul li.onb-index01-chapter-h {
	margin: 0 0 0 var(--s2);
	font-size: 100%;
	line-height: 1.7;
	position: relative;
}

#toc ul li.onb-index01-chapter-h a {
	display: block;
	text-decoration: none;
}

#toc ul li.onb-index01-chapter-h a:hover {
	opacity: .6;
}

#toc ul li.onb-index01-chapter-h-two {
	margin-left: var(--s2);
	position: relative;
}

#toc ul li.onb-index01-chapter-h-three {
	margin-left: var(--s4);
	position: relative;
}

#toc ul li.onb-index01-chapter-h-two::before,
#toc ul li.onb-index01-chapter-h-three::before {
	color: var(--site-color14);
	position: absolute;
	top: 0;
	left: -1.8em;
}

#toc ul li.chapter-h-three::before,
#toc ul li.onb-index01-chapter-h-three::before {
	content: "└";
}

.more-content {
	display: none;
}

.onb-index01-content {
	margin-top: 1.4rem;
	border-top: 1px solid var(--site-color03);
}
#low-page .section-title07-frame {
  margin-top: var(--s9);
}

#low-page .section-title07-frame::before {
  content: "CONTENTS";
  color: var(--site-color01);
  opacity: 0.15;
  top: -5rem;
}

/*------------------------------------------------------------
	SP settings
*/
@media screen and (max-width: 767px) {
	#toc .onb-index01-chapter {
		padding-left: var(--s4);
	}

	.onb-index01-wrap {
		margin: var(--s4) auto var(--s3);
	}
}


/* =====================================================
related-article01(関連記事)
===================================================== */
.related-article01-frame {
	margin: var(--s6) auto;
	padding: var(--s2) var(--s3) var(--s4) var(--s3);
	background-color: var(--site-color03);
	position: relative;
}

.related-article01-title {
	padding: var(--s2) var(--s2) var(--s2) var(--s4);
	color: var(--site-color01);
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1;
	position: relative;
}

.related-article01-title span::before {
	content: "";
	width: 0.8rem;
	height: 2.2rem;
	background-color: var(--site-color02);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) skewX(-35deg);
	border-radius: 1.6rem;
}

.related-article01-list {
	padding: var(--s2) var(--s2) var(--s2) var(--s7);
	font-weight: 900;
	border-top: 1px solid var(--site-color03);
}

.related-article01-list li {
	padding-left: 1.2em;
	font-size: 100%;
	line-height: 1.7;
	position: relative;
}

.related-article01-list li::before {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background-color: var(--site-color02);
	position: absolute;
	top: 0.3em;
	left: -1rem;
}

.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;
	}
}


/* =====================================================
全体の余白
===================================================== */
.sec01,
.sec04,
.sec06 {
	padding-top: 6rem;
	padding-bottom: 8rem;
}

.sec02,
.sec03,
.sec05 {
	padding: 9rem 0;
}
/*------------------------------------------------------------
	SP settings
*/
@media screen and (max-width: 767px) {
.sec02 {
  padding-bottom: var(--s5);
}
.sec03, .sec05 {
  padding: var(--s6) 0;
}
.sec04, .sec06 {
  padding: var(--s6) 0;
}
}
/* =====================================================
全体の背景
===================================================== */
.sec01 {
	background: var(--site-color01);
	padding-top: 12rem;
	position: relative;
	z-index: 0;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

#low-page .sec01 {
	padding-top: 2rem;
}

.sec01::before,
.sec01::after {
	content: "";
	width: 50rem;
	height: 50rem;
	position: absolute;
	top: 0;
	z-index: -1;
	opacity: 0.2;
	pointer-events: none;
}

.sec01::before {
	left: 0;
	background: url(./img/sec01_img_bg_01.png) no-repeat left top;
	background-size: 40rem auto;
}

.sec01::after {
	right: 0;
	background: url(./img/sec01_img_bg_02.png) no-repeat right top;
	background-size: 40rem auto;
}

@media screen and (max-width: 767px) {
	.sec01 {
		padding-top: 8rem;
	}

	.sec01::before,
	.sec01::after {
		width: 40vw;
		height: 40vw;
		background-size: 30vw auto;
	}
}

.sec02 {
	background: url(./img/mv_img_bg.png) no-repeat center top / cover fixed, linear-gradient(to bottom, #C9E3FB, #E8EBF5);
	position: relative;
	padding: 0 0 9rem;
	z-index: 1;
}

.SupervisedContents {
	background: var(--site-color05);
	padding-top: var(--s10);
	z-index: 0;
	position: relative;
}

/* =====================================================
英字あしらい
===================================================== */
.sec01 .section-title07-frame::before {
	content: "SELECTION";
	width: 100%;
	color: rgba(255, 255, 255, 0.5);
}

.sec02 .section-title07-frame::before {
	content: "IN DETAILS";
	width: 100%;
	color: #fff;
}

.sec02 .section-title07-frame {
	margin-top: 16rem;
}

.sec03 .section-title07-frame::before {
	content: "LIST";
	width: 100%;
	color: var(--site-color01);
}

.SupervisedContents .section-title07-frame::before {
	content: "CONTENTS";
	width: 100%;
	color: #fff;
}

/* =====================================================================
メインビジュアル
===================================================================== */
.mainvisual {
	position: relative;
	background: url(./img/mv_img_bg.png) no-repeat top center, var(--site-color03);
	background-size: cover;
}

.mv-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	margin: auto;
}

.mv-chara {
	position: absolute;
	top: 25%;
	left: 0;
	width: 25%;
	display: flex;
	align-items: flex-start;
}

.mv-chara img {
	max-width: 100%;
	width: 100%;
}

.mv-chara--r {
	left: auto;
	right: 0;
	justify-content: flex-end;
}

.mv-body {
	display: grid;
	gap: var(--s4);
	padding: var(--s6) max(var(--s5), 22%) 6%;
	text-align: center;
	width: 100%;
	justify-content: center;
}

.mv-title {
	font-size: var(--fs-xxl);
	font-weight: 900;
	color: var(--txt);
	line-height: 1.3;
}

.mv-title__lead {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--s2);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: var(--s1);
}

.mv-title__lead::before {
	content: "";
	display: block;
	width: 0.4rem;
	height: 1.2em;
	background: var(--pri);
	transform: rotate(-25deg);
	flex-shrink: 0;
	border-radius: 0.2em;
}

.mv-title__lead::after {
	content: "";
	display: block;
	width: 0.4rem;
	height: 1.2em;
	background: var(--pri);
	transform: rotate(25deg);
	flex-shrink: 0;
	border-radius: 0.2em;
}

.mv-title__main {
	position: relative;
	z-index: 0;
	display: inline;
	background: linear-gradient(transparent 70%, color-mix(in srgb, var(--acc) 45%, var(--white)) 70%);
	font-size: 4.8rem;
	color: var(--site-color01);
}

.mv-text {
	display: grid;
	gap: var(--s2);
	color: var(--txt);
	text-align: center;
	line-height: 1.8;
}

.mv-text p + p {
	margin: 0;
}

.mainvisual .btn-internal,
.mainvisual .btn-anchor {
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.mv-body {
		gap: var(--s2);
		padding: var(--s4) max(var(--s1), 4%) 10%;
	}

	.mv-title__main {
		font-size: 2.8rem;
	}

	.mv-title__lead {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: var(--s2);
		font-size: 2.2rem;
		font-weight: 900;
		margin-bottom: var(--s1);
	}

	.mv-chara img {
		display: none;
	}

	.logo-image-area {
		width: 20rem;
		margin: auto;
	}
}

/* =====================================================================
下層メインビジュアル（mainvisual-lower）
===================================================================== */
.mainvisual-lower {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--s4) var(--s3);
	background: url(./img/mv_img_bg.png) no-repeat top center, var(--site-color03);
	background-size: cover;
}

.mainvisual-lower .mv-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34rem;
	max-width: 100%;
}
.mainvisual-lower a.mv-logo:hover {
	opacity: 0.5;
}

/* =====================================================
sec01
===================================================== */
.sec01 .column-small {
	padding-top: 0;
}

.sec01 .section-title07 {
	color: #fff;
	padding: var(--s4) 0 var(--s6);
}

.img-title-area {
	display: block;
	background: linear-gradient(to right, #3A9DBB, #4B6DD2);
	text-align: center;
	padding-top: 0.1rem;
	padding-bottom: 1rem;
	position: relative;
}

.img-title-image {
	width: 10rem;
	height: 10rem;
	background: #fff;
	border: 5px solid #4483C8;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: -8rem auto 0.5rem;
	transform: translateY(1rem);
}

.img-title-image img {
	width: 85%;
	height: auto;
	object-fit: contain;
	padding: 1.5rem;
}

.area-title {
	width: 100%;
	padding: var(--s1) var(--s2) var(--s2) var(--s1);
	color: #fff;
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: 900;
}

.area-title-sub {
	margin-bottom: .8rem;
	padding: var(--s1);
	color: #fff;
	font-size: 2.0rem;
	line-height: 1.4;
	display: inline-block;
}

.area-title-small {
	font-size: 2.4rem;
	background: #fff;
	color: var(--site-color01);
	padding: var(--s-2);
}

.m-title01 {
	padding: var(--s1) var(--s1) var(--s2) var(--s1);
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--site-color01);
	text-align: center;
	line-height: 1.5;
}

.thb-listbox-bg-colored {
	padding-top: 2rem;
}

.thb-listbox-area {
	padding: var(--s3) var(--s1) var(--s2) var(--s2);
	background-color: var(--site-color03);
	position: relative;
}

.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: 900;
}

.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: 2.3rem;
	height: 3.0rem;
	background: url("./img/sec01_img_icon.png") no-repeat left top;
	background-size: contain;
	position: absolute;
	top: .3rem;
	left: -2rem;
}

.thb-listbox-list li span {
	font-weight: 900;
	color: var(--accent-color02);
}

.caption.sec01-notes {
    text-align: left;
    margin-top: -2rem;
}

.indetail-cap {
	margin-top: var(--s3);
}

@media screen and (max-width: 767px) {
	.sec01 .column-small {
		margin-top:var(--s2) 
	}
	.thb-listbox-area {
		padding: var(--s5) var(--s2) var(--s2) var(--s2);
	}

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

	.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;
	}

	.section-title07-frame .section-title07 .sub-title {
		font-size: 2.4rem;
	}

	.img-title-image {
		width: 10rem;
		height: 10rem;
		margin: -3rem auto 1rem;
	}

	.img-title-area {
		padding-top: 0.1rem;
	}

	.img-title-image img {
		width: 85%;
	}

	.area-title-small {
		font-size: 2.8rem;
	}

	.m-title01 {
		font-size: 2.6rem;
	}

	.thb-tag-colored .tag-name,
	.thb-tag-white .tag-name {
		font-size: 1.3rem;
	}
	.sec01 .section-title07 {
  padding: var(--s1) 0;
}
}

.title-catch {
	padding: 0.8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--site-color01);
	text-align: center;
	line-height: 1.5;
	border-bottom: 1px solid var(--site-color01);
	margin: var(--s3) auto var(--s1);
}

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

.thb-taglist-title {
	padding: 0.8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--site-color01);
	text-align: center;
	line-height: 1.5;
	border-bottom: 1px solid var(--site-color01);
	margin: var(--s3) auto var(--s2);
}

.thb-tag-list-2c {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s1);
}

.thb-tag-list-2c li {
	width: calc((100% - var(--s2)) / 3);
	padding: var(--s1) var(--s-2);
	text-align: center;
	line-height: 1.5;
}

.thb-tag-list-2c li::before {
	display: none;
}

.thb-tag-colored {
	background-color: var(--site-color11);
	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;
	font-size: 1.3rem;
	font-weight: 900;
}

/* =====================================================
sec02
===================================================== */
.sec02 .column-medium {
	background: #fff;
	padding-top: 0;
}

.company-title {
	color: var(--site-color01);
	font-size: var(--s4);
	font-weight: 900;
	margin: var(--s4) auto var(--s5);
	text-align: center;
}

.sec02 .l-grid-two-large .text {
	margin-bottom: var(--s2);
}

.column-medium {
	padding: var(--s4);
}

.onb-box-full {
	width: calc(100% + var(--s8));
	margin-left: calc(var(--s4) * -1);
	position: relative;
}

.sec02 .tag-name {
	font-size: 1.4rem;
}

.sec02 .license {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.sec02 .license ul {
	display: flex;
	justify-content: center;
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.sec02 .license li::before {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background-color: var(--site-color02);
	position: absolute;
	top: 0.25em;
	left: 0;
}


.sec02 .l-grid-three {
	align-items: flex-start;
}

.sec02 .onb-iconbox04-frame {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

@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);
	}

	.sec02 .section-title07-frame {
		margin-top: 12rem;
	}

	.sec02 .license ul {
		display: block;
	}
}

.onb-icon-title-frame {
	padding: var(--s4);
	background-color: var(--site-color02);
	position: relative;
	background: linear-gradient(to right, #3A9DBB, #4B6DD2);
	text-align: center;
}

.onb-icon-title-icon {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 3rem;
	left: 1rem;
	background: #fff;
	border: 5px solid #4483C8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.onb-icon-title-icon img {
	width: 55%;
}

.onb-icon-title {
	text-align: left;
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1.5;
	color: #fff;
	margin-left: var(--s14);
}

.onb-icon-title .underline {
	background: #fff;
	font-size: 3.6rem;
	color: var(--site-color01);
	padding: var(--s-2) var(--s2);
}

.onb-icon-title small {
	font-size: 2.1rem;
	border: none;
}

.onb-icon-title-catch {
	margin-bottom: .8rem;
	font-size: 2.8rem;
	display: block;
	line-height: 1.5;
	border: none;
}

@media screen and (max-width: 767px) {
	.onb-icon-title-frame {
		padding: var(--s5) var(--s2) var(--s2);
	}

	.onb-icon-title {
		font-size: 2.4rem;
		margin-left: 0;
		text-align: center;
	}

	.onb-icon-title small {
		font-size: 1.6rem;
	}

	.onb-icon-title-catch {
		padding-left: var(--s4);
		font-size: 2.4rem;
	}

	.onb-icon-title-icon {
		width: 9rem;
		height: 9rem;
		position: absolute;
		top: -5rem;
		left: 37%;
	}

	.onb-icon-title .underline {
		font-size: 2.8rem;
	}

	.sec02 .column-medium {
		margin-top: var(--s2);
	}
}

.twb-m-title02 {
	padding: 0.8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--site-color01);
	text-align: center;
	line-height: 1.5;
	border-bottom: 1px solid var(--site-color01);
	margin: var(--s3) auto var(--s2);
}

.onb-2c-taglist-title {
	text-align: center;
	font-size: 2.1rem;
}

.tag-list-3c {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s1);
}

.tag-list-3c li {
	width: calc((100% - var(--s2)) / 3);
	padding: .8rem;
	text-align: center;
	line-height: 1.5;
}

.tag-list-3c li::before {
	display: none;
}

.twb-tag-colored {
	background-color: var(--site-color11);
	color: #fff;
}

.twb-tag-white {
	border: 1px solid var(--site-color16);
	background-color: #fff;
	color: var(--site-color16);
}

.twb-tag-colored .tag-name,
.twb-tag-white .tag-name {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.onb-m-title5 {
	line-height: 1.5;
	font-size: 2.8rem;
	font-weight: 900;
	text-align: center;
	color: var(--site-color01);
	margin: var(--s8) auto var(--s4);
}

.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(--site-color01);
	flex-grow: 1;
}

.onb-m-title5 span::before {
	margin-right: var(--s2);
}

.onb-m-title5 span::after {
	margin-left: var(--s2);
}

@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-iconbox04-frame {
	padding: var(--s2);
	background-color: var(--site-color03);
	align-items: flex-start;
}

.onb-iconbox04-catch {
	min-height: 2.5rem;
	padding: 0 0 0 var(--s5);
	font-size: 2.0rem;
	font-weight: 900;
	color: var(--site-color01);
	line-height: 1.5;
	background: url('./img/sec01_img_icon.png') no-repeat center left;
	background-size: 2rem auto;
}

.onb-iconbox04-caption {
	text-align-last: left;
}

.onb-conclusion-box-frame {
	padding: var(--s3) var(--s4) var(--s4) var(--s12);
	background-color: var(--site-color03);
	position: relative;
}

.onb-conclusion-box-frame::before {
	content: "CASE STUDY01";
	position: absolute;
	left: -0.4rem;
	bottom: 30rem;
	transform: rotate(90deg);
	transform-origin: left bottom;
	font-size: 3.6rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
	color: var(--site-color02);
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.onb-conclusion-box-ttl {
	position: relative;
}

.onb-conclusion-box-ttl__icon {
	width: 10rem;
	height: 10rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 4.8rem;
	font-weight: 100;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--site-color02);
	background-size: contain;
	position: absolute;
	left: -11.2rem;
	bottom: 1.6rem;
	z-index: 5;
}

.onb-conclusion-box-ttl__text {
	padding-top: var(--s1);
	padding-bottom: var(--s3);
	margin-left: var(--s1);
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.5;
	color: var(--site-color01);
}

.onb-conclusion-box-frame .l-float {
	margin-top: -2rem;
}

.onb-conclusion-floatimg {
	text-align: center;
}

.l-onb-conclusion-img {
	width: 20%;
	text-align: center;
}

.l-onb-conclusion-img img {
	max-width: 100%;
}

.onb-onb-conclusion-box-imgcap {
	margin-top: var(--s1);
	text-align: center;
	font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
	.onb-conclusion-box-ttl__icon {
		width: 6rem;
		height: 6rem;
		transform: translateY(-50%);
		top: -3%;
		left: -5rem;
		bottom: inherit;
		font-size: 4.2rem;
	}

	.onb-conclusion-box-ttl__text {
		margin: var(--s2) auto var(--s-2);
		padding-top: var(--s1);
		padding-bottom: var(--s2);
		font-size: 2.3rem;
		text-align: center;
	}

	.l-onb-conclusion-img {
		width: 36%;
	}

	.onb-conclusion-box-frame {
		padding: var(--s3) var(--s3) var(--s4) var(--s5);
	}

	.onb-conclusion-box-frame::before {
		top: 3rem;
		font-size: 3.0rem;
		display: none;
	}

	.sec02 .tag-name {
		font-size: 1.3rem;
	}

	.company-title {
		font-size: 2.6rem;
		margin: var(--s4) auto var(--s2);
	}

	.onb-m-title5 {
		font-size: 2.4rem;
		margin: var(--s4) auto var(--s2);
	}

}

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

.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: 20%;
	background-color: var(--site-color04);
	vertical-align: middle;
	font-weight: 900;
}

@media screen and (max-width: 767px) {
	.onb-access-table th {
		width: 32%;
		padding: var(--s1);
	}
	.onb-access-table td {
		word-break: break-all;
	}
	.l-onb-access-table {
		flex-direction: column;
	}

	.l-onb-access-table__side,
	.l-onb-access-table__main {
		width: 100%;
	}
}

/* =====================================================
sec03
===================================================== */
.sec03 .column-small {
	background: var(--site-color03);
}

.sec03 .column-small .thb-table {
	margin: var(--s2) auto;
}

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

.thb-table th,
.thb-table td {
	display: block;
	width: 100%;
	padding: var(--s1);
	border: 1px solid #D3D3D3;
	background: #fff;
}

.thb-table th {
	background-color: var(--site-color04);
	text-align: left;
}

@media screen and (max-width: 767px) {
	.sec03 .m-title01 {
		font-size: 2.4rem;
	}

	.sec03 .thb-box-full img {
		width: 85%;
		margin: 0 auto;
		display: block;
	}
}
/* =====================================================
sec03 3box subgrid（PCのみ・各要素の高さを揃える）
===================================================== */
@media screen and (min-width: 768px) {
	@supports (grid-template-rows: subgrid) {

		/* 親：9行分のトラックを用意。行gapは0（既存marginで余白を維持） */
		.sec03 .l-grid-three {
			grid-template-columns: repeat(3, minmax(0, 1fr));
			grid-template-rows: repeat(9, auto);
			column-gap: var(--s2);
			row-gap: 0;
		}

		.sec03 .l-grid-three > .column-small {
			display: grid;
			grid-template-columns: minmax(0, 1fr);
			grid-template-rows: subgrid;
			grid-row: span 9;
		}

		/* img と caption を別行として揃える */
		.sec03 .column-small > .thb-box-full {
			display: grid;
			grid-template-columns: minmax(0, 1fr);
			grid-template-rows: subgrid;
			grid-row: span 2;
		}

		/* テーブル4行も1行ずつ揃える */
		.sec03 .column-small .thb-table,
		.sec03 .column-small .thb-table > tbody {
			display: grid;
			grid-template-columns: minmax(0, 1fr);
			grid-template-rows: subgrid;
			grid-row: span 4;
		}

		.sec03 .column-small .thb-table > tbody > tr {
			display: grid;
			grid-template-rows: auto 1fr; /* th / td */
		}
	}
}
/* =====================================================
sec04
===================================================== */
.twb-m-title05 {
	padding-bottom: 1.6rem;
	display: grid;
	align-items: center;
	border-bottom: 1px solid var(--site-color01);
	grid-gap: var(--s1);
	grid-template-columns: 7rem 1fr;
}

.twb-m-title05__left {
	background: var(--site-color03);
	border-radius: 50%;
	width: 6rem;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.twb-m-title05__left img {
	width: 75%;
	height: auto;
}

.twb-m-title05__right {
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--site-color01);
	line-height: 1.5;
}

.sec04 .column-medium {
	background: #fff;
	padding: var(--s3);
}
.sec04 .column-medium p {
  padding: var(--s2) 0;
}
@media screen and (max-width: 767px) {
.twb-m-title05__right {
	font-size: 2.4rem;
}
}

/* =====================================================
sec05
===================================================== */
.ex-contents-spv {
	display: flex;
}

.ex-contents-spv-left {
	padding: 1.6rem 3.2rem;
	background-color: var(--site-color02);
	font-size: 2.3rem;
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
}

.ex-contents-spv-left span {
	width: 100%;
	font-size: 4.6rem;
	line-height: 1.5;
	text-align: center;
	display: block;
}

.ex-contents-spv-right {
	padding: var(--s6) var(--s4);
	background-color: #fff;
}

.ex-contents-spv-catch {
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1.5;
	color: var(--site-color01);
}

@media screen and (max-width: 767px) {
	.for-pc {
		display: none;
	}

	.ex-contents-spv {
		flex-direction: column;
	}

	.ex-contents-spv-left {
		padding: 0.8rem;
		position: relative;
		display: block;
		text-align: center;
		font-size: 2.5rem;
	}

	.ex-contents-spv-left span {
		margin-left: 1rem;
		display: inline;
		font-size: 2.5rem;
	}

	.ex-contents-spv-right {
		padding: 1.6rem 1.6rem 2.4rem 1.6rem;
	}

	.ex-contents-spv-catch {
		font-size: 2.4rem;
		text-align: center;
	}

	.ex-contents-spv-right p {
		font-size: 1.4rem;
	}
}

/* =====================================================
sec06
===================================================== */
/* 左側の画像エリアを固定 */
.sec06 .l-grid-two > .column-medium:first-child {
	position: sticky;
	top: 4rem;
	align-self: start;
	padding-bottom: 5rem;
}

.twb-m-title03 {
	padding: var(--s2) var(--s-2) 0 var(--s4);
	font-size: 2.1rem;
	font-weight: 900;
	color: var(--site-color01);
	line-height: 1.5;
	position: relative;
}

.twb-m-title03::before {
	content: "";
	width: 0.8rem;
	height: 1.5rem;
	background-color: var(--site-color02);
	position: absolute;
	left: 0.6rem;
	top: 3.2rem;
	transform: skewX(-35deg);
	border-radius: 1.6rem;
}

.sec06 .column-medium .box-wrap {
	background: #fff;
	padding: var(--s-2) var(--s3) var(--s3);
	gap: 1rem;
	display: grid;
	margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
	.sec06 .l-grid-two > .column-medium:first-child {
		position: relative;
		top: 0;
		padding-bottom: 1rem;
	}

	.sec06 .l-grid-two {
		margin-top: -4rem;
	}

	.sec06 .column-medium {
		padding: var(--s-2);
	}
	.twb-m-title03 {
	font-size: 2.1rem;
	}
}

/* =====================================================
TOP共通追加項目
===================================================== */
.sec01 .l-grid-three .column-small p,
.sec02 .l-grid-two-large p {
	text-align: center;
	font-weight: 900;
	margin: 0 auto;
}

.sec01 .l-grid-three .column-small .number,
.sec02 .l-grid-two-large .number {
	font-size: 2.8rem;
}

.sec01 .l-grid-three .column-small .sub-comment,
.sec02 .l-grid-two-large .sub-comment {
	font-weight: normal;
	line-height: 0.2;
}

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

.section-title07-frame::before {
	content: "INDEX";
	width: 100%;
	font-size: 8rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
	color: rgba(var(--site-color05-rgb), .2);
	text-align: center;
	position: absolute;
	top: -7rem;
	left: 0;
}

.section-title07 {
	width: 100%;
	padding: var(--s4) var(--s12);
	font-size: 4.6rem;
	font-weight: 900;
	color: var(--site-color01);
	text-align: center;
	position: relative;
	line-height: 1.4;
}

.section-title07 .sub-title {
	font-size: 4.0rem;
	display: block;
}

.section-title07 a,
.m-title01 a,
.twb-m-title03 a,
.ex-contents-spv-catch a,
.twb-m-title05__right a,
.section-title05 a,
#low-page h2:not([class]) a {
	margin: 0;
	padding: 1rem 4rem 1rem 0;
	background: url("./img/arrow-01-black-right.svg") no-repeat center right / auto 0.7em;
	display: inline-block;
	font-weight: 900;
	line-height: 1.3;
	text-decoration: none;
	color: var(--site-color01);
}

.section-title07 a:hover,
.m-title01 a:hover,
.twb-m-title03 a:hover,
.ex-contents-spv-catch a:hover,
.twb-m-title05__right a:hover,
.section-title05 a:hover,
#low-page h2:not([class]) a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 767px) {
	.section-title07-frame {
		background-color: transparent;
	}

	.section-title07-frame::before {
		width: 100%;
		padding: var(--s1) 0;
		font-size: 4rem;
		top: -6rem;
	}

	.section-title07 {
		padding: var(--s2) var(--s2) 0 var(--s2);
		font-size: 3.0rem;
	}
	.sec03 .l-stack-large, .SupervisedContents .l-stack-large {
  gap: vae(--s3);
}
#index .section-title05 {
  margin: 0 auto;
}
}

/* =====================================================
3box column settings
===================================================== */
.column-small {
	padding: var(--s2);
	background: #FFF;
}

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

.thb-box-full > img {
	width: 100%;
	display: block;
	object-fit: cover;
	object-position: top;
}

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

.acc-more-btn span {
	width: 100%;
	margin: var(--s2) auto;
	padding: 2rem 6rem 2rem 3rem;
	border-radius: 2.5rem;
	background: url('./img/acc-off.svg') no-repeat 95% center var(--site-color03);
	display: block;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	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 var(--site-color03);
}

.more-content {
	display: none;
}

@media screen and (max-width: 767px) {
	.acc-more-btn {
		width: calc(100% - (var(--s2) * 2));
		margin: 0 var(--s2);
	}

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

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

.section-title05,
#low-page h2:not([class]) {
	width: 100%;
	margin: var(--s7) auto var(--s3);
	padding: var(--s4);
	font-size: 3.6rem;
	font-weight: 900;
	color: var(--site-color01);
	line-height: 1.5;
	text-align: center;
	background-color: #fff;
	position: relative;
}

#low-page h2:not([class]) {
	background-color: var(--site-color03);
}

.section-title05::before,
.section-title05::after,
#low-page h2:not([class])::before,
#low-page h2:not([class])::after {
	content: "";
	width: 4rem;
	height: 4rem;
	background-color: var(--site-color02);
	position: absolute;
	z-index: -1;
}

.section-title05::before,
#low-page h2:not([class])::before {
	bottom: -0.5rem;
	left: -0.5rem;
}

.section-title05::after,
#low-page h2:not([class])::after {
	top: -0.5rem;
	right: -0.5rem;
}

@media screen and (max-width: 767px) {
	.section-title05,
	#low-page h2:not([class]) {
		padding: var(--s2);
		font-size: 2.4rem;
		margin: var(--s4) 0 var(--s2);
	}
}

/* =====================================================
2box column settings
===================================================== */
.twb-box-full {
	width: calc(100% + var(--s8));
	margin-left: calc(var(--s4) * -1);
}

@media screen and (max-width: 767px) {
	.twb-box-full {
		width: calc(100% + var(--s4));
		margin-left: calc(var(--s2) * -1);
	}
}

/* =====================================================
下層追加項目
===================================================== */
.profile-area {
	margin-top: var(--s8);
	padding: var(--s4);
	background-color: #D4F0F8;
	position: relative;
}

.profile-area::before {
	content: "記事監修者";
	padding: var(--s1) var(--s2);
	font-size: 2.4rem;
	color: #fff;
	line-height: 1;
	background-color: var(--site-color06);
	border-left: 5px solid var(--site-color05);
	position: absolute;
	top: -2rem;
	left: .6rem;
	font-weight: 900;
}
.profile-wrap {
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-template-areas:
"img catch"
"img text ";
  gap: var(--s1);
}
.profile-img-area {
	grid-area: img;
}

.profile-text-area {
	grid-area: text;
}

#low-page .profile-text-area ul {
	margin: 0;
}

.profile-text-area ul {
	margin-left: var(--s3);
}

.profile-text-area ul li::before {
	content: "";
	background-color: var(--site-color06);
	top: 0.35em;
	left: 0;
}

.profile-btn-area {
	grid-area: btn;
	position: relative;
	z-index: 5;
}

.profile-caption {
	margin-top: var(--s1);
	text-align: center;
	font-size: 3.2rem;
}

.profile-catch {
	padding: var(--s2) 0 0;
	font-size: 2.4rem;
	color: var(--site-color08);
	line-height: 1.1;
	grid-area: catch;
	font-weight: 100;
	padding-left: 0;
}

.profile-catch span {
	color: var(--site-color10);
	display: inline;
	margin-top: var(--s1);
	text-align: center;
	font-size: 2.8rem;
	font-weight: 900;
	font-family: "Noto Sans JP", sans-serif;
}

.profile-catch .English-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
	font-size: 2.0rem;
	padding-left: var(--s2);
}

.profile-detail {
	margin-bottom: var(--s4);
	padding: var(--s1) var(--s1) var(--s1) var(--s2);
	font-size: 1.8rem;
	font-weight: 900;
	border-left: 6px solid var(--site-color14);
	border-bottom: 1px solid var(--site-color14);
}

.profile-box {
	/*! margin-top: var(--s6); */
	padding: var(--s2);
	background-color: #fff;
	margin-top: var(--s3);
}

.profile-box-ttl {
	margin-bottom: var(--s2);
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--site-color07);
}

@media screen and (max-width: 767px) {
	.profile-area {
		margin-top: var(--s10);
		padding: 0 var(--s2) var(--s2);
		margin-left: var(--s-2);
		margin-right: var(--s-2);
	}
  #index .profile-area {
    margin-top: var(--s5);
    padding: 0 var(--s2) var(--s2);
    margin-left: var(--s-2);
    margin-right: var(--s-2);
  }
	.profile-area::before {
		font-size: 1.8rem;
	}

	.profile-wrap {
		display: block;
		margin-bottom: 0;
	}

	.profile-img-area,
	.profile-text-area,
	.profile-btn-area,
	.profile-catch {
		grid-area: inherit;
		margin: 0 auto var(--s2);
	}

	.profile-img-area {
		display: flex;
		align-items: center;
		gap: var(--s2);
	}

	.profile-img {
		width: calc((100% - var(--s2)) * .5);
		margin: 0 auto;
	}

	.profile-text-area .btn-link a {
		background: none;
		border: none;
		text-align: right;
		padding: 0;
		text-decoration: underline;
	}

	.profile-catch span {
		display: block;
	}

	.profile-box {
		margin: var(--s3) var(--s-2) var(--s2);
	}
}

.com-box04-sp-float-frame {
	padding: var(--s4);
	background: var(--site-color05);
}

.com-box04-sp-float-title {
	margin-bottom: var(--s4);
	padding: var(--s1);
	background-color: var(--site-color06);
	color: var(--site-color03);
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.5;
}

.com-box04-sp-float-area {
	display: flex;
	gap: var(--s4);
}

.com-box04-sp-float-area--reverse {
	flex-direction: row-reverse;
}

.com-box04-sp-float-text {
	width: calc((100% - var(--s4)) * .8);
}

.com-box04-sp-float-text .caption {
	color: var(--site-color09);
}

.com-box04-sp-float-img {
	width: calc((100% - var(--s4)) * .3);
	text-align: center;
}

.com-box04-sp-float-img span {
	margin: var(--s3) auto 0;
	display: block;
	font-size: 2.5rem;
	text-align: center;
	font-weight: 900;
}

.com-box04-sp-float-img ul li::before {
	content: "";
	background-color: var(--site-color06);
	top: 0.3em;
	left: 0;
}

.com-box04-sp-float-catch {
	margin-bottom: var(--s2);
	color: var(--site-color07);
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1.5;
}

/*------------------------------------------------------------
	SP settings
*/
@media screen and (max-width: 767px) {
	.com-box04-sp-float-frame {
		padding: var(--s2);
	}

	.com-box04-sp-float-title {
		margin-bottom: var(--s2);
		font-size: 1.8rem;
	}

	.com-box04-sp-float-area {
		display: flow-root;
	}

	.com-box04-sp-float-img {
		width: calc((100% - var(--s4)) * .4);
	}

	.com-box04-sp-float-img--right {
		margin-left: var(--s2);
		margin-bottom: var(--s2);
		float: right;
	}

	.com-box04-sp-float-text {
		width: 100%;
	}

	.com-box04-sp-float-catch {
		font-size: 1.8rem;
	}
}

.conclusion-box-frame {
	margin: var(--s7) auto;
	padding: var(--s2) var(--s4) var(--s4) var(--s4);
	background: url(./img/sec01_img_bg_01.png) no-repeat top center, var(--site-color03);
	position: relative;
	background-size: cover;
}

.conclusion-box-frame::before {
	content: "SUMMARY";
	position: absolute;
	left: -0.4rem;
	bottom: 23rem;
	transform: rotate(90deg);
	transform-origin: left bottom;
	font-size: 3.6rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
	color: var(--site-color02);
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.conclusion-box-ttl {
	position: relative;
}

.conclusion-box-ttl__icon-frame {
	position: absolute;
	left: -4.8rem;
	bottom: -6rem;
	z-index: 10;
}

.conclusion-box-ttl__icon {
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--site-color02);
}

.conclusion-box-ttl__icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #707070;
	position: absolute;
	right: -1rem;
	bottom: -0.9rem;
	z-index: -1;
}

.conclusion-box-ttl__icon span {
	color: #fff;
	font-size: 2.1rem;
	font-weight: 900;
}

.conclusion-box-ttl__text {
	padding-top: var(--s2);
	padding-bottom: var(--s3);
	margin-left: 10rem;
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1.5;
	border-bottom: 1px solid var(--site-color01);
	color: var(--site-color01);
}

.conclusion-box-content {
	z-index: 5;
	padding: var(--s8) var(--s2) 0;
}

/*------------------------------------------------------------
	SP settings
*/
@media screen and (max-width: 767px) {
	.conclusion-box-frame {
		background-size: 50% auto;
		margin: var(--s5) auto var(--s4);
		padding: var(--s2) var(--s1) var(--s4) var(--s3);
	}

	.conclusion-box-frame .conclusion-box-content {
		padding: var(--s2) var(--s1) var(--s1);
	}

	.conclusion-box-ttl__icon-frame {
		top: -3.2rem;
		left: -3.6rem;
		bottom: inherit;
	}

	.conclusion-box-ttl__icon {
		width: 6rem;
		height: 6rem;
	}

	.conclusion-box-ttl__icon span {
		font-size: 1.6rem;
	}

	.conclusion-box-ttl__text {
		margin-left: 0;
		padding-left: 5rem;
		padding-top: var(--s1);
		padding-bottom: var(--s2);
	}

	.l-onb-conclusion-img {
		width: 36%;
	}
}

.pc-fix-banner01 {
	width: 24rem;
	background-color: #000;
	position: fixed;
	right: 0;
	bottom: 16rem;
	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-img::before {
	content: "";
	width: 8rem;
	height: 3rem;
	background: url("./img/dummy.jpg") no-repeat center center;
	background-size: cover;
	border: 1px solid #fff;
	position: absolute;
	top: -1.5rem;
	left: .5rem;
	z-index: 5;
}

.pc-fix-banner01-text {
	padding: var(--s2);
	color: #fff;
	position: relative;
	background: var(--site-color01);
	font-weight: 900;
	border: 1px solid #fff;
	text-align: center;
	z-index: 0;
}

.pc-fix-banner01-text::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(./img/sec01_img_bg_02.png) no-repeat right center;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
	pointer-events: none;
}

.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: 2.4rem;
	text-align: center;
	line-height: 1.3;
}

.pc-fix-banner01-text p.text-small {
	font-size: 1.6rem;
	line-height: 1.5;
	background: #fff;
	color: var(--site-color01);
	font-weight: 900;
	display: inline-block;
	margin: 0 auto;
	padding: var(--s-2) var(--s1);
}

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

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

/*------------------------------------------------------------
	SP settings
*/
@media screen and (max-width: 767px) {
	.sp-fix-banner01 {
		display: block;
		width: 78%;
		background-color: var(--site-color01);
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 50;
		font-weight: 900;
		line-height: 1.4;
	}

	.sp-fix-banner01-text {
		padding: var(--s2);
		color: #fff;
		position: relative;
	}

	.sp-fix-banner01-text::before {
		content: "目的別";
		width: 5rem;
		height: 2rem;
		background: var(--accent-color01);
		background-size: cover;
		color: #fff;
		position: absolute;
		top: -1.6rem;
		left: 0.5rem;
		z-index: 5;
		padding: var(--s-2);
	}

	.sp-fix-banner01-text p {
		margin: 0;
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.sp-fix-banner01-text a {
		padding-right: 1.6rem;
		color: #fff;
		text-decoration: none;
		background: url("./img/arrow-01-wht-right.svg") no-repeat right center / 1rem auto;
		display: block;
	}

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