@charset "UTF-8";

.heading_small {
	display: block;
    font-size: 1.6rem;
}

.limited {
	margin-left: 10px;
	display: inline-block;
	background-color: #8b7246;
	color: #fff;
	padding: 5px 10px;
	line-height: 1;
}

.heading._left + .limited_block{
	margin-top: 43px;
    text-align: center;
}

.limited_block {
	padding-right: 36px;
	padding-left: 36px;
}

.limited_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.limited_border {
	border: 1px solid #111;
	padding: 5px 10px;
    font-size: 2rem;
	position: relative;
	line-height: 1;
}

.limited_border:first-child:before,
.limited_border:first-child::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin-inline: auto;
	background-color: #111;
}

.limited_border:first-child::before {
    width: 14px;
    height: 2px;
    bottom: -16px;
}

.limited_border:first-child::after {
    width: 2px;
    height: 14px;
    bottom: -22px;
}

.limited_text {
	margin-top: 20px;
    text-align: center;
	background: linear-gradient(transparent 60%, rgba(139, 124, 70, .3) 60%);
	font-size: 1.6rem;
	display: inline-block;
	line-height: 1;
}

.limited_text em {
	font-size: 2rem;
}

.list_note {
	margin-top: 20px;
}

.list_note > li {
	position: relative;
	padding-left: 15px;
	font-size: 1.1rem;
}

.list_note > li > .mark {
	position: absolute;
	left: 0;
	top: 0;
}

.sec_text {
	font-size: 1.3rem;
}

.example_block {
	margin-top: 43px;
	border-top: 1px solid #e9e9e9;
	padding: 20px 36px 0;
	padding-right: 36px;
	padding-left: 36px;
}

.example_hdg {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 1.6rem;
}

.example_hdg > .icon {
	background-color: #111;
	color: #fff;
	padding: 0 5px;
}

.example_item {
	margin-top: 43px;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
	text-align: center;
	position: relative;
}

.example_item::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 24px;
	height: 24px;
	background-color: #111;
	border-radius: 50%;
	top: calc(50% - 12px);
}

.example_border {
	padding: 15px 0;
	line-height: 1.4;
	font-size: 1.6rem;
}

.example_border:first-child {
	border-bottom: 1px solid #111;
	position: relative;
}

.example_border:first-child::before,
.example_border:first-child::after {
	content: "";
	position: absolute;
	background-color: #fff;
	left: 0;
	right: 0;
	margin-inline: auto;
}

.example_border:first-child::before {
	width: 16px;
	height: 2px;
	bottom: -1px;
}

.example_border:first-child::after {
	width: 2px;
	height: 16px;
	bottom: -8px;
}

.example_text {
	margin: 30px auto 0;
	position: relative;
	text-align: center;
	padding: 10px;
	line-height: 1.4;
	font-size: 1.6rem;
	border: 1px solid #111;
    width: fit-content;
}

.example_text::before,
.example_text::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin-inline: auto;

}

.example_text::before {
	width: 2px;
	height: 20px;
	top: -31px;
	background-color: #111;
}

.example_text::after {
	width: 10px;
	height: 10px;
	border-left: 2px solid #111;
	border-top: 2px solid #111;
	rotate: -135deg;
	top: -22px;
}

.border_box {
	margin-top: 43px;
    border: 1px solid #ddd;
    padding: 20px;
}

.border_box_hdg {
	font-size: 1.6rem;
}

.list_bullet {
	margin-top: 20px;
}

.list_bullet > li {
	list-style: disc;
	margin-left: 20px;
	margin-top: 10px;
}

.list_bullet > li:first-child {
	margin-top: 0;
}

.process_list {
	margin-top: 25px;
}

.process_list > li {
	padding-left: 20px;
	position: relative;
}

.process_list > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
    text-align: center;
    width: 14px;
    height: 14px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.process_list > li.square::before {
	background-color: #8b7246;
    color: #fff;
}

.process_list > li.circle::before {
	border-radius: 50%;
	color: #8b7246;
	border: 1px solid #8b7246;
	background-color: #fff;
}

.process_desc > dt {
	display: flex;
	align-items: center;
	background-color: #f8f8f8;
	border-top: 1px solid #ddd;
    padding: 16px;
    gap: 15px;
}

.process_desc > dt > .num {
    text-align: center;
    width: 24px;
    height: 24px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.process_desc > dt > .num._square {
	background-color: #8b7246;
    color: #fff;
}

.process_desc > dt > .num._circle {
	border-radius: 50%;
	color: #8b7246;
    border: 1px solid #8b7246;
	background-color: #fff;
}

.process_desc > dt > .text {
	flex: 1;
}

.process_desc > dd {
	padding: 16px;
}

@media print,screen and (min-width:768px){
	.sec._main:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.heading_small {
		font-size: 2.8rem;
	}

	.sec_text {
		font-size: 1.6rem;
	}

	.limited {
		padding: 10px;
	}

	.limited_block,
	.example_block {
        width: 70vw;
        padding-right: 32px;
        padding-left: 32px;
		margin-inline: auto;
	}

	.limited_item {
		gap: 40px;
	}

	.limited_border {
		padding: 10px 20px;
		font-size: 3.6rem;
	}

	.limited_border:first-child::before {
		width: 24px;
		height: 4px;
		bottom: -24px;
	}

	.limited_border:first-child::after {
		width: 4px;
		height: 24px;
		bottom: -34px;
	}

	.limited_text {
		margin-top: 20px;
		font-size: 2rem;
	}

	.limited_text em {
		font-size: 3.6rem;
	}

	.list_note {
		margin-top: 40px;
	}

	.list_note > li {
		padding-left: 20px;
		font-size: 1.4rem;
	}

	.example_block {
		padding-top: 40px;
	}

	.example_hdg {
		gap: 15px;
		font-size: 1.8rem;
	}

	.example_hdg > .icon {
		padding: 0 8px;
	}

	.example_item {
		display: flex;
	}

	.example_item::before {
		width: 40px;
		height: 40px;
		top: calc(50% - 20px);
	}

	.example_border {
		font-size: 2.2rem;
		flex: 1;
	}

	.example_border:first-child {
		border-bottom: none;
		border-right: 1px solid #111;
	}

	.example_border:first-child::before,
	.example_border:first-child::after {
		left: auto;
		margin-inline: 0;
		bottom: auto;

	}

	.example_border:first-child::before {
		width: 30px;
		height: 4px;
		right: -16px;
		top: calc(50% - 2px);
	}

	.example_border:first-child::after {
		width: 4px;
		height: 30px;
		right: -3px;
		top: calc(50% - 15px);
	}

	.example_text {
		margin-top: 40px;
		padding: 10px 20px;
		font-size: 2.2rem;
	}

	.example_text::before,
	.example_text::after {
		left: .1px;
	}

	.example_text::before {
		width: 4px;
		height: 30px;
		top: -41px;
	}

	.example_text::after {
		width: 16px;
		height: 16px;
		border-left-width: 4px;
		border-top-width: 4px;
		top: -30px;
	}

	.border_box {
		padding: 40px;
	}

	.border_box_hdg {
		font-size: 2rem;
	}

	.list_bullet > li {
		margin-top: 0;
	}

	.process_list {
		display: flex;
		gap: 40px;
	}

	.process_list > li {
		padding-left: 20px;
		position: relative;
	}

	.process_list > li::before {
		top: 7px;
	}

	.process_desc {
		display: flex;
		flex-wrap: wrap;
	}

	.process_desc > dt {
		width: 40%;
		background: none;
		padding: 16px 16px 16px 30px;
		gap: 30px;
	}

	.process_desc > dd {
		width: 60%;
		border-top: 1px solid #ddd;
	}

	.process_desc > dd .list_note {
		margin-top: 20px;
	}
}