@charset "utf-8";

/*--------------------------------------------
    icon-head01 (CHECK見出し)
*/
.icon-head01 {
	position: relative;
	margin-block: 8rem 4rem;
	padding: var(--s2);
	padding-left: 12rem;
	background: #fff;
	border-bottom: 2px solid #000;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
	color: #000;
}

/* 左上の黒帯ラベル */
.icon-head01::before {
	content: "CHECK";
	position: absolute;
	top: 0;
	bottom: 0;           /* top と bottom 両指定で親の高さに追従 */
	left: 0;
	display: flex;        /* 文字を縦中央に */
	align-items: center;
	padding: 0 3rem 0 1rem;  /* 上下paddingは不要になる */
	background: #023156;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	clip-path: polygon(0 0, 100% 0, calc(100% - 3.2rem) 100%, 0 100%);
}

@media screen and (max-width: 767px) {
	.icon-head01 {
		margin-block: 6rem 3rem;
		padding: var(--s1);
		padding-left: 8.5rem;
		font-size: 2rem;
	}

	.icon-head01::before {
		padding: 0 2rem 0 0.8rem;
		font-size: 1.8rem;
		clip-path: polygon(0 0, 100% 0, calc(100% - 2.4rem) 100%, 0 100%);
	}
	/* ::after は現デザインでは未使用のため削除 */
}

/* ---------------------------------------------
banner
--------------------------------------------- */
.banner-bottom {
	position: fixed;
	right: 0;
	bottom: 15rem;
	z-index: 100;
	width: 24rem;
}
.banner-bottom-link {
	display: block;
	position: relative;
	background-color: #1e2124;
	padding: 1.6rem 1.5rem 1.8rem 4rem;   /* 左paddingを増やす（斜め分の逃げ） */
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
	transition: opacity .2s;

	/* ★追加: 斜めの幅を変数化 */
	--slant: 1.6rem;

	/* ★追加: 箱の左辺を斜めにカット（上が内側、下が外側） */
	clip-path: polygon(var(--slant) 0, 100% 0, 100% 100%, 0 100%);
}

.banner-bottom-link:hover {
	opacity: .8;
}

/* 左側の緑の帯（箱の左辺と平行な平行四辺形） */
.banner-bottom-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(var(--slant) + 1.8rem);   /* 帯の太さ: 1.8rem部分で調整 */
	height: 100%;
	background-color: #4cd964;
	/* 左辺・右辺とも同じ量だけ斜め → 箱の左辺と平行になる */
	clip-path: polygon(
		var(--slant) 0,
		100% 0,
		calc(100% - var(--slant)) 100%,
		0 100%
	);
}

/* 右下の白い三角形 */
.banner-bottom-link::after {
	content: "";
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 1.4rem 1.4rem;
	border-color: transparent transparent #ffffff transparent;
}

.banner-bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	text-align: center;
}
.banner-bottom-sub {
	color: #ffd83d;              /* イエロー */
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .05em;
}
.banner-bottom-main {
	color: #ffffff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.3;
}

.banner-bottom,
.sp-fix-banner05 {
	transition: opacity .3s ease, visibility .3s ease;
}
.banner-bottom.is-banner-hidden,
.sp-fix-banner05.is-banner-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

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

/* ---------------------------------------------
SP用固定バナー（sp-fix-banner05）
--------------------------------------------- */
.sp-fix-banner05 {
	display: none;   /* PC非表示 */
}

@media screen and (max-width: 767px) {
	.sp-fix-banner05 {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 100;
		width: 75%;
	}
	.sp-fix-banner05-link {
		display: flex;
		align-items: center;
		position: relative;
		background-color: #1e2124;
		padding: 1rem 6rem 1rem 2rem;   /* 左paddingは元に戻してOK */
		text-decoration: none;
		overflow: hidden;
		--slant: 1.6rem;

	/* ★ 箱の右辺を斜めにカット（右下の頂点を内側へ） */
		clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
	}

	/* ★ 右側の緑の帯（PC版の左右反転） */
	.sp-fix-banner05-link::before {	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: calc(var(--slant) + 1.8rem);
	height: 100%;
	background-color: #4cd964;
	/* 箱の右辺カットと同じ傾きで、帯の左辺も斜めに */
	clip-path: polygon(
			var(--slant) 0,
		100% 0,
		calc(100% - var(--slant)) 100%,
		0 100%
	);}

	.sp-fix-banner05-inner {
		display: flex;
		flex-direction: column;
		gap: .4rem;
	}
	.sp-fix-banner05-sub {
		color: #ffd83d;
		font-size: 1.6rem;
		font-weight: 700;
		letter-spacing: .05em;
	}
	.sp-fix-banner05-main {
		color: #ffffff;
		font-size: 1.9rem;
		font-weight: 700;
		line-height: 1.3;
	}

	/* ＞ 矢印 */
	.sp-fix-banner05-arrow {
		position: absolute;
		right: calc(var(--slant) + 2.5rem);   /* 緑の帯を避けた位置 */
		top: 50%;
		width: .9rem;
		height: .9rem;
		border-top: 3px solid #ffffff;
		border-right: 3px solid #ffffff;
		transform: translateY(-50%) rotate(45deg);
	}
}

/* ---------------------------------------------
mainvisual
--------------------------------------------- */
.disclaimer {
	text-align: center;
	padding: 1rem 0;
	background: #FFDF41;
}
.disclaimer p {
	font-size: 1.7rem;
	font-weight: 700;
	background: none !important;
	line-height: 1.5 !important;
	color: black;
	margin: 0 !important;
	padding: 0 !important;
}

.low-disclaimer {
	text-align: center;
	padding: 0.5rem 0;
	background: #FFDF41;
}
.low-disclaimer p {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.5;
	color: black;
	margin: 0 !important;
	padding: 0;
}


#visArea {
    background: #fff;
}

#visArea .mainArea {
    min-height: 24rem;
    margin: 0 auto;
    padding: 0rem 0 4rem 0;
    background: url(img/mv_pc.png) no-repeat center;
    background-size: cover;
}

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

#visArea .mainAreaInner .text-box {
    max-width: 55rem;
}
#visArea .btn-internal a{
	    background: black url(./img/arrow-01-wht-down.svg) no-repeat center right 3rem / auto 1.2rem;
} 

#visArea .mainTxtBox{
	width: 52rem;
}

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

#visArea .title {
    margin: 0 0 1rem 0;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.3;
}

#visArea .logo {
    margin-bottom: 0rem;
}

#visArea .title span.box {
    color: #ffffff;
    font-size: 2.8rem;
    background: #000000;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 3px;
    margin-top: 2rem;
}

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

#visArea p:not([class]) {
    margin: 2rem 0 2rem;
    line-height: 2;
    background: #fff;
    padding: 1rem 2rem;
}

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

#visArea .btn-internal {
	margin-block: 2.5rem 2rem;
	font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
.disclaimer {
	padding: 1rem 2rem;
}
.disclaimer p {
	font-size: 1.2rem;
}
#visArea{
    background: url(img/mv_sp.png) no-repeat top center;
    background-size: 100% auto;
}
#visArea .mainAreaInner {
	padding-top: 3rem;
	width: 100%;
}
 
#visArea .mainTxtBox{
	width: 100%;
}
#visArea .mainAreaInner .text-box {
    padding-right: calc(var(--s1) + var(--s-2));
    padding-left: calc(var(--s1) + var(--s-2));
    background: none;
}

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

#visArea .title span.box {
    font-size: 2rem;
    padding: 5px;
    margin-top: 3rem;
    color: white;
    background: black;
}

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

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

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

#visArea .logo {
    max-width: 110px;
}

#visArea .mainArea {background: none;padding-bottom: 1rem;}    


#visArea p:not([class]) {
    margin: 2rem 0 0;
}
}

.mv-lower {
	height: 150px;
	background: #efeee0 url(img/mv_low.png) no-repeat center top;
	background-size: cover;
}

.mv-lower .mv-inner {
	max-width: 420px;
	padding-top: 2rem;
}
.mv-lower .mv-logo {
	width: 160px;
	padding: 1.5rem 0;
}

.mv-lower .mv_box{
	max-width:1000px;
	margin:0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

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

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

.mv-lower .mv-inner {
	max-width: 420px;
	padding-top: 2rem;
}
.mv-lower .mv-logo {
	width: 19rem;
	padding: 2rem;
}

.mv-lower .mv_box{
	max-width:1000px;
	margin:0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

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


}

.txt-wrap {
margin-top: 2rem;
}
/* ---------------------------------------------
アコーディオン
--------------------------------------------- */
.acc-more-btn {
	max-width: 46rem;
  width: 100%;
	margin: var(--s5) auto;
	position: relative;
}
.sec07 .acc-more-btn {
margin-block: 1rem 2rem;
}
.acc-more-btn span {
	width: 100%;
	margin: auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .2rem solid #aeaeae;
	border-radius: 4rem;
	background: url('./img/acc-off.svg') no-repeat 95% center #fff;
	display: block;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}
.acc-more-btn::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: black;
	border-width: 0 1px 1px 0;
	transform: translate(.8rem, .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 #fff;
}
.more-content {
	display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn {
		margin-right: var(--s1);
	}
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}
	.acc-more-btn:hover span {
		transform: none;
	}
}
/* ---------------------------------------------
TOP_下層パーツ
--------------------------------------------- */
.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: 2.2rem;
	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;
	}
}

.right-img-box {
	display: flow-root;
}
.right-img {
	width: 40%;
	margin-left: var(--s3);
	padding-bottom: var(--s1);
	float: right;
}
.right-img-catch {
	margin-bottom: 1.6rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--site-color03);
	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;
	}
}

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

.twb-m-title03 {
	padding: var(--s2) var(--s1) var(--s2) var(--s8);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
	border-bottom: 3px solid #dfdfdf;
	background: url('./img/catch-icon.png') no-repeat center left;
	background-size: 4.8rem auto;
}

@media screen and (max-width: 767px) {
	.twb-m-title03 {
	padding: var(--s2) 0 var(--s2) var(--s5);
	font-size: 2.2rem;
	line-height: 1.5;
	background: url('./img/catch-icon.png') no-repeat center left;
	background-size: 3.5rem auto;
}
}

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

/* ---------------------------------------------
タブ切り替え
--------------------------------------------- */
/* ==========================================================
   ベース(既存サイトに組み込む場合は不要な箇所は削除してください)
========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.sec03 .l-stack > * + * { margin-top: 0; }

/* ==========================================================
   セクションタイトル
========================================================== */
.section-title02-frame { text-align: center; }
.sec03 .section-title02, .sec03 .lead {
	color: #fff;
}
.section-title02-sub { margin-bottom: 12px; }
.section-title02-sub span {
  display: inline-block;
  background: #2fbe73;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 8px 28px;
  transform: skewX(-15deg);
}
.section-title02-sub span i {
  display: inline-block;
  font-style: normal;
  transform: skewX(15deg); /* 文字だけ水平に戻す */
}


/* ==========================================================
   タブ全体
========================================================== */
.cf-tabs {
	margin-top: 0;
	position: relative;
}

.cf-tabs > input[type="radio"] {
	position: absolute;
	top: 25rem;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.cf-tab-note {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}


.sec01 .cf-tab-note {
	color: #000;
	margin-bottom: 0;
}

/* タブ案内文:上下ループアニメーション */
.cf-tab-note {
  animation: cf-bounce 1.6s ease-in-out infinite;
}

@keyframes cf-bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}


/* --- タブナビ --- */
.cf-tab-nav {
  display: flex;
  gap: 10px;
}
.cf-tab-nav label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: var(--s3) var(--s2);
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
  line-height: 1.4;
  transition: opacity .2s;
}
.cf-tab-nav label:hover { opacity: .85; }

@media screen and (max-width: 767px) {
	.cf-tab-nav label {
  padding: 1.5rem 1rem;
}
	
}


/* 選択中タブの色(黄色・黒文字) */
#cf-tab1:checked ~ .cf-tab-nav label[for="cf-tab1"],
#cf-tab2:checked ~ .cf-tab-nav label[for="cf-tab2"],
#cf-tab3:checked ~ .cf-tab-nav label[for="cf-tab3"] {
  background: #ffd23e;
  color: #000;
}

/* --- パネル表示制御 --- */
.cf-tab-panel { display: none; }
#cf-tab1:checked ~ #cf-panel1,
#cf-tab2:checked ~ #cf-panel2,
#cf-tab3:checked ~ #cf-panel3 {
  display: block;
}

/* ==========================================================
   パネル内デザイン
========================================================== */
.cf-panel-inner {
  background: #fff;
  padding: 0 45px 70px;
}

/* 黄色帯キャッチコピー */
.cf-catch {
  background: #ffd23e;
  margin: 0 -45px;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.6;
}

/* サービス名・会社名 */
.cf-service-head {
  text-align: center;
  margin-top: 45px;
}
.cf-service-name {
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  padding-bottom: 4px;
  line-height: 1.3;
	color: var(--site-color03);
}
.cf-company-name {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.4rem;
	color: #505050;
}

/* スクリーンショット */
.cf-screenshot {
  max-width: 600px;
  margin: 6rem auto 0;
}
.cf-screenshot img {
  width: 100%;
}
.cf-screenshot .cf-cite {
  text-align: center;
  font-size: 1.2rem;
  color: #888;
  margin-top: 8px;
}

/* 緑帯見出し(チェックアイコン付き) */
.cf-block-title {
  position: relative;
  background: #a4e3bd;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  padding: 2rem 6rem;
  margin-top: 70px;
}

.cf-block-title::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('./img/conclusion-check.png')no-repeat center left;
  background-size: 4rem;
}
@media screen and (max-width: 767px) {
.cf-block-title::before {
  width: 30px;
  height: 30px;
  background: url('./img/conclusion-check.png')no-repeat center left;
  background-size: 3rem;
}
}
/* 見出し下の説明文 */
.cf-block-lead {
  font-size: 1.5rem;
  margin-top: 2rem;
  line-height: 1.8;
}
.cf-block-lead .marker {
  background: linear-gradient(transparent 55%, #ffe9a3 55%);
  font-weight: 700;
}

/* 価格 */
.cf-price-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.cf-price-item {
  flex: 1;
  border-bottom: 2px solid #ccc;
  padding: 10px 0 14px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
}
.cf-price-item .cf-price-value {
  color: #f97335;
  margin-left: 8px;
}

/* おすすめ理由 3カラム */
.cf-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.cf-reason-card {
  background: #ecf4f4;
  padding: 2.5rem 2rem;
}
.cf-reason-card h6 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #333;
}
.cf-reason-card p { font-size: 1.4rem; }
.cf-reason-card .cf-cite {
  font-size: 1.2rem;
  color: #999;
  margin-top: 14px;
  word-break: break-all;
  line-height: 1.4;
}

/* サポート範囲 2カラム */
.cf-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.cf-support-card {
  background: #fff;
  border: 1px solid #222;
  box-shadow: 8px 8px 0 #222;
  padding: 26px 24px;
}
.cf-support-card div {
  font-size: 2rem;
  font-weight: 900;
  border-left: 6px solid #53d875;
  padding-left: 12px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cf-support-card p { font-size: 1.5rem; }
.cf-support-card .cf-cite {
  font-size: 1.2rem;
  color: #999;
  margin-top: 14px;
  word-break: break-all;
}

/* 会社情報 */
.cf-company-lead { font-size: 1.5rem; margin-top: 24px;  line-height: 1.8; }
.cf-company-points {
  font-size: 1.5rem;
  margin-top: 2rem;
}
.cf-company-points .cf-points-head { font-weight: 700; }
.cf-company-points ul { list-style: none; }
.cf-company-points li { padding-left: 2rem; }
.cf-company-points li::before { content: "・"; }

.l-onb-flex-table {
	display: flex;
	margin-top: 2rem;
}
.onb-flex-table {
	border-collapse: collapse;
}
.onb-flex-table th,
.onb-flex-table td {
	padding: 1.5rem;
	border: 1px solid #d3d3d3;
}
.onb-flex-table th {
	width: 34%;
	background-color: #ecf4f4;
	vertical-align: middle;
	font-weight: 700;
	text-align: center;
}
.onb-flex-table td {
	background-color: #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-flex-table {
		flex-direction: column;
	}
	.onb-flex-table,
	.onb-flex-table tr,
	.onb-flex-table th,
	.onb-flex-table td {
		display: block;
		width: 100%;
	}
	.onb-flex-table th {
		text-align: center;
		border-bottom: none;
		border-left: none;
		border-top: none;
	}
	.onb-flex-table tr + tr th {
		border-top: none;
	}
	.onb-flex-table td {
		word-break: break-all;
	    border-left: none;
	}
	.onb-flex-table + table {
		margin-top: -1px;
	}
.cf-tab-note {
font-size: 1.4rem;  
	margin-top: 1rem;
}
.cf-company-lead { margin-top: 2rem; }
	.cf-service-head {
  margin-top: 3.5rem;
}
.cf-screenshot {
  margin: 4rem auto 0;
}
.section-title02-sub span {
  margin-bottom: .5rem;
}
	
}

/* 下部タブナビ */
.cf-tab-nav--bottom { margin-top: 0; padding-top: 0; }

/* ==========================================================
   レスポンシブ
========================================================== */
@media (max-width: 768px) {
  .section-title02 { font-size: 24px; }
  .cf-tab-nav {gap: 8px;margin-bottom: 0;}
  .cf-tab-nav label {min-height: 48px;font-size: 1.6rem;}
  .cf-panel-inner { padding: 0 20px 50px; }
  .cf-catch {margin: 0 -20px;font-size: 2.2rem;}
  .cf-service-name { font-size: 24px; }
  .cf-company-name { font-size: 18px; }
  .cf-block-title {font-size: 2rem;padding: 2rem 2rem 2rem 5rem;text-align: left;line-height: 1.4;margin-top: 6rem;}
  .cf-price-row { flex-direction: column; gap: 16px; }
  .cf-reason-grid {grid-template-columns: 1fr;margin-top: 2rem;}
  .cf-support-grid { grid-template-columns: 1fr; }
  .cf-cta a { padding: 14px 60px; font-size: 14px; }
  .cf-company-table th { width: 110px; padding: 10px 8px; font-size: 12px; }
  .cf-company-table td { padding: 10px 12px; font-size: 12px; }
}

/* ---------------------------------------------
詳細3選
--------------------------------------------- */
.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);
    }
}

/* ---------------------------------------------
簡易3選
--------------------------------------------- */
.m-title02 {
	padding: var(--s3) var(--s2);
	font-size: 2.2rem;
	font-weight: 900;
	color: #fff;
	line-height: 1.5;
	background-color: black;
	text-align: center;
}

.m-title02 span {
	color: #FFDF41;
}
.m-title01 {
	padding: 3.5rem 0 2.5rem;
	font-size: 2rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	margin: 0;
	justify-content: center;
}
.m-title01 span {
  padding-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #505050;
}

.sec05 .m-title01 {
	font-size: 2.2rem;
	padding-bottom: 0;
}

.sec07 .m-title01 {
	font-size: 2.2rem;
}

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


.thb-table {
	line-height: 1.5;
	border-collapse: collapse;
	border: 1px solid #C9C9C9;
	margin-block: 0 !important;
}
.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #C9C9C9;
	font-size: 1.5rem;
}
.thb-table th {
	width: 40%;
	background-color: #B9ECC6;
	text-align: center;
	font-weight: 700;
}
.thb-listbox-area {
    position: relative;
}
.thb-listbox-title {
    margin-top: 3rem;
    padding: var(--s2);
    color: #fff;
    background-color: #ecf4f4;
    text-align: center;
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
}
.thb-listbox-list {
    width: 100%;
    padding-left: 2rem;
}
.thb-listbox-list li {
    padding: 0 0 0 1.2rem;
    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 {
	font-weight: 700;
	background:linear-gradient(transparent 55%, #ffe9a3 55%);
}

.sec02 .btn-web {
	margin-block: 3rem 2rem;
}
.sec02 .l-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sec02 .column-small {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 7;
  z-index: 1;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .thb-listbox-area {
        padding: 1rem 0 1rem;
    }
    .thb-listbox-list li {
        font-size: 1.4rem;
    }
    .thb-listbox-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }
    .thb-listbox-title {
        margin: 1rem 0;
        padding: 1.5rem;
        font-size: 1.8rem;
        text-align: center;
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
.thb-table {
margin: 0 !important;
}	
.thb-listbox-bg-colored {
	margin-bottom: 1rem;
}
.sec02 .btn-web, .sec02 .btn-tel {
	margin-block: 1rem;
}
.sec02 .btn-tel {
	margin-bottom: 3rem;
}
.sec02 .l-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sec02 .column-small {padding-bottom: var(--s2);}
}

/* ---------------------------------------------
まとめBOX
--------------------------------------------- */
.conclusion-area {
    padding: 0 0 var(--s4);
    background: white;
    border: 1px solid #2c2c2c;
	box-shadow: 8px 8px 0 #222;
	margin-top: 2rem;
}

#low-page .conclusion-area {
	margin-block: 4rem 6rem;
}

.conclusion-title {
    position: relative;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    background: url('./img/conclusion-check.png')no-repeat center left 2rem, #000;
    padding: 1.5rem 5rem 1.5rem 8rem;
    height: 65px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 3.2rem) 100%, 0 100%);
    width: 24%;
}

.conclusion-box {
    padding: var(--s1) var(--s4);
}
.conclusion-box p{
    color: #000;
    line-height: 1.8;
}
.conclusion-catch {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.5;
    color: black;
    text-align: center;
}
.conclusion-catch span {
    border-bottom: 6px solid #53d875;
}
.conclusion-btn-area {
    z-index: 5;
}
.btn-conclusion {
    margin: 0 auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .conclusion-area {
        padding: 0 var(--s2) var(--s2);
        background-size: 70% auto;
    }
    .conclusion-title {
        font-size: 2.4rem;
        margin-left: -1.7rem;
        width: 60%;
        padding: 2rem 2rem 2rem 4rem;
        background-size: 3rem;
    }
    .conclusion-title-deco::before,
    .conclusion-title-deco::after {
        content: "";
        width: 10%;
    }
    .conclusion-title-deco::before {
        left: -20%;
    }
    .conclusion-title-deco::after {
        right: -20%;
    }
    .conclusion-box {
        padding: var(--s2) 0 var(--s1);
    }
    .conclusion-catch {
        font-size: 2.2rem;
        line-height: 1.6;
        margin-top: 0;
    }
    .btn-conclusion {
        width: 80%;
    }
}

/* ---------------------------------------------
3BOX共通
--------------------------------------------- */
.column-small {
    padding: 0 var(--s2) var(--s2);
    border: 1px solid #ccc;
	display: grid;
	background: #fff;
}

.sec05 .column-small{
	padding: 0 var(--s4) var(--s4);
}

.sec07 .column-small{
	margin-bottom: 2rem;
	grid-template-rows: subgrid;
    grid-row: span 4;
}

.thb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
}
@media screen and (max-width: 767px) {
	.sec05 .column-small{
	padding: var(--s2) var(--s3) var(--s4);
}
	.sec07 .column-small{
	margin-bottom: 1rem;
	grid-template-rows: subgrid;
    grid-row: span 4;
}
}

/* ---------------------------------------------
テーブル
--------------------------------------------- */
.simplified-chart-spfix-cpt {
	display: none;
}

/* ★追加: 縦スクロール用コンテナ設定 */
.l-scroll-x-sp {
	max-height: 60rem;   /* お好みの高さに調整 */
	overflow: auto;      /* 縦横スクロール */
}

.l-scroll-x-sp::-webkit-scrollbar {
	width: 8px;    /* 縦スクロールバーの太さ */
	height: 10px;   /* 横スクロールバーの太さ */
}
.l-scroll-x-sp::-webkit-scrollbar-track {
	background: #e8e8e8;      /* バーの背景（レール部分） */
	border-radius: 1px;
}
.l-scroll-x-sp::-webkit-scrollbar-thumb {
	background: #949494;  /* つまみ部分の色（サイトカラーに合わせる例） */
	border-radius: 5px;
}
.l-scroll-x-sp::-webkit-scrollbar-thumb:hover {
	background: #86888f;      /* ホバー時の色 */
}

.simplified-chart-spfix {
	border-collapse: collapse;
}
.simplified-chart-spfix th,
.simplified-chart-spfix td {
	min-width: auto;
	padding: var(--s2);
	line-height: 1.5;
	border: 1px solid #86888f;
}
.simplified-chart-spfix th {
	background-color: #b9ecc6;
	text-align: center;
	width: 14rem;
	font-size: 1.4rem;
}
/* ★変更: tr:nth-child(1) → thead tr （tbody1行目への誤適用を防止） */
.simplified-chart-spfix thead tr th {
	color: #ffffff;
	padding: var(--s11) var(--s2) var(--s2);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	display: table-cell;
	border: 1px solid #86888f;
	/* ★追加: ヘッダー行の上部固定 */
	position: sticky;
	top: 0;
	z-index: 20;
	/* ★追加: border-collapse時にスクロールで消える下線をbox-shadowで再現 */
	box-shadow: inset 0 -3px 0 rgba(var(--site-color05-rgb), .3);
	border-bottom: none; /* border-bottom: 3px solid ... はbox-shadowに置き換え */
}

.simplified-chart-spfix thead tr th:nth-child(1) {
background:  var(--site-color03);
}
/* ★変更: 以下すべて tr:nth-child(1) → thead tr */
.simplified-chart-spfix thead tr th:nth-child(2) {
	background: url('./img/sec01_icon01.png') no-repeat center top 2rem, var(--site-color03);
	background-size: 6rem auto;
}
.simplified-chart-spfix tr:nth-child(1) th:nth-child(3) {
	background: url('./img/sec01_icon02.png') no-repeat center top 2rem, var(--site-color03);
	background-size: 6rem auto;
}
.simplified-chart-spfix tr:nth-child(1) th:nth-child(4)  {
	background: url('./img/sec01_icon03.png') no-repeat center top 2rem, var(--site-color03);
	background-size: 6rem auto;
}
.simplified-chart-spfix tr:nth-child(1) th:nth-child(5) {
	background: url('./img/sec01_icon04.png') no-repeat center top 2rem, var(--site-color03);
	background-size: 6rem auto;
}
.simplified-chart-spfix tr:nth-child(1) th:nth-child(6) {
	background: url('./img/sec01_icon05.png') no-repeat center top 2rem, var(--site-color03);
	background-size: 6rem auto;
}

.simplified-chart-spfix td {
	background-color: #fff;
	text-align: left;
	font-size: 1.4rem;
	padding: 1.5rem 1rem;
}
.simplified-chart-spfix td ul{
 text-align: left;
}
.simplified-chart-spfix td .font-large{
	font-size: 2.1rem;
}
.simplified-chart-spfix td .font-small{
	font-size: 1.2rem;
}
.simplified-chart-spfix-img {
	text-align: center;
}
.simplified-chart-spfix .caption{
	text-align:left;
}

#low-page .l-scroll-x-sp table,
#low-page .l-scroll-x table {
	margin-block: 0;
}

#low-page table ul:not([class]),
#low-page table ol:not([class]) {
	margin-block: 0;
}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.simplified-chart-spfix-cpt {
		margin-bottom: 1rem;
		display: block;
		padding: var(--s1);
		border: 1px solid #ccc;
		text-align: center;
		font-size: 1.2rem;
		border-radius: 2rem;
	}
	.l-scroll-x-sp .simplified-chart-spfix {
		width: inherit;
	}
	.l-scroll-x-sp .simplified-chart-spfix th,
	.l-scroll-x-sp .simplified-chart-spfix td {
		min-width: 20rem;
		font-size: 1.2rem;
	}
	.l-scroll-x-sp .simplified-chart-spfix th:first-child {
		min-width: 14rem;
		font-size: 1.2rem;
		position: sticky;
		left: 0;
		z-index: 10;
	}
	/* ★追加: 左上の交差セル（thead内の1列目）は上下左右両方に固定 */
	.l-scroll-x-sp .simplified-chart-spfix thead th:first-child {
		top: 0;
		left: 0;
		z-index: 30;   /* ヘッダー行(20)・左列(10)より上 */
	}
}

/* ---------------------------------------------
H2
--------------------------------------------- */
.section-title02-frame {
    margin-top: 0;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.sec07 .section-title02-frame {
    margin-bottom: 1rem;
}
.section-title02 {
    font-size: 3.6rem;
    font-weight: 700;
    color: black;
    text-align: center;
    line-height: 1.2;	
	z-index: 2;
}
.lead{
	margin-block: 2rem 0;
	line-height: 1.8;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title02 {
        font-size: 2.6rem;
        line-height: 1.6;
        width: 100%;
    }
.section-title02-sub {
	font-size: 1.6rem;
	margin-bottom: 0;
	top: -4rem;
	width: max-content;
	}
}

/* ---------------------------------------------
sec設定, bg設定
--------------------------------------------- */
.sec01, .sec02, .sec03, .sec04, .sec06, .sec07, .sec08   {
	padding-top: 10rem;
	padding-bottom: 10rem;
	width: 100%;
	position: relative !important;
}

.sec05{
	padding-top: 8rem;
	padding-bottom: 8rem;
	width: 100%;
	position: relative !important;
}

.host {
		padding-top: 4rem;
	padding-bottom: 0;
}

.bg01 {
	background: url("./img/bg01.jpg") no-repeat top center;
	background-size: cover;
    background-attachment: fixed;
}

#low-page .bg01 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 8rem;
    margin-bottom: 6rem;
}

.bg02 {
	background: url("./img/bg02.png") no-repeat top center,  #F0F5EE;
	background-size: contain;
}

#low-page .bg02 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 8rem;
}

.bg03 {
	background:#3f3f3f;
    position: relative;
    z-index: 0;
}
.bg03::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0px);
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.1) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.1) calc(100% - 1px));
    background-size: 25px 25px;
    background-repeat: repeat;
    background-position: center top;
    width: 100vw;
    height: 100%;
    box-sizing: border-box;
    z-index: -1;
}

.bg04 {
	background: url() no-repeat top center;
	background-size: cover;
}

.bg05 {
	background: #e7f0e8;
	background-size: cover;
}

.bg06 {
	background: url() no-repeat top center;
	background-size: cover;
}

.bg07{
	background:var(--site-color03);
    z-index: 0;
}

.bg08{
	background: #ffffff;
	position: relative;
	z-index: 0;
}

.bg08::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0px);
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgb(0 0 0 / 8%) calc(100% - 1px)), linear-gradient(90deg, #00000000 calc(100% - 1px), rgb(0 0 0 / 8%) calc(100% - 1px));
    background-size: 25px 25px;
    background-repeat: repeat;
    background-position: center top;
    width: 100vw;
    height: 100%;
    box-sizing: border-box;
    z-index: -1;
}

/* ---------------------------------------------
    sec設定_SP settings
--------------------------------------------- */
@media screen and (max-width: 767px) {
.sec01 {
	padding-top: 6rem;
	padding-bottom: 8rem;
}
.sec02, .sec03, .sec04, .sec05, .sec06, .sec07, .sec08 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
}

/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
	padding: var(--s1);
	text-align: right;
	background: black;
	color: white;
}
.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
}
.header-title::before {
	content: "PR";
	padding: .2rem;
	color: #000;
	background-color: #fff;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -2.4rem;
}
.header-title a {
	text-decoration: none;
}
.header-title a:hover {
	text-decoration: underline;
}
.gnavi-btn-close {
	display: none;
}
.toggle-content {
	display: none;
}
.gnavi-ctrl {
	transition: opacity 0.6s, visibility 0.6s;
	opacity: 0;
	visibility: hidden;
}
.gnavi-ctrl.is-show {
	opacity: 1;
	visibility: visible;
}
#low-header .gnavi-ctrl {
	opacity: 1;
	visibility: visible;
}
.gnavi-btn {
	width: var(--s7);
	height: var(--s6);
	background: #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: 100px;
}
.gnavi-btn-close__inner {
	padding: 0 0 0 var(--s3);
	display: inline-block;
	color: #fff;
	font-weight: 700;
	position: relative;
}
.gnavi-btn-close__inner::before {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(45deg);
}
.gnavi-btn-close__inner::after {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(135deg);
}
.gnavi-area {
	width: 100%;
	max-width: 37.5rem;
	height: 100vh;
	padding: var(--s3) var(--s1) var(--s10);
	display: block;
	background: #F5F5F5;
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	transform: translateX(100%);
	transition: transform 0.8s ease, opacity 0.8s ease;
	opacity: 0;
}
.gnavi-title {
	min-height: var(--s6);
	margin: auto;
	width:15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.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/contain;
	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);
	z-index: 110;
}

/* ---------------------------------------------
index02(目次)
--------------------------------------------- */
.onb-index02-frame {
    width: 100%;
}
.onb-index02-wrap {
    margin: var(--s6) auto;
    padding: var(--s2) var(--s4) var(--s4);
    background-color: var(--site-color09);
    position: relative;
}
.onb-index02-title {
    padding: var(--s1) var(--s2) var(--s1) var(--s3);
    font-size: 2.2rem;
    margin: 1rem 0 2rem;
    font-weight: bold;
    line-height: 1;
    border-left: 7px solid #023156;
    background-size: 4rem auto;
    position: relative;
}
.onb-index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    font-weight: 700;
    counter-reset: number 0;
}
#toc ul.onb-index02-chapter li {
    position: relative;
}
#toc ul.onb-index02-chapter li:not(.onb-index02-chapter-h-three)::before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    color: var(--site-color03);
    position: absolute;
    top: -1px;
    font-size: 2rem;
    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;
    font-size: 1.8rem;
}
#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 {
    margin-top: 1.4rem;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
    border-top: 3px double #b5b5b5;
    position: relative;
}
#toc.onb-index02-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, var(--site-color09) 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: auto;
    padding: 2rem 6rem 2rem 3rem;
    border: .2rem solid #aeaeae;
    border-radius: 4rem;
    background: url(./img/acc-off.svg) no-repeat 95% center #fff;
    display: block;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
}
.onb-index02-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    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 #fff;
}
/*------------------------------------------------------------
    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: #f7f7f7;
    position: relative;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s3) var(--s8);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/kanrenkiji.png") no-repeat left center;
    background-size: 5rem auto;
    position: relative;
    border-bottom: 1px solid #D0D3E0;
}
.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: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #2fbe73;
    position: absolute;
    top: 0.6rem;
    left: 0;
}
.related-article01-list a {
    display: block;
    text-decoration: none;
}
.related-article01-list a:hover {
    opacity: 0.6;
}
.relations-box.relations-box--column {
    display: flex;
    gap: 10px;
}
.relations-box__pic {
    flex: 0 0 150px;
}
.is-hidden {
	display: none;
}

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


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

.related-article01-btn {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 100px;
    padding: 1rem 5rem 1rem 2rem;
    position: relative;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .related-article01-list {
        padding: 0;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
}