@charset "utf-8";

body {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    width: 100%;
    min-width: 300px;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    /* font-family: "Roboto", "Noto Serif JP", sans-serif; */
    font-weight: 300;
    font-style: normal;
    /*******************************　06　others　*/
}

header {
    /*******************************　01　layout　*/
    display: grid;
    place-content: center;
    /*******************************　02　area　*/
    width: 100%;
    height: 101svh;
    margin-bottom: 50vh;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 1px solid #000;
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

header h1 {
	/*******************************　01　layout　*/
    position: fixed;
    z-index: 100;
    right: 0.5rem;
    bottom: 0.5rem;
	/*******************************　02　area　*/
    width: 8rem;
    height: 2.3rem;
	/*******************************　03　background　*/
    background-color: #fff;
	/*******************************　04　border　*/
    border-radius: 1.2rem;
    border: 0.05rem solid #000;
	/*******************************　05　typography　*/
    font-size: 0.8rem;
    text-align: center;
    color: #000;
	/*******************************　06　others　*/
}

header h1 a {
	/*******************************　01　layout　*/
    display: grid;
    place-items: center;
	/*******************************　02　area　*/
    width: 100%;
    height: 100%;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
}

header h2 {
	/*******************************　01　layout　*/

	/*******************************　02　area　*/
    padding-bottom: 0.3rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/
    border-bottom: 1px solid #000;
	/*******************************　05　typography　*/
	font-size: 1.2rem;
	text-align: center;
	/*******************************　06　others　*/
}

header h2 mark {
	/*******************************　01　layout　*/

	/*******************************　02　area　*/
    display: block;
    /*******************************　03　background　*/

	/*******************************　04　border　*/

    /*******************************　05　typography　*/
	font-size: 0.7rem;
	text-align: center;
    padding-bottom: 0.3rem;
	/*******************************　06　others　*/
}

header p {
	/*******************************　01　layout　*/
	position: relative;
	/*******************************　02　area　*/
    margin-top: 1rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　others　*/
}

header p::before {
	/*******************************　01　layout　*/
	content: "start";
	position: absolute;
	bottom: -2.5rem;
	right: -1.5rem;
	left: 0;

	margin: auto;
	/*******************************　02　area　*/
	width: fit-content;
	height: fit-content;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	transform: rotate(90deg);
}

@keyframes scrollAnimation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

header p::after {
	/*******************************　01　layout　*/
	content: "";
	position: absolute;
	bottom: -3.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	/*******************************　02　area　*/
	width: 0.035rem;
	height: 3rem;
	/*******************************　03　background　*/
	background-color: #000;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	animation-name: scrollAnimation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

footer {
	/*******************************　01　layout　*/
	display: grid;
	place-content: center;
	/*******************************　02　area　*/
	width: 100%;
	min-height: 100vh;
	margin-top: 50vh;
	/*******************************　03　background　*/
	background-color: #000;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/
	color: #fff;
	/*******************************　06　others　*/
}

footer p {
	/*******************************　01　layout　*/
	position: relative;
	/*******************************　02　area　*/
    margin-bottom: 1rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/
    border-top: 1px solid #000;
	/*******************************　05　typography　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　others　*/
}

footer p::before {
	/*******************************　01　layout　*/
	content: "end";
	position: absolute;
	top: -2.5rem;
	right: -1.5rem;
	left: 0;

	margin: auto;
	/*******************************　02　area　*/
	width: fit-content;
	height: fit-content;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	transform: rotate(90deg);
}

@keyframes scrollAnimation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

footer p::after {
	/*******************************　01　layout　*/
	content: "";
	position: absolute;
	top: -3.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	/*******************************　02　area　*/
	width: 0.035rem;
	height: 3rem;
	/*******************************　03　background　*/
	background-color: #fff;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	animation-name: scrollAnimation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}


/***********************************************************
試作
***********************************************************/


/***********************************　main.a02 > section.b05 */
.a02 .b05 {
	padding: 0 0.5rem;
}


/***********************************　main.a02 > section.b05 > p.c02 */
.a02 .b05 .c02 {
	position: relative;     /* 左右位置の中央揃え */
	margin: 0 auto;
	width: max(590px, 80vw);
	padding: 0 0 0 2rem;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #f00;     /* text-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.8); */
	text-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.9);
}

@media screen and (max-width:610px) {
	.a02 .b05 .c02 {


		width: 100%;
	}

}

/***********************************　main.a02 > section.b05 > p.c02::before */
.a02 .b05 .c02::before {
	content: "（注）";
	position: absolute;
	top: 0;
	left: 0;
	width: 2rem;
	height: 100%;
	line-height: 1.5;
}

/***********************************　Java script アコーディオン02 .js-details-summary */

/***********************************　main.a02 > section.b05 > details.c03 */
.a02 .b05 .c03 {
	margin: 1rem auto 0;
	width: max(590px, 80vw);
	border: 0.1rem solid #000;
}

@media screen and (max-width:610px) {
	.a02 .b05 .c03 {


		width: 100%;
	}

}

/***********************************　main.a02 > section.b05 > details.c03 > summary.d01_01 */
.a02 .b05 .c03 .d01_01 {

	/* 子要素の配置基準 */
	position: relative;     /* ブロック要素にして三角形アイコンを非表示 */
	display: block;
	padding: 1.2rem 2.8rem 1.2rem 4.5rem;
	background-color: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	font-size: 0.8rem;
	line-height: 1.2;
	text-align: left;     /* 改行関連 */
	word-break: keep-all;
	word-break: break-all;
	word-break: auto-phrase;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	cursor: pointer;
}

.a02 .b05 .c03 .d01_01::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin-block: auto;
	left: 0;
	width: 4rem;
	height: 100%;
	background-image: url(../img/a02b05_img02.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

/***********************************　main.a02 > section.b05 > details.c03 > summary.d01_02 */
.a02 .b05 .c03 .d01_02 {

	/* 子要素の配置基準 */
	position: relative;     /* ブロック要素にして三角形アイコンを非表示 */
	display: block;
	padding: 1.2rem 2.8rem 1.2rem 4.5rem;
	background-color: rgba(0, 0, 0, 0.85);
	color: #ffffff;
	font-size: 0.8rem;
	line-height: 1.2;
	text-align: left;     /* 改行関連 */
	word-break: keep-all;
	word-break: break-all;
	word-break: auto-phrase;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	cursor: pointer;
}

.a02 .b05 .c03 .d01_02::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin-block: auto;
	left: 0;
	width: 4rem;
	height: 100%;
	background-image: url(../img/a02b05_img03.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 92%;
}

/***********************************　main.a02 > section.b05 > details.c03 > summary.d01_03 */
.a02 .b05 .c03 .d01_03 {

	/* 子要素の配置基準 */
	position: relative;     /* ブロック要素にして三角形アイコンを非表示 */
	display: block;
	padding: 1.2rem 2.8rem 1.2rem 4.5rem;
	background-color: rgba(0, 0, 0, 1);
	color: #ffffff;
	font-size: 0.8rem;
	line-height: 1.2;
	text-align: left;     /* 改行関連 */
	word-break: keep-all;
	word-break: break-all;
	word-break: auto-phrase;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	cursor: pointer;
}

.a02 .b05 .c03 .d01_03::before {
	content: "";
	position: absolute;
	top: -0.5rem;
	left: -2rem;
	width: 6rem;
	height: 140%;
	overflow: hidden;
	background-image: url(../img/a02b05_img04.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.a02 .b05 .c03 .d01_01 strong, .a02 .b05 .c03 .d01_02 strong, .a02 .b05 .c03 .d01_03 strong {
	display: inline-block;
	width: 6.5rem;
	padding: 0 0.2rem;
	font-size: 1.2rem;
	color: #D42C26;
	text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.9);     /* 両端揃え */
	text-align-last: justify;
}

.a02 .b05 .c03 .d01_01::after, .a02 .b05 .c03 .d01_02::after, .a02 .b05 .c03 .d01_03::after {
	content: "";     /* 絶対配置 右寄せ */
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;     /* 上下中央寄せ */
	margin-block: auto;
	transform-origin: center center;
	width: 2.8rem;
	height: 2.8rem;
	display: block;
	background-image: url(../img/a02b05_img01.png);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 50%;
	transition-duration: 0.3s;
}

.a02 .b05 .c03 .is-active.d01_01::after, .a02 .b05 .c03 .is-active.d01_02::after, .a02 .b05 .c03 .is-active.d01_03::after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.a02 .b05 .c03 .d01_01::-webkit-details-marker, .a02 .b05 .c03 .d01_02::-webkit-details-marker, .a02 .b05 .c03 .d01_03::-webkit-details-marker {

	/* safariでデフォルト表示の三角形アイコンを非表示 */
	display: none;
}

/***********************************　main.a02 > section.b05 > details.c03 > div.d02 */
.a02 .b05 .c03 .d02 {

	/* z-index →　js-modalに指定*/
}

/***********************************　main.a02 > section.b05 > details.c03 > div.d02 > dl.e02 */
.a02 .b05 .c03 .d02 .e01 {
	z-index: 400;
	margin: 0;
	padding: 2rem 0.5rem 0;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(0.5rem);
	-webkit-backdrop-filter: blur(0.5rem);
	cursor: default;
}

@media screen and (max-width:610px) {
	.a02 .b05 .c03 .d02 .e01 {


		width: 100%;
	}

}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dt.f01 */
.a02 .b05 .c03 .d02 .e01 .f01 {
	margin: auto;
	position: relative;
	padding-bottom: 0.75rem;
	width: fit-content;
	font-size: 1.3rem;
	font-weight: 500;
	text-align: center;
	text-wrap: balance;
	word-break: auto-phrase;
}

.a02 .b05 .c03 .d02 .e01 .f01::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 3rem;
	height: 0.1rem;
	background-color: #000;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 */
.a02 .b05 .c03 .d02 .e01 .f02 {
	margin: auto;     /* width: max(531px, 90%); */
	width: 90%;
	padding: 0 0 3rem;
	margin-top: 1rem;
}

@media screen and (max-width:555px) {
	.a02 .b05 .c03 .d02 .e01 .f02 {


		width: 90%;
	}

}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g01（サービスと料金について）*/
.a02 .b05 .c03 .d02 .e01 .f02 .g01 {
	display: grid;
	grid-template-columns: max(8.5rem, 30%) max(8.5rem, 70%);
	padding: 0 0 1rem;
	overflow-x: scroll;
	scrollbar-width: thin;
	font-size: 0.9rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g01 > dt.h01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h01 {
	grid-column: 1/2;
	padding: 1rem 0.5rem 0.5rem 1rem;
	border-top: solid #ababab 0.035rem;
	font-weight: 500;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h01:first-of-type {
	border-top: unset;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02_01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h02_01 {
	grid-column: 2/3;
	padding: 1rem 0.5rem 1rem;
	border-top: solid #ababab 0.035rem;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h02_01:first-of-type {
	border-top: unset;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02_02 */
.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h02_02 {
	grid-column: 2/3;
	padding: 1rem 0.5rem 0;
	border-top: solid #ababab 0.035rem;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h02_02:first-of-type {
	border-top: unset;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02 > dl > dd*/
.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h02_02 dl dd {
	padding-left: 1rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h03 */
.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h03 {
	position: relative;
	grid-column: 2/3;
	padding: 0 0.5rem 0.5rem 1.5rem;
	font-size: 0.8rem;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g01 .h03::before {
	content: "※";
	position: absolute;
	left: 0.5rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02（サービスご提供の流れ）*/
.a02 .b05 .c03 .d02 .e01 .f02 .g02 {
	display: grid;
	grid-template-columns: 5rem 1fr;
	row-gap: 1rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dt.h01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g02 .h01 {
	position: relative;     /* 自要素配置 */
	grid-column: 1/2;
	font-weight: 900;
	text-transform: uppercase;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g02 .h01::after {
	content: "▼";
	position: absolute;
	right: 0;
	left: 1rem;
	top: 1.2rem;
	font-weight: 900;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g02 .h01:last-of-type::after {
	content: unset;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 */

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 > j01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g02 .h02 .i01 .j01 {
	font-weight: 500;
	text-wrap: balance;
	text-align: left;
	word-break: auto-phrase;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 > j02 */
.a02 .b05 .c03 .d02 .e01 .f02 .g02 .h02 .i01 .j02 {
	font-size: 0.8rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > ol.g03 */
.a02 .b05 .c03 .d02 .e01 .f02 .g03 {
}

.a02 .b05 .c03 .d02 .e01 .f02 .g03:last-child {
	padding-bottom: 0;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g03 .h01_01 {
	position: relative;
	margin-top: 1rem;
	padding: 0.175rem 0 0 0.8rem;
	font-weight: 400;
	line-height: 1.5;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g03 .h01_01::before {
	content: '';
	position: absolute;
	left: -0.1rem;
	top: 0.6rem;
	width: 0.5rem;
	aspect-ratio: 1/1;
	border-bottom: 0.2rem solid #000000;
	border-right: 0.2rem solid #000000;
	transform: rotate(-45deg);
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_02 */
.a02 .b05 .c03 .d02 .e01 .f02 .g03 .h01_02 {
	position: relative;
	padding: 0.38rem 0 0 0.8rem;
	margin-top: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g03 .h01_02::before {
	content: '→';
	position: absolute;
	left: -0.2rem;
	top: 0.65rem;
	display: grid;
	place-items: center;
	width: 0.8rem;
	height: 0.8rem;
	background-color: #000000;
	border-radius: 50%;
	color: #fff;
	font-size: 0.56rem;
	font-weight: 900;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g03 .h01_03 {
	position: relative;
	padding: 0.175rem 0 0 0.8rem;
	margin-top: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g03 .h01_03::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 0.35rem;
	aspect-ratio: 1/2;
	border-bottom: 0.175rem solid #000000;
	border-right: 0.175rem solid #000000;
	transform: rotate(45deg) translateY(-1.5px);
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > p.g04 */
.a02 .b05 .c03 .d02 .e01 .f02 .g04 {
	margin-bottom: 0.5rem;
	line-height: 1.5;
	text-indent: 1rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > ul.g05 */
.a02 .b05 .c03 .d02 .e01 .f02 .g05 {
	line-height: 1.5;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > ul.g05 > li.h01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g05 .h01 {
	position: relative;
	margin: 0 0 0.5rem 1rem;
	list-style-type: initial;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g06 */
.a02 .b05 .c03 .d02 .e01 .f02 .g06 {
	line-height: 1.5;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g06 > dt.h01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g06 .h01 {
	position: relative;
	margin-bottom: 0.5rem;
	padding-left: 1rem;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g06 .h01::before {

	/* 自要素 */
	position: absolute;
	content: "▶︎";
	left: 0;
	top: 0;
	bottom: 0;
	margin-block: auto;     /* 子要素 */
	display: grid;
	place-items: center;
	width: 1rem;
	height: 100%;
	font-size: 0.7rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g06 > dd.h02 */
.a02 .b05 .c03 .d02 .e01 .f02 .g06 .h02 {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02（サービスご提供の流れ）*/
.a02 .b05 .c03 .d02 .e01 .f02 .g07 {
	display: grid;
	grid-template-columns: 5rem 1fr;
	row-gap: 1rem;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dt.h01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g07 .h01 {
	position: relative;     /* 自要素配置 */
	grid-column: 1/2;
	font-weight: 900;
	text-transform: uppercase;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g07 .h01::after {
	content: "▼";
	position: absolute;
	right: 0;
	left: 1rem;
	top: 1.2rem;
	font-weight: 900;
}

.a02 .b05 .c03 .d02 .e01 .f02 .g07 .h01:last-of-type::after {
	content: unset;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 */

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 > j01 */
.a02 .b05 .c03 .d02 .e01 .f02 .g07 .h02 .i01 .j01 {
	font-weight: 500;
	text-wrap: balance;
	text-align: left;
	word-break: auto-phrase;
}

/***********************************　main.a02 > section.b05 > dl.c01 > div.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 > j02 */
.a02 .b05 .c03 .d02 .e01 .f02 .g07 .h02 .i01 .j02 {
	font-size: 0.8rem;
}