/* CSS Document */
/* /government/comm/article/dx_issues/032.asp */
@media (max-width: 420px) {
.detailMain h1 .h1_part {
    font-feature-settings: "palt";
}
}

/*chart */
.chart {
	margin-top: 16px;
}
.chart .percent {
	position: relative;
	width: 200px;
	height: 200px;
	margin: auto;
}
.chart .percent svg {
	position: relative;
	width: 200px;
	height: 200px;
	transform: rotate(-90deg);
}
.chart .percent svg circle {
	position: relative;
	fill: none;
	stroke-width: 20;
	stroke: #f3f3f3;
	stroke-dasharray: 628;
	stroke-dashoffset: 0;
}
.chart .percent .number {
	margin-top: 4px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.chart .percent .number .title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-align: center;
}
.chart .percent .number .title .numeral {
	font-size: 32px;
	font-weight: 700;
}
.chart .percent .number .title .symbol {
	font-size: 12px;
	font-weight: 700;
}
.chart .percent .line {
	animation: circleAnim 1s forwards;
}
.chart .percent .line {
	stroke-dashoffset: 62.15;
	stroke: #91BE32;
}
@-webkit-keyframes circleAnim {
	0% {stroke-dasharray: 0 565;}
	99.9%, to {stroke-dasharray: 565 565;}
}
@keyframes circleAnim {
	0% {stroke-dasharray: 0 565;}
	99.9%, to {stroke-dasharray: 565 565;}
}

/* effect_wrap */
.dx_issues032_effect_wrap * {
	box-sizing: border-box;
}
.dx_issues032_effect_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.dx_issues032_effect_wrap > .chapter_h3 {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 16px;
	background-color: #F2F7F8;
	border-radius: 8px;
}
.dx_issues032_effect_wrap h3 {
	margin-bottom: 16px;
	padding: 0;
	border: none;
	color: #152768;
}
.dx_issues032_effect_wrap .text {
	margin-top: 0;
}
.dx_issues032_effect_wrap .text ol {
	margin-left: 1.5em;
}
.dx_issues032_effect_wrap .chapter_h3 .imgBox {
	display: none;
}
@media (min-width: 1200px) {
.dx_issues032_effect_wrap > .chapter_h3 {
	width: calc(100%/2 - 8px);
	padding: 24px;
}
.dx_issues032_effect_wrap .text ol li {
	font-size: 15px;
}
.dx_issues032_effect_wrap .chapter_h3 .imgBox {
	display: block;
	position: absolute;
	bottom: 8px;
	left: 0px;
	margin: 0;
}
}

/* flow */
.flow_wrap *, .flow_wrap *::before, .flow_wrap *::after {
	box-sizing: border-box;
}
.flow_wrap {
	margin-top: 24px;
    display: flex;
    flex-flow: column nowrap;
} 
.flow_wrap > li {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 16px 16px 16px 48px;
    background-color: #f6fdea;
    border: 2px solid #91BE32;
}
.flow_wrap > li:not(:last-of-type) {
	margin-bottom: 24px;
}
.flow_wrap > li:not(:last-of-type)::after,
.flow_wrap > li:not(:last-of-type)::before {
    content: "";
    position: absolute;
}
.flow_wrap > li:last-of-type::before {
    content: "1～3ヵ月";
    position: absolute;
	top: -36px;
	left: 32px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: -.05em;
	font-style: italic;
}
.flow_wrap > li:not(:last-of-type)::before {
    bottom: -16px;
    left: 16px;
    width: 2px;
    height: 28px;
    background-color: #91BE32;
}
.flow_wrap > li:not(:last-of-type)::after {
    bottom: -28px;
    left: 12px;
    width: 10px;
    height: 12px;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #91BE32;
    border-right: none;
    border-top: 7px solid transparent;
    transform: translate(0) rotate(90deg);
}
.flow_wrap > li:nth-last-child(2) {
	margin-bottom: 48px;
}
.flow_wrap > li:nth-last-child(2)::before {
    bottom: -40px;
	height: 52px;
}
.flow_wrap > li:nth-last-child(2)::after {
    bottom: -52px;
}
.flow_wrap>li b {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #91BE32;
    border: 2px solid #91BE32;
    width: 32px;
    height: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}
.flow_wrap > li h3 {
	margin: 0 0 8px;
	padding: 0;
	border: none;
	font-size: 15px;
    font-feature-settings: "palt";
}
.flow_wrap > li .body {
    align-self: flex-start;
}
.flow_wrap > li .body p {
    font-size: 14px;
	line-height: 1.5;
	letter-spacing: .05em;
    font-feature-settings: "palt";
}
@media (min-width: 1200px) {
.flow_wrap {
	margin-top: 32px;
	flex-flow: row wrap;
}
.flow_wrap > li {
	align-items: center;
	flex: 0 1 calc(100% / 5 - 12.8px);
	flex-direction: column;
	padding: 16px 12px;
	margin: 0 16px 0 0;
}
.flow_wrap > li:last-of-type {
	flex: 0 1 100%;
	align-items: flex-start;
	padding-left: 32px;
}
.flow_wrap > li:last-of-type,
.flow_wrap > li:nth-last-child(2) {
	margin-right: 0;
}
.flow_wrap > li:not(:last-of-type) {
	margin-bottom: 48px;
}
.flow_wrap > li:not(:last-of-type)::before {
	top: 25%;
	right: -16px;
	bottom: auto;
	left: auto;
	width: 16px;
	height: 2px;
	background-color: #91BE32;
	transform: translateY(-50%);
}
.flow_wrap > li:not(:last-of-type)::after {
	top: 25%;
	right: -16px;
	bottom: auto;
	left: auto;
	width: 8px;
	height: 10px;
	transform: translateY(-50%);
}
.flow_wrap > li:nth-last-child(2)::before {
	top: auto;
	right: auto;
	bottom: -40px;
	left: 48%;
	width: 2px;
	height: 40px;
	transform: translate(-50%);
}
.flow_wrap > li:nth-last-child(2)::after {
	top: auto;
	right: auto;
	bottom: -50px;
	left: 48%;
	transform: translate(-50%) rotate(90deg);
}
.flow_wrap > li b {
	top: -12px;
	bottom: auto;
	left: -12px;
	height: 24px;
	width: 24px;
}
.flow_wrap > li:last-of-type::before {
	left: auto;
	right: 0;
}
}

/* bottom > flow */
.flow-contents *, .flow-contents *::before, .flow-contents *::after {
	box-sizing: border-box;
}
.flow-contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.flow-contents .title {
	position: relative;
	display: inline-block;
	padding: 0 30px;
	color: #152768;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
.flow-contents .title span {
	font-size: 16px;
}
.flow-contents .title::before,
.flow-contents .title::after {
	position: absolute;
	top: 0;
	content: "";
	width: 3px;
	height: 100%;
	background: #152768;
	border-radius: 3px;
}
.flow-contents .title::before {
	left: 0;
	transform: rotate(-25deg);
}
.flow-contents .title::after {
	right: 0;
	transform: rotate(25deg);
}
.flow-contents p {
	margin-top: 32px;
	font-size: 14px;
	line-height: 1.5;
}
@media (min-width: 1024px) {
	.flow-contents .title {
		font-size: 28px;
		letter-spacing: .05em; 
	}
	.flow-contents .title span {
		font-size: 18px;
		line-height: 1.2;
	}
	.flow-contents p {
		font-size: 16px;
	}
} 

.flow-contents .btn-area {
	margin-top: 24px;
	max-width: 100%;
}
.flow-contents .btn-area a.btn-contact {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 384px;
	max-width: 100%;
	height: 58px;
	background-color: #152768;
	border-radius: 9999px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1;
	transition: all 0.3s 0s ease;}            
.flow-contents .btn-area a.btn-contact::after {
	content: "";
	position: absolute;
	right: 24px;
	width: 10px;
	height: 10px;
	top: 45%;
	border-top-width: 2px;
	border-right-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg); }     
.flow-contents .btn-area a:hover.btn-contact {
	opacity: .7;
}
