@charset "UTF-8";

.splide__container {
	position: relative;
	box-sizing: border-box;
}

.splide__list {
	display: -ms-flexbox;
	display: flex;
	margin: 0 !important;
	padding: 0 !important;
	height: 100%;

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	margin: 0;
	pointer-events: none;

	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}

.splide__pagination li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	line-height: 1;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	position: relative;
	box-sizing: border-box;
	margin: 0;
	list-style-type: none !important;

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	margin: auto;
	width: 20px;
	height: 20px;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	-webkit-animation: splide-loading 1s linear infinite;
	animation: splide-loading 1s linear infinite;

	contain: strict;
}

.splide__sr {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	border: 0;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

@-webkit-keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	z-index: 0;
	margin: 0 !important;
	opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	z-index: 1;
	opacity: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	padding: 0;
	width: 2em;
	height: 2em;
	border: 0;
	border-radius: 50%;
	background: #ccc;
	opacity: .7;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);

	align-items: center;
	justify-content: center;
}

.splide__arrow svg {
	width: 1.2em;
	height: 1.2em;

	fill: #000;
}

.splide__arrow:hover:not(:disabled) {
	opacity: .9;
}

.splide__arrow:disabled {
	opacity: .3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 1em;
}

.splide__arrow--prev svg {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.splide__arrow--next {
	right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	position: absolute;
	right: 0;
	bottom: .5em;
	left: 0;
	z-index: 1;
	padding: 0 1em;
}

.splide__pagination__page {
	position: relative;
	display: inline-block;
	margin: 3px;
	padding: 0;
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: #ccc;
	opacity: .7;
	transition: -webkit-transform .2s linear;
	transition: transform .2s linear;
	transition: transform .2s linear,-webkit-transform .2s linear;
}

.splide__pagination__page.is-active {
	z-index: 1;
	background: #fff;
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}

.splide__pagination__page:hover {
	opacity: .9;
	cursor: pointer;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	height: 3px;
	background: #ccc;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	right: 1em;
	left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	right: auto;
	left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	top: auto;
	bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	top: 0;
	right: .5em;
	bottom: 0;
	left: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 1em 0;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
html {
	line-height: 1.15;

	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

/* Sections
   ========================================================================== */
body {
	margin: 0;
}

article, aside, footer, header, nav, section {
	display: block;
}

h1 {
	margin: .67em 0;
	font-size: 2em;
}

/* Grouping content
   ========================================================================== */
figcaption, figure, main {
	display: block;
}

figure {
	margin: 1em 40px;
}

hr {
	overflow: visible;
	box-sizing: content-box;
	height: 0;
}

pre {
	font-size: 1em;
	font-family: monospace,monospace;
}

/* Text-level semantics
   ========================================================================== */
a {
	background-color: transparent;

	-webkit-text-decoration-skip: objects;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;

	-webkit-text-decoration: underline dotted;
}

b, strong {
	font-weight: inherit;
}

b, strong {
	font-weight: bolder;
}

code, kbd, samp {
	font-size: 1em;
	font-family: monospace,monospace;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub, sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

/* Embedded content
   ========================================================================== */
audio, video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

/* Forms
   ========================================================================== */
button, input, optgroup, select, textarea {
	margin: 0;
	font-size: 100%;
	font-family: sans-serif;
	line-height: 1.15;
}

button, input {
	overflow: visible;
}

button, select {
	text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: .35em .75em .625em;
}

legend {
	display: table;
	box-sizing: border-box;
	padding: 0;
	max-width: 100%;
	color: inherit;
	/* 3 */
	white-space: normal;
}

progress {
	display: inline-block;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"], [type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;

	-webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;

	-webkit-appearance: button;
}

/* Interactive
   ========================================================================== */
details, menu {
	display: block;
}

summary {
	display: list-item;
}

/* Scripting
   ========================================================================== */
canvas {
	display: inline-block;
}

template {
	display: none;
}

/* Hidden
   ========================================================================== */
[hidden] {
	display: none;
}

ul.lst-nml, .lst-body, .lst-ast, .lst-kakko, .lst-lnk, .lst-cle, .lst-file {
	margin: 0;
	padding: 0 0 0 1.5em;
	list-style-type: none;
	font-size: .875rem;
	line-height: 1.5714;
}

ul.lst-nml > li, .lst-body > li, .lst-ast > li, .lst-kakko > li, .lst-lnk > li, .lst-cle > li, .lst-file > li {
	padding: 4px 0;
}

ul.lst-nml > li > ul, .lst-body > li > ul, .lst-ast > li > ul, .lst-kakko > li > ul, .lst-lnk > li > ul, .lst-cle > li > ul, .lst-file > li > ul, ul.lst-nml > li > ol, .lst-body > li > ol, .lst-ast > li > ol, .lst-kakko > li > ol, .lst-lnk > li > ol, .lst-cle > li > ol, .lst-file > li > ol {
	margin-top: 0;
	margin-bottom: 0;
}

ol.lst-nml {
	margin: 0;
	padding: 0 0 0 1.5em;
	font-size: .875rem;
	line-height: 1.5714;
}

ol.lst-nml > li {
	padding: 4px 0;
}

ol.lst-nml > li > ul, ol.lst-nml > li > ol {
	margin-top: 0;
	margin-bottom: 0;
}

.dlst-flex, .dlst-nml, .dlst-count, .dlst-count-dt, .dlst-lst, .dlst-lst-dt, .dlst-ast, .dlst-cle, .dlst-cle-dt {
	margin: 0;
	font-size: .875rem;
	line-height: 1.5714;
}

.dlst-flex > dt, .dlst-nml > dt, .dlst-count > dt, .dlst-count-dt > dt, .dlst-lst > dt, .dlst-lst-dt > dt, .dlst-ast > dt, .dlst-cle > dt, .dlst-cle-dt > dt {
	margin-top: 1rem;
	padding: 4px 0;
	font-weight: bold;
}

.dlst-flex > dd, .dlst-nml > dd, .dlst-count > dd, .dlst-count-dt > dd, .dlst-lst > dd, .dlst-lst-dt > dd, .dlst-ast > dd, .dlst-cle > dd, .dlst-cle-dt > dd {
	margin-left: 0;
	padding: 4px 0;
}

.tbl-nml, .tbl-lg, .tbl-reflow, .tbl-profile {
	padding: 7px 0;
	max-width: 100%;
	width: 100%;
	border-collapse: collapse;
	border-top: solid 2px #d7d7d7;
	border-bottom: solid 2px #d7d7d7;
	text-align: center;
	font-size: .75rem;
	line-height: 1.6667;
}

.tbl-nml > caption, .tbl-lg > caption, .tbl-reflow > caption, .tbl-profile > caption {
	margin-bottom: .5rem;
	font-weight: bold;
}

.tbl-nml > tbody > tr > *:first-child, .tbl-lg > tbody > tr > *:first-child, .tbl-reflow > tbody > tr > *:first-child, .tbl-profile > tbody > tr > *:first-child, .tbl-nml > thead > tr > *:first-child, .tbl-lg > thead > tr > *:first-child, .tbl-reflow > thead > tr > *:first-child, .tbl-profile > thead > tr > *:first-child {
	border-left: none;
}

.tbl-nml > tbody > tr > *:last-child, .tbl-lg > tbody > tr > *:last-child, .tbl-reflow > tbody > tr > *:last-child, .tbl-profile > tbody > tr > *:last-child, .tbl-nml > thead > tr > *:last-child, .tbl-lg > thead > tr > *:last-child, .tbl-reflow > thead > tr > *:last-child, .tbl-profile > thead > tr > *:last-child {
	border-right: none;
}

.tbl-nml > tbody > tr > th, .tbl-lg > tbody > tr > th, .tbl-reflow > tbody > tr > th, .tbl-profile > tbody > tr > th, .tbl-nml > tbody > tr > td, .tbl-lg > tbody > tr > td, .tbl-reflow > tbody > tr > td, .tbl-profile > tbody > tr > td, .tbl-nml > thead > tr > th, .tbl-lg > thead > tr > th, .tbl-reflow > thead > tr > th, .tbl-profile > thead > tr > th, .tbl-nml > thead > tr > td, .tbl-lg > thead > tr > td, .tbl-reflow > thead > tr > td, .tbl-profile > thead > tr > td {
	padding: 8px;
}

.tbl-nml > tbody > tr > th, .tbl-lg > tbody > tr > th, .tbl-reflow > tbody > tr > th, .tbl-profile > tbody > tr > th, .tbl-nml > thead > tr > th, .tbl-lg > thead > tr > th, .tbl-reflow > thead > tr > th, .tbl-profile > thead > tr > th {
	border: solid 2px #d7d7d7;
	font-weight: normal;
}

.tbl-nml > tbody > tr > td, .tbl-lg > tbody > tr > td, .tbl-reflow > tbody > tr > td, .tbl-profile > tbody > tr > td, .tbl-nml > thead > tr > td, .tbl-lg > thead > tr > td, .tbl-reflow > thead > tr > td, .tbl-profile > thead > tr > td {
	border: solid 2px #d7d7d7;
}

.box-bd, .box-fill {
	margin: 2rem 0;
	padding: 2rem;
}

.btn-prm, .btn-return {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	margin: 7px 0;
	padding: 1rem 3.5rem;
	width: auto;
	border: solid 2px transparent;
	border-radius: 60px;
	color: #0f0f0f;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.5;
	cursor: pointer;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: background;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.btn-prm:lang(en), .btn-return:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.-sml.btn-prm, .-sml.btn-return {
	padding: 10px 0;
}

.-block.btn-prm, .-block.btn-return {
	display: block;
}

.btn-prm[disabled], .btn-return[disabled] {
	color: #f0f1f3;
	cursor: default;
}

.btn-prm[disabled] .ico-pwr.-sml, .btn-return[disabled] .ico-pwr.-sml {
	display: none;
}

.btn-prm .ico-pwr.-sml, .btn-return .ico-pwr.-sml {
	position: relative;
	position: absolute;
	top: calc(50% - 8px);
	right: 20px;
	display: block;
	width: 16px;
	height: 16px;
}

.btn-prm .ico-pwr.-sml:after, .btn-return .ico-pwr.-sml:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 50%;
	display: block;
	height: 2px;
	content: "";
}

.btn-prm .ico-pwr.-sml:after, .btn-return .ico-pwr.-sml:after {
	background-color: #fff;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.btn-prm .ico-pwr.-sml svg, .btn-return .ico-pwr.-sml svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.btn-prm .ico-pwr.-sml .anm circle, .btn-return .ico-pwr.-sml .anm circle {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;

	stroke: #fff;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.btn-prm .ico-pwr.-sml circle, .btn-return .ico-pwr.-sml circle {
	fill: transparent;
}

.btn-prm .ico-pwr.-sml:after, .btn-return .ico-pwr.-sml:after {
	width: 22px;
}

.btn-prm .ico-pwr.-sml circle, .btn-return .ico-pwr.-sml circle {
	stroke-width: 3;
}

.btn-prm .ico-pwr.-sml .anm circle, .btn-return .ico-pwr.-sml .anm circle {
	stroke-dasharray: 51 51;
}

.btn-prm input[type="submit"], .btn-return input[type="submit"] {
	border: none;
	background: transparent;
	color: #0f0f0f;
	font-weight: bold;
	cursor: pointer;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.no-touchdevice:not(.is-ie) .btn-prm:not([disabled]):hover .ico-pwr.-sml .anm circle, .no-touchdevice:not(.is-ie) .btn-return:not([disabled]):hover .ico-pwr.-sml .anm circle {
	-webkit-animation-name: ccl-sml;
	animation-name: ccl-sml;
}

.no-touchdevice:not(.is-ie) .btn-prm:not([disabled]):hover .ico-pwr.-sml:after, .no-touchdevice:not(.is-ie) .btn-return:not([disabled]):hover .ico-pwr.-sml:after {
	transition: none;
	-webkit-animation-name: lne;
	animation-name: lne;
}

.lnk-prm {
	position: relative;
	display: block;
	box-sizing: border-box;
	margin: 7px 0;
	padding: 1rem 0;
	max-width: 270px;
	width: 100%;
	border: solid 2px transparent;
	border-radius: 30px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: .875rem;
	line-height: 1.5714;
	cursor: pointer;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: background,color;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.lnk-prm:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.lnk-prm[disabled] {
	background-color: #d7d7d7;
	color: #f0f1f3;
	cursor: default;
}

.lnk-prm[disabled] .ico-pwr.-sml {
	display: none;
}

.lnk-prm .ico-pwr.-sml {
	position: relative;
	position: absolute;
	top: calc(50% - 8px);
	right: 27px;
	display: block;
	width: 16px;
	height: 16px;
}

.lnk-prm .ico-pwr.-sml:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 50%;
	display: block;
	height: 2px;
	content: "";
}

.lnk-prm .ico-pwr.-sml:after {
	background-color: #fff;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-prm .ico-pwr.-sml svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.lnk-prm .ico-pwr.-sml .anm circle {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;

	stroke: #fff;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-prm .ico-pwr.-sml circle {
	fill: transparent;
}

.lnk-prm .ico-pwr.-sml:after {
	width: 22px;
}

.lnk-prm .ico-pwr.-sml circle {
	stroke-width: 3;
}

.lnk-prm .ico-pwr.-sml .anm circle {
	stroke-dasharray: 51 51;
}

.no-touchdevice:not(.is-ie) .lnk-prm:hover .ico-pwr.-sml .anm circle {
	-webkit-animation-name: ccl-sml;
	animation-name: ccl-sml;
}

.no-touchdevice:not(.is-ie) .lnk-prm:hover .ico-pwr.-sml:after {
	transition: none;
	-webkit-animation-name: lne;
	animation-name: lne;
}

*, ::before, ::after {
	box-sizing: border-box;
	background-repeat: no-repeat;
}

::before, ::after {
	vertical-align: inherit;
	text-decoration: inherit;
}

@-webkit-keyframes lne {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@keyframes lne {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@-webkit-keyframes ccl-sml {
	0% {
		stroke-dasharray: 51 51;
	}
	100% {
		stroke-dasharray: 0 51;
	}
}

@keyframes ccl-sml {
	0% {
		stroke-dasharray: 51 51;
	}
	100% {
		stroke-dasharray: 0 51;
	}
}

@-webkit-keyframes ccl-lrg {
	0% {
		stroke-dasharray: 88 88;
	}
	100% {
		stroke-dasharray: 0 88;
	}
}

@keyframes ccl-lrg {
	0% {
		stroke-dasharray: 88 88;
	}
	100% {
		stroke-dasharray: 0 88;
	}
}

@-webkit-keyframes word {
	0% {
		left: 0;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
	50% {
		left: 0;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		left: 100%;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes word {
	0% {
		left: 0;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
	50% {
		left: 0;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		left: 100%;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@font-face {
	font-weight: normal;
	font-family: "MyYuGothicM";
	src: local("YuGothic-Medium");
	/* Postscript name */
}

@font-face {
	font-weight: bold;
	font-family: "MyYuGothicM";
	src: local("YuGothic-Bold");
	/* Postscript name */
}

body {
	min-width: 320px;
	width: 100%;
	color: #0f0f0f;
	font-size: 1rem;
	font-family: MyYuGothicM,YuGothic,-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
	line-height: 1.5;

	-webkit-font-variant-ligatures: no-common-ligatures;
	font-variant-ligatures: no-common-ligatures;
	-webkit-font-feature-settings: "liga" 0,"clig" 0;
	font-feature-settings: "liga" 0,"clig" 0;
}

body:lang(en) {
	font-family: "Open Sans",-apple-system,BlinkMacSystemFont,sans-serif;
}

body.is-ie {
	font-family: Meiryo,sans-serif;
}

body > iframe, body > img, body > div:not([class]) > iframe, body > div:not([class]) > img {
	display: none;
}

img {
	width: 100%;
	height: auto;
}

a:link, a:visited {
	color: #0f0f0f;
	text-decoration: underline;
}

a:focus, a:active {
	color: #0f0f0f;
	text-decoration: underline;
}

p {
	margin: 0;
	font-size: .875rem;
	line-height: 2;
}

p, li, dt, dd, th, td {
	word-wrap: break-word;

	overflow-wrap: break-word;
	line-break: strict;
}

pre {
	margin: 0;
}

.box-slideshow {
	position: relative;
	margin: 7px auto;
	max-width: 400px;
}

.box-slideshow:before {
	position: relative;
	display: block;
	padding-top: 81.5126%;
	width: 100%;
	content: "";
}

.box-slideshow iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.box-youtube {
	position: relative;
	margin: 7px auto;
	max-width: 400px;
}

.box-youtube:before {
	position: relative;
	display: block;
	padding-top: 56.25%;
	width: 100%;
	content: "";
}

.box-youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.box-youtube .cover {
	position: absolute;
	top: 0;
	left: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	width: 100%;
	height: 100%;
	background-color: #000;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	cursor: pointer;

	justify-content: center;
	align-items: center;
}

.box-youtube .cover:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
	content: "";
	opacity: .2;
	opacity: .1;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: opacity;
}

.box-youtube .cover .play {
	position: relative;
	width: 76px;
	height: 76px;
	background: url(../img/ico/play-white.svg) no-repeat center;
	background-size: contain;
}

.no-touchdevice .cover:hover:before {
	opacity: 0;
}

.box-youtube + .caption {
	margin: 0;
	text-align: center;
}

.box-map {
	padding-bottom: 75%;
}

.chapter-blk .box-map a:not([class])[target="_blank"]:after {
	display: none;
}

.box-rss {
	text-align: right;
}

.box-rss a {
	color: #0f0f0f;
	font-weight: 600;
	font-size: .75rem !important;
	font-family: "Open Sans",sans-serif;
	line-height: 2.1667 !important;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.box-rss a:link, .box-rss a:visited, .box-rss a:focus, .box-rss a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .box-rss a:hover {
	color: #5bb431;
}

.chapter-blk .box-rss a:not([class])[target="_blank"]:after {
	display: none;
}

.box-rss .ico-rss {
	margin-left: .5em;
	font-size: 10px;
}

.box-privacy {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;

	justify-content: space-between;
}

.box-privacy figure {
	width: 71px;
}

.box-privacy p {
	width: calc(((790 / 820) * 100%) - 71px);
}

.box-bd {
	border: solid 2px #000;
}

.box-fill {
	background-color: #f0f1f3;
}

.blk-nml {
	margin: 2rem 0;
}

.box-lbl {
	border: solid 2px #d7d7d7;
}

.box-lbl > .hdl {
	margin: 0;
	padding: 1rem .5rem;
	background-color: #f0f1f3;
	color: #0f0f0f;
	text-align: center;
	font-weight: normal;
	font-size: 1.25rem;
	line-height: 1.6;
}

.box-lbl > .blk {
	padding: 1rem;
}

.blk-sml {
	position: relative;
	margin: 7px auto;
	max-width: 400px;
}

.box-meta {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;

	justify-content: space-between;
}

.box-meta time {
	color: #7f7f7f;
	font-size: .75rem;
	line-height: 1.6667;
}

.blk-tool {
	z-index: 2;
}

.blk-tool.-v {
	display: block;
}

.blk-tool.-v .nav-fz {
	margin-top: 12px;
	margin-left: 0;
}

.blk-tool.-h {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;

	align-items: center;
}

.blk-tool.-h .nav-fz {
	margin-top: 0;
	margin-left: 12px;
}

.tool-fixednav .blk-tool {
	display: block;
	padding: 1rem 15px;
	width: 120px;
	background-color: #fff;
}

.tool-fixednav .blk-tool .nav-print {
	width: 90px;
	height: 20px;
}

.tool-fixednav .blk-tool .nav-print a {
	padding: 0;
}

.tool-fixednav .blk-tool .nav-print .i {
	right: auto;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.tool-fixednav .blk-tool .nav-fz {
	margin-top: 8px;
	margin-left: 0;
}

.tool-fixednav .blk-tool .nav-fz dt {
	display: none;
}

.top-header .tool-fixednav, .top-sheader .tool-fixednav, .lower-header .tool-fixednav {
	position: fixed;
	top: auto;
	right: 0;
	bottom: 386px;
	z-index: 2;
	margin-right: -120px;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
}

.top-header .tool-fixednav.is-open, .top-sheader .tool-fixednav.is-open, .lower-header .tool-fixednav.is-open {
	-webkit-transform: translateX(-120px);
	transform: translateX(-120px);
}

.top-header .tool-fixednav .blk-tool, .top-sheader .tool-fixednav .blk-tool, .lower-header .tool-fixednav .blk-tool {
	position: relative;
	top: auto;
	right: auto;
	width: 120px;
}

.btn-wrap {
	text-align: center;
}

ul.btn-wrap {
	margin: 0;
	padding: 0;
	list-style: none;
}

a.btn-prm:link, a.btn-return:link, a.btn-prm:visited, a.btn-return:visited, a.btn-prm:focus, a.btn-return:focus, a.btn-prm:active, a.btn-return:active {
	color: #fff;
	text-decoration: none;
}

.btn-prm {
	border-color: #5bb431;
	background-color: #5bb431;
	color: #fff;
}

.btn-prm circle {
	stroke: #5bb431;
}

.btn-prm input[type="submit"] {
	color: #fff;
}

.no-touchdevice .btn-prm:not([disabled]):hover {
	background-color: #fff;
	color: #5bb431;
}

.no-touchdevice .btn-prm:not([disabled]):hover .ico-pwr.-sml .anm circle {
	stroke: #5bb431;
}

.no-touchdevice .btn-prm:not([disabled]):hover .ico-pwr.-sml:after {
	background-color: #5bb431;
}

.no-touchdevice .btn-prm:not([disabled]):hover input[type="submit"] {
	color: #5bb431;
}

.btn-return {
	border-color: #716658;
	background-color: #716658;
	color: #fff;
}

.btn-return circle {
	stroke: #716658;
}

.btn-return input[type="submit"] {
	color: #fff;
}

.no-touchdevice .btn-return:not([disabled]):hover {
	background-color: #fff;
	color: #716658;
}

.no-touchdevice .btn-return:not([disabled]):hover .ico-pwr.-sml .anm circle {
	stroke: #716658;
}

.no-touchdevice .btn-return:not([disabled]):hover .ico-pwr.-sml:after {
	background-color: #716658;
}

.no-touchdevice .btn-return:not([disabled]):hover input[type="submit"] {
	color: #716658;
}

a.btn-prm[target="_blank"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-image: url(../img/ico/blank-white.svg);
	background-size: contain;
	content: "";
	text-decoration: none;
}

.no-touchdevice a.btn-prm[target="_blank"]:hover span:not(.ico-pwr):after {
	background-image: url(../img/ico/blank-primary.svg);
}

a.btn-prm[href$=".pdf"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".pdf"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-pdf:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".xls"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".xls"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-xls:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".xlsx"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".xlsx"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-xlsx:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".doc"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".doc"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-doc:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".docx"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".docx"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-docx:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".ppt"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".ppt"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-ppt:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".pptx"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".pptx"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-pptx:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm[href$=".zip"] span:not(.ico-pwr):after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm[href$=".zip"]:hover span:not(.ico-pwr):after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

a.btn-prm span:not(.ico-pwr).ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #fff;
	background-image: none;
	color: #fff;
	color: #5bb431;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice a.btn-prm:hover span:not(.ico-pwr).ico-zip:after {
	background-color: #5bb431;
	background-image: none;
	color: #fff;
}

.lnk-prm {
	border-color: #5bb431;
	background-color: #5bb431;
}

.lnk-prm .ico-pwr.-sml .anm circle {
	stroke: #fff;
}

.lnk-prm .ico-pwr.-sml:after {
	background-color: #fff;
}

.lnk-prm circle {
	stroke: #fff;
}

.no-touchdevice .lnk-prm:hover {
	background-color: #fff;
	color: #5bb431;
}

.no-touchdevice .lnk-prm:hover .ico-pwr.-sml .anm circle {
	stroke: #5bb431;
}

.no-touchdevice .lnk-prm:hover .ico-pwr.-sml:after {
	background-color: #5bb431;
}

a.lnk-prm {
	color: #fff;
	text-decoration: none;
}

.btn-gmap {
	position: relative;
	display: inline-block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	box-sizing: border-box;
	margin: 0;
	width: 160px;
	border: none;
	border: solid 2px #5bb431;
	border-radius: 30px;
	background-color: #5bb431;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: .875rem;
	line-height: 1.7143;
	cursor: pointer;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: background-color,color;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	justify-content: center;
	align-items: center;
}

.btn-gmap:link, .btn-gmap:visited, .btn-gmap:focus, .btn-gmap:active {
	color: #fff;
	text-decoration: none;
}

.btn-gmap span {
	display: block;
	vertical-align: middle;
}

.btn-gmap .pin {
	margin-right: 4px;
	width: 1rem;
	height: 1rem;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: fill;

	fill: #fff;
}

.no-touchdevice .btn-gmap:hover {
	background-color: #fff;
	color: #5bb431;
}

.no-touchdevice .btn-gmap:hover .pin {
	fill: #5bb431;
}

.btn-business {
	position: relative;
	width: 100%;
	height: 85px;
	text-align: center;
}

.btn-business > a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	width: 100%;
	height: 100%;
	border: 6px solid #f0f1f3;
	border-radius: 6px;
	text-decoration: none;
	transition-timing-function: ease;
	transition-duration: .3s;

	align-items: center;
	justify-content: center;
}

.btn-business > a:after {
	display: inline-block;
	margin-left: 10px;
	width: 20px;
	height: 16px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.btn-business > a .logo {
	width: 178px;
}

.btn-business > a .logo img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.no-touchdevice .btn-business > a:hover {
	border: 6px solid #5bb431;
}

.section-group.-lrg {
	margin: 2.5rem auto;
}

.section-group.-mdl {
	margin: 2rem auto;
}

.section-group.-sml {
	margin: 1rem auto;
}

.section-group.-contents {
	width: 91.6667%;
}

.section-group.-contents > .section {
	padding: 2rem 7.5758%;
}

.section-group.-cards {
	width: 91.6667%;
}

.section-group.-cards > .section {
	padding: 2rem 7.5758%;
}

.section-group.-full {
	width: 100%;
}

.section-group.-full > .section {
	padding: 2.5rem 5.5556%;
}

.section-group > .section {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	background-color: #fff;
}

.cards-blk > div, .cards-blk section {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.cards-blk > .lnk-card:first-child {
	margin-top: 0;
}

.lnk-card {
	margin-right: auto;
	margin-left: auto;
	max-width: 400px;
}

.lnk-card > a {
	position: relative;
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	overflow: hidden;
	padding: 1.5rem;
	min-height: 12rem;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-color: #fff;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	justify-content: center;
	align-items: center;
}

.lnk-card > a[target="_blank"] .main-head .hdl:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.lnk-card > a[href$=".pdf"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".xls"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".xlsx"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".doc"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".docx"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".ppt"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".pptx"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a[href$=".zip"] .main-head .hdl:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a .main-head .hdl.ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lnk-card > a.-bgc-white {
	background-color: #fff;
}

.lnk-card > a.-bgc-black {
	background-color: #000;
}

.lnk-card > a.-bgc-text {
	background-color: #0f0f0f;
}

.lnk-card > a.-bgc-istyle {
	background-color: #5bb431;
}

.lnk-card > a.-bgc-primary {
	background-color: #5bb431;
}

.lnk-card > a.-bgc-cosmestore {
	background-color: #4eb691;
}

.lnk-card > a.-bgc-secondary {
	background-color: #716658;
}

.lnk-card > a.-bgc-gray {
	background-color: #d7d7d7;
}

.lnk-card > a.-bgc-text-gray {
	background-color: #acacb2;
}

.lnk-card > a.-bgc-light-gray {
	background-color: #f0f1f3;
}

.lnk-card > a.-bgc-dark-gray {
	background-color: #7f7f7f;
}

.lnk-card > a.-bgc-black-gray {
	background-color: #303030;
}

.lnk-card > a.-bgc-red {
	background-color: #db2a50;
}

.lnk-card > a.-bgc-blue {
	background-color: #7abfde;
}

.lnk-card > a.-bgc-brown {
	background-color: #4f3009;
}

.lnk-card > a.-bgc-facebook {
	background-color: #305097;
}

.lnk-card > a.-bgc-twitter {
	background-color: #00aced;
}

.lnk-card > a.-bgc-instagram {
	background-color: #d93175;
}

.lnk-card > a.-bgc-googleplus {
	background-color: #dc4e41;
}

.lnk-card > a.-bgc-pintarest {
	background-color: #bd081c;
}

.lnk-card > a.-bgc-line {
	background-color: #00b900;
}

.lnk-card > a:link, .lnk-card > a:visited, .lnk-card > a:focus, .lnk-card > a:active {
	text-decoration: none;
}

.lnk-card > a:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: solid 4px transparent;
	border-radius: 4px;
	content: "";
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: border-color;
}

.lnk-card > a .main-head {
	position: relative;
}

.lnk-card > a .ico-pwr {
	position: relative;
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	display: block;
	width: 28px;
	height: 28px;
}

.lnk-card > a .ico-pwr:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 50%;
	display: block;
	height: 2px;
	content: "";
}

.lnk-card > a .ico-pwr:after {
	background-color: #5bb431;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-card > a .ico-pwr svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.lnk-card > a .ico-pwr .anm circle {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;

	stroke: #5bb431;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-card > a .ico-pwr circle {
	fill: transparent;
}

.lnk-card > a .ico-pwr:after {
	width: 40px;
}

.lnk-card > a .ico-pwr circle {
	stroke-width: 4;
}

.lnk-card > a .ico-pwr .anm circle {
	stroke-dasharray: 88 88;
}

.lnk-card > a .ico-pwr.-bk {
	position: relative;
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	display: block;
	width: 28px;
	height: 28px;
}

.lnk-card > a .ico-pwr.-bk:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 50%;
	display: block;
	height: 2px;
	content: "";
}

.lnk-card > a .ico-pwr.-bk:after {
	background-color: #000;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-card > a .ico-pwr.-bk svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.lnk-card > a .ico-pwr.-bk .anm circle {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;

	stroke: #000;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-card > a .ico-pwr.-bk circle {
	fill: transparent;
}

.lnk-card > a .ico-pwr.-bk:after {
	width: 40px;
}

.lnk-card > a .ico-pwr.-bk circle {
	stroke-width: 4;
}

.lnk-card > a .ico-pwr.-bk .anm circle {
	stroke-dasharray: 88 88;
}

.lnk-card > a .ico-pwr.-wh {
	position: relative;
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	display: block;
	width: 28px;
	height: 28px;
}

.lnk-card > a .ico-pwr.-wh:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 50%;
	display: block;
	height: 2px;
	content: "";
}

.lnk-card > a .ico-pwr.-wh:after {
	background-color: #fff;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-card > a .ico-pwr.-wh svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.lnk-card > a .ico-pwr.-wh .anm circle {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;

	stroke: #fff;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.lnk-card > a .ico-pwr.-wh circle {
	fill: transparent;
}

.lnk-card > a .ico-pwr.-wh:after {
	width: 40px;
}

.lnk-card > a .ico-pwr.-wh circle {
	stroke-width: 4;
}

.lnk-card > a .ico-pwr.-wh .anm circle {
	stroke-dasharray: 88 88;
}

.no-touchdevice .lnk-card > a:hover:after {
	border-color: #5bb431;
}

.no-touchdevice:not(.is-ie) .lnk-card > a:hover .ico-pwr .anm circle {
	-webkit-animation-name: ccl-lrg;
	animation-name: ccl-lrg;
}

.no-touchdevice:not(.is-ie) .lnk-card > a:hover .ico-pwr:after {
	-webkit-animation-name: lne;
	animation-name: lne;
}

.lnk-card.-thumb > a {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: start;
	-ms-flex-align: center;

	justify-content: flex-start;
	-ms-flex-line-pack: center;
	align-content: center;
	align-items: center;
}

.lnk-card.-thumb > a .main-thumb {
	margin-right: 16px;
	max-width: 96px;
	width: auto;

	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.lnk-card.-thumb > a .main-thumb img {
	width: 100%;
	height: auto;
	border: 2px solid #f0f1f3;
	border-radius: 50%;
}

.lnk-card.-thumb > a .main-thumb + .main-head {
	margin-bottom: 0;
	text-align: left;
}

.lnk-card.-thumb > a .main-thumb + .main-head .hdl.-lv2 {
	font-size: 1.125rem;
	line-height: 1.5;
}

.lnk-card.-cend a {
	-ms-flex-pack: end;
	-ms-flex-align: start;

	justify-content: flex-end;
	align-items: flex-start;
}

.lnk-card.-cend a .main-head {
	padding-right: 64px;
}

.lnk-card.-cend a .hdl.-lv2 {
	margin-bottom: 1.5rem;
}

.visual-card {
	margin: 0 auto;
	max-width: 400px;
}

.visual-card > a {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-color: #fff;
}

.visual-card > a:link, .visual-card > a:visited, .visual-card > a:focus, .visual-card > a:active {
	text-decoration: none;
}

.visual-card > a[href] .hdl {
	padding-right: 1.5rem;
}

.visual-card > a[href] .hdl:after {
	position: absolute;
	top: 50%;
	right: 3px;
	display: block;
	width: 10px;
	height: 10px;
	background-image: url(../img/ico/arw-primary.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.visual-card > a[target="_blank"] .hdl:after {
	width: 1rem;
	height: 1rem;
	background-image: url(../img/ico/blank-primary.svg);
}

.no-touchdevice .visual-card > a:hover .hdl {
	color: #5bb431;
}

.visual-card figure {
	margin: 0;
}

.visual-card figure img {
	display: block;
}

.visual-card .contents {
	padding: 1rem 7.5758% 2rem;
}

.visual-card .hdl {
	position: relative;
	margin: 0;
	padding: 4px 0;
	font-size: 1rem;
	line-height: 1.5;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.visual-card .dsc {
	margin: .5rem 0 0;
	font-size: .875rem;
	line-height: 1.5714;
}

.chapter-blk {
	position: relative;
	overflow: hidden;
	margin: 0 auto 2.5rem;
	padding: 1rem 6.9444%;
	width: 91.6667%;
	border-radius: 5px;
	background-color: #fff;
}

.chapter-blk.-noitems {
	min-height: 500px;
}

.chapter-blk.-business .pagelnk-nav.-store li {
	margin-top: 0;
	margin-bottom: 1rem;
}

.chapter-blk.-full {
	overflow: hidden;
	width: 100%;
	border-radius: 0;
}

.chapter-blk > .contents {
	margin: 2rem 0;
}

.chapter-blk figure {
	margin: 0;
	padding: .5rem 0;
}

.chapter-blk figure img {
	display: block;
}

.chapter-blk figure figcaption {
	margin-top: 1rem;
	text-align: center;
	font-size: .75rem;
	line-height: 1.5;
}

.chapter-blk p {
	font-size: .875rem;
	line-height: 2;
}

.chapter-blk p:lang(en) {
	line-height: 1.8;
}

.chapter-blk p, .chapter-blk ul, .chapter-blk ol, .chapter-blk dl, .chapter-blk table {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.chapter-blk em {
	text-decoration: underline;
	font-weight: bold;
	font-style: normal;
}

.chapter-blk strong:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.chapter-blk .tbl-responsive {
	margin: 1rem 0;
}

.chapter-blk a:not([class]) {
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.chapter-blk a:not([class])[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.chapter-blk a:not([class])[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class])[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.chapter-blk a:not([class]).ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice .chapter-blk a:not([class]):hover {
	color: #5bb431;
}

.chapter-blk > *:first-child {
	margin-top: 2rem;
}

.chapter-blk > *:last-child {
	margin-bottom: 2rem;
}

.chapter-blk .section {
	margin: 2rem 0;
}

.chapter-blk .section.-graph {
	position: relative;
	overflow: visible;
	margin-top: 3.5rem;
	padding-bottom: 4.4643%;
}

.chapter-blk .section.-graph:before {
	position: absolute;
	top: -1.5rem;
	left: 11.6071%;
	z-index: 1;
	display: block;
	padding-bottom: 50.1786%;
	width: 24.4643%;
	height: 0;
	background: url(../business/ec/img/business_device.png) no-repeat center top;
	background-size: contain;
	content: "";
}

.chapter-blk .section.-graph:after {
	position: absolute;
	bottom: 0;
	left: calc(15 / 590 * -100%);
	z-index: 0;
	padding-bottom: 71.4286%;
	width: calc((100% - (30 / 590 * 100%)) + (60 / 590 * 100%));
	background: #f0f1f3;
	content: "";
}

.chapter-blk .section.-graph .graph {
	position: relative;
	z-index: 1;
	width: 100%;
	font-size: 0;
}

.chapter-blk .subsection {
	margin: 2rem 0;
}

.chapter-blk .division {
	margin: 1.5rem 0;
}

.chapter-blk .element {
	margin: 1rem 0;
}

.c-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}

.c-col {
	margin: .5rem 0;
	width: 100%;
}

.c-col-s {
	margin: .5rem 0;
	width: 100%;
}

.c-col-fit {
	margin: .5rem 0;
	width: 100%;
}

.cmn-breadcrumb {
	position: relative;
	background-color: #d7d7d7;
}

.cmn-breadcrumb.-index {
	background-color: transparent;
}

.cmn-breadcrumb > ul {
	margin: 0 auto;
	padding: .75rem 5.5556%;
	font-size: 0;
}

.cmn-breadcrumb > ul li {
	display: inline-block;
	padding: 0;
	font-size: 0;
	line-height: 1;
}

.cmn-breadcrumb > ul li:not(:last-child):after {
	display: inline-block;
	margin: 0 8px;
	width: 10px;
	height: 10px;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
}

.cmn-breadcrumb > ul a {
	color: #777;
	font-weight: bold;
	font-size: .875rem;
	line-height: 1.7143;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.cmn-breadcrumb > ul a[href] {
	color: #0f0f0f;
}

.cmn-breadcrumb > ul a[href]:link, .cmn-breadcrumb > ul a[href]:visited, .cmn-breadcrumb > ul a[href]:focus, .cmn-breadcrumb > ul a[href]:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .cmn-breadcrumb > ul a:hover {
	text-decoration: none;
}

.no-touchdevice .cmn-breadcrumb > ul a:hover[href] {
	color: #5bb431;
}

.cmn-links {
	background-color: #303030;
}

.cmn-links .inner {
	margin: 0 auto;
	padding: 3rem 0 2.5rem;
	max-width: 400px;
	width: 76.5625%;
}

.cmn-links .item {
	position: relative;
	text-align: center;
}

.cmn-links .item + .item {
	margin-top: 1.5rem;
}

.cmn-links .item > a {
	display: block;
	text-decoration: none;
}

.cmn-links .item > a[target="_blank"] .hdl::before {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-block;
	width: 20px;
	height: 16px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.cmn-links .hdl {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	height: 75px;
	border-radius: 4px;
	background-color: #fff;
	color: #5bb431;
	font-weight: 600;
	font-weight: 700;
	font-size: 1.125rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.5556;

	justify-content: center;
	align-items: center;
}

.cmn-links .hdl:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: solid transparent 4px;
	border-radius: 4px;
	content: "";
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: border !important;
}

.cmn-links .item > a:hover .hdl:after {
	border-color: #5bb431;
}

.cmn-links .hdl.-store img {
	width: 137px;
}

.cmn-links .hdl.-shopping img {
	width: 170px;
}

.cmn-links .hdl.-tokyo img {
	width: 146px;
}

.cmn-links .hdl.-osaka img {
	width: 147px;
}

.cmn-links .hdl.-atcosme img {
	width: 88px;
}

.cmn-links .hdl img, .cmn-links .hdl span {
	position: relative;
	z-index: 1;
}

.cmn-links .hdl img {
	width: 145px;
}

.cmn-links .desc {
	padding: .5rem 0;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: .75rem;
	line-height: 1.8333;
}

.cmn-footer > .blk {
	margin: 0 auto;
	max-width: 1280;
	width: 76.5625%;
}

.cmn-footer > .blk.-upper {
	padding: 3rem 0 1rem;
}

.cmn-footer > .blk.-upper .logo {
	margin: 0 auto 2.5rem;
	width: 148px;
}

.cmn-footer > .blk.-upper .link {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	margin: 0 -1rem 0 0;
	padding: 0;
	list-style: none;
	text-align: center;

	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.cmn-footer > .blk.-upper .link > li {
	position: relative;
	margin-top: .5rem;
}

.cmn-footer > .blk.-upper .link > li:not(:first-child):before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: none;
	margin: auto;
	width: 2px;
	height: 12px;
	background-color: #000;
	content: "";
}

.cmn-footer > .blk.-upper .link a {
	padding: 1rem;
	text-decoration: none;
	font-weight: 700;
	font-size: .875rem;
	line-height: 1.5;
	transition-timing-function: ease;
	transition-duration: .3s;
}

.no-touchdevice .cmn-footer .-upper .link a:hover {
	color: #5bb431;
}

.cmn-footer > .blk.-upper .cpy {
	margin-top: 1rem;
	text-align: center;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.cmn-footer > .blk.-upper .cpy small {
	display: inline-block;
	white-space: nowrap;
	font-size: .6875rem;
	line-height: 1;
}

.cmn-footerbar {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	padding: 2rem 4.1667% 1rem;
	background-color: #303030;

	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.cmn-footerbar a {
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color !important;
}

.cmn-footerbar span {
	vertical-align: 6px;
	font-size: .6875rem;
	line-height: 1;
}

.cmn-footerbar .group {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color !important;

	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.cmn-footerbar .group .logo {
	margin-right: .75rem;
	width: 60px;
	height: auto;
	transition-property: fill !important;

	fill: #fff;
}

.cmn-footerbar .group .logo25 {
	margin-right: .75rem;
	width: auto;
	height: 30px;
}

.cmn-footerbar .link {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	-ms-flex-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;

	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
}

.cmn-footerbar .link > li {
	position: relative;
}

.cmn-footerbar .link > li + li {
	margin-left: 1rem;
}

.cmn-footerbar .link > li:not(:first-child):before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: none;
	margin: auto;
	width: 2px;
	height: 12px;
	background-color: #d7d7d7;
	content: "";
}

.cmn-footerbar .link a {
	display: block;
	padding: .25rem 0;
	text-decoration: none;
	font-weight: 700;
	font-size: .75rem;
	line-height: 1.5;
	transition-timing-function: ease;
	transition-duration: .3s;
}

.no-touchdevice .cmn-footer .cmn-footerbar .link a:hover {
	color: #5bb431;
}

.cmn-headbar {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	padding: .25rem 5.5556%;
	height: 30px;
	background-color: #f0f1f3;

	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.cmn-headbar a {
	color: rgba(0, 0, 0, .5);
	text-decoration: none;
	font-weight: 600;
	font-size: .625rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color !important;
}

.cmn-headbar span {
	vertical-align: 4px;
}

.cmn-headbar .group {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	color: rgba(0, 0, 0, .5);
	text-decoration: none;
	font-weight: 600;
	font-size: .625rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color !important;

	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.cmn-headbar .group .logo {
	margin-right: .5rem;
	width: 38px;
	height: auto;
	transition-property: fill !important;

	fill: rgba(0, 0, 0, .5);
}

.cmn-headbar .group .logo25 {
	margin-right: .5rem;
	width: 62px;
	height: 18px;
}

.cmn-headbar .corp {
	display: none;
}

.cmn-headbar .corp a:before {
	display: inline-block;
	margin-right: .5rem;
	width: 12px;
	height: 12px;
	border: solid 3px rgba(0, 0, 0, .5);
	border-radius: 50%;
	content: "";
	vertical-align: -2px;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: border !important;
}

.no-touchdevice .cmn-headbar .corp a:hover {
	color: #5bb431;
}

.no-touchdevice .cmn-headbar .corp a:hover:before {
	border-color: #5bb431;
}

.cmn-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	border-bottom: solid 2px #d7d7d7;
	background-color: #fff;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
}

.cmn-header.-top {
	border-bottom-color: transparent;
}

.cmn-header.is-active.is-hide {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.is-drawer-show .cmn-header:after {
	background-color: #fff;
}

.cmn-main {
	position: relative;
	padding-top: 105px;
}

.cmn-nav {
	position: fixed;
	top: 30px;
	left: 0;
	display: none;
	padding-top: 75px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	opacity: 0;
}

.cmn-nav > .scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

.cmn-pagetop {
	display: block;
	height: 3rem;
}

.cmn-pagetop > a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border: solid 4px #000;
	background-color: #000;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: background-color,color;
}

.cmn-pagetop > a svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: fill;
	-webkit-transform: translate(-50%, -50%) rotate(-90deg);
	transform: translate(-50%, -50%) rotate(-90deg);

	fill: #fff;
}

.no-touchdevice .cmn-pagetop > a:hover {
	background-color: #fff;
	color: #000;
}

.no-touchdevice .cmn-pagetop > a:hover svg {
	fill: #000;
}

.cmn-sitename {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	padding-left: 5.5556%;
	width: 100%;
	height: 75px;
	background-color: #fff;

	justify-content: space-between;
	align-items: center;
}

.cmn-sitename .sitename {
	position: relative;
	z-index: 1;
	margin: 0;
	width: 148px;
}

.cmn-sitename .sitename a {
	display: block;
	padding: 0;
}

.cmn-sitename .sitename img {
	vertical-align: top;
}

@-webkit-keyframes humbergerTop {
	0% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}
}

@keyframes humbergerTop {
	0% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}
}

@-webkit-keyframes humbergerBottom {
	0% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}
}

@keyframes humbergerBottom {
	0% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}
}

@-webkit-keyframes humbergerTopRev {
	0% {
		-webkit-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@keyframes humbergerTopRev {
	0% {
		-webkit-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@-webkit-keyframes humbergerBottomRev {
	0% {
		-webkit-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
}

@keyframes humbergerBottomRev {
	0% {
		-webkit-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
	100% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
}

.cmn-humberger {
	position: relative;
	z-index: 11;
	display: block;
	margin: 0;
	padding: 0;
	width: 75px;
	height: 75px;
	outline: none;
	border: 0;
	background: transparent;
	background-color: #222;
	cursor: pointer;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.cmn-humberger > .bdr {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	margin-top: -1.5px;
	margin-left: -14px;
	width: 28px;
	height: 3px;
	background-color: #fff;
}

.cmn-humberger > .bdr.-top {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-animation: humbergerTop .5s forwards;
	animation: humbergerTop .5s forwards;
}

.cmn-humberger > .bdr.-middle {
	transition: opacity .2s .2s;
}

.cmn-humberger > .bdr.-bottom {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-animation: humbergerBottom .5s forwards;
	animation: humbergerBottom .5s forwards;
}

.is-drawer-show .cmn-humberger > .bdr.-top {
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	-webkit-animation: humbergerTopRev .5s forwards;
	animation: humbergerTopRev .5s forwards;
}

.is-drawer-show .cmn-humberger > .bdr.-middle {
	opacity: 0;
}

.is-drawer-show .cmn-humberger > .bdr.-bottom {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
	-webkit-animation: humbergerBottomRev .5s forwards;
	animation: humbergerBottomRev .5s forwards;
}

.cmnnav-lang {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	padding: 0;
	width: 146px;
	border-radius: 14px;
	background-color: #eee;
	list-style: none;
	list-style-type: none;
}

.cmnnav-lang:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 50%;
	height: 100%;
	border-radius: 14px;
	background-color: #5bb431;
	content: "";
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: left;
}

.cmnnav-lang.-jp:before {
	left: 0;
}

.cmnnav-lang.-jp .-jp a {
	color: #fff;
}

.cmnnav-lang.-jp .-en a {
	color: #7f7f7f;
}

.cmnnav-lang.-en:before {
	left: 50%;
}

.cmnnav-lang.-en .-ja a {
	color: #7f7f7f;
}

.cmnnav-lang.-en .-en a {
	color: #fff;
}

.cmnnav-lang > li {
	position: relative;
	width: 50%;
	list-style: none;
}

.cmnnav-lang a {
	display: block;
	width: 100%;
	height: 100%;
	color: #7f7f7f;
	text-align: center;
	font-weight: 600;
	font-weight: 600;
	font-size: 1rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.75;
	transition-delay: .1s;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.cmnnav-lang a:link, .cmnnav-lang a:visited, .cmnnav-lang a:focus, .cmnnav-lang a:active {
	text-decoration: none;
}

.cmnnav-main {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
	line-height: 1;
}

.cmnnav-main a {
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.cmnnav-main a:link, .cmnnav-main a:visited, .cmnnav-main a:focus, .cmnnav-main a:active {
	text-decoration: none;
}

.no-touchdevice .cmnnav-main a:hover {
	color: #5bb431;
}

.cmnnav-main > li {
	border-bottom: solid 3px #fff;
	line-height: 1;
}

.cmnnav-main > li > a {
	position: relative;
	display: block;
	padding: 11px 5.5556%;
	background-color: #f0f1f3;
}

.cmnnav-main > li > a:lang(en) {
	padding: 20px 5.5556%;
}

.cmnnav-main > li > a .cpy, .cmnnav-main > li > a .hdl {
	margin: 0;
}

.cmnnav-main > li > a .cpy {
	color: rgba(0, 0, 0, .6);
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.6364;
}

.cmnnav-main > li > a .hdl {
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.5;
}

.cmnnav-main > li.is-open > a:before {
	-webkit-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

.cmnnav-main .child .head a, .cmnnav-main .child .sublst a {
	position: relative;
	display: block;
	padding: 14px 5.5556%;
	padding-right: calc(((80 / 720) * 100%) + 16px);
	border-bottom: solid 3px #f0f1f3;
}

.cmnnav-main .child .head a:before, .cmnnav-main .child .sublst a:before {
	position: absolute;
	top: 50%;
	right: 6.25%;
	display: block;
	width: 1rem;
	height: 1rem;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: cover;
	content: "";
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cmnnav-main .child .head a[target="_blank"]::before, .cmnnav-main .child .sublst a[target="_blank"]::before {
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
}

.cmnnav-main .child {
	display: none;
}

.cmnnav-main .child.-debug {
	display: block !important;
}

.cmnnav-main .child.-debug .head {
	opacity: 1;
}

.cmnnav-main .child.-debug .sublst {
	opacity: 1;
}

.cmnnav-main .child.is-active .head {
	opacity: 1;
}

.cmnnav-main .child.is-active .sublst {
	opacity: 1;
}

.cmnnav-main .child .head {
	display: none;
}

.cmnnav-main .child .head .cpy {
	display: none;
}

.cmnnav-main .child .head .hdl {
	font-size: .875rem;
	line-height: 1.5714;
}

.cmnnav-main .child .sublst {
	padding: 0;
	list-style: none;
	list-style-type: none;
	line-height: 1;
}

.cmnnav-main .child .sublst li {
	font-size: .875rem;
	line-height: 1.5714;
}

.cmnnav-main .child .sublst li:last-child a {
	padding-bottom: 11px;
	border-bottom: none;
}

.no-touchdevice .cmnnav-main .child .sublst a:hover figure:after {
	border-color: #5bb431;
}

.cmnnav-main .child .sublst figure {
	position: relative;
	display: none;
}

.cmnnav-main .child .sublst figure img {
	display: block;
}

.cmnnav-search a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	font-weight: 600;
	font-weight: 600;
	font-size: .8125rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8462;

	align-items: center;
}

.cmnnav-search a:link, .cmnnav-search a:visited, .cmnnav-search a:focus, .cmnnav-search a:active {
	text-decoration: none;
}

.cmnnav-search a:before {
	display: block;
	margin-right: .5rem;
	width: 14px;
	height: 14px;
	background: url(../img/icon_handglass.svg) no-repeat center;
	background-size: contain;
	content: "";
}

.cmnnav-search form {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;

	align-items: center;
}

.cmnnav-search input[type="text"] {
	padding: 3px 2rem;
	border-radius: 35px;
	font-size: 1rem;
	line-height: 2;
}

.cmnnav-search input[type="text"]:placeholder-shown {
	color: #0f0f0f;
}

.cmnnav-search input[type="text"]::-webkit-input-placeholder {
	color: #0f0f0f;
}

.cmnnav-search input[type="text"]:-moz-placeholder {
	color: #0f0f0f;
	opacity: 1;
}

.cmnnav-search input[type="text"]::-moz-placeholder {
	color: #0f0f0f;
	opacity: 1;
}

.cmnnav-search input[type="text"]:-ms-input-placeholder {
	color: #0f0f0f;
}

.cmnnav-search input[type="text"]:placeholder-shown {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.cmnnav-search input[type="text"]::-webkit-input-placeholder {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.cmnnav-search input[type="text"]:-moz-placeholder {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.cmnnav-search input[type="text"]::-moz-placeholder {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.cmnnav-search input[type="text"]:-ms-input-placeholder {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.cmnnav-search button {
	position: relative;
	display: block;
	box-sizing: border-box;
	margin-left: 8px;
	width: 24px;
	height: 24px;
	border: none;
	background: url(../img/icon_handglass.svg) no-repeat center;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.cmnnav-sub {
	margin: 0;
	padding: 2.5rem 5.5556%;
	list-style: none;
}

.cmnnav-sub li {
	list-style: none;
}

.dlst-tbl {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	margin: 0;
	width: 100%;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}

.dlst-tbl > dt, .dlst-tbl > dd {
	position: relative;
	margin: 0;
	font-size: .875rem;
	line-height: 1.5714;
}

.dlst-tbl > dt {
	padding: 1.5rem 0 0;
	width: 100%;
	font-weight: bold;
}

.dlst-tbl > dt:first-child {
	padding-top: 0;
}

.dlst-tbl > dd {
	padding: .5rem 0 1.5rem;
	width: 100%;
	border-bottom: solid 2px #d7d7d7;
}

.dlst-flex {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}

.dlst-flex > dt, .dlst-flex > dd {
	margin: 0;
	padding: 4px 0;
}

.dlst-flex > dt:not(:first-child) {
	margin-top: .5rem;
}

.dlst-count > dt {
	counter-reset: dlst;
}

.dlst-count > dd {
	position: relative;
	padding-left: 1.5em;
}

.dlst-count > dd:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: counter(dlst) ".";
	counter-increment: dlst;
}

.dlst-count > dd[type="i"]:before {
	content: counter(dlst-dt, lower-roman) ")";
}

.dlst-count-dt {
	counter-reset: dlst-dt;
}

.dlst-count-dt > dt {
	position: relative;
	padding-left: 1.5em;
}

.dlst-count-dt > dt:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: counter(dlst-dt) ".";
	counter-increment: dlst-dt;
}

.dlst-count-dt > dt[type="i"]:before {
	content: counter(dlst-dt, lower-roman) ")";
}

.dlst-count-dt > dd {
	padding-left: 1.5em;
}

.dlst-lst {
	padding-left: 1.5em;
}

.dlst-lst > dt {
	margin-left: -1.5em;
}

.dlst-lst > dd {
	display: list-item;
	list-style-type: disc;
}

.dlst-lst > dd[type="circle"] {
	list-style-type: circle;
}

.dlst-lst > dd[type="square"] {
	list-style-type: square;
}

.dlst-lst-dt {
	padding-left: 1.5em;
}

.dlst-lst-dt > dt {
	display: list-item;
	list-style-type: disc;
}

.dlst-lst-dt > dt[type="circle"] {
	list-style-type: circle;
}

.dlst-lst-dt > dt[type="square"] {
	list-style-type: square;
}

.dlst-ast > dd {
	padding-left: 1.5em;
}

.dlst-ast > dd:before {
	display: inline-block;
	margin-left: -1.25em;
	width: 1.25em;
	content: "※";
	vertical-align: top;
}

.dlst-cle > dd {
	padding-left: 1.5em;
}

.dlst-cle > dd:before {
	display: inline-block;
	margin-right: .25em;
	margin-left: -1.25em;
	width: 1em;
	height: 1em;
	border: solid 4px #5bb431;
	border-radius: 100%;
	content: "";
	vertical-align: text-top;
}

.dlst-cle-dt > dt {
	padding-left: 1.5em;
}

.dlst-cle-dt > dt:before {
	display: inline-block;
	margin-right: .25em;
	margin-left: -1.25em;
	width: 1em;
	height: 1em;
	border: solid 4px #5bb431;
	border-radius: 100%;
	content: "";
	vertical-align: text-top;
}

.dlst-cle-dt > dd {
	padding-left: 1.5em;
}

.dlst-faq > dt > div, .dlst-faq > dd > div {
	position: relative;
	display: block;
	padding-left: 1.5em;
	font-size: .875rem;
	line-height: 2;
}

.dlst-faq > dt > div:before, .dlst-faq > dd > div:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	color: #5bb431;
	content: "Q";
	font-weight: 600;
	font-size: 1.5rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.3333;
}

.dlst-faq {
	padding-bottom: 1.5rem;
	border-bottom: solid 2px #d7d7d7;
}

.dlst-faq > dt {
	margin-top: 1.5rem;
	padding: 1.5rem;
	border-top: solid 2px #d7d7d7;
}

.dlst-faq > dt > div:before {
	content: "Q";
}

.dlst-faq > dt:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.dlst-faq > dd {
	margin: 0;
	padding: 1.5rem 2.5rem;
	background-color: #f0f1f3;
}

.dlst-faq > dd > div:before {
	content: "A";
}

input[type="text"], input[type="tel"], input[type="email"] {
	padding: .875rem;
	max-width: 100%;
	width: 100%;
	border: none;
	border-radius: 4px;
	background-color: transparent;
	background-color: #f0f1f3;
	font-size: 1rem;
	line-height: 2;

	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type="text"]:placeholder-shown, input[type="tel"]:placeholder-shown, input[type="email"]:placeholder-shown {
	color: #d7d7d7;
}

input[type="text"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder {
	color: #d7d7d7;
}

input[type="text"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="email"]:-moz-placeholder {
	color: #d7d7d7;
	opacity: 1;
}

input[type="text"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="email"]::-moz-placeholder {
	color: #d7d7d7;
	opacity: 1;
}

input[type="text"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder {
	color: #d7d7d7;
}

textarea {
	padding: .875rem;
	max-width: 100%;
	width: 100%;
	border: none;
	border-radius: 4px;
	background-color: #f0f1f3;
	font-size: 1rem;
	line-height: 2;

	-webkit-appearance: none;
	-moz-appearance: none;
}

textarea:placeholder-shown {
	color: #d7d7d7;
}

textarea::-webkit-input-placeholder {
	color: #d7d7d7;
}

textarea:-moz-placeholder {
	color: #d7d7d7;
	opacity: 1;
}

textarea::-moz-placeholder {
	color: #d7d7d7;
	opacity: 1;
}

textarea:-ms-input-placeholder {
	color: #d7d7d7;
}

::-ms-expand {
	display: none;
}

.lbl-select {
	position: relative;
	display: inline-block;
	min-width: 152px;
	border-radius: 19px;
	background-color: #5bb431;
}

.lbl-select:before {
	position: absolute;
	top: calc(50% - 9px);
	right: 1rem;
	display: block;
	width: 18px;
	height: 18px;
	background: url(../img/ico/select-white.svg) no-repeat center;
	background-size: contain;
	content: "";
}

.lbl-select > select {
	position: relative;
	padding: 0 calc(1rem + 18px + .25rem) 0 1rem;
	max-width: 100%;
	width: 100%;
	height: 38px;
	border: none;
	background-color: transparent;
	color: #fff;
	white-space: normal;
	font-weight: bold;
	font-size: 1rem;
	line-height: 2;

	-webkit-appearance: none;
	-moz-appearance: none;
}

.lbl-select > select option:not(:checked) {
	color: #0f0f0f;
}

.lbl-checkbox, .lbl-radio {
	display: block;
	font-size: 0;
}

.lbl-checkbox input[type="checkbox"], .lbl-checkbox input[type="radio"], .lbl-radio input[type="checkbox"], .lbl-radio input[type="radio"] {
	font-size: 1rem;
	line-height: 2;
}

.lbl-checkbox span, .lbl-radio span {
	margin-left: .25em;
	padding: .25em;
	border-radius: 4px;
	font-size: 1rem;
	line-height: 2;
}

.lbl-checkbox input[type="checkbox"]:checked + span, .lbl-checkbox input[type="radio"]:checked + span, .lbl-radio input[type="checkbox"]:checked + span, .lbl-radio input[type="radio"]:checked + span {
	background-color: #5bb431;
	color: #fff;
}

.card-hdl {
	position: relative;
	margin: 0 0 1rem;
	padding: 10px 0 0;
	color: #0f0f0f;
	font-size: 1.25rem;
	line-height: 1.5;
}

.card-hdl:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 26px;
	height: 4px;
	background-color: #5bb431;
	content: "";
}

.card-hdl._ta-c:before {
	position: absolute;
	top: 0;
	left: 0;
	left: 50%;
	display: block;
	width: 40px;
	height: 3px;
	background-color: #5bb431;
	content: "";
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.card-hdl a {
	display: inline-block;
	color: #0f0f0f;
}

.card-hdl a:link, .card-hdl a:visited, .card-hdl a:focus, .card-hdl a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.card-hdl a:after {
	display: inline-block;
	margin-left: 10px;
	width: .8em;
	height: .8em;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
}

.hdl-lv2 {
	position: relative;
	margin: 0 0 1.5rem;
	padding: calc(1.125rem + 2px) 0 0;
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.5;
}

.hdl-lv2:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.hdl-lv2:before {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 40px;
	height: 3px;
	background-color: #5bb431;
	content: "";
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.hdl-lv2.-bottom {
	padding: 0 0 calc(1.125rem + 2px);
}

.hdl-lv2.-bottom:before {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	display: block;
	width: 40px;
	height: 3px;
	background-color: #5bb431;
	content: "";
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.hdl-lv3 {
	position: relative;
	margin: 0 0 1.5rem;
	padding: 0 0 11px;
	font-size: 1.125rem;
	line-height: 1.5;
}

.hdl-lv3:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.hdl-lv3:before, .hdl-lv3:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 2px;
	content: "";
}

.hdl-lv3:before {
	width: 100%;
	background-color: #d7d7d7;
}

.hdl-lv3:after {
	width: 40px;
	background-color: #5bb431;
}

.hdl-lv3 small {
	font-size: 1.125rem;
	line-height: 2.3333;
}

.hdl-lv4 {
	margin: 0 0 1.5rem;
	font-weight: bold;
	font-size: 1rem;
	line-height: 2;
}

.hdl-lv4:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.hdl-lv5 {
	margin: 0 0 1rem;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.875;
}

.hdl-lv5:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.hdl-lv6 {
	margin: 0;
	font-weight: bold;
	font-size: .875rem;
	line-height: 2;
}

.hdl-lv6:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.ico-new:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-color: #db2a50;
	background-image: none;
	color: #fff;
	content: "NEW";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.ico-arw:before {
	display: inline-block;
	margin-right: .5rem;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
}

.ico-category, .ico-fill {
	display: inline-block;
	margin: 4px .5rem 4px 0;
	padding: 0 1em;
	min-width: 120px;
	border-radius: 12px;
	background-color: #303030;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: .75rem;
	line-height: 2;

	-ms-flex-item-align: start;
	align-self: flex-start;
}

.ico-category.-white, .ico-fill.-white {
	background-color: #fff;
	color: #fff;
}

.ico-category.-black, .ico-fill.-black {
	background-color: #000;
	color: #fff;
}

.ico-category.-text, .ico-fill.-text {
	background-color: #0f0f0f;
	color: #fff;
}

.ico-category.-istyle, .ico-fill.-istyle {
	background-color: #5bb431;
	color: #fff;
}

.ico-category.-primary, .ico-fill.-primary {
	background-color: #5bb431;
	color: #fff;
}

.ico-category.-cosmestore, .ico-fill.-cosmestore {
	background-color: #4eb691;
	color: #fff;
}

.ico-category.-secondary, .ico-fill.-secondary {
	background-color: #716658;
	color: #fff;
}

.ico-category.-gray, .ico-fill.-gray {
	background-color: #d7d7d7;
	color: #fff;
}

.ico-category.-text-gray, .ico-fill.-text-gray {
	background-color: #acacb2;
	color: #fff;
}

.ico-category.-light-gray, .ico-fill.-light-gray {
	background-color: #f0f1f3;
	color: #fff;
}

.ico-category.-dark-gray, .ico-fill.-dark-gray {
	background-color: #7f7f7f;
	color: #fff;
}

.ico-category.-black-gray, .ico-fill.-black-gray {
	background-color: #303030;
	color: #fff;
}

.ico-category.-red, .ico-fill.-red {
	background-color: #db2a50;
	color: #fff;
}

.ico-category.-blue, .ico-fill.-blue {
	background-color: #7abfde;
	color: #fff;
}

.ico-category.-brown, .ico-fill.-brown {
	background-color: #4f3009;
	color: #fff;
}

.ico-category.-facebook, .ico-fill.-facebook {
	background-color: #305097;
	color: #fff;
}

.ico-category.-twitter, .ico-fill.-twitter {
	background-color: #00aced;
	color: #fff;
}

.ico-category.-instagram, .ico-fill.-instagram {
	background-color: #d93175;
	color: #fff;
}

.ico-category.-googleplus, .ico-fill.-googleplus {
	background-color: #dc4e41;
	color: #fff;
}

.ico-category.-pintarest, .ico-fill.-pintarest {
	background-color: #bd081c;
	color: #fff;
}

.ico-category.-line, .ico-fill.-line {
	background-color: #00b900;
	color: #fff;
}

.ico-category.-gray, .ico-fill.-gray {
	background-color: #f0f1f3;
}

.ico-bd {
	display: inline-block;
	margin: 4px .5rem 4px 0;
	padding: 0 1em;
	min-width: 80px;
	border: solid 2px #5bb431;
	border-radius: 14px;
	color: #5bb431;
	text-align: center;
	font-weight: bold;
	font-size: .75rem;
	line-height: 2;
}

.ico-filesize {
	color: #0f0f0f;
}

.ico-rss {
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url(../img/ico/rss.svg) no-repeat center;
	background-size: contain;
}

.ico-txt {
	display: inline-block;
	margin-left: .5rem;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	color: #fff;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
}

.lower-header {
	position: relative;
	overflow: hidden;
	padding: 3.25rem 0;
}

.lower-header > .contents {
	padding: 0 5.5556%;
}

.lower-header .intro {
	margin: 1.5rem 0 0;
	font-size: 1rem;
	line-height: 1.875;
}

.lower-header .page-nav {
	margin: 0 auto 1.25rem;
}

.lower-header .pagelnk-nav {
	display: none;
}

.lower-header .blk-tool {
	position: absolute;
	top: 1rem;
	right: 0;
	left: 0;
	-ms-flex-pack: end;
	margin: 0 auto;
	max-width: 1140px;
	width: 89.0625%;

	justify-content: flex-end;
}

ul.lst-nml {
	list-style-type: disc;
}

ol.lst-nml {
	list-style-type: decimal;
}

.lst-body {
	padding-left: 0;
}

.lst-ast {
	padding-left: 0;
}

.lst-ast > li {
	padding-left: 1.5em;
}

.lst-ast > li:before {
	display: inline-block;
	margin-left: -1.25em;
	width: 1.25em;
	content: "※";
	vertical-align: top;
}

.lst-ast:lang(en) > li::before {
	margin-left: -.75em;
	width: .75em;
	content: "*";
}

.lst-kakko {
	padding-left: 0;
	counter-reset: kakko;
}

.lst-kakko[start="1"] {
	counter-reset: kakko 0;
}

.lst-kakko[start="2"] {
	counter-reset: kakko 1;
}

.lst-kakko[start="3"] {
	counter-reset: kakko 2;
}

.lst-kakko[start="4"] {
	counter-reset: kakko 3;
}

.lst-kakko[start="5"] {
	counter-reset: kakko 4;
}

.lst-kakko[start="6"] {
	counter-reset: kakko 5;
}

.lst-kakko[start="7"] {
	counter-reset: kakko 6;
}

.lst-kakko[start="8"] {
	counter-reset: kakko 7;
}

.lst-kakko[start="9"] {
	counter-reset: kakko 8;
}

.lst-kakko[start="10"] {
	counter-reset: kakko 9;
}

.lst-kakko[start="11"] {
	counter-reset: kakko 10;
}

.lst-kakko[start="12"] {
	counter-reset: kakko 11;
}

.lst-kakko[start="13"] {
	counter-reset: kakko 12;
}

.lst-kakko[start="14"] {
	counter-reset: kakko 13;
}

.lst-kakko[start="15"] {
	counter-reset: kakko 14;
}

.lst-kakko[start="16"] {
	counter-reset: kakko 15;
}

.lst-kakko[start="17"] {
	counter-reset: kakko 16;
}

.lst-kakko[start="18"] {
	counter-reset: kakko 17;
}

.lst-kakko[start="19"] {
	counter-reset: kakko 18;
}

.lst-kakko[start="20"] {
	counter-reset: kakko 19;
}

.lst-kakko[start="21"] {
	counter-reset: kakko 20;
}

.lst-kakko[start="22"] {
	counter-reset: kakko 21;
}

.lst-kakko[start="23"] {
	counter-reset: kakko 22;
}

.lst-kakko[start="24"] {
	counter-reset: kakko 23;
}

.lst-kakko[start="25"] {
	counter-reset: kakko 24;
}

.lst-kakko[start="26"] {
	counter-reset: kakko 25;
}

.lst-kakko[start="27"] {
	counter-reset: kakko 26;
}

.lst-kakko[start="28"] {
	counter-reset: kakko 27;
}

.lst-kakko[start="29"] {
	counter-reset: kakko 28;
}

.lst-kakko[start="30"] {
	counter-reset: kakko 29;
}

.lst-kakko[start="31"] {
	counter-reset: kakko 30;
}

.lst-kakko[start="32"] {
	counter-reset: kakko 31;
}

.lst-kakko[start="33"] {
	counter-reset: kakko 32;
}

.lst-kakko[start="34"] {
	counter-reset: kakko 33;
}

.lst-kakko[start="35"] {
	counter-reset: kakko 34;
}

.lst-kakko[start="36"] {
	counter-reset: kakko 35;
}

.lst-kakko[start="37"] {
	counter-reset: kakko 36;
}

.lst-kakko[start="38"] {
	counter-reset: kakko 37;
}

.lst-kakko[start="39"] {
	counter-reset: kakko 38;
}

.lst-kakko[start="40"] {
	counter-reset: kakko 39;
}

.lst-kakko[start="41"] {
	counter-reset: kakko 40;
}

.lst-kakko[start="42"] {
	counter-reset: kakko 41;
}

.lst-kakko[start="43"] {
	counter-reset: kakko 42;
}

.lst-kakko[start="44"] {
	counter-reset: kakko 43;
}

.lst-kakko[start="45"] {
	counter-reset: kakko 44;
}

.lst-kakko[start="46"] {
	counter-reset: kakko 45;
}

.lst-kakko[start="47"] {
	counter-reset: kakko 46;
}

.lst-kakko[start="48"] {
	counter-reset: kakko 47;
}

.lst-kakko[start="49"] {
	counter-reset: kakko 48;
}

.lst-kakko[start="50"] {
	counter-reset: kakko 49;
}

.lst-kakko[start="51"] {
	counter-reset: kakko 50;
}

.lst-kakko[start="52"] {
	counter-reset: kakko 51;
}

.lst-kakko[start="53"] {
	counter-reset: kakko 52;
}

.lst-kakko[start="54"] {
	counter-reset: kakko 53;
}

.lst-kakko[start="55"] {
	counter-reset: kakko 54;
}

.lst-kakko[start="56"] {
	counter-reset: kakko 55;
}

.lst-kakko[start="57"] {
	counter-reset: kakko 56;
}

.lst-kakko[start="58"] {
	counter-reset: kakko 57;
}

.lst-kakko[start="59"] {
	counter-reset: kakko 58;
}

.lst-kakko[start="60"] {
	counter-reset: kakko 59;
}

.lst-kakko[start="61"] {
	counter-reset: kakko 60;
}

.lst-kakko[start="62"] {
	counter-reset: kakko 61;
}

.lst-kakko[start="63"] {
	counter-reset: kakko 62;
}

.lst-kakko[start="64"] {
	counter-reset: kakko 63;
}

.lst-kakko[start="65"] {
	counter-reset: kakko 64;
}

.lst-kakko[start="66"] {
	counter-reset: kakko 65;
}

.lst-kakko[start="67"] {
	counter-reset: kakko 66;
}

.lst-kakko[start="68"] {
	counter-reset: kakko 67;
}

.lst-kakko[start="69"] {
	counter-reset: kakko 68;
}

.lst-kakko[start="70"] {
	counter-reset: kakko 69;
}

.lst-kakko[start="71"] {
	counter-reset: kakko 70;
}

.lst-kakko[start="72"] {
	counter-reset: kakko 71;
}

.lst-kakko[start="73"] {
	counter-reset: kakko 72;
}

.lst-kakko[start="74"] {
	counter-reset: kakko 73;
}

.lst-kakko[start="75"] {
	counter-reset: kakko 74;
}

.lst-kakko[start="76"] {
	counter-reset: kakko 75;
}

.lst-kakko[start="77"] {
	counter-reset: kakko 76;
}

.lst-kakko[start="78"] {
	counter-reset: kakko 77;
}

.lst-kakko[start="79"] {
	counter-reset: kakko 78;
}

.lst-kakko[start="80"] {
	counter-reset: kakko 79;
}

.lst-kakko[start="81"] {
	counter-reset: kakko 80;
}

.lst-kakko[start="82"] {
	counter-reset: kakko 81;
}

.lst-kakko[start="83"] {
	counter-reset: kakko 82;
}

.lst-kakko[start="84"] {
	counter-reset: kakko 83;
}

.lst-kakko[start="85"] {
	counter-reset: kakko 84;
}

.lst-kakko[start="86"] {
	counter-reset: kakko 85;
}

.lst-kakko[start="87"] {
	counter-reset: kakko 86;
}

.lst-kakko[start="88"] {
	counter-reset: kakko 87;
}

.lst-kakko[start="89"] {
	counter-reset: kakko 88;
}

.lst-kakko[start="90"] {
	counter-reset: kakko 89;
}

.lst-kakko[start="91"] {
	counter-reset: kakko 90;
}

.lst-kakko[start="92"] {
	counter-reset: kakko 91;
}

.lst-kakko[start="93"] {
	counter-reset: kakko 92;
}

.lst-kakko[start="94"] {
	counter-reset: kakko 93;
}

.lst-kakko[start="95"] {
	counter-reset: kakko 94;
}

.lst-kakko[start="96"] {
	counter-reset: kakko 95;
}

.lst-kakko[start="97"] {
	counter-reset: kakko 96;
}

.lst-kakko[start="98"] {
	counter-reset: kakko 97;
}

.lst-kakko[start="99"] {
	counter-reset: kakko 98;
}

.lst-kakko > li {
	padding-left: 2em;
	list-style: none;
	counter-increment: kakko;
}

.lst-kakko > li:before {
	display: inline-block;
	margin-left: -2em;
	width: 2em;
	content: "(" counter(kakko) ")";
	vertical-align: top;
	text-align: center;
}

.lst-kakko > li[value]:before {
	content: "(" attr(value) ")";
}

.lst-kakko > li[value="1"] {
	counter-reset: kakko 0;
}

.lst-kakko > li[value="2"] {
	counter-reset: kakko 1;
}

.lst-kakko > li[value="3"] {
	counter-reset: kakko 2;
}

.lst-kakko > li[value="4"] {
	counter-reset: kakko 3;
}

.lst-kakko > li[value="5"] {
	counter-reset: kakko 4;
}

.lst-kakko > li[value="6"] {
	counter-reset: kakko 5;
}

.lst-kakko > li[value="7"] {
	counter-reset: kakko 6;
}

.lst-kakko > li[value="8"] {
	counter-reset: kakko 7;
}

.lst-kakko > li[value="9"] {
	counter-reset: kakko 8;
}

.lst-kakko > li[value="10"] {
	counter-reset: kakko 9;
}

.lst-kakko > li[value="11"] {
	counter-reset: kakko 10;
}

.lst-kakko > li[value="12"] {
	counter-reset: kakko 11;
}

.lst-kakko > li[value="13"] {
	counter-reset: kakko 12;
}

.lst-kakko > li[value="14"] {
	counter-reset: kakko 13;
}

.lst-kakko > li[value="15"] {
	counter-reset: kakko 14;
}

.lst-kakko > li[value="16"] {
	counter-reset: kakko 15;
}

.lst-kakko > li[value="17"] {
	counter-reset: kakko 16;
}

.lst-kakko > li[value="18"] {
	counter-reset: kakko 17;
}

.lst-kakko > li[value="19"] {
	counter-reset: kakko 18;
}

.lst-kakko > li[value="20"] {
	counter-reset: kakko 19;
}

.lst-kakko > li[value="21"] {
	counter-reset: kakko 20;
}

.lst-kakko > li[value="22"] {
	counter-reset: kakko 21;
}

.lst-kakko > li[value="23"] {
	counter-reset: kakko 22;
}

.lst-kakko > li[value="24"] {
	counter-reset: kakko 23;
}

.lst-kakko > li[value="25"] {
	counter-reset: kakko 24;
}

.lst-kakko > li[value="26"] {
	counter-reset: kakko 25;
}

.lst-kakko > li[value="27"] {
	counter-reset: kakko 26;
}

.lst-kakko > li[value="28"] {
	counter-reset: kakko 27;
}

.lst-kakko > li[value="29"] {
	counter-reset: kakko 28;
}

.lst-kakko > li[value="30"] {
	counter-reset: kakko 29;
}

.lst-lnk {
	padding-left: 0;
}

.lst-lnk > li {
	padding-left: 1.5em;
}

.lst-lnk > li:before {
	display: inline-block;
	margin-left: -10px;
	width: 10px;
	height: 10px;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	-webkit-transform: translateX(calc((1.5em - 10px) / -2));
	transform: translateX(calc((1.5em - 10px) / -2));
}

.lst-lnk a {
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.lst-lnk a[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.lst-lnk a[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a.ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-lnk a:link, .lst-lnk a:visited, .lst-lnk a:focus, .lst-lnk a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .lst-lnk a:hover {
	color: #5bb431;
}

.no-touchdevice .section-blk .lst-lnk a:hover {
	text-decoration: none;
}

.lst-lnk.-noico a:after, .lst-lnk .-noico a:after {
	display: none;
}

.lst-lnk a.-noico:after {
	display: none;
}

.lst-cle {
	padding-left: 0;
}

.lst-cle > li {
	padding-left: 1.5em;
}

.lst-cle > li:before {
	display: inline-block;
	margin-right: .25em;
	margin-left: -1.25em;
	width: 1em;
	height: 1em;
	border: solid 4px #5bb431;
	border-radius: 100%;
	content: "";
	vertical-align: text-top;
}

.lst-file {
	padding-left: 0;
}

.lst-file > li {
	display: block;
	padding: 1.25rem 0;
	border-bottom: solid 2px #d7d7d7;
}

.lst-file > li:first-child {
	border-top: solid 2px #d7d7d7;
}

.lst-file > li > time {
	width: 5rem;
	color: #7f7f7f;
	font-size: .875rem;
	line-height: 2;
}

.lst-file > li > div {
	-ms-flex: 1;
	flex: 1 1;
}

.lst-file > li p {
	margin: 0;
	padding: 4px 0;
	font-size: .875rem;
	line-height: 1.5714;
}

.lst-file .contents > .note {
	padding-left: 1.5rem;
	color: #0f0f0f;
}

.lst-file .contents > p:not([class]) {
	padding-left: 1.5em;
	color: #0f0f0f;
}

.lst-file .contents > .lst-lnk {
	padding-left: 1.5em;
}

.lst-file .file {
	padding-left: calc(.75em + 5px);
}

.lst-file .file:before {
	display: inline-block;
	margin-left: -10px;
	width: 10px;
	height: 10px;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	-webkit-transform: translateX(calc(.75em - 16px));
	transform: translateX(calc(.75em - 16px));
}

.lst-file .file > a {
	margin: 0;
	font-size: .875rem;
	line-height: 1.5714;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.lst-file .file > a[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.lst-file .file > a[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a.ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.lst-file .file > a:link, .lst-file .file > a:visited, .lst-file .file > a:focus, .lst-file .file > a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.lst-file .file > a:not([href]) {
	color: #0f0f0f;
}

.no-touchdevice .lst-file .file a:hover {
	color: #5bb431;
}

.lst-file .file.-noico > a:after {
	display: none;
}

.lst-file .file > a.-noico:after {
	display: none;
}

.lst-file .note {
	font-size: .75rem;
	line-height: 1.6667;
}

.lst-pager {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	margin: 0;
	padding: 0;
	list-style: none;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}

.lst-pager li {
	width: 32px;
	height: 32px;
}

.lst-pager li.is-active a {
	border-radius: 100%;
	background-color: #fff;
}

.lst-pager li.is-active a:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: solid 4px #5bb431;
	border-radius: 100%;
	content: "";
}

.lst-pager li.prev svg, .lst-pager li.next svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 50%;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: fill;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.lst-pager li.prev svg {
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	transform: translate(-50%, -50%) rotate(180deg);
}

.lst-pager li span {
	display: block;
	width: 100%;
	height: 100%;
	color: #0f0f0f;
	text-align: center;
	font-size: .875rem;
	line-height: 2.2857;
}

.lst-pager li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #0f0f0f;
	text-align: center;
	font-weight: 600;
	font-size: .875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 2.2857;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.lst-pager li a:link, .lst-pager li a:visited, .lst-pager li a:focus, .lst-pager li a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .lst-pager a[href]:hover {
	color: #5bb431;

	fill: #5bb431;
}

.lst-flex {
	padding: 0;
}

.lst-flex > li {
	display: table;
}

.lst-flex > li > * {
	display: table-cell;
	padding: 4px 0;
}

.lst-profile {
	padding: 0;
	list-style: none;
}

.lst-profile > li {
	padding: 4px 0;
}

.lst-profile > li > * {
	display: block;
}

.lst-profile > li > time {
	width: 6rem;
}

.lst-profile > li > time:lang(en) {
	width: 8rem;
}

.lst-tag {
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.lst-tag li {
	display: block;
	margin-right: 1em;
	color: #5bb431;
	font-weight: 600;
	font-size: .75rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.6667;
}

.lst-tag a {
	display: block;
	color: #5bb431;
	font-weight: 600;
	font-size: .75rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.6667;
}

.lst-tag a:link, .lst-tag a:visited, .lst-tag a:focus, .lst-tag a:active {
	color: #5bb431;
	text-decoration: none;
}

.main-contents {
	position: relative;
	padding: 2.5rem 0 4.5rem;
	background-color: #f0f1f3;
}

.main-contents.-about {
	z-index: 1;
	background-color: transparent;
}

.main-contents > *:first-child {
	margin-top: 0 !important;
}

.main-contents > *:last-child {
	margin-bottom: 0 !important;
}

.main-head .cpy {
	margin: 0 0 8px;
	color: #5bb431;
	font-weight: 600;
	font-size: .75rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.6667;
}

.main-head .cpy.-en {
	font-size: 1.375rem;
	line-height: 1.6364;
}

.main-head .cpy.-jp {
	color: #0f0f0f;
}

.main-head .hdl {
	margin: 0;
	color: #0f0f0f;
	font-size: 1.375rem;
	line-height: 1.5;
}

.main-head .hdl.-lv2 {
	font-size: 1.25rem;
	line-height: 1.5;
}

.main-head .hdl.-lv3 {
	font-size: 1.125rem;
	line-height: 1.5;
}

.main-head .hdl.-en {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.main-head .lead {
	font-weight: 700;
}

.nav-print {
	display: block;
}

.nav-print a {
	position: relative;
	display: block;
	padding: 3px 48px;
	width: 100%;
	height: 100%;
	border-radius: 13px;
	background-color: #f0f1f3;
	color: #0f0f0f;
	text-align: center;
	font-weight: bold;
	font-size: .75rem;
	line-height: 1.6667;
	cursor: pointer;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: background-color,color;
}

.nav-print a:link, .nav-print a:visited, .nav-print a:focus, .nav-print a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .nav-print a:hover {
	background-color: #acacb2;
	color: #fff;
}

.no-touchdevice .nav-print a:hover .i {
	fill: #fff;
}

.nav-print .i {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 14px;
	height: 14px;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: fill;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);

	fill: #0f0f0f;
}

.nav-fz {
	display: -ms-flexbox;
	display: flex;
	margin: 0;
}

.nav-fz dt {
	margin-right: .5rem;
	font-weight: bold;
	font-size: .75rem;
	line-height: 1.6667;
}

.nav-fz dt.-white {
	color: #fff;
}

.nav-fz dd {
	margin: 0;
}

.nav-fzlst {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	width: 90px;
	height: 20px;
	border-radius: 10px;
	background-color: #eee;
	list-style: none;
}

.nav-fzlst:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 50%;
	height: 100%;
	border-radius: 10px;
	background-color: #acacb2;
	content: "";
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: left;
}

.nav-fzlst.-left:before {
	left: 0;
}

.nav-fzlst.-left li:first-child a {
	color: #fff;
}

.nav-fzlst.-left li:last-child a {
	color: #7f7f7f;
}

.nav-fzlst.-right:before {
	left: 50%;
}

.nav-fzlst.-right li:first-child a {
	color: #7f7f7f;
}

.nav-fzlst.-right li:last-child a {
	color: #fff;
}

.nav-fzlst > li {
	position: relative;
	width: 50px;
}

.nav-fzlst a {
	display: block;
	width: 100%;
	height: 100%;
	color: #7f7f7f;
	text-align: center;
	font-weight: 600;
	font-weight: 600;
	font-size: .75rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.6667;
	transition-delay: .1s;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.nav-fzlst a:link, .nav-fzlst a:visited, .nav-fzlst a:focus, .nav-fzlst a:active {
	text-decoration: none;
}

.nav-fzlst a.is-active {
	color: #fff;
}

.nav-fzlst a:not(.is-active) {
	cursor: pointer;
}

.newsctg-nav {
	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.newsctg-nav .hdl {
	position: relative;
	margin: 0 0 .5rem;
	width: 100%;
	color: #5bb431;
	font-weight: 600;
	font-size: 1rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.875;
}

.newsctg-nav .hdl:after {
	display: inline-block;
	width: 1rem;
	content: ":";
	text-align: center;
}

.newsctg-nav .lst-parent, .newsctg-nav .lst-child {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.newsctg-nav .lst-parent {
	display: -ms-flexbox;
	display: flex;

	-ms-flex: 1;
	flex: 1 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.newsctg-nav .lst-parent > li:first-child {
	text-align: center;
}

.newsctg-nav .lst-parent > li:nth-child(2) {
	-ms-flex: 1;
	flex: 1 1;
}

.newsctg-nav .lst-child {
	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.newsctg-nav a {
	display: block;
	padding: 4px 1rem;
	border: solid 2px transparent;
	border-radius: 15px;
	color: #0f0f0f;
	font-weight: bold;
	font-size: .75rem;
	line-height: 1.6667;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.newsctg-nav a:link, .newsctg-nav a:visited, .newsctg-nav a:focus, .newsctg-nav a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .ctg-nav a:hover {
	color: #5bb431;
}

.newsctg-nav a span {
	display: inline-block;
}

.newsctg-nav .is-active a {
	border-color: #5bb431;
	color: #5bb431;
}

.ctg-nav {
	position: relative;
}

.ctg-nav .lst-parent, .ctg-nav .lst-child {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.ctg-nav .lst-parent > li:first-child {
	position: absolute;
	top: 0;
	left: 0;
	margin: 2px 0;
	text-align: center;
}

.ctg-nav .lst-parent > li:nth-child(2) {
	-ms-flex: 1;
	flex: 1 1;
}

.ctg-nav .lst-child {
	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.ctg-nav .lst-child:before {
	display: block;
	width: 78px;
	content: "";
}

.ctg-nav .lst-child:lang(en):before {
	width: 54px;
}

.ctg-nav .lst-child li {
	margin: 2px 0;
}

.ctg-nav a {
	display: block;
	padding: 4px 1rem;
	border: solid 2px transparent;
	border-radius: 15px;
	color: #0f0f0f;
	font-weight: bold;
	font-size: .875rem;
	line-height: 1.4286;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.ctg-nav a:link, .ctg-nav a:visited, .ctg-nav a:focus, .ctg-nav a:active {
	color: #0f0f0f;
	text-decoration: none;
}

.no-touchdevice .ctg-nav a:hover {
	color: #5bb431;
}

.ctg-nav a span {
	display: inline-block;
}

.ctg-nav .is-active a {
	border-color: #5bb431;
	background-color: #fff;
	color: #5bb431;
}

.news-chapter {
	margin: 0 auto 2.5rem;
	width: 88.8889%;
	border-radius: 5px;
}

.news-chapter .news-pager {
	margin-top: 2.5rem;
}

.news-single-chapter {
	margin: 0 auto;
	padding: 3.25rem 0;
	width: 91.6667%;
}

.news-single-chapter .news-single {
	width: 100%;
}

.news-single-chapter .news-sidenav {
	display: none;
}

.news-return {
	margin: 0 auto;
	padding: 1rem 0;
	width: 91.6667%;
	border-top: solid 2px #f0f1f3;
}

.news-return p {
	text-align: center;
}

.news-return a {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	padding-left: 1.5em;
	font-weight: bold;
	font-size: .875rem;
	line-height: 2;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;

	-ms-flex-line-pack: center;
	align-content: center;
	align-items: center;
}

.news-return a:lang(en) {
	font-weight: 600;
}

.news-return a:link, .news-return a:visited, .news-return a:focus, .news-return a:active {
	text-decoration: none;
}

.news-return a:before {
	display: inline-block;
	margin-right: .25em;
	margin-left: -1.25em;
	width: 1em;
	height: 1em;
	border: solid 4px #5bb431;
	border-radius: 100%;
	content: "";
}

.no-touchdevice .news-return a:hover {
	color: #5bb431;
}

.news-sidenav {
	overflow: hidden;
}

.news-sidenav a {
	font-weight: bold;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.news-sidenav a:link, .news-sidenav a:visited, .news-sidenav a:focus, .news-sidenav a:active {
	text-decoration: none;
}

.no-touchdevice .news-sidenav a:hover {
	color: #5bb431;
}

.news-sidenav dl {
	margin-top: 2.5rem;
}

.news-sidenav dl:first-child {
	margin-top: 0;
}

.news-sidenav dt {
	position: relative;
	padding-top: 8px;
	color: #5bb431;
	font-weight: 600;
	font-size: .875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.5714;
}

.news-sidenav dt:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 2px;
	background-color: #5bb431;
	content: "";
}

.news-sidenav dd {
	margin: 1em 0;
	margin-left: calc((1.5em - 10px) / -2);
	padding-left: 1.5em;
	font-size: .75rem;
	line-height: 1.6667;
}

.news-sidenav dd:before {
	display: inline-block;
	margin-left: -10px;
	width: 10px;
	height: 10px;
	background: url(../img/ico/arw-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	-webkit-transform: translateX(calc((1.5em - 10px) / -2));
	transform: translateX(calc((1.5em - 10px) / -2));
}

.news-sidenav ul {
	margin-top: .5rem;
	margin-left: calc((1.5em - 10px) / -2);
}

.news-sidenav li a {
	font-size: .75rem;
	line-height: 1.6667;
}

.news-header {
	position: relative;
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
}

.news-header .meta {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;

	justify-content: space-between;
	align-items: center;
}

.news-header .category {
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-header .category .main, .news-header .category .sub {
	display: inline-block;
	padding: 0 1em;
	min-width: 80px;
	border: solid 2px;
	border-radius: 14px;
	color: #5bb431;
	text-align: center;
	font-weight: bold;
	font-size: .75rem;
	line-height: 2;
}

.news-header .category .main {
	border-color: #5bb431;
}

.news-header .category .sub {
	border-color: transparent;
}

.news-header time {
	font-size: .875rem;
	line-height: 1.5714;
}

.news-header .hdl {
	margin: 1.5rem 0;
	font-size: 1.125rem;
	line-height: 1.5;
}

.news-header .sign {
	font-size: .75rem;
	line-height: 1.6667;
}

.news-header:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 2px;
	background-color: #5bb431;
	content: "";
}

.news-tool {
	position: absolute;
	right: 0;
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;

	align-items: center;
}

.news-tool > li {
	margin-left: .5rem;
}

.news-pdf a {
	font-size: .875rem;
	line-height: 2;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.news-pdf a[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.news-pdf a[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-pdf a.ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice .news-pdf a:not([class]):hover {
	color: #5bb431;
}

.news-content > *:first-child {
	margin-top: 0;
}

.news-content > *:last-child {
	margin-bottom: 0;
}

.news-content figure {
	margin: 1rem 0;
	padding: .5rem 0;
	text-align: center;
	font-size: 0;
}

.news-content figure img {
	display: inline-block;
}

.news-content figcaption {
	margin-top: .5rem;
	text-align: center;
	font-size: .75rem;
	line-height: 1.6667;
}

.news-content img {
	max-width: 100%;
	width: auto;
}

.news-content p {
	font-size: .875rem;
	line-height: 2;
}

.news-content p:lang(en) {
	line-height: 1.8;
}

.news-content p, .news-content ul, .news-content ol, .news-content dl, .news-content table {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.news-content em, .news-content strong {
	font-weight: bold;
	font-style: normal;
}

.news-content em:lang(en), .news-content strong:lang(en) {
	font-weight: 600;
}

.news-content a:not([class]) {
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color;
}

.news-content a:not([class])[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

.news-content a:not([class])[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class])[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.news-content a:not([class]).ico-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

.no-touchdevice .news-content a:not([class]):hover {
	color: #5bb431;
}

.news-content h2 {
	position: relative;
	margin: 2rem 0 1.5rem;
	padding: 0 0 11px;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.75;
}

.news-content h2:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.news-content h2:before, .news-content h2:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 2px;
	content: "";
}

.news-content h2:before {
	width: 100%;
	background-color: #d7d7d7;
}

.news-content h2:after {
	width: 40px;
	background-color: #5bb431;
}

.news-content h3 {
	margin: 1.5rem 0 1rem;
	font-weight: bold;
	font-size: .875rem;
	line-height: 2;
}

.news-content h3:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8;
}

.news-content iframe {
	display: block;
	margin: 1rem auto;
	max-width: 100%;
}

.news-footer {
	padding-top: 2.5rem;
}

.news-footer .snslst {
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-footer .snslst > li {
	margin-right: 1.5rem;
	padding: 0;
}

.news-footer .snslst .fb_iframe_widget span {
	display: block;
}

.news-companyinfo {
	margin: 2rem 0;
	padding: 2rem 4.5455%;
	background-color: #f0f1f3;
}

.news-companyinfo h3 {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.875;
}

.news-companyinfo p {
	margin: 1rem 0 0;
	font-size: .875rem;
	line-height: 2;
}

.news-companyinfo p:lang(en) {
	line-height: 1.8;
}

.news-contact {
	margin: 2rem 0;
	padding: 2rem 4.5455%;
	border-top: solid 2px #f0f1f3;
	border-bottom: solid 2px #f0f1f3;
}

.news-contact h3 {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.875;
}

.news-contact p {
	margin: 1rem 0 0;
	font-size: .875rem;
	line-height: 2;
}

.news-contact p:lang(en) {
	line-height: 1.8;
}

.newscat-blk {
	position: relative;
	margin: 0 auto 2.5rem;
	padding: 1rem 4.5455%;
	width: 91.6667%;
	border-radius: 5px;
	background-color: #fff;
}

.newscat-blk .newsctg-nav:not(:first-child) {
	margin-top: 1rem;
}

.newscat-blk .newsctg-nav:not(:first-child) {
	margin-top: 1rem;
}

.newscat-blk > *:first-child {
	margin-top: 1.125rem;
}

.newscat-blk > *:last-child {
	margin-bottom: 1.125rem;
}

.page-nav {
	margin: 0 auto;
	width: 75%;
	border-radius: 17px;
	background-color: #303030;
}

.top-header .page-nav {
	margin-top: 2.5rem;
	margin-bottom: 2rem;
}

.page-nav.is-active > .btn a:after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.page-nav.-business {
	width: 100%;
	border-radius: 0;
	background-color: transparent;
}

.page-nav.-business ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	padding: 0;

	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1rem;
}

.page-nav.-business ul:after {
	display: none;
}

.page-nav.-business ul li {
	margin: 0;
}

.page-nav > .btn {
	padding: 0;
	text-align: center;
	font-size: 0;
}

.page-nav > .btn a {
	display: block;
	padding: 0 5.5556%;
	color: #fff;
	font-weight: bold;
	font-size: .875rem;
	line-height: 2.4286;
}

.page-nav > .btn a:link, .page-nav > .btn a:visited, .page-nav > .btn a:focus, .page-nav > .btn a:active {
	text-decoration: none;
}

.page-nav > .btn a:after {
	display: inline-block;
	margin-left: 10px;
	width: 10px;
	height: 10px;
	background: url(../img/ico/arw-white.svg) no-repeat center;
	background-size: contain;
	content: "";
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.page-nav ul {
	position: relative;
	margin: 0;
	padding: 1rem 0;
	list-style: none;
}

.page-nav ul:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 88.8889%;
	height: 2px;
	background-color: #7f7f7f;
	content: "";
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.page-nav ul li {
	margin: 0;
	padding: 0;
	text-align: center;
}

.page-nav ul a {
	display: block;
	padding: 4px 5.5556%;
	color: #fff;
	font-weight: bold;
	font-size: .875rem;
	line-height: 1.5714;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background !important;
}

.page-nav ul a:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.page-nav ul a:link, .page-nav ul a:visited, .page-nav ul a:focus, .page-nav ul a:active {
	text-decoration: none;
}

.no-touchdevice .page-nav ul li:not(.is-active) a:hover {
	background-color: #303030;
}

.top-header .pagelnk-nav {
	margin-top: 2.25rem;
	margin-bottom: 2rem;
}

.pagelnk-nav.-store ul a {
	border: solid 2px rgba(48, 48, 48, .6);
	color: #303030;
}

.pagelnk-nav.-store ul a .arw {
	fill: #303030;
}

.no-touchdevice .pagelnk-nav.-store > ul a:hover {
	border-color: #5bb431;
}

.pagelnk-nav ul {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	margin: 0;
	padding: 0;
	list-style: none;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}

.pagelnk-nav ul li {
	margin: 0 .5rem .5rem;
}

.pagelnk-nav ul a {
	position: relative;
	display: block;
	padding: 7px 2rem 7px 3rem;
	border: solid 2px rgba(240, 241, 243, .6);
	border-radius: 21px;
	color: #fff;
	font-size: .875rem;
	line-height: 1.5714;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: border,background,color !important;
}

.pagelnk-nav ul a:link, .pagelnk-nav ul a:visited, .pagelnk-nav ul a:focus, .pagelnk-nav ul a:active {
	text-decoration: none;
}

.pagelnk-nav ul a .arw {
	position: absolute;
	top: calc(50% - 5px);
	left: 1rem;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: fill !important;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);

	fill: #fff;
}

.no-touchdevice .pagelnk-nav > ul a:hover {
	border-color: #fff;
	background-color: #fff;
	color: #5bb431;
}

.no-touchdevice .pagelnk-nav > ul a:hover .arw {
	fill: #5bb431;
}

.tbl-lg > tbody > tr > th, .tbl-lg > tbody > tr td {
	padding: 1.5rem 8px;
}

.tbl-form {
	padding: 7px 0;
	max-width: 100%;
	width: 100%;
	border: none;
	border-collapse: collapse;
	text-align: center;
}

.tbl-form > tbody > tr > th, .tbl-form > tbody > tr > td, .tbl-form > thead > tr > th, .tbl-form > thead > tr > td {
	padding: 1.5rem 0;
}

.tbl-form > tbody > tr > th, .tbl-form > thead > tr > th {
	padding-right: 3.6585%;
	width: 33.3333%;
	text-align: left;
	font-weight: normal;
}

.tbl-form > tbody > tr > td, .tbl-form > thead > tr > td {
	width: 66.6667%;
}

.tbl-form p {
	margin: 0;
}

.tbl-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	border: none;

	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.tbl-responsive > table {
	margin: 0;
}

.tbl-responsive > table > tbody > tr > th, .tbl-responsive > table > tbody > tr > td, .tbl-responsive > table > thead > tr > th, .tbl-responsive > table > thead > tr > td {
	white-space: nowrap;
}

.tbl-profile {
	border-top: solid 3px #d7d7d7;
	text-align: left;
}

.tbl-profile > thead > tr > th, .tbl-profile > thead > tr > td {
	border-top: none;
	border-right-color: #f0f1f3;
	border-bottom-color: #f0f1f3;
	border-left-color: #f0f1f3;
	background-color: transparent;
	text-align: center;
}

.tbl-profile > tbody > tr > th, .tbl-profile > tbody > tr > td {
	border-color: #f0f1f3;
	background-color: transparent;
}

.tbl-profile > tbody > tr > th {
	width: 30.4878%;
	vertical-align: top;
}

.tbl-profile > tbody > tr > td {
	width: 69.5122%;
}

.tbl-profile .lst-profile {
	margin: 0;
}

.tbl-bd {
	display: block;
}

.tbl-bd > tbody {
	display: block;
}

.tbl-bd > tbody > tr {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	border-bottom: solid 2px #d7d7d7;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}

.tbl-bd > tbody > tr > th, .tbl-bd > tbody > tr > td {
	display: block;
	padding: 0;
	width: 100%;
	text-align: left;
	font-size: .875rem;
	line-height: 1.5714;
}

.tbl-bd > tbody > tr > th {
	padding: 1.5rem 0 0;
	font-weight: bold;
}

.tbl-bd > tbody > tr > td {
	padding: .5rem 0 1.5rem;
}

.tbl-bd > tbody > tr:first-of-type > th {
	padding-top: 0;
}

.top-header, .top-sheader {
	position: relative;
	background-color: #5bb431;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.top-header > .contents, .top-sheader > .contents {
	position: relative;
	z-index: 2;
}

.top-header + .main-contents > *:first-child, .top-sheader + .main-contents > *:first-child {
	margin-top: -4.5rem !important;
}

.top-header .blk-tool, .top-sheader .blk-tool {
	position: absolute;
	top: 0;
	right: 0;
}

.top-header .intro, .top-sheader .intro {
	margin-top: 1.5rem;
	font-weight: bold;
	font-size: .875rem;
	line-height: 2.2857;
}

.top-header {
	padding-top: 3.5rem;
	padding-bottom: 6.5rem;
}

.top-header.-business {
	padding-bottom: 2rem;
}

.top-header > .contents {
	padding-right: 6.9444%;
	padding-left: 6.9444%;
}

.top-header .blk:not(:first-child) {
	margin-top: 3.5rem;
}

.top-header .head .cpy {
	margin: 0;
	color: #fff;
	font-weight: 600;
	font-weight: 600;
	font-size: 2rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.top-header .head .hdl {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	line-height: 2;
}

.top-sheader {
	padding-top: 3rem;
	padding-bottom: 5rem;
}

.top-sheader > .contents {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;

	align-items: center;
}

.business-lead {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.business-lead .desc {
	position: relative;
	z-index: 1;
}

.business-lead .desc p {
	margin: 0;
}

.business-lead .desc p + p {
	margin-top: 1em;
}

.business-lead .desc .btn {
	margin-top: 2rem;
}

.business-lead .desc .btn .btn-prm {
	max-width: 100%;
}

.business-lead .desc > *:last-child {
	margin-bottom: 0;
}

.business-lead .desc.-head .hdl {
	margin-top: 0;
	text-align: left;
	font-weight: bold;
	font-size: 1.375rem;
	line-height: 1.4546;
}

.business-lead .desc.-head .hdl:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
	line-height: 1.5;
}

.business-lead .desc.-head .hdl span {
	display: inline-block;
}

.business-lead .desc.-desc2 {
	margin-top: 16px;
}

.business-lead .img {
	position: relative;
}

.business-lead .img img {
	position: relative;
	z-index: 1;
}

.business-lead.-store .img {
	-ms-flex-order: 1;

	order: 1;
}

.business-lead.-media .img {
	position: relative;
	background-image: linear-gradient(#f0f1f3, #f0f1f3);
	background-position: left bottom;
	background-repeat: repeat-x;
}

.business-lead.-media .img img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	height: auto;
}

.business-concept > .cpy {
	color: #5bb431;
	text-align: center;
	font-size: 1.75rem;
	line-height: 1;
}

.business-concept .business-concept-cpy {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	overflow: hidden;
	margin: 0 auto;
	padding: 1rem;
	width: 100%;
	border: solid 2px #5bb431;
	border-radius: 60px;

	align-items: center;
	justify-content: center;
}

.business-concept .business-concept-cpy > p {
	margin: 0;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.75;
}

.business-concept .business-concept-lst {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: stretch;
	margin: 4rem 0 0;
	padding: 0;
	list-style: none;

	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}

.business-concept .business-concept-lst > li {
	margin: 1.5rem auto 0;
	max-width: 400px;
	width: 100%;
	border: solid 3px #d7d7d7;
	border-radius: 5px;
}

.business-concept .business-concept-lst > li:first-child {
	margin-top: 0;
}

.business-concept .business-concept-lst > li .head {
	position: relative;
	padding: 1rem;
	background-color: #f0f1f3;
	text-align: center;
	font-weight: 700;
}

.business-concept .business-concept-lst > li .head .cpy {
	margin: 0;
	color: #5bb431;
	font-weight: 600;
	font-size: 1rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.5;
}

.business-concept .business-concept-lst > li .head .hdl {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.5;
}

.business-concept .business-concept-lst > li .head .i {
	position: absolute;
	right: 2.5641%;
	bottom: 1rem;
	width: 23.0769%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.business-concept .business-concept-lst > li .contents {
	margin: 0;
	padding: 2rem 1.5rem;
}

.business-concept .business-concept-lst > li .contents ul {
	margin: 0;
	padding: 0 0 0 1em;
	list-style: none;
}

.business-concept .business-concept-lst > li .contents ul > li {
	font-size: .875rem;
	line-height: 2;
}

.business-concept .business-concept-lst > li .contents ul > li:before {
	display: inline-block;
	margin-left: -1em;
	width: 1em;
	content: "\30FB";
}

.business-features .section .hdl-lv3:lang(en) {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.business-features .section .desc {
	margin: 0;
}

.business-features .section .desc:lang(en) {
	font-weight: 400;
	font-family: "Open Sans",sans-serif;
}

.business-features .section .img {
	padding: 0;
	padding-bottom: 26px;
	background-image: linear-gradient(#f0f1f3, #f0f1f3);
	background-position: left bottom;
	background-size: 1px 152px;
	background-repeat: repeat-x;
}

.business-features .section .img img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	width: 104px;
	height: auto;
}

.company-challenge .challenge-lst > .hdl {
	margin-bottom: 2rem;
	color: #5bb431;
	text-align: center;
	font-weight: 600;
	font-size: 1.75rem;
	font-family: "Open Sans",sans-serif;
	line-height: 2.0714;
}

.company-challenge .challenge-lst > .hdl:after {
	display: inline-block;
	margin-left: .5rem;
	width: 40px;
	height: 40px;
	border: solid 3px #5bb431;
	border-radius: 50%;
	content: "11";
	vertical-align: 3px;
	font-size: 1.25rem;
	line-height: 1.7;
}

.company-challenge .challenge-lst .lst {
	margin: 0 auto;
	padding: 0;
	max-width: 400px;
	list-style: none;
}

.company-challenge .challenge-lst li {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	margin: 2.25rem 0 0;
	padding: 1.5rem .5rem;
	min-height: 136px;
	width: 100%;
	border: solid 5px #d7d7d7;
	border-radius: 4px;
	background-color: #fff;

	justify-content: center;
	align-items: center;
}

.company-challenge .challenge-lst .i {
	position: absolute;
	top: -.5rem;
	left: -1rem;
	display: block;
	width: 45px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.company-challenge .challenge-lst .i:before {
	display: block;
	padding: 109.6783%;
	content: "";
}

.company-challenge .challenge-lst .i img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.company-challenge .challenge-lst .cpy {
	color: #0f0f0f;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.625;
}

.no-touchdevice .keyword-nav a:hover {
	border-color: #5bb431;
}

.no-touchdevice:not(.is-ie) .keyword-nav a:hover .ico-pwr .anm circle {
	-webkit-animation-name: ccl-sml;
	animation-name: ccl-sml;
}

.no-touchdevice:not(.is-ie) .keyword-nav a:hover .ico-pwr:after {
	transition: none;
	-webkit-animation-name: lne;
	animation-name: lne;
}

.company-challenge .challenge-lst .ico-pwr {
	position: relative;
	position: absolute;
	right: .5rem;
	bottom: .5rem;
	display: block;
	width: 16px;
	height: 16px;
}

.company-challenge .challenge-lst .ico-pwr:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 50%;
	display: block;
	height: 2px;
	content: "";
}

.company-challenge .challenge-lst .ico-pwr:after {
	background-color: #5bb431;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	animation-timing-function: cubic-bezier(.86, 0, .07, 1);
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.company-challenge .challenge-lst .ico-pwr svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.company-challenge .challenge-lst .ico-pwr .anm circle {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;

	stroke: #5bb431;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.company-challenge .challenge-lst .ico-pwr circle {
	fill: transparent;
}

.company-challenge .challenge-lst .ico-pwr:after {
	width: 22px;
}

.company-challenge .challenge-lst .ico-pwr circle {
	stroke-width: 3;
}

.company-challenge .challenge-lst .ico-pwr .anm circle {
	stroke-dasharray: 51 51;
}

.company-info .img img {
	margin-bottom: 1.5rem;
	vertical-align: top;
}

.company-info .desc p:first-child {
	margin-top: 0;
}

.company-philosophy .contents {
	margin-top: 0;
}

.company-philosophy .contents > .hdl {
	margin: 0 0 .25rem;
	color: #5bb431;
	text-align: center;
	font-weight: 600;
	font-size: 2.125rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.4706;
}

.company-philosophy .contents > .cpy {
	margin: 0 0 1.5rem;
	text-align: center;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.75;
}

.contact-corporate .head {
	overflow: hidden;
}

.contact-corporate .head .hdl {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.5;
}

.contact-corporate .contact-link {
	margin: 0;
	font-weight: 700;
	font-size: .75rem;
	line-height: 2.1667;
}

.contact-corporate .contact-link a {
	text-decoration: none;
}

.index-business > .header .cpy {
	margin-bottom: 4px;
	color: #acacb2;
	font-weight: 700;
	font-size: .8125rem;
	line-height: 2;
}

.index-business > .header .hdl {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-weight: 600;
	font-size: 2.375rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-business > .intro {
	font-size: .875rem;
	line-height: 26 /14;
}

.index-business > .intro:lang(en) {
	font-weight: 400;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8;
}

.index-business-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	list-style: none;
	counter-reset: services;
}

.index-business-list > .item {
	position: relative;
	padding-top: 44px;
	padding-bottom: 48px;
	counter-increment: services;
	text-align: center;
}

.index-business-list > .item::before {
	position: absolute;
	top: 16px;
	left: 0;
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	padding-bottom: 2px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #0f0f0f;
	color: #fff;
	content: counter(services);
	text-align: center;
	font-weight: 600;
	font-weight: 600;
	font-size: 1rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;

	-ms-flex-line-pack: center;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.index-business-list > .item .subject {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-weight: 600;
	font-size: 1.625rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-business-list > .item .subject + .cpy {
	margin-top: 10px;
}

.index-business-list > .item .subject + .example {
	margin-top: 24px;
}

.index-business-list > .item .cpy {
	margin: 0;
	font-weight: 600;
	font-weight: 600;
	font-size: 1.625rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-business-list > .item .cpy + .example {
	margin-top: 24px;
}

.index-business-list > .item .example {
	margin: 0 0 32px;
}

.index-business-list > .item .example img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	max-width: 184px;

	aspect-ratio: 1;
}

.index-business-list > .item .example img + figcaption {
	margin-top: 20px;
}

.index-business-list > .item .example figcaption {
	font-size: .875rem;
	line-height: 1.5;
}

.index-business-list > .item .btn-prm {
	margin: 0;
	border-color: #0f0f0f;
	background-color: #0f0f0f;
}

.index-business-list > .item .btn-prm:hover {
	color: #0f0f0f;
}

.index-business-list > .item .btn-prm:hover .ico-pwr.-sml::after {
	background-color: #0f0f0f;
}

.index-business-list > .item .btn-prm:hover .ico-pwr.-sml .anm circle {
	stroke: #0f0f0f;
}

.index-business-list > .item .btn-prm[target="_blank"] .ico-pwr {
	display: none;
}

.index-business-list > .item .btn-prm[target="_blank"] span:not(.ico-pwr)::after {
	position: absolute;
	top: 50%;
	right: 27px;
	margin-top: -8px;
	width: 16px;
	height: 16px;
}

.index-business-list > .item .btn-prm[target="_blank"]:hover span:not(.ico-pwr)::after {
	background-image: url(../img/ico/blank.svg);
}

.index-chapter {
	padding: 2.5rem 0 3rem;
}

.index-chapter > div {
	margin: 0 auto;
	width: 88.8889%;
}

.index-chapter .btn-prm {
	margin-right: auto;
	margin-left: auto;
}

.index-chapter-head {
	margin-bottom: 2rem;
	text-align: center;
}

.index-chapter-head .hdl {
	margin: 0;
	color: #0f0f0f;
	font-weight: bold;
	font-size: 1rem;
	line-height: 2;
}

.index-chapter-head .cpy {
	margin: 0;
	color: #5bb431;
	font-weight: 600;
	font-size: 2.25rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.1667;
}

.index-chapter-hdl2 {
	margin: 0 auto;
	text-align: center;
	font-size: 2rem;
	line-height: 1.5;
}

.index-chapter-hdl3 {
	margin: 0 auto;
	text-align: center;
	font-size: 1.5625rem;
	line-height: 1.52;
}

.index-chapter-hdl3.-primary {
	color: #5bb431;
}

.index-company {
	position: relative;
	padding-top: 64px;
}

.index-company > .header {
	text-align: center;
}

.index-company > .header .cpy {
	color: #acacb2;
	font-weight: bold;
	font-size: .8125rem;
	line-height: 1;
}

.index-company > .header .cpy + .hdl {
	margin-top: 4px;
}

.index-company > .header .hdl {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 2.375rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-company > .header + * {
	margin-top: 40px;
}

.index-company > .body .tbl-bd .head:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.index-company > .body .tbl-bd .data:lang(en) {
	font-weight: 400;
	font-family: "Open Sans",sans-serif;
}

.index-company > .body .dlst-flex.-officer dt {
	width: 180px;
}

.index-company > .body .dlst-flex.-officer dt:not(:first-child) {
	margin-top: 0;
}

.index-company > .body .dlst-flex.-officer dd {
	width: calc(100% - 180px);
}

.index-company > .body .officer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0;

	row-gap: .5em;
}

.index-company > .body .officer .item {
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: .5em;
	-moz-column-gap: .5em;
	column-gap: .5em;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.index-company > .body .officer .item dt {
	font-weight: bold;
}

.index-company > .body .officer .item dt:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.index-company > .body .officer .item dd {
	margin: 0;
	padding: 0;
}

.index-company > .body .officer .item dd:lang(en) {
	font-weight: 400;
	font-family: "Open Sans",sans-serif;
}

.index-company .box-map {
	margin-top: 64px;
}

.index-contact {
	position: relative;
	padding-top: 64px;
}

.index-contact > .header {
	text-align: center;
}

.index-contact > .header .cpy {
	color: #acacb2;
	font-weight: bold;
	font-size: .8125rem;
	line-height: 1;
}

.index-contact > .header .cpy + .hdl {
	margin-top: 4px;
}

.index-contact > .header .hdl {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 2.375rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-contact > .header + * {
	margin-top: 40px;
}

.index-contact-lst {
	margin: 0;
	padding: 0;
	list-style: none;
}

.index-contact-lst .item a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	overflow: hidden;
	color: #fff;
	text-decoration: none;

	-ms-flex-line-pack: center;
	align-content: center;
	align-items: center;
	justify-content: center;
	aspect-ratio: 375 / 195;
}

.index-contact-lst .item a::before {
	position: absolute;
	z-index: -1;
	display: block;
	margin: auto;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
	transition: scale .3s ease;

	inset: 0;
}

.index-contact-lst .item a[target="_blank"]::after {
	position: absolute;
	right: 6px;
	bottom: 6px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../img/ico/blank-white.svg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}

.index-contact-lst .item a:hover::before {
	scale: 1.05;
}

.index-contact-lst .item .cpy {
	margin: 0;
	font-weight: 600;
	font-weight: 600;
	font-size: .75rem;
	font-family: "Open Sans",sans-serif;
	line-height: 20 / 12;
}

.index-contact-lst .item .hdl {
	margin: 0;
	font-weight: bold;
	font-size: 1.375rem;
	line-height: 33 / 22;
}

.index-contact-lst .item .hdl:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.index-contact-lst .item.-business a::before {
	background-image: url(../img/contact_business.jpg);
}

.index-contact-lst .item.-recruit a::before {
	background-image: url(../img/contact_recruit.jpg);
}

.index-head .cpy {
	margin: 0;
	color: #adadb3;
	font-size: .8125rem;
	line-height: 1;
}

.index-head .hdl {
	margin: .25rem 0 0 0;
	color: #333;
	font-weight: 600;
	font-size: 2.375rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-hero {
	position: relative;
	overflow: hidden;
	margin: 10px;
	height: 540px;
}

.index-hero .splide__track {
	overflow: visible !important;
	width: 540px;
}

.index-hero-toggle {
	position: absolute;
	right: 16px;
	bottom: 16px;
	padding: 0;
	width: 20px;
	height: 20px;
	border: none;
	border: 1px solid #0f0f0f;
	border-radius: 50%;
	background-color: #0f0f0f;
	color: #fff;
	cursor: pointer;
	transition: color .3s ease,background-color .3s ease;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.index-hero-toggle::before, .index-hero-toggle::after {
	position: absolute;
	display: block;
	margin: auto;
	width: 40%;
	height: 40%;
	background-color: currentColor;
	content: "";
	transition: opacity .3s ease,-webkit-clip-path .3s ease;
	transition: opacity .3s ease,clip-path .3s ease;
	transition: opacity .3s ease,clip-path .3s ease,-webkit-clip-path .3s ease;

	inset: 0;
}

.index-hero-toggle::before {
	opacity: 1;

	-webkit-clip-path: polygon(20% 6.25%, 95% 50%, 95% 50%, 20% 93.75%);
	clip-path: polygon(20% 6.25%, 95% 50%, 95% 50%, 20% 93.75%);
}

.index-hero-toggle::after {
	opacity: 0;

	-webkit-clip-path: polygon(37.5% 100%, 37.5% 0, 12.5% 0, 12.5% 100%, 87.5% 100%, 87.5% 0, 62.5% 0, 62.5% 100%);
	clip-path: polygon(37.5% 100%, 37.5% 0, 12.5% 0, 12.5% 100%, 87.5% 100%, 87.5% 0, 62.5% 0, 62.5% 100%);
}

.index-hero-toggle[data-paused="false"]::before {
	opacity: 0;
}

.index-hero-toggle[data-paused="false"]::after {
	opacity: 1;
}

.index-hero-toggle:hover {
	background-color: #fff;
	color: #0f0f0f;
}

.index-hero-link {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 16px 20px 6px 10px;
	background-color: #fff;
}

.index-hero-link > a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	text-decoration: none;

	row-gap: 8px;
}

.index-hero-link > a:hover .text {
	color: #0f0f0f;
}

.index-hero-link > a:hover .text::after {
	-webkit-animation: scrollDown .6s infinite;
	animation: scrollDown .6s infinite;
}

.index-hero-link .copy {
	font-weight: 600;
	font-weight: 600;
	font-size: 1.5rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.2;
}

.index-hero-link .text {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	color: #5bb431;
	font-weight: 700;
	font-size: .875rem;
	line-height: 1.5;
	transition: color .3s ease;

	align-items: center;
	gap: 6px;
}

.index-hero-link .text:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.index-hero-link .text::after {
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../img/ico/arw-primary.svg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";

	rotate: 90deg;
}

@-webkit-keyframes scrollDown {
	0% {
		translate: 0 0;
	}
	50% {
		translate: 0 10%;
	}
	100% {
		translate: 0 0;
	}
}

@keyframes scrollDown {
	0% {
		translate: 0 0;
	}
	50% {
		translate: 0 10%;
	}
	100% {
		translate: 0 0;
	}
}

.index-links {
	padding: 56px 20px 64px;
	background-color: #f0f1f3;
}

.index-links > .list {
	margin: 0 auto;
}

.index-links > .list .item dt {
	text-align: center;
	font-weight: bold;
	font-size: .875rem;
	line-height: 1.5;
}

.index-links > .list .item dt:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.index-links > .list .item dt + dd {
	margin-top: 16px;
}

.index-links > .list .item dd {
	margin: 0;
	padding: 0;
}

.index-links > .list .item dd a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	width: auto;
	height: 88px;
	border: 4px solid #d7d7d7;
	background-color: #fff;
	transition: border-color .3s ease;

	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	justify-content: center;
}

.index-links > .list .item dd a:hover {
	border-color: #0f0f0f;
}

.index-links > .list .item dd a img {
	width: auto;
	height: 19px;
}

.index-links > .list .item dd a[target="_blank"]::after {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 16px;
	height: 16px;
	background-image: url(../img/ico/blank-primary.svg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}

.index-links > .list .item dd a:hover::after {
	background-image: url(../img/ico/blank.svg);
}

.index-message {
	padding: 64px 20px;
}

.index-message > .header .cpy {
	color: #acacb2;
	font-weight: bold;
	font-size: .8125rem;
	line-height: 1;
}

.index-message > .header .cpy + .hdl {
	margin-top: 4px;
}

.index-message > .header .hdl {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-weight: 600;
	font-size: 2.375rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-message > .photo {
	margin: 0;
}

.index-message > .photo img {
	display: block;
	width: 100%;
	height: auto;
}

.index-message > .body p {
	font-size: .875rem;
	line-height: 2;
}

.index-message > .body p:lang(en) {
	font-weight: 400;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8;
}

.index-message > .body p + p {
	margin-top: 1rem;
}

.index-message > .body p.signature {
	margin-top: 24px;
	text-align: right;
}

.index-news {
	padding: 56px 16px 64px;
	background-color: #f0f1f3;
}

.index-news .header .cpy {
	color: #acacb2;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.5;
}

.index-news .header .hdl {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-weight: 600;
	font-size: 2.25rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-news .header .btn a {
	display: -ms-inline-flexbox;
	display: inline-flex;
	color: #5bb431;
}

.index-news .header + * {
	margin-top: 48px;
}

.index-news .btn .lnk-prm {
	margin: 0 auto;
}

.index-news .lst-file {
	background-color: #fff;
}

.index-philosophy {
	background-color: #f0f1f3;
}

.index-philosophy > .header {
	text-align: center;
}

.index-philosophy > .header .cpy {
	color: #acacb2;
	font-weight: bold;
	font-size: .8125rem;
	line-height: 1;
}

.index-philosophy > .header .cpy + .hdl {
	margin-top: 4px;
}

.index-philosophy > .header .hdl {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 2.375rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-philosophy > .header + * {
	margin-top: 40px;
}

.index-philosophy .inner {
	padding: 56px 20px 64px;
	background-color: #fff;
}

.index-philosophy .section {
	text-align: center;
}

.index-philosophy .section + .section {
	margin-top: 44px;
}

.index-philosophy .section .hdl {
	margin: 0 auto 22px;
	padding-top: 5px;
	padding-right: 16px;
	padding-bottom: 5px;
	padding-left: 16px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 100vmax;
	background-color: #000;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-weight: 600;
	font-size: 1rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
}

.index-philosophy .section .subsection .lede {
	margin: 0;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.5;
}

.index-philosophy .section .subsection .lede.-sml {
	font-size: 1.125rem;
}

.index-philosophy .section .subsection .lede:lang(en) {
	font-weight: 600;
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

.index-philosophy .section .subsection .lede span {
	display: inline-block;
}

.index-philosophy .section .subsection .lede + * {
	margin-top: 12px;
}

.index-philosophy .section .subsection .desc {
	font-size: .8125rem;
	line-height: 2;
}

.index-philosophy .section .subsection .desc:lang(en) {
	margin-right: auto;
	margin-left: auto;
	font-weight: 400;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8;
}

.index-philosophy .section .subsection + .subsection {
	margin-top: 28px;
}

.cmn-header {
	position: fixed;
	top: 0;
	left: 0;
}

._bgc-white {
	background-color: #fff !important;
}

._bgc-black {
	background-color: #000 !important;
}

._bgc-text {
	background-color: #0f0f0f !important;
}

._bgc-istyle {
	background-color: #5bb431 !important;
}

._bgc-primary {
	background-color: #5bb431 !important;
}

._bgc-cosmestore {
	background-color: #4eb691 !important;
}

._bgc-secondary {
	background-color: #716658 !important;
}

._bgc-gray {
	background-color: #d7d7d7 !important;
}

._bgc-text-gray {
	background-color: #acacb2 !important;
}

._bgc-light-gray {
	background-color: #f0f1f3 !important;
}

._bgc-dark-gray {
	background-color: #7f7f7f !important;
}

._bgc-black-gray {
	background-color: #303030 !important;
}

._bgc-red {
	background-color: #db2a50 !important;
}

._bgc-blue {
	background-color: #7abfde !important;
}

._bgc-brown {
	background-color: #4f3009 !important;
}

._bgc-facebook {
	background-color: #305097 !important;
}

._bgc-twitter {
	background-color: #00aced !important;
}

._bgc-instagram {
	background-color: #d93175 !important;
}

._bgc-googleplus {
	background-color: #dc4e41 !important;
}

._bgc-pintarest {
	background-color: #bd081c !important;
}

._bgc-line {
	background-color: #00b900 !important;
}

._bgc-transparent {
	background-color: transparent !important;
}

._bgp-center {
	background-position: center;
}

._bgp-top {
	background-position: top;
}

._bgp-bottom {
	background-position: bottom;
}

._bgp-left {
	background-position: left;
}

._bgp-right {
	background-position: right;
}

._bgp-tl {
	background-position: top left;
}

._bgp-tr {
	background-position: top right;
}

._bgp-bl {
	background-position: bottom left;
}

._bgp-br {
	background-position: bottom right;
}

._bdc-white {
	border-color: #fff;
}

._bdc-black {
	border-color: #000;
}

._bdc-text {
	border-color: #0f0f0f;
}

._bdc-istyle {
	border-color: #5bb431;
}

._bdc-primary {
	border-color: #5bb431;
}

._bdc-cosmestore {
	border-color: #4eb691;
}

._bdc-secondary {
	border-color: #716658;
}

._bdc-gray {
	border-color: #d7d7d7;
}

._bdc-text-gray {
	border-color: #acacb2;
}

._bdc-light-gray {
	border-color: #f0f1f3;
}

._bdc-dark-gray {
	border-color: #7f7f7f;
}

._bdc-black-gray {
	border-color: #303030;
}

._bdc-red {
	border-color: #db2a50;
}

._bdc-blue {
	border-color: #7abfde;
}

._bdc-brown {
	border-color: #4f3009;
}

._bdc-facebook {
	border-color: #305097;
}

._bdc-twitter {
	border-color: #00aced;
}

._bdc-instagram {
	border-color: #d93175;
}

._bdc-googleplus {
	border-color: #dc4e41;
}

._bdc-pintarest {
	border-color: #bd081c;
}

._bdc-line {
	border-color: #00b900;
}

._bd0 {
	border: none !important;
}

._bdt0 {
	border-top: none !important;
}

._bdb0 {
	border-bottom: none !important;
}

._bdr0 {
	border-right: none !important;
}

._bdl0 {
	border-left: none !important;
}

._bd0 {
	border-width: 0 !important;
	border-style: solid;
}

._bdt0 {
	border-top-width: 0 !important;
	border-top-style: solid;
}

._bdb0 {
	border-top-width: 0 !important;
	border-top-style: solid;
}

._bdl0 {
	border-top-width: 0 !important;
	border-top-style: solid;
}

._bdr0 {
	border-top-width: 0 !important;
	border-top-style: solid;
}

._bdrd0 {
	overflow: hidden;
	border-radius: 0 !important;
}

._bd1 {
	border-width: 1px !important;
	border-style: solid;
}

._bdt1 {
	border-top-width: 1px !important;
	border-top-style: solid;
}

._bdb1 {
	border-top-width: 1px !important;
	border-top-style: solid;
}

._bdl1 {
	border-top-width: 1px !important;
	border-top-style: solid;
}

._bdr1 {
	border-top-width: 1px !important;
	border-top-style: solid;
}

._bdrd1 {
	overflow: hidden;
	border-radius: 1px !important;
}

._bd2 {
	border-width: 2px !important;
	border-style: solid;
}

._bdt2 {
	border-top-width: 2px !important;
	border-top-style: solid;
}

._bdb2 {
	border-top-width: 2px !important;
	border-top-style: solid;
}

._bdl2 {
	border-top-width: 2px !important;
	border-top-style: solid;
}

._bdr2 {
	border-top-width: 2px !important;
	border-top-style: solid;
}

._bdrd2 {
	overflow: hidden;
	border-radius: 2px !important;
}

._bd3 {
	border-width: 3px !important;
	border-style: solid;
}

._bdt3 {
	border-top-width: 3px !important;
	border-top-style: solid;
}

._bdb3 {
	border-top-width: 3px !important;
	border-top-style: solid;
}

._bdl3 {
	border-top-width: 3px !important;
	border-top-style: solid;
}

._bdr3 {
	border-top-width: 3px !important;
	border-top-style: solid;
}

._bdrd3 {
	overflow: hidden;
	border-radius: 3px !important;
}

._bd4 {
	border-width: 4px !important;
	border-style: solid;
}

._bdt4 {
	border-top-width: 4px !important;
	border-top-style: solid;
}

._bdb4 {
	border-top-width: 4px !important;
	border-top-style: solid;
}

._bdl4 {
	border-top-width: 4px !important;
	border-top-style: solid;
}

._bdr4 {
	border-top-width: 4px !important;
	border-top-style: solid;
}

._bdrd4 {
	overflow: hidden;
	border-radius: 4px !important;
}

._bd5 {
	border-width: 5px !important;
	border-style: solid;
}

._bdt5 {
	border-top-width: 5px !important;
	border-top-style: solid;
}

._bdb5 {
	border-top-width: 5px !important;
	border-top-style: solid;
}

._bdl5 {
	border-top-width: 5px !important;
	border-top-style: solid;
}

._bdr5 {
	border-top-width: 5px !important;
	border-top-style: solid;
}

._bdrd5 {
	overflow: hidden;
	border-radius: 5px !important;
}

._bd6 {
	border-width: 6px !important;
	border-style: solid;
}

._bdt6 {
	border-top-width: 6px !important;
	border-top-style: solid;
}

._bdb6 {
	border-top-width: 6px !important;
	border-top-style: solid;
}

._bdl6 {
	border-top-width: 6px !important;
	border-top-style: solid;
}

._bdr6 {
	border-top-width: 6px !important;
	border-top-style: solid;
}

._bdrd6 {
	overflow: hidden;
	border-radius: 6px !important;
}

._bd7 {
	border-width: 7px !important;
	border-style: solid;
}

._bdt7 {
	border-top-width: 7px !important;
	border-top-style: solid;
}

._bdb7 {
	border-top-width: 7px !important;
	border-top-style: solid;
}

._bdl7 {
	border-top-width: 7px !important;
	border-top-style: solid;
}

._bdr7 {
	border-top-width: 7px !important;
	border-top-style: solid;
}

._bdrd7 {
	overflow: hidden;
	border-radius: 7px !important;
}

._bd8 {
	border-width: 8px !important;
	border-style: solid;
}

._bdt8 {
	border-top-width: 8px !important;
	border-top-style: solid;
}

._bdb8 {
	border-top-width: 8px !important;
	border-top-style: solid;
}

._bdl8 {
	border-top-width: 8px !important;
	border-top-style: solid;
}

._bdr8 {
	border-top-width: 8px !important;
	border-top-style: solid;
}

._bdrd8 {
	overflow: hidden;
	border-radius: 8px !important;
}

._bd9 {
	border-width: 9px !important;
	border-style: solid;
}

._bdt9 {
	border-top-width: 9px !important;
	border-top-style: solid;
}

._bdb9 {
	border-top-width: 9px !important;
	border-top-style: solid;
}

._bdl9 {
	border-top-width: 9px !important;
	border-top-style: solid;
}

._bdr9 {
	border-top-width: 9px !important;
	border-top-style: solid;
}

._bdrd9 {
	overflow: hidden;
	border-radius: 9px !important;
}

._bd10 {
	border-width: 10px !important;
	border-style: solid;
}

._bdt10 {
	border-top-width: 10px !important;
	border-top-style: solid;
}

._bdb10 {
	border-top-width: 10px !important;
	border-top-style: solid;
}

._bdl10 {
	border-top-width: 10px !important;
	border-top-style: solid;
}

._bdr10 {
	border-top-width: 10px !important;
	border-top-style: solid;
}

._bdrd10 {
	overflow: hidden;
	border-radius: 10px !important;
}

._bd11 {
	border-width: 11px !important;
	border-style: solid;
}

._bdt11 {
	border-top-width: 11px !important;
	border-top-style: solid;
}

._bdb11 {
	border-top-width: 11px !important;
	border-top-style: solid;
}

._bdl11 {
	border-top-width: 11px !important;
	border-top-style: solid;
}

._bdr11 {
	border-top-width: 11px !important;
	border-top-style: solid;
}

._bdrd11 {
	overflow: hidden;
	border-radius: 11px !important;
}

._bd12 {
	border-width: 12px !important;
	border-style: solid;
}

._bdt12 {
	border-top-width: 12px !important;
	border-top-style: solid;
}

._bdb12 {
	border-top-width: 12px !important;
	border-top-style: solid;
}

._bdl12 {
	border-top-width: 12px !important;
	border-top-style: solid;
}

._bdr12 {
	border-top-width: 12px !important;
	border-top-style: solid;
}

._bdrd12 {
	overflow: hidden;
	border-radius: 12px !important;
}

._bd13 {
	border-width: 13px !important;
	border-style: solid;
}

._bdt13 {
	border-top-width: 13px !important;
	border-top-style: solid;
}

._bdb13 {
	border-top-width: 13px !important;
	border-top-style: solid;
}

._bdl13 {
	border-top-width: 13px !important;
	border-top-style: solid;
}

._bdr13 {
	border-top-width: 13px !important;
	border-top-style: solid;
}

._bdrd13 {
	overflow: hidden;
	border-radius: 13px !important;
}

._bd14 {
	border-width: 14px !important;
	border-style: solid;
}

._bdt14 {
	border-top-width: 14px !important;
	border-top-style: solid;
}

._bdb14 {
	border-top-width: 14px !important;
	border-top-style: solid;
}

._bdl14 {
	border-top-width: 14px !important;
	border-top-style: solid;
}

._bdr14 {
	border-top-width: 14px !important;
	border-top-style: solid;
}

._bdrd14 {
	overflow: hidden;
	border-radius: 14px !important;
}

._bd15 {
	border-width: 15px !important;
	border-style: solid;
}

._bdt15 {
	border-top-width: 15px !important;
	border-top-style: solid;
}

._bdb15 {
	border-top-width: 15px !important;
	border-top-style: solid;
}

._bdl15 {
	border-top-width: 15px !important;
	border-top-style: solid;
}

._bdr15 {
	border-top-width: 15px !important;
	border-top-style: solid;
}

._bdrd15 {
	overflow: hidden;
	border-radius: 15px !important;
}

._bd16 {
	border-width: 16px !important;
	border-style: solid;
}

._bdt16 {
	border-top-width: 16px !important;
	border-top-style: solid;
}

._bdb16 {
	border-top-width: 16px !important;
	border-top-style: solid;
}

._bdl16 {
	border-top-width: 16px !important;
	border-top-style: solid;
}

._bdr16 {
	border-top-width: 16px !important;
	border-top-style: solid;
}

._bdrd16 {
	overflow: hidden;
	border-radius: 16px !important;
}

._bd17 {
	border-width: 17px !important;
	border-style: solid;
}

._bdt17 {
	border-top-width: 17px !important;
	border-top-style: solid;
}

._bdb17 {
	border-top-width: 17px !important;
	border-top-style: solid;
}

._bdl17 {
	border-top-width: 17px !important;
	border-top-style: solid;
}

._bdr17 {
	border-top-width: 17px !important;
	border-top-style: solid;
}

._bdrd17 {
	overflow: hidden;
	border-radius: 17px !important;
}

._bd18 {
	border-width: 18px !important;
	border-style: solid;
}

._bdt18 {
	border-top-width: 18px !important;
	border-top-style: solid;
}

._bdb18 {
	border-top-width: 18px !important;
	border-top-style: solid;
}

._bdl18 {
	border-top-width: 18px !important;
	border-top-style: solid;
}

._bdr18 {
	border-top-width: 18px !important;
	border-top-style: solid;
}

._bdrd18 {
	overflow: hidden;
	border-radius: 18px !important;
}

._bd19 {
	border-width: 19px !important;
	border-style: solid;
}

._bdt19 {
	border-top-width: 19px !important;
	border-top-style: solid;
}

._bdb19 {
	border-top-width: 19px !important;
	border-top-style: solid;
}

._bdl19 {
	border-top-width: 19px !important;
	border-top-style: solid;
}

._bdr19 {
	border-top-width: 19px !important;
	border-top-style: solid;
}

._bdrd19 {
	overflow: hidden;
	border-radius: 19px !important;
}

._bd20 {
	border-width: 20px !important;
	border-style: solid;
}

._bdt20 {
	border-top-width: 20px !important;
	border-top-style: solid;
}

._bdb20 {
	border-top-width: 20px !important;
	border-top-style: solid;
}

._bdl20 {
	border-top-width: 20px !important;
	border-top-style: solid;
}

._bdr20 {
	border-top-width: 20px !important;
	border-top-style: solid;
}

._bdrd20 {
	overflow: hidden;
	border-radius: 20px !important;
}

._bd21 {
	border-width: 21px !important;
	border-style: solid;
}

._bdt21 {
	border-top-width: 21px !important;
	border-top-style: solid;
}

._bdb21 {
	border-top-width: 21px !important;
	border-top-style: solid;
}

._bdl21 {
	border-top-width: 21px !important;
	border-top-style: solid;
}

._bdr21 {
	border-top-width: 21px !important;
	border-top-style: solid;
}

._bdrd21 {
	overflow: hidden;
	border-radius: 21px !important;
}

._bd22 {
	border-width: 22px !important;
	border-style: solid;
}

._bdt22 {
	border-top-width: 22px !important;
	border-top-style: solid;
}

._bdb22 {
	border-top-width: 22px !important;
	border-top-style: solid;
}

._bdl22 {
	border-top-width: 22px !important;
	border-top-style: solid;
}

._bdr22 {
	border-top-width: 22px !important;
	border-top-style: solid;
}

._bdrd22 {
	overflow: hidden;
	border-radius: 22px !important;
}

._bd23 {
	border-width: 23px !important;
	border-style: solid;
}

._bdt23 {
	border-top-width: 23px !important;
	border-top-style: solid;
}

._bdb23 {
	border-top-width: 23px !important;
	border-top-style: solid;
}

._bdl23 {
	border-top-width: 23px !important;
	border-top-style: solid;
}

._bdr23 {
	border-top-width: 23px !important;
	border-top-style: solid;
}

._bdrd23 {
	overflow: hidden;
	border-radius: 23px !important;
}

._bd24 {
	border-width: 24px !important;
	border-style: solid;
}

._bdt24 {
	border-top-width: 24px !important;
	border-top-style: solid;
}

._bdb24 {
	border-top-width: 24px !important;
	border-top-style: solid;
}

._bdl24 {
	border-top-width: 24px !important;
	border-top-style: solid;
}

._bdr24 {
	border-top-width: 24px !important;
	border-top-style: solid;
}

._bdrd24 {
	overflow: hidden;
	border-radius: 24px !important;
}

._bd25 {
	border-width: 25px !important;
	border-style: solid;
}

._bdt25 {
	border-top-width: 25px !important;
	border-top-style: solid;
}

._bdb25 {
	border-top-width: 25px !important;
	border-top-style: solid;
}

._bdl25 {
	border-top-width: 25px !important;
	border-top-style: solid;
}

._bdr25 {
	border-top-width: 25px !important;
	border-top-style: solid;
}

._bdrd25 {
	overflow: hidden;
	border-radius: 25px !important;
}

._bd26 {
	border-width: 26px !important;
	border-style: solid;
}

._bdt26 {
	border-top-width: 26px !important;
	border-top-style: solid;
}

._bdb26 {
	border-top-width: 26px !important;
	border-top-style: solid;
}

._bdl26 {
	border-top-width: 26px !important;
	border-top-style: solid;
}

._bdr26 {
	border-top-width: 26px !important;
	border-top-style: solid;
}

._bdrd26 {
	overflow: hidden;
	border-radius: 26px !important;
}

._bd27 {
	border-width: 27px !important;
	border-style: solid;
}

._bdt27 {
	border-top-width: 27px !important;
	border-top-style: solid;
}

._bdb27 {
	border-top-width: 27px !important;
	border-top-style: solid;
}

._bdl27 {
	border-top-width: 27px !important;
	border-top-style: solid;
}

._bdr27 {
	border-top-width: 27px !important;
	border-top-style: solid;
}

._bdrd27 {
	overflow: hidden;
	border-radius: 27px !important;
}

._bd28 {
	border-width: 28px !important;
	border-style: solid;
}

._bdt28 {
	border-top-width: 28px !important;
	border-top-style: solid;
}

._bdb28 {
	border-top-width: 28px !important;
	border-top-style: solid;
}

._bdl28 {
	border-top-width: 28px !important;
	border-top-style: solid;
}

._bdr28 {
	border-top-width: 28px !important;
	border-top-style: solid;
}

._bdrd28 {
	overflow: hidden;
	border-radius: 28px !important;
}

._bd29 {
	border-width: 29px !important;
	border-style: solid;
}

._bdt29 {
	border-top-width: 29px !important;
	border-top-style: solid;
}

._bdb29 {
	border-top-width: 29px !important;
	border-top-style: solid;
}

._bdl29 {
	border-top-width: 29px !important;
	border-top-style: solid;
}

._bdr29 {
	border-top-width: 29px !important;
	border-top-style: solid;
}

._bdrd29 {
	overflow: hidden;
	border-radius: 29px !important;
}

._bd30 {
	border-width: 30px !important;
	border-style: solid;
}

._bdt30 {
	border-top-width: 30px !important;
	border-top-style: solid;
}

._bdb30 {
	border-top-width: 30px !important;
	border-top-style: solid;
}

._bdl30 {
	border-top-width: 30px !important;
	border-top-style: solid;
}

._bdr30 {
	border-top-width: 30px !important;
	border-top-style: solid;
}

._bdrd30 {
	overflow: hidden;
	border-radius: 30px !important;
}

._bd31 {
	border-width: 31px !important;
	border-style: solid;
}

._bdt31 {
	border-top-width: 31px !important;
	border-top-style: solid;
}

._bdb31 {
	border-top-width: 31px !important;
	border-top-style: solid;
}

._bdl31 {
	border-top-width: 31px !important;
	border-top-style: solid;
}

._bdr31 {
	border-top-width: 31px !important;
	border-top-style: solid;
}

._bdrd31 {
	overflow: hidden;
	border-radius: 31px !important;
}

._bd32 {
	border-width: 32px !important;
	border-style: solid;
}

._bdt32 {
	border-top-width: 32px !important;
	border-top-style: solid;
}

._bdb32 {
	border-top-width: 32px !important;
	border-top-style: solid;
}

._bdl32 {
	border-top-width: 32px !important;
	border-top-style: solid;
}

._bdr32 {
	border-top-width: 32px !important;
	border-top-style: solid;
}

._bdrd32 {
	overflow: hidden;
	border-radius: 32px !important;
}

._block {
	display: block !important;
}

._inline {
	display: inline !important;
}

._inline-block {
	display: inline-block !important;
}

._table {
	display: table !important;
}

._table-row {
	display: table-row !important;
}

._table-cell {
	display: table-cell !important;
}

._fx {
	display: -ms-flexbox !important;
	display: flex !important;
}

._fx-rev {
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

._fx-h {
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

._fx-h-rev {
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

._fx-l {
	-ms-flex-pack: start !important;

	justify-content: flex-start !important;
}

._fx-r {
	-ms-flex-pack: end !important;

	justify-content: flex-end !important;
}

._fx-c {
	-ms-flex-pack: center !important;

	justify-content: center !important;
}

._fx-btw {
	-ms-flex-pack: justify !important;

	justify-content: space-between !important;
}

._fx-ard {
	-ms-flex-pack: distribute !important;

	justify-content: space-around !important;
}

._fx-t {
	-ms-flex-align: start !important;

	align-items: flex-start !important;
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

._fx-m {
	-ms-flex-align: center !important;

	align-items: center !important;
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

._fx-b {
	-ms-flex-align: end !important;

	align-items: flex-end !important;
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

._fx-bs {
	-ms-flex-align: baseline !important;

	align-items: baseline !important;
}

._fx-str {
	-ms-flex-align: stretch !important;

	align-items: stretch !important;
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

._fx-w {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

._fx-nw {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

._fi {
	max-width: 100% !important;

	-ms-flex: 0 1 auto !important;
	flex: 0 1 auto !important;
}

._fi-t {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

._fi-m {
	-ms-flex-item-align: center !important;
	align-self: center !important;
}

._fi-b {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

._fi-bs {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

._fi-str {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important;
}

._fi-push {
	-ms-flex-order: 1 !important;

	order: 1 !important;
}

._fi-push2 {
	-ms-flex-order: 2 !important;

	order: 2 !important;
}

._fi-push3 {
	-ms-flex-order: 3 !important;

	order: 3 !important;
}

._fi-push4 {
	-ms-flex-order: 4 !important;

	order: 4 !important;
}

._fi-push5 {
	-ms-flex-order: 5 !important;

	order: 5 !important;
}

._fi-push6 {
	-ms-flex-order: 6 !important;

	order: 6 !important;
}

._fi-pull {
	-ms-flex-order: -1 !important;

	order: -1 !important;
}

._fi-pull2 {
	-ms-flex-order: -2 !important;

	order: -2 !important;
}

._fi-pull3 {
	-ms-flex-order: -3 !important;

	order: -3 !important;
}

._fi-pull4 {
	-ms-flex-order: -4 !important;

	order: -4 !important;
}

._fi-pull5 {
	-ms-flex-order: -5 !important;

	order: -5 !important;
}

._fi-pull6 {
	-ms-flex-order: -6 !important;

	order: -6 !important;
}

._fl-l {
	float: left !important;
}

._fl-r {
	float: right !important;
}

._fl-n {
	float: none !important;
}

._clr-l {
	clear: left !important;
}

._clr-r {
	clear: right !important;
}

._clr-b {
	clear: both !important;
}

._clr-n {
	clear: none !important;
}

._clearfix:after {
	display: block;
	clear: both;
	height: 0;
	content: "";
}

._cl-white {
	color: #fff !important;
}

._cl-black {
	color: #000 !important;
}

._cl-text {
	color: #0f0f0f !important;
}

._cl-istyle {
	color: #5bb431 !important;
}

._cl-primary {
	color: #5bb431 !important;
}

._cl-cosmestore {
	color: #4eb691 !important;
}

._cl-secondary {
	color: #716658 !important;
}

._cl-gray {
	color: #d7d7d7 !important;
}

._cl-text-gray {
	color: #acacb2 !important;
}

._cl-light-gray {
	color: #f0f1f3 !important;
}

._cl-dark-gray {
	color: #7f7f7f !important;
}

._cl-black-gray {
	color: #303030 !important;
}

._cl-red {
	color: #db2a50 !important;
}

._cl-blue {
	color: #7abfde !important;
}

._cl-brown {
	color: #4f3009 !important;
}

._cl-facebook {
	color: #305097 !important;
}

._cl-twitter {
	color: #00aced !important;
}

._cl-instagram {
	color: #d93175 !important;
}

._cl-googleplus {
	color: #dc4e41 !important;
}

._cl-pintarest {
	color: #bd081c !important;
}

._cl-line {
	color: #00b900 !important;
}

._fzl {
	font-size: 1rem !important;
	line-height: 1.875 !important;
}

._fzm {
	font-size: .875rem !important;
	line-height: 2 !important;
}

._fzs {
	font-size: .75rem !important;
	line-height: 2.1667 !important;
}

._fzxs {
	font-size: .75rem !important;
	line-height: 2 !important;
}

._fzl-l {
	font-size: 1rem !important;
	line-height: 1.5 !important;
}

._fzm-l {
	font-size: .875rem !important;
	line-height: 1.5714 !important;
}

._fzs-l {
	font-size: .75rem !important;
	line-height: 1.6667 !important;
}

._fzxs-l {
	font-size: .75rem !important;
	line-height: 1.6667 !important;
}

._ta-l {
	text-align: left !important;
}

._ta-l td, ._ta-l th {
	text-align: left !important;
}

._ta-r {
	text-align: right !important;
}

._ta-r td, ._ta-r th {
	text-align: right !important;
}

._ta-c {
	text-align: center !important;
}

._ta-c td, ._ta-c th {
	text-align: center !important;
}

._ti1 {
	text-indent: 1em;
}

._ti2 {
	text-indent: 2em;
}

._ti3 {
	text-indent: 3em;
}

._ti4 {
	text-indent: 4em;
}

._ti5 {
	text-indent: 5em;
}

._ti6 {
	text-indent: 6em;
}

._ti7 {
	text-indent: 7em;
}

._ti8 {
	text-indent: 8em;
}

._ti9 {
	text-indent: 9em;
}

._ti10 {
	text-indent: 10em;
}

._fw-nml {
	font-weight: normal !important;
}

._fw-bld {
	font-weight: bold !important;
}

._ff-opensans {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

._en {
	font-weight: 600;
	font-family: "Open Sans",sans-serif;
}

body.is-fzl ul.lst-nml {
	font-size: 1rem;
	line-height: 1.5;
}

body.is-fzl ol.lst-nml {
	font-size: 1rem;
	line-height: 1.5;
}

body.is-fzl .lst-body {
	font-size: 1rem;
	line-height: 1.5;
}

body.is-fzl .lst-ast {
	font-size: 1rem;
	line-height: 1.5;
}

body.is-fzl .lst-kakko {
	font-size: 1rem;
	line-height: 1.5;
}

body.is-fzl .lst-lnk {
	font-size: 1rem;
	line-height: 1.5;
}

body.is-fzl .lst-file {
	font-size: .875rem;
	line-height: 1.5714;
}

body.is-fzl .chapter-blk p {
	font-size: 1rem;
	line-height: 1.875;
}

body.is-fzl .lower-header .intro {
	font-size: 1.125rem !important;
	line-height: 1.8889 !important;
}

._ha {
	height: auto !important;
}

._h0 {
	height: 0 !important;
}

._h1of1, ._h100 {
	height: 100% !important;
}

._h1of2 {
	height: 50% !important;
}

._h2of2 {
	height: 100% !important;
}

._h1of3 {
	height: 33.3333% !important;
}

._h2of3 {
	height: 66.6667% !important;
}

._h3of3 {
	height: 100% !important;
}

._h1of4 {
	height: 25% !important;
}

._h2of4 {
	height: 50% !important;
}

._h3of4 {
	height: 75% !important;
}

._h4of4 {
	height: 100% !important;
}

._h1of5 {
	height: 20% !important;
}

._h2of5 {
	height: 40% !important;
}

._h3of5 {
	height: 60% !important;
}

._h4of5 {
	height: 80% !important;
}

._h5of5 {
	height: 100% !important;
}

._h1of6 {
	height: 16.6667% !important;
}

._h2of6 {
	height: 33.3333% !important;
}

._h3of6 {
	height: 50% !important;
}

._h4of6 {
	height: 66.6667% !important;
}

._h5of6 {
	height: 83.3333% !important;
}

._h6of6 {
	height: 100% !important;
}

._h1of8 {
	height: 12.5% !important;
}

._h2of8 {
	height: 25% !important;
}

._h3of8 {
	height: 37.5% !important;
}

._h4of8 {
	height: 50% !important;
}

._h5of8 {
	height: 62.5% !important;
}

._h6of8 {
	height: 75% !important;
}

._h7of8 {
	height: 87.5% !important;
}

._h8of8 {
	height: 100% !important;
}

._h1of9 {
	height: 11.1111% !important;
}

._h2of9 {
	height: 22.2222% !important;
}

._h3of9 {
	height: 33.3333% !important;
}

._h4of9 {
	height: 44.4444% !important;
}

._h5of9 {
	height: 55.5556% !important;
}

._h6of9 {
	height: 66.6667% !important;
}

._h7of9 {
	height: 77.7778% !important;
}

._h8of9 {
	height: 88.8889% !important;
}

._h9of9 {
	height: 100% !important;
}

._h1of12 {
	height: 8.3333% !important;
}

._h2of12 {
	height: 16.6667% !important;
}

._h3of12 {
	height: 25% !important;
}

._h4of12 {
	height: 33.3333% !important;
}

._h5of12 {
	height: 41.6667% !important;
}

._h6of12 {
	height: 50% !important;
}

._h7of12 {
	height: 58.3333% !important;
}

._h8of12 {
	height: 66.6667% !important;
}

._h9of12 {
	height: 75% !important;
}

._h10of12 {
	height: 83.3333% !important;
}

._h11of12 {
	height: 91.6667% !important;
}

._h12of12 {
	height: 100% !important;
}

._h1em {
	height: 1em !important;
}

._h2em {
	height: 2em !important;
}

._h3em {
	height: 3em !important;
}

._h4em {
	height: 4em !important;
}

._h5em {
	height: 5em !important;
}

._h6em {
	height: 6em !important;
}

._h7em {
	height: 7em !important;
}

._h8em {
	height: 8em !important;
}

._h9em {
	height: 9em !important;
}

._h10em {
	height: 10em !important;
}

._h11em {
	height: 11em !important;
}

._h12em {
	height: 12em !important;
}

._h13em {
	height: 13em !important;
}

._h14em {
	height: 14em !important;
}

._h15em {
	height: 15em !important;
}

._h16em {
	height: 16em !important;
}

._h17em {
	height: 17em !important;
}

._h18em {
	height: 18em !important;
}

._h19em {
	height: 19em !important;
}

._h20em {
	height: 20em !important;
}

._h1rem {
	height: 1rem !important;
}

._h2rem {
	height: 2rem !important;
}

._h3rem {
	height: 3rem !important;
}

._h4rem {
	height: 4rem !important;
}

._h5rem {
	height: 5rem !important;
}

._h6rem {
	height: 6rem !important;
}

._h7rem {
	height: 7rem !important;
}

._h8rem {
	height: 8rem !important;
}

._h9rem {
	height: 9rem !important;
}

._h10rem {
	height: 10rem !important;
}

._h11rem {
	height: 11rem !important;
}

._h12rem {
	height: 12rem !important;
}

._h13rem {
	height: 13rem !important;
}

._h14rem {
	height: 14rem !important;
}

._h15rem {
	height: 15rem !important;
}

._h16rem {
	height: 16rem !important;
}

._h17rem {
	height: 17rem !important;
}

._h18rem {
	height: 18rem !important;
}

._h19rem {
	height: 19rem !important;
}

._h20rem {
	height: 20rem !important;
}

._lnk_extension[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_extension[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-pdf:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-xls:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-xlsx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-doc:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-docx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-ppt:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-pptx:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk-zip:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_blank[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

._lnk_ico[target="_blank"]:after {
	display: inline-block;
	margin-right: 4px;
	margin-left: 4px;
	width: 12px;
	height: 12px;
	background: url(../img/ico/blank-primary.svg) no-repeat center;
	background-size: contain;
	content: "";
	text-decoration: none;
}

._lnk_ico[href$=".pdf"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PDF";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".xls"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLS";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".xlsx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "XLSX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".doc"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOC";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".docx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "DOCX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".ppt"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPT";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".pptx"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "PPTX";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._lnk_ico[href$=".zip"]:after {
	display: inline-block;
	margin-left: 6px;
	padding: 0 4px;
	width: auto;
	height: auto;
	border-radius: 2px;
	background-color: #5bb431;
	background-image: none;
	color: #fff;
	content: "ZIP";
	vertical-align: 2px;
	text-decoration: none;
	text-decoration: none;
	font-weight: 600;
	font-weight: 600;
	font-size: .6875rem;
	font-family: "Open Sans",sans-serif;
	line-height: 1.8182;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: color,background-color;
}

._ma {
	margin: auto !important;
}

._m0 {
	margin: 0 !important;
}

._mta {
	margin-top: auto !important;
}

._mba {
	margin-bottom: auto !important;
}

._mla {
	margin-left: auto !important;
}

._mra {
	margin-right: auto !important;
}

._mt0 {
	margin-top: 0 !important;
}

._mb0 {
	margin-bottom: 0 !important;
}

._ml0 {
	margin-left: 0 !important;
}

._mr0 {
	margin-right: 0 !important;
}

._mt8 {
	margin-top: 8px !important;
}

._mb8 {
	margin-bottom: 8px !important;
}

._ml8 {
	margin-left: 8px !important;
}

._mr8 {
	margin-right: 8px !important;
}

._mt16 {
	margin-top: 16px !important;
}

._mb16 {
	margin-bottom: 16px !important;
}

._ml16 {
	margin-left: 16px !important;
}

._mr16 {
	margin-right: 16px !important;
}

._mt24 {
	margin-top: 24px !important;
}

._mb24 {
	margin-bottom: 24px !important;
}

._ml24 {
	margin-left: 24px !important;
}

._mr24 {
	margin-right: 24px !important;
}

._mt32 {
	margin-top: 32px !important;
}

._mb32 {
	margin-bottom: 32px !important;
}

._ml32 {
	margin-left: 32px !important;
}

._mr32 {
	margin-right: 32px !important;
}

._mt40 {
	margin-top: 40px !important;
}

._mb40 {
	margin-bottom: 40px !important;
}

._ml40 {
	margin-left: 40px !important;
}

._mr40 {
	margin-right: 40px !important;
}

._mt48 {
	margin-top: 48px !important;
}

._mb48 {
	margin-bottom: 48px !important;
}

._ml48 {
	margin-left: 48px !important;
}

._mr48 {
	margin-right: 48px !important;
}

._mt56 {
	margin-top: 56px !important;
}

._mb56 {
	margin-bottom: 56px !important;
}

._ml56 {
	margin-left: 56px !important;
}

._mr56 {
	margin-right: 56px !important;
}

._mt64 {
	margin-top: 64px !important;
}

._mb64 {
	margin-bottom: 64px !important;
}

._ml64 {
	margin-left: 64px !important;
}

._mr64 {
	margin-right: 64px !important;
}

._mt72 {
	margin-top: 72px !important;
}

._mb72 {
	margin-bottom: 72px !important;
}

._ml72 {
	margin-left: 72px !important;
}

._mr72 {
	margin-right: 72px !important;
}

._mt80 {
	margin-top: 80px !important;
}

._mb80 {
	margin-bottom: 80px !important;
}

._ml80 {
	margin-left: 80px !important;
}

._mr80 {
	margin-right: 80px !important;
}

._mt88 {
	margin-top: 88px !important;
}

._mb88 {
	margin-bottom: 88px !important;
}

._ml88 {
	margin-left: 88px !important;
}

._mr88 {
	margin-right: 88px !important;
}

._mt96 {
	margin-top: 96px !important;
}

._mb96 {
	margin-bottom: 96px !important;
}

._ml96 {
	margin-left: 96px !important;
}

._mr96 {
	margin-right: 96px !important;
}

._mt104 {
	margin-top: 104px !important;
}

._mb104 {
	margin-bottom: 104px !important;
}

._ml104 {
	margin-left: 104px !important;
}

._mr104 {
	margin-right: 104px !important;
}

._mt112 {
	margin-top: 112px !important;
}

._mb112 {
	margin-bottom: 112px !important;
}

._ml112 {
	margin-left: 112px !important;
}

._mr112 {
	margin-right: 112px !important;
}

._mt120 {
	margin-top: 120px !important;
}

._mb120 {
	margin-bottom: 120px !important;
}

._ml120 {
	margin-left: 120px !important;
}

._mr120 {
	margin-right: 120px !important;
}

._mt128 {
	margin-top: 128px !important;
}

._mb128 {
	margin-bottom: 128px !important;
}

._ml128 {
	margin-left: 128px !important;
}

._mr128 {
	margin-right: 128px !important;
}

._mt136 {
	margin-top: 136px !important;
}

._mb136 {
	margin-bottom: 136px !important;
}

._ml136 {
	margin-left: 136px !important;
}

._mr136 {
	margin-right: 136px !important;
}

._mt144 {
	margin-top: 144px !important;
}

._mb144 {
	margin-bottom: 144px !important;
}

._ml144 {
	margin-left: 144px !important;
}

._mr144 {
	margin-right: 144px !important;
}

._mt152 {
	margin-top: 152px !important;
}

._mb152 {
	margin-bottom: 152px !important;
}

._ml152 {
	margin-left: 152px !important;
}

._mr152 {
	margin-right: 152px !important;
}

._mt160 {
	margin-top: 160px !important;
}

._mb160 {
	margin-bottom: 160px !important;
}

._ml160 {
	margin-left: 160px !important;
}

._mr160 {
	margin-right: 160px !important;
}

._mt168 {
	margin-top: 168px !important;
}

._mb168 {
	margin-bottom: 168px !important;
}

._ml168 {
	margin-left: 168px !important;
}

._mr168 {
	margin-right: 168px !important;
}

._mt176 {
	margin-top: 176px !important;
}

._mb176 {
	margin-bottom: 176px !important;
}

._ml176 {
	margin-left: 176px !important;
}

._mr176 {
	margin-right: 176px !important;
}

._mt184 {
	margin-top: 184px !important;
}

._mb184 {
	margin-bottom: 184px !important;
}

._ml184 {
	margin-left: 184px !important;
}

._mr184 {
	margin-right: 184px !important;
}

._mt192 {
	margin-top: 192px !important;
}

._mb192 {
	margin-bottom: 192px !important;
}

._ml192 {
	margin-left: 192px !important;
}

._mr192 {
	margin-right: 192px !important;
}

._mt200 {
	margin-top: 200px !important;
}

._mb200 {
	margin-bottom: 200px !important;
}

._ml200 {
	margin-left: 200px !important;
}

._mr200 {
	margin-right: 200px !important;
}

._mt208 {
	margin-top: 208px !important;
}

._mb208 {
	margin-bottom: 208px !important;
}

._ml208 {
	margin-left: 208px !important;
}

._mr208 {
	margin-right: 208px !important;
}

._mt216 {
	margin-top: 216px !important;
}

._mb216 {
	margin-bottom: 216px !important;
}

._ml216 {
	margin-left: 216px !important;
}

._mr216 {
	margin-right: 216px !important;
}

._mt224 {
	margin-top: 224px !important;
}

._mb224 {
	margin-bottom: 224px !important;
}

._ml224 {
	margin-left: 224px !important;
}

._mr224 {
	margin-right: 224px !important;
}

._mt232 {
	margin-top: 232px !important;
}

._mb232 {
	margin-bottom: 232px !important;
}

._ml232 {
	margin-left: 232px !important;
}

._mr232 {
	margin-right: 232px !important;
}

._mt240 {
	margin-top: 240px !important;
}

._mb240 {
	margin-bottom: 240px !important;
}

._ml240 {
	margin-left: 240px !important;
}

._mr240 {
	margin-right: 240px !important;
}

._mt248 {
	margin-top: 248px !important;
}

._mb248 {
	margin-bottom: 248px !important;
}

._ml248 {
	margin-left: 248px !important;
}

._mr248 {
	margin-right: 248px !important;
}

._mt256 {
	margin-top: 256px !important;
}

._mb256 {
	margin-bottom: 256px !important;
}

._ml256 {
	margin-left: 256px !important;
}

._mr256 {
	margin-right: 256px !important;
}

._mt264 {
	margin-top: 264px !important;
}

._mb264 {
	margin-bottom: 264px !important;
}

._ml264 {
	margin-left: 264px !important;
}

._mr264 {
	margin-right: 264px !important;
}

._mt272 {
	margin-top: 272px !important;
}

._mb272 {
	margin-bottom: 272px !important;
}

._ml272 {
	margin-left: 272px !important;
}

._mr272 {
	margin-right: 272px !important;
}

._mt280 {
	margin-top: 280px !important;
}

._mb280 {
	margin-bottom: 280px !important;
}

._ml280 {
	margin-left: 280px !important;
}

._mr280 {
	margin-right: 280px !important;
}

._mt288 {
	margin-top: 288px !important;
}

._mb288 {
	margin-bottom: 288px !important;
}

._ml288 {
	margin-left: 288px !important;
}

._mr288 {
	margin-right: 288px !important;
}

._mt296 {
	margin-top: 296px !important;
}

._mb296 {
	margin-bottom: 296px !important;
}

._ml296 {
	margin-left: 296px !important;
}

._mr296 {
	margin-right: 296px !important;
}

._mt304 {
	margin-top: 304px !important;
}

._mb304 {
	margin-bottom: 304px !important;
}

._ml304 {
	margin-left: 304px !important;
}

._mr304 {
	margin-right: 304px !important;
}

._mt312 {
	margin-top: 312px !important;
}

._mb312 {
	margin-bottom: 312px !important;
}

._ml312 {
	margin-left: 312px !important;
}

._mr312 {
	margin-right: 312px !important;
}

._mt320 {
	margin-top: 320px !important;
}

._mb320 {
	margin-bottom: 320px !important;
}

._ml320 {
	margin-left: 320px !important;
}

._mr320 {
	margin-right: 320px !important;
}

._mt328 {
	margin-top: 328px !important;
}

._mb328 {
	margin-bottom: 328px !important;
}

._ml328 {
	margin-left: 328px !important;
}

._mr328 {
	margin-right: 328px !important;
}

._mt336 {
	margin-top: 336px !important;
}

._mb336 {
	margin-bottom: 336px !important;
}

._ml336 {
	margin-left: 336px !important;
}

._mr336 {
	margin-right: 336px !important;
}

._mt344 {
	margin-top: 344px !important;
}

._mb344 {
	margin-bottom: 344px !important;
}

._ml344 {
	margin-left: 344px !important;
}

._mr344 {
	margin-right: 344px !important;
}

._mt352 {
	margin-top: 352px !important;
}

._mb352 {
	margin-bottom: 352px !important;
}

._ml352 {
	margin-left: 352px !important;
}

._mr352 {
	margin-right: 352px !important;
}

._mt360 {
	margin-top: 360px !important;
}

._mb360 {
	margin-bottom: 360px !important;
}

._ml360 {
	margin-left: 360px !important;
}

._mr360 {
	margin-right: 360px !important;
}

._mt368 {
	margin-top: 368px !important;
}

._mb368 {
	margin-bottom: 368px !important;
}

._ml368 {
	margin-left: 368px !important;
}

._mr368 {
	margin-right: 368px !important;
}

._mt376 {
	margin-top: 376px !important;
}

._mb376 {
	margin-bottom: 376px !important;
}

._ml376 {
	margin-left: 376px !important;
}

._mr376 {
	margin-right: 376px !important;
}

._mt384 {
	margin-top: 384px !important;
}

._mb384 {
	margin-bottom: 384px !important;
}

._ml384 {
	margin-left: 384px !important;
}

._mr384 {
	margin-right: 384px !important;
}

._mt392 {
	margin-top: 392px !important;
}

._mb392 {
	margin-bottom: 392px !important;
}

._ml392 {
	margin-left: 392px !important;
}

._mr392 {
	margin-right: 392px !important;
}

._mt400 {
	margin-top: 400px !important;
}

._mb400 {
	margin-bottom: 400px !important;
}

._ml400 {
	margin-left: 400px !important;
}

._mr400 {
	margin-right: 400px !important;
}

._mt408 {
	margin-top: 408px !important;
}

._mb408 {
	margin-bottom: 408px !important;
}

._ml408 {
	margin-left: 408px !important;
}

._mr408 {
	margin-right: 408px !important;
}

._mt416 {
	margin-top: 416px !important;
}

._mb416 {
	margin-bottom: 416px !important;
}

._ml416 {
	margin-left: 416px !important;
}

._mr416 {
	margin-right: 416px !important;
}

._mt424 {
	margin-top: 424px !important;
}

._mb424 {
	margin-bottom: 424px !important;
}

._ml424 {
	margin-left: 424px !important;
}

._mr424 {
	margin-right: 424px !important;
}

._mt432 {
	margin-top: 432px !important;
}

._mb432 {
	margin-bottom: 432px !important;
}

._ml432 {
	margin-left: 432px !important;
}

._mr432 {
	margin-right: 432px !important;
}

._mt440 {
	margin-top: 440px !important;
}

._mb440 {
	margin-bottom: 440px !important;
}

._ml440 {
	margin-left: 440px !important;
}

._mr440 {
	margin-right: 440px !important;
}

._mt448 {
	margin-top: 448px !important;
}

._mb448 {
	margin-bottom: 448px !important;
}

._ml448 {
	margin-left: 448px !important;
}

._mr448 {
	margin-right: 448px !important;
}

._mt456 {
	margin-top: 456px !important;
}

._mb456 {
	margin-bottom: 456px !important;
}

._ml456 {
	margin-left: 456px !important;
}

._mr456 {
	margin-right: 456px !important;
}

._mt464 {
	margin-top: 464px !important;
}

._mb464 {
	margin-bottom: 464px !important;
}

._ml464 {
	margin-left: 464px !important;
}

._mr464 {
	margin-right: 464px !important;
}

._mt472 {
	margin-top: 472px !important;
}

._mb472 {
	margin-bottom: 472px !important;
}

._ml472 {
	margin-left: 472px !important;
}

._mr472 {
	margin-right: 472px !important;
}

._mt480 {
	margin-top: 480px !important;
}

._mb480 {
	margin-bottom: 480px !important;
}

._ml480 {
	margin-left: 480px !important;
}

._mr480 {
	margin-right: 480px !important;
}

._mt488 {
	margin-top: 488px !important;
}

._mb488 {
	margin-bottom: 488px !important;
}

._ml488 {
	margin-left: 488px !important;
}

._mr488 {
	margin-right: 488px !important;
}

._mt496 {
	margin-top: 496px !important;
}

._mb496 {
	margin-bottom: 496px !important;
}

._ml496 {
	margin-left: 496px !important;
}

._mr496 {
	margin-right: 496px !important;
}

._mt504 {
	margin-top: 504px !important;
}

._mb504 {
	margin-bottom: 504px !important;
}

._ml504 {
	margin-left: 504px !important;
}

._mr504 {
	margin-right: 504px !important;
}

._mt512 {
	margin-top: 512px !important;
}

._mb512 {
	margin-bottom: 512px !important;
}

._ml512 {
	margin-left: 512px !important;
}

._mr512 {
	margin-right: 512px !important;
}

._pa {
	padding: auto !important;
}

._p0 {
	padding: 0 !important;
}

._pt0 {
	padding-top: 0 !important;
}

._pb0 {
	padding-bottom: 0 !important;
}

._pl0 {
	padding-left: 0 !important;
}

._pr0 {
	padding-right: 0 !important;
}

._pt8 {
	padding-top: 8px !important;
}

._pb8 {
	padding-bottom: 8px !important;
}

._pl8 {
	padding-left: 8px !important;
}

._pr8 {
	padding-right: 8px !important;
}

._pt16 {
	padding-top: 16px !important;
}

._pb16 {
	padding-bottom: 16px !important;
}

._pl16 {
	padding-left: 16px !important;
}

._pr16 {
	padding-right: 16px !important;
}

._pt24 {
	padding-top: 24px !important;
}

._pb24 {
	padding-bottom: 24px !important;
}

._pl24 {
	padding-left: 24px !important;
}

._pr24 {
	padding-right: 24px !important;
}

._pt32 {
	padding-top: 32px !important;
}

._pb32 {
	padding-bottom: 32px !important;
}

._pl32 {
	padding-left: 32px !important;
}

._pr32 {
	padding-right: 32px !important;
}

._pt40 {
	padding-top: 40px !important;
}

._pb40 {
	padding-bottom: 40px !important;
}

._pl40 {
	padding-left: 40px !important;
}

._pr40 {
	padding-right: 40px !important;
}

._pt48 {
	padding-top: 48px !important;
}

._pb48 {
	padding-bottom: 48px !important;
}

._pl48 {
	padding-left: 48px !important;
}

._pr48 {
	padding-right: 48px !important;
}

._pt56 {
	padding-top: 56px !important;
}

._pb56 {
	padding-bottom: 56px !important;
}

._pl56 {
	padding-left: 56px !important;
}

._pr56 {
	padding-right: 56px !important;
}

._pt64 {
	padding-top: 64px !important;
}

._pb64 {
	padding-bottom: 64px !important;
}

._pl64 {
	padding-left: 64px !important;
}

._pr64 {
	padding-right: 64px !important;
}

._pt72 {
	padding-top: 72px !important;
}

._pb72 {
	padding-bottom: 72px !important;
}

._pl72 {
	padding-left: 72px !important;
}

._pr72 {
	padding-right: 72px !important;
}

._pt80 {
	padding-top: 80px !important;
}

._pb80 {
	padding-bottom: 80px !important;
}

._pl80 {
	padding-left: 80px !important;
}

._pr80 {
	padding-right: 80px !important;
}

._pt88 {
	padding-top: 88px !important;
}

._pb88 {
	padding-bottom: 88px !important;
}

._pl88 {
	padding-left: 88px !important;
}

._pr88 {
	padding-right: 88px !important;
}

._pt96 {
	padding-top: 96px !important;
}

._pb96 {
	padding-bottom: 96px !important;
}

._pl96 {
	padding-left: 96px !important;
}

._pr96 {
	padding-right: 96px !important;
}

._pt104 {
	padding-top: 104px !important;
}

._pb104 {
	padding-bottom: 104px !important;
}

._pl104 {
	padding-left: 104px !important;
}

._pr104 {
	padding-right: 104px !important;
}

._pt112 {
	padding-top: 112px !important;
}

._pb112 {
	padding-bottom: 112px !important;
}

._pl112 {
	padding-left: 112px !important;
}

._pr112 {
	padding-right: 112px !important;
}

._pt120 {
	padding-top: 120px !important;
}

._pb120 {
	padding-bottom: 120px !important;
}

._pl120 {
	padding-left: 120px !important;
}

._pr120 {
	padding-right: 120px !important;
}

._pt128 {
	padding-top: 128px !important;
}

._pb128 {
	padding-bottom: 128px !important;
}

._pl128 {
	padding-left: 128px !important;
}

._pr128 {
	padding-right: 128px !important;
}

._pt136 {
	padding-top: 136px !important;
}

._pb136 {
	padding-bottom: 136px !important;
}

._pl136 {
	padding-left: 136px !important;
}

._pr136 {
	padding-right: 136px !important;
}

._pt144 {
	padding-top: 144px !important;
}

._pb144 {
	padding-bottom: 144px !important;
}

._pl144 {
	padding-left: 144px !important;
}

._pr144 {
	padding-right: 144px !important;
}

._pt152 {
	padding-top: 152px !important;
}

._pb152 {
	padding-bottom: 152px !important;
}

._pl152 {
	padding-left: 152px !important;
}

._pr152 {
	padding-right: 152px !important;
}

._pt160 {
	padding-top: 160px !important;
}

._pb160 {
	padding-bottom: 160px !important;
}

._pl160 {
	padding-left: 160px !important;
}

._pr160 {
	padding-right: 160px !important;
}

._pt168 {
	padding-top: 168px !important;
}

._pb168 {
	padding-bottom: 168px !important;
}

._pl168 {
	padding-left: 168px !important;
}

._pr168 {
	padding-right: 168px !important;
}

._pt176 {
	padding-top: 176px !important;
}

._pb176 {
	padding-bottom: 176px !important;
}

._pl176 {
	padding-left: 176px !important;
}

._pr176 {
	padding-right: 176px !important;
}

._pt184 {
	padding-top: 184px !important;
}

._pb184 {
	padding-bottom: 184px !important;
}

._pl184 {
	padding-left: 184px !important;
}

._pr184 {
	padding-right: 184px !important;
}

._pt192 {
	padding-top: 192px !important;
}

._pb192 {
	padding-bottom: 192px !important;
}

._pl192 {
	padding-left: 192px !important;
}

._pr192 {
	padding-right: 192px !important;
}

._pt200 {
	padding-top: 200px !important;
}

._pb200 {
	padding-bottom: 200px !important;
}

._pl200 {
	padding-left: 200px !important;
}

._pr200 {
	padding-right: 200px !important;
}

._pt208 {
	padding-top: 208px !important;
}

._pb208 {
	padding-bottom: 208px !important;
}

._pl208 {
	padding-left: 208px !important;
}

._pr208 {
	padding-right: 208px !important;
}

._pt216 {
	padding-top: 216px !important;
}

._pb216 {
	padding-bottom: 216px !important;
}

._pl216 {
	padding-left: 216px !important;
}

._pr216 {
	padding-right: 216px !important;
}

._pt224 {
	padding-top: 224px !important;
}

._pb224 {
	padding-bottom: 224px !important;
}

._pl224 {
	padding-left: 224px !important;
}

._pr224 {
	padding-right: 224px !important;
}

._pt232 {
	padding-top: 232px !important;
}

._pb232 {
	padding-bottom: 232px !important;
}

._pl232 {
	padding-left: 232px !important;
}

._pr232 {
	padding-right: 232px !important;
}

._pt240 {
	padding-top: 240px !important;
}

._pb240 {
	padding-bottom: 240px !important;
}

._pl240 {
	padding-left: 240px !important;
}

._pr240 {
	padding-right: 240px !important;
}

._pt248 {
	padding-top: 248px !important;
}

._pb248 {
	padding-bottom: 248px !important;
}

._pl248 {
	padding-left: 248px !important;
}

._pr248 {
	padding-right: 248px !important;
}

._pt256 {
	padding-top: 256px !important;
}

._pb256 {
	padding-bottom: 256px !important;
}

._pl256 {
	padding-left: 256px !important;
}

._pr256 {
	padding-right: 256px !important;
}

._pt264 {
	padding-top: 264px !important;
}

._pb264 {
	padding-bottom: 264px !important;
}

._pl264 {
	padding-left: 264px !important;
}

._pr264 {
	padding-right: 264px !important;
}

._pt272 {
	padding-top: 272px !important;
}

._pb272 {
	padding-bottom: 272px !important;
}

._pl272 {
	padding-left: 272px !important;
}

._pr272 {
	padding-right: 272px !important;
}

._pt280 {
	padding-top: 280px !important;
}

._pb280 {
	padding-bottom: 280px !important;
}

._pl280 {
	padding-left: 280px !important;
}

._pr280 {
	padding-right: 280px !important;
}

._pt288 {
	padding-top: 288px !important;
}

._pb288 {
	padding-bottom: 288px !important;
}

._pl288 {
	padding-left: 288px !important;
}

._pr288 {
	padding-right: 288px !important;
}

._pt296 {
	padding-top: 296px !important;
}

._pb296 {
	padding-bottom: 296px !important;
}

._pl296 {
	padding-left: 296px !important;
}

._pr296 {
	padding-right: 296px !important;
}

._pt304 {
	padding-top: 304px !important;
}

._pb304 {
	padding-bottom: 304px !important;
}

._pl304 {
	padding-left: 304px !important;
}

._pr304 {
	padding-right: 304px !important;
}

._pt312 {
	padding-top: 312px !important;
}

._pb312 {
	padding-bottom: 312px !important;
}

._pl312 {
	padding-left: 312px !important;
}

._pr312 {
	padding-right: 312px !important;
}

._pt320 {
	padding-top: 320px !important;
}

._pb320 {
	padding-bottom: 320px !important;
}

._pl320 {
	padding-left: 320px !important;
}

._pr320 {
	padding-right: 320px !important;
}

._pt328 {
	padding-top: 328px !important;
}

._pb328 {
	padding-bottom: 328px !important;
}

._pl328 {
	padding-left: 328px !important;
}

._pr328 {
	padding-right: 328px !important;
}

._pt336 {
	padding-top: 336px !important;
}

._pb336 {
	padding-bottom: 336px !important;
}

._pl336 {
	padding-left: 336px !important;
}

._pr336 {
	padding-right: 336px !important;
}

._pt344 {
	padding-top: 344px !important;
}

._pb344 {
	padding-bottom: 344px !important;
}

._pl344 {
	padding-left: 344px !important;
}

._pr344 {
	padding-right: 344px !important;
}

._pt352 {
	padding-top: 352px !important;
}

._pb352 {
	padding-bottom: 352px !important;
}

._pl352 {
	padding-left: 352px !important;
}

._pr352 {
	padding-right: 352px !important;
}

._pt360 {
	padding-top: 360px !important;
}

._pb360 {
	padding-bottom: 360px !important;
}

._pl360 {
	padding-left: 360px !important;
}

._pr360 {
	padding-right: 360px !important;
}

._pt368 {
	padding-top: 368px !important;
}

._pb368 {
	padding-bottom: 368px !important;
}

._pl368 {
	padding-left: 368px !important;
}

._pr368 {
	padding-right: 368px !important;
}

._pt376 {
	padding-top: 376px !important;
}

._pb376 {
	padding-bottom: 376px !important;
}

._pl376 {
	padding-left: 376px !important;
}

._pr376 {
	padding-right: 376px !important;
}

._pt384 {
	padding-top: 384px !important;
}

._pb384 {
	padding-bottom: 384px !important;
}

._pl384 {
	padding-left: 384px !important;
}

._pr384 {
	padding-right: 384px !important;
}

._pt392 {
	padding-top: 392px !important;
}

._pb392 {
	padding-bottom: 392px !important;
}

._pl392 {
	padding-left: 392px !important;
}

._pr392 {
	padding-right: 392px !important;
}

._pt400 {
	padding-top: 400px !important;
}

._pb400 {
	padding-bottom: 400px !important;
}

._pl400 {
	padding-left: 400px !important;
}

._pr400 {
	padding-right: 400px !important;
}

._pt408 {
	padding-top: 408px !important;
}

._pb408 {
	padding-bottom: 408px !important;
}

._pl408 {
	padding-left: 408px !important;
}

._pr408 {
	padding-right: 408px !important;
}

._pt416 {
	padding-top: 416px !important;
}

._pb416 {
	padding-bottom: 416px !important;
}

._pl416 {
	padding-left: 416px !important;
}

._pr416 {
	padding-right: 416px !important;
}

._pt424 {
	padding-top: 424px !important;
}

._pb424 {
	padding-bottom: 424px !important;
}

._pl424 {
	padding-left: 424px !important;
}

._pr424 {
	padding-right: 424px !important;
}

._pt432 {
	padding-top: 432px !important;
}

._pb432 {
	padding-bottom: 432px !important;
}

._pl432 {
	padding-left: 432px !important;
}

._pr432 {
	padding-right: 432px !important;
}

._pt440 {
	padding-top: 440px !important;
}

._pb440 {
	padding-bottom: 440px !important;
}

._pl440 {
	padding-left: 440px !important;
}

._pr440 {
	padding-right: 440px !important;
}

._pt448 {
	padding-top: 448px !important;
}

._pb448 {
	padding-bottom: 448px !important;
}

._pl448 {
	padding-left: 448px !important;
}

._pr448 {
	padding-right: 448px !important;
}

._pt456 {
	padding-top: 456px !important;
}

._pb456 {
	padding-bottom: 456px !important;
}

._pl456 {
	padding-left: 456px !important;
}

._pr456 {
	padding-right: 456px !important;
}

._pt464 {
	padding-top: 464px !important;
}

._pb464 {
	padding-bottom: 464px !important;
}

._pl464 {
	padding-left: 464px !important;
}

._pr464 {
	padding-right: 464px !important;
}

._pt472 {
	padding-top: 472px !important;
}

._pb472 {
	padding-bottom: 472px !important;
}

._pl472 {
	padding-left: 472px !important;
}

._pr472 {
	padding-right: 472px !important;
}

._pt480 {
	padding-top: 480px !important;
}

._pb480 {
	padding-bottom: 480px !important;
}

._pl480 {
	padding-left: 480px !important;
}

._pr480 {
	padding-right: 480px !important;
}

._pt488 {
	padding-top: 488px !important;
}

._pb488 {
	padding-bottom: 488px !important;
}

._pl488 {
	padding-left: 488px !important;
}

._pr488 {
	padding-right: 488px !important;
}

._pt496 {
	padding-top: 496px !important;
}

._pb496 {
	padding-bottom: 496px !important;
}

._pl496 {
	padding-left: 496px !important;
}

._pr496 {
	padding-right: 496px !important;
}

._pt504 {
	padding-top: 504px !important;
}

._pb504 {
	padding-bottom: 504px !important;
}

._pl504 {
	padding-left: 504px !important;
}

._pr504 {
	padding-right: 504px !important;
}

._pt512 {
	padding-top: 512px !important;
}

._pb512 {
	padding-bottom: 512px !important;
}

._pl512 {
	padding-left: 512px !important;
}

._pr512 {
	padding-right: 512px !important;
}

._wa {
	width: auto !important;
}

._w0 {
	width: 0 !important;
}

._w1of1, ._w100 {
	width: 100% !important;
}

._w1of2 {
	width: 50% !important;
}

._w2of2 {
	width: 100% !important;
}

._w1of3 {
	width: 33.3333% !important;
}

._w2of3 {
	width: 66.6667% !important;
}

._w3of3 {
	width: 100% !important;
}

._w1of4 {
	width: 25% !important;
}

._w2of4 {
	width: 50% !important;
}

._w3of4 {
	width: 75% !important;
}

._w4of4 {
	width: 100% !important;
}

._w1of5 {
	width: 20% !important;
}

._w2of5 {
	width: 40% !important;
}

._w3of5 {
	width: 60% !important;
}

._w4of5 {
	width: 80% !important;
}

._w5of5 {
	width: 100% !important;
}

._w1of6 {
	width: 16.6667% !important;
}

._w2of6 {
	width: 33.3333% !important;
}

._w3of6 {
	width: 50% !important;
}

._w4of6 {
	width: 66.6667% !important;
}

._w5of6 {
	width: 83.3333% !important;
}

._w6of6 {
	width: 100% !important;
}

._w1of8 {
	width: 12.5% !important;
}

._w2of8 {
	width: 25% !important;
}

._w3of8 {
	width: 37.5% !important;
}

._w4of8 {
	width: 50% !important;
}

._w5of8 {
	width: 62.5% !important;
}

._w6of8 {
	width: 75% !important;
}

._w7of8 {
	width: 87.5% !important;
}

._w8of8 {
	width: 100% !important;
}

._w1of9 {
	width: 11.1111% !important;
}

._w2of9 {
	width: 22.2222% !important;
}

._w3of9 {
	width: 33.3333% !important;
}

._w4of9 {
	width: 44.4444% !important;
}

._w5of9 {
	width: 55.5556% !important;
}

._w6of9 {
	width: 66.6667% !important;
}

._w7of9 {
	width: 77.7778% !important;
}

._w8of9 {
	width: 88.8889% !important;
}

._w9of9 {
	width: 100% !important;
}

._w1of12 {
	width: 8.3333% !important;
}

._w2of12 {
	width: 16.6667% !important;
}

._w3of12 {
	width: 25% !important;
}

._w4of12 {
	width: 33.3333% !important;
}

._w5of12 {
	width: 41.6667% !important;
}

._w6of12 {
	width: 50% !important;
}

._w7of12 {
	width: 58.3333% !important;
}

._w8of12 {
	width: 66.6667% !important;
}

._w9of12 {
	width: 75% !important;
}

._w10of12 {
	width: 83.3333% !important;
}

._w11of12 {
	width: 91.6667% !important;
}

._w12of12 {
	width: 100% !important;
}

._w0 {
	width: 0 !important;
}

._w8 {
	width: 8px !important;
}

._w16 {
	width: 16px !important;
}

._w24 {
	width: 24px !important;
}

._w32 {
	width: 32px !important;
}

._w40 {
	width: 40px !important;
}

._w48 {
	width: 48px !important;
}

._w56 {
	width: 56px !important;
}

._w64 {
	width: 64px !important;
}

._w72 {
	width: 72px !important;
}

._w80 {
	width: 80px !important;
}

._w88 {
	width: 88px !important;
}

._w96 {
	width: 96px !important;
}

._w104 {
	width: 104px !important;
}

._w112 {
	width: 112px !important;
}

._w120 {
	width: 120px !important;
}

._w128 {
	width: 128px !important;
}

._w136 {
	width: 136px !important;
}

._w144 {
	width: 144px !important;
}

._w152 {
	width: 152px !important;
}

._w160 {
	width: 160px !important;
}

._w168 {
	width: 168px !important;
}

._w176 {
	width: 176px !important;
}

._w184 {
	width: 184px !important;
}

._w192 {
	width: 192px !important;
}

._w200 {
	width: 200px !important;
}

._w208 {
	width: 208px !important;
}

._w216 {
	width: 216px !important;
}

._w224 {
	width: 224px !important;
}

._w232 {
	width: 232px !important;
}

._w240 {
	width: 240px !important;
}

._w248 {
	width: 248px !important;
}

._w256 {
	width: 256px !important;
}

._w264 {
	width: 264px !important;
}

._w272 {
	width: 272px !important;
}

._w280 {
	width: 280px !important;
}

._w288 {
	width: 288px !important;
}

._w296 {
	width: 296px !important;
}

._w304 {
	width: 304px !important;
}

._w312 {
	width: 312px !important;
}

._w320 {
	width: 320px !important;
}

._w328 {
	width: 328px !important;
}

._w336 {
	width: 336px !important;
}

._w344 {
	width: 344px !important;
}

._w352 {
	width: 352px !important;
}

._w360 {
	width: 360px !important;
}

._w368 {
	width: 368px !important;
}

._w376 {
	width: 376px !important;
}

._w384 {
	width: 384px !important;
}

._w392 {
	width: 392px !important;
}

._w400 {
	width: 400px !important;
}

._w408 {
	width: 408px !important;
}

._w416 {
	width: 416px !important;
}

._w424 {
	width: 424px !important;
}

._w432 {
	width: 432px !important;
}

._w440 {
	width: 440px !important;
}

._w448 {
	width: 448px !important;
}

._w456 {
	width: 456px !important;
}

._w464 {
	width: 464px !important;
}

._w472 {
	width: 472px !important;
}

._w480 {
	width: 480px !important;
}

._w488 {
	width: 488px !important;
}

._w496 {
	width: 496px !important;
}

._w504 {
	width: 504px !important;
}

._w512 {
	width: 512px !important;
}

._w0em {
	width: 0 !important;
}

._w0rem {
	width: 0rem !important;
}

._w1em {
	width: 1em !important;
}

._w1rem {
	width: 1rem !important;
}

._w2em {
	width: 2em !important;
}

._w2rem {
	width: 2rem !important;
}

._w3em {
	width: 3em !important;
}

._w3rem {
	width: 3rem !important;
}

._w4em {
	width: 4em !important;
}

._w4rem {
	width: 4rem !important;
}

._w5em {
	width: 5em !important;
}

._w5rem {
	width: 5rem !important;
}

._w6em {
	width: 6em !important;
}

._w6rem {
	width: 6rem !important;
}

._w7em {
	width: 7em !important;
}

._w7rem {
	width: 7rem !important;
}

._w8em {
	width: 8em !important;
}

._w8rem {
	width: 8rem !important;
}

._w9em {
	width: 9em !important;
}

._w9rem {
	width: 9rem !important;
}

._w10em {
	width: 10em !important;
}

._w10rem {
	width: 10rem !important;
}

._w11em {
	width: 11em !important;
}

._w11rem {
	width: 11rem !important;
}

._w12em {
	width: 12em !important;
}

._w12rem {
	width: 12rem !important;
}

._w13em {
	width: 13em !important;
}

._w13rem {
	width: 13rem !important;
}

._w14em {
	width: 14em !important;
}

._w14rem {
	width: 14rem !important;
}

._w15em {
	width: 15em !important;
}

._w15rem {
	width: 15rem !important;
}

._w16em {
	width: 16em !important;
}

._w16rem {
	width: 16rem !important;
}

._w17em {
	width: 17em !important;
}

._w17rem {
	width: 17rem !important;
}

._w18em {
	width: 18em !important;
}

._w18rem {
	width: 18rem !important;
}

._w19em {
	width: 19em !important;
}

._w19rem {
	width: 19rem !important;
}

._w20em {
	width: 20em !important;
}

._w20rem {
	width: 20rem !important;
}

@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}

@media print,screen and (min-width: 768px) {
	ul.lst-nml, .lst-body, .lst-ast, .lst-kakko, .lst-lnk, .lst-cle, .lst-file {
		font-size: 1rem;
		line-height: 1.5;
	}
	ol.lst-nml {
		font-size: 1rem;
		line-height: 1.5;
	}
	.dlst-flex, .dlst-nml, .dlst-count, .dlst-count-dt, .dlst-lst, .dlst-lst-dt, .dlst-ast, .dlst-cle, .dlst-cle-dt {
		font-size: 1rem;
		line-height: 1.5;
	}
	.tbl-nml, .tbl-lg, .tbl-reflow, .tbl-profile {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.tbl-nml, .tbl-lg, .tbl-reflow, .tbl-profile {
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.btn-prm, .btn-return {
		margin: 8px 0;
		padding: 1rem 5rem;
	}
	.-lrg.btn-prm, .-lrg.btn-return {
		min-width: 320px;
	}
	.-mdl.btn-prm, .-mdl.btn-return {
		min-width: 270px;
	}
	.btn-prm .ico-pwr.-sml, .btn-return .ico-pwr.-sml {
		right: 27px;
	}
	.lnk-prm {
		font-size: 1rem;
		line-height: 1.5;
	}
	.lnk-prm {
		display: inline-block;
		margin: 8px 0;
		padding: .5rem 3rem .5rem 0;
		max-width: 100%;
		border: none;
		border-radius: 0;
		color: #5bb431;
	}
	.lnk-prm .ico-pwr.-sml {
		right: 0;
	}
	a:hover {
		text-decoration: none;
	}
	p {
		font-size: 1rem;
		line-height: 2;
	}
	.box-slideshow {
		margin-top: 8px;
		margin-bottom: 8px;
		max-width: 100%;
		width: 87.8049%;
	}
	.box-youtube {
		margin-top: 8px;
		margin-bottom: 8px;
		max-width: 100%;
		width: 87.8049%;
	}
	.box-map {
		padding-bottom: 42.6829%;
	}
	.box-rss a {
		font-size: .875rem !important;
		line-height: 2.1429 !important;
	}
	.blk-sml {
		margin-top: 8px;
		margin-bottom: 8px;
		max-width: 100%;
		width: 87.8049%;
	}
	.box-meta time {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.btn-wrap.-left {
		text-align: left;
	}
	ul.btn-wrap {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;

		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	ul.btn-wrap > li {
		margin: 0 1rem;
	}
	ul.btn-wrap.-left {
		-ms-flex-pack: start;

		justify-content: flex-start;
	}
	.lnk-prm {
		background-color: transparent;
	}
	.lnk-prm .ico-pwr.-sml .anm circle {
		stroke: #5bb431;
	}
	.lnk-prm .ico-pwr.-sml:after {
		background-color: #5bb431;
	}
	.lnk-prm circle {
		stroke: #5bb431;
	}
	a.lnk-prm {
		color: #5bb431;
	}
	.btn-gmap {
		font-size: 1rem;
		line-height: 1.75;
	}
	.btn-business {
		height: 130px;
	}
	.btn-business > a:after {
		margin-left: 20px;
	}
	.btn-business > a .logo {
		width: 356px;
	}
	.section-group.-lrg {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.section-group.-mdl {
		margin-top: 4rem;
		margin-bottom: 4rem;
	}
	.section-group.-sml {
		margin-bottom: 2.5rem;
	}
	.section-group.-contents {
		max-width: 1100px;
		width: 85.9375%;
	}
	.section-group.-contents > .section {
		padding: 3rem 5.4546%;
	}
	.section-group.-cards {
		max-width: 1100px;
		width: 85.9375%;
	}
	.section-group.-cards > .section {
		padding: 3rem 5.4546%;
	}
	.section-group.-full > .section {
		margin: 0 auto;
		padding: 4rem 0;
		max-width: 1040px;
		width: 81.25%;
	}
	.cards-blk {
		display: -ms-flexbox;
		display: flex;

		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cards-blk > div, .cards-blk section {
		margin-top: 0;
		margin-bottom: 0;
	}
	.cards-blk.-col1 {
		-ms-flex-pack: center;

		justify-content: center;
	}
	.cards-blk.-col1 > div, .cards-blk.-col1 section {
		width: 47.1154%;
	}
	.cards-blk.-col2 > div, .cards-blk.-col2 section {
		width: 47.1154%;
	}
	.cards-blk.-col2 > div:nth-child(2n-1), .cards-blk.-col2 section:nth-child(2n-1) {
		margin-right: 5.7692%;
	}
	.cards-blk.-col3 > div, .cards-blk.-col3 section {
		width: 30.7692%;
	}
	.cards-blk.-col3 > div:nth-child(3n-1), .cards-blk.-col3 > div:nth-child(3n-2), .cards-blk.-col3 section:nth-child(3n-1), .cards-blk.-col3 section:nth-child(3n-2) {
		margin-right: 3.8462%;
	}
	.cards-blk.-col4 > div, .cards-blk.-col4 section {
		width: 23.5577%;
	}
	.cards-blk.-col4 > div:nth-child(4n-1), .cards-blk.-col4 > div:nth-child(4n-2), .cards-blk.-col4 > div:nth-child(4n-3), .cards-blk.-col4 section:nth-child(4n-1), .cards-blk.-col4 section:nth-child(4n-2), .cards-blk.-col4 section:nth-child(4n-3) {
		margin-right: 1.9231%;
	}
	.cards-blk > .lnk-card {
		margin-top: 4rem;
	}
	.cards-blk > .lnk-card:first-child, .cards-blk > .lnk-card:nth-child(2) {
		margin-top: 0;
	}
	.lnk-card {
		margin-top: 4rem;
		margin-right: 0;
		margin-left: 0;
		max-width: 100%;
	}
	.lnk-card > a {
		padding: 2rem;
		min-height: 17.5rem;
	}
	.lnk-card > a .ico-pwr {
		right: 2rem;
		bottom: 2rem;
	}
	.lnk-card > a .ico-pwr.-bk {
		right: 2rem;
		bottom: 2rem;
	}
	.lnk-card > a .ico-pwr.-wh {
		right: 2rem;
		bottom: 2rem;
	}
	.lnk-card.-thumb > a {
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-pack: justify;

		justify-content: space-between;
	}
	.lnk-card.-thumb > a .main-thumb {
		margin-right: 16px;
		margin-bottom: 0;
		margin-left: 10px;
		max-width: 200px;
		width: calc(50% - 13px);
	}
	.lnk-card.-thumb > a .main-thumb + .main-head {
		margin-bottom: 0;
		width: calc(50% - 13px);
		text-align: center;
	}
	.lnk-card.-thumb > a .main-thumb + .main-head .hdl.-lv2 {
		font-size: 1.375rem;
		line-height: 1.5;
	}
	.lnk-card.-thumb > a .main-thumb + .main-head .cpy {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.lnk-card.-cend a {
		-ms-flex-pack: end;
		-ms-flex-align: start;
		min-height: 200px;

		justify-content: flex-end;
		align-items: flex-start;
	}
	.lnk-card.-cend a .main-head {
		padding-right: 0;
	}
	.lnk-card.-cend a .hdl.-lv2 {
		font-size: 1.5rem;
		line-height: 1.3333;
	}
	.visual-card {
		margin-right: 0;
		margin-left: 0;
		max-width: 100%;
	}
	.visual-card .hdl {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	.visual-card .dsc {
		font-size: 1rem;
		line-height: 1.5;
	}
	.chapter-blk {
		margin-bottom: 4rem;
		padding: 1rem 12.5%;
		max-width: 1140px;
		width: 89.0625%;
	}
	.chapter-blk.-wide {
		padding: 1rem 3.9063%;
	}
	.chapter-blk.-full {
		padding-right: 5.4688%;
		padding-left: 5.4688%;
		max-width: 100%;
		width: 100%;
	}
	.chapter-blk > .contents {
		margin: 4rem 0;
	}
	.chapter-blk figure.-ec {
		padding-right: 9.7561%;
		padding-left: 9.7561%;
	}
	.chapter-blk p {
		font-size: 1rem;
		line-height: 2;
	}
	.chapter-blk > *:first-child {
		margin-top: 4rem;
	}
	.chapter-blk > *:last-child {
		margin-bottom: 3rem;
	}
	.chapter-blk .section {
		margin: 3rem 0;
	}
	.chapter-blk .section.-graph {
		margin-top: 3rem;
		padding-bottom: 30px;
	}
	.chapter-blk .section.-graph:before {
		top: 3rem;
		right: 50%;
		left: auto;
		margin-right: 25.6098%;
		padding-bottom: 44.1463%;
		max-width: 234px;
		width: 21.3415%;
		-webkit-transform: none;
		transform: none;
	}
	.chapter-blk .section.-graph:after {
		left: calc(80 / 980 * -100%);
		padding-bottom: 40.2439%;
		width: calc(100% + (160 / 980 * 100%));
	}
	.chapter-blk .section.-graph .graph {
		margin-left: auto;
		width: 73.9024%;
	}
	.cmn-breadcrumb {
		padding: 1.25rem 0;
		min-height: 64px;
	}
	.cmn-breadcrumb > ul {
		padding: 0;
		max-width: 1140px;
		width: 89.0625%;
	}
	.cmn-links .inner {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: stretch;
		padding: 5rem 0 3.75rem;
		max-width: 1140px;
		width: 89.0625%;

		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		align-items: stretch;
	}
	.cmn-links .item {
		width: 17.5439%;
	}
	.cmn-links .item + .item {
		margin-top: 0;
	}
	.cmn-links .hdl {
		height: 122px;
		font-size: 1.5625rem;
		line-height: 1.4;
	}
	.cmn-links .hdl.-store img {
		width: 65.5%;
	}
	.cmn-links .hdl.-shopping img {
		width: 79.5%;
	}
	.cmn-links .hdl.-tokyo img {
		width: 67.5%;
	}
	.cmn-links .hdl.-osaka img {
		width: 69%;
	}
	.cmn-links .hdl.-atcosme img {
		width: 42.5%;
	}
	.cmn-links .hdl img {
		width: 240px;
	}
	.cmn-links .desc {
		margin-top: .25rem;
		white-space: nowrap;
		font-size: .625rem;
		line-height: 2;
	}
	.cmn-footer {
		padding-bottom: 0;
	}
	.cmn-footer > .blk.-upper {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: justify;
		-ms-flex-align: end;
		padding: 5.5rem 0 3rem;

		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: flex-end;
	}
	.cmn-footer > .blk.-upper .logo {
		margin: 0;
		width: 192px;
	}
	.cmn-footer > .blk.-upper .link {
		-ms-flex-pack: end;
		text-align: left;

		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		justify-content: flex-end;
	}
	.cmn-footer > .blk.-upper .link > li {
		margin-top: 0;
	}
	.cmn-footer > .blk.-upper .link > li:not(:first-child):before {
		display: block;
	}
	.cmn-footer > .blk.-upper .cpy {
		margin-top: 0;
		text-align: right;
	}
	.cmn-footerbar {
		padding: .25rem 30px;
	}
	.cmn-footerbar a {
		font-size: .75rem;
		line-height: 1;
	}
	.cmn-footerbar .group {
		font-size: .75rem;
		line-height: 1;
	}
	.cmn-footerbar .group .logo {
		width: 45px;
	}
	.cmn-footerbar .group .logo25 {
		width: auto;
		height: 22px;
	}
	.cmn-footerbar .link {
		margin: 0 -1rem 0 0;
		text-align: left;

		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
	}
	.cmn-footerbar .link > li + li {
		margin-left: 0;
	}
	.cmn-footerbar .link > li:not(:first-child):before {
		display: block;
	}
	.cmn-footerbar .link a {
		padding: 1rem;
	}
	.cmn-pagetop {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 4rem;
		height: 4rem;
	}
	.dlst-tbl > dt, .dlst-tbl > dd {
		font-size: 1rem;
		line-height: 1.5;
	}
	.dlst-faq > dt > div, .dlst-faq > dd > div {
		font-size: 1rem;
		line-height: 2;
	}
	.card-hdl {
		margin-bottom: 2rem;
		padding: 1.25rem 0 0;
		font-size: 1.625rem;
		line-height: 1.4615;
	}
	.card-hdl:before {
		width: 40px;
	}
	.hdl-lv2 {
		margin-bottom: 3rem;
		font-size: 1.75rem;
		line-height: 1.5714;
	}
	.hdl-lv3 {
		margin-bottom: 2rem;
		padding-bottom: calc(1.125rem + 2px);
		font-size: 1.625rem;
		line-height: 1.6154;
	}
	.hdl-lv3.-s {
		font-size: 1.375rem;
		line-height: 1.7273;
	}
	.hdl-lv4 {
		font-size: 1.375rem;
		line-height: 1.7273;
	}
	.hdl-lv5 {
		font-size: 1.125rem;
		line-height: 1.8889;
	}
	.hdl-lv6 {
		font-size: 1rem;
		line-height: 2;
	}
	.ico-category, .ico-fill {
		margin-right: 2rem;
	}
	.ico-bd {
		margin-right: 2rem;
	}
	.lower-header {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.lower-header > .contents {
		margin: 0 auto;
		padding: 0;
		max-width: 820px;
		width: 64.0625%;
	}
	.lower-header .intro {
		font-size: 1.125rem;
		line-height: 1.8889;
	}
	.lower-header .page-nav {
		margin-bottom: 2.5rem;
		padding: 0;
		max-width: 1140px;
		width: 89.0625%;
	}
	.lower-header .pagelnk-nav {
		display: block;
		margin: 3rem auto 0;
		padding: 0;
		max-width: 1140px;
		width: 89.0625%;
	}
	.lst-file > li {
		display: -ms-flexbox;
		display: flex;
		padding: 1.25rem 10.2041%;

		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.lst-file > li > time {
		font-size: 1rem;
		line-height: 2;
	}
	.lst-file > li p {
		font-size: 1rem;
		line-height: 1.5;
	}
	.lst-file .file {
		padding-left: 1.5em;
	}
	.lst-file .file:before {
		-webkit-transform: translateX(calc((1.5em - 10px) / -2));
		transform: translateX(calc((1.5em - 10px) / -2));
	}
	.lst-file .file > a {
		font-size: 1rem;
		line-height: 1.5;
	}
	.lst-profile > li {
		display: table;
	}
	.lst-profile > li > * {
		display: table-cell;
		padding: 4px 0;
	}
	.main-contents {
		padding: 5rem 0;
	}
	.main-head .cpy {
		font-size: 1rem;
		line-height: 1.5;
	}
	.main-head .cpy.-en {
		font-size: 1.625rem;
		line-height: 1.6154;
	}
	.main-head .hdl {
		font-size: 2.25rem;
		line-height: 1.5;
	}
	.main-head .hdl.-lv2 {
		font-size: 1.75rem;
		line-height: 1.5;
	}
	.main-head .hdl.-lv3 {
		font-size: 1.375rem;
		line-height: 1.5;
	}
	.newsctg-nav .hdl {
		margin-right: 1rem;
		margin-bottom: 0;
		width: 6rem;
	}
	.newsctg-nav .hdl:after {
		position: absolute;
		top: 0;
		right: 0;
	}
	.newsctg-nav .hdl.-large {
		width: 8rem;
	}
	.newsctg-nav .lst-parent.-center {
		-ms-flex-pack: center;

		justify-content: center;
	}
	.newsctg-nav .lst-parent.-center > li:nth-child(2) {
		-ms-flex-positive: 0;
		flex-grow: 0;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
	.newsctg-nav .lst-parent.-center .lst-child {
		-ms-flex-pack: center;

		justify-content: center;
	}
	.newsctg-nav a {
		padding: 5px 1rem;
		border-radius: 17px;
		font-size: .875rem;
		line-height: 1.5714;
	}
	.ctg-nav .lst-parent {
		display: -ms-flexbox;
		display: flex;

		-ms-flex: 1;
		flex: 1 1;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.ctg-nav .lst-parent > li:first-child {
		position: relative;
		top: auto;
		left: auto;
	}
	.ctg-nav .lst-parent.-center {
		-ms-flex-pack: center;

		justify-content: center;
	}
	.ctg-nav .lst-parent.-center > li:nth-child(2) {
		-ms-flex-positive: 0;
		flex-grow: 0;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
	.ctg-nav .lst-parent.-center .lst-child {
		-ms-flex-pack: center;

		justify-content: center;
	}
	.ctg-nav .lst-child:before {
		display: none;
	}
	.ctg-nav a {
		padding: 5px 1rem;
		border-radius: 17px;
		font-size: .875rem;
		line-height: 1.5714;
	}
	.news-chapter {
		margin-bottom: 4rem;
		max-width: 1140px;
		width: 89.0625%;
	}
	.news-chapter .lst-file > li {
		padding: 1.25rem 2rem;
	}
	.news-chapter .news-pager {
		margin-top: 3.75rem;
	}
	.news-single-chapter {
		padding: 5rem 0 0;
		max-width: 1040px;
		width: 81.25%;
	}
	.news-single-chapter .news-single {
		margin: 0 auto;
		max-width: 780px;
		width: 100%;
	}
	.news-single-chapter .news-sidenav {
		display: block;
		width: 19.2308%;
	}
	.news-return {
		padding: 3.5rem 0;
		max-width: 1040px;
		width: 81.25%;
	}
	.news-return a {
		font-size: 1rem;
		line-height: 2;
	}
	.news-sidenav dt {
		font-size: 1rem;
		line-height: 1.5;
	}
	.news-sidenav dd {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.news-sidenav li a {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.news-single {
		padding-bottom: 4rem;
	}
	.news-header {
		margin-bottom: 2.5rem;
		padding-bottom: 2rem;
	}
	.news-header time {
		font-size: 1rem;
		line-height: 1.5;
	}
	.news-header .hdl {
		font-size: 1.625rem;
		line-height: 1.6154;
	}
	.news-header .sign {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.news-pdf a {
		font-size: 1rem;
		line-height: 2;
	}
	.news-content figcaption {
		font-size: .875rem;
		line-height: 1.5714;
	}
	.news-content figcaption {
		margin-top: 1rem;
	}
	.news-content p {
		font-size: 1rem;
		line-height: 2;
	}
	.news-content h2 {
		margin-top: 4rem;
		margin-bottom: 2rem;
		font-size: 1.25rem;
		line-height: 1.7;
	}
	.news-content h3 {
		font-size: 1rem;
		line-height: 2;
	}
	.news-footer {
		padding-top: 3rem;
	}
	.news-companyinfo {
		padding: 2.5rem 6.25%;
	}
	.news-companyinfo h3 {
		font-size: 1.125rem;
		line-height: 1.8889;
	}
	.news-companyinfo h3 {
		margin-bottom: 1.5rem;
	}
	.news-companyinfo p {
		font-size: 1rem;
		line-height: 2;
	}
	.news-contact {
		margin-top: 4.5rem;
		padding: 2.5rem 6.25%;
	}
	.news-contact h3 {
		font-size: 1.125rem;
		line-height: 1.8889;
	}
	.news-contact p {
		font-size: 1rem;
		line-height: 2;
	}
	.newscat-blk {
		margin-bottom: 4rem;
		padding: 1rem 12.5%;
		max-width: 1140px;
		width: 89.0625%;
	}
	.newscat-blk.-wide {
		padding: 1rem 3.9063%;
	}
	.page-nav {
		width: 100%;
		border-radius: 0;
		background-color: transparent;
	}
	.page-nav.-business {
		margin: 0;
		padding-right: 4rem;
	}
	.page-nav.-business ul {
		-ms-flex-pack: end;

		justify-content: flex-end;
	}
	.page-nav > .btn {
		display: none;
	}
	.page-nav ul {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		padding: 0;

		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.page-nav ul:after {
		display: none;
	}
	.page-nav ul li {
		margin: 0 .5rem 1rem;
	}
	.page-nav ul a {
		padding: 0 18px;
		border-radius: 16px;
		font-size: 1.125rem;
		line-height: 1.7778;
	}
	.page-nav ul .is-active a {
		background-color: #303030;
	}
	.page-nav ul .is-active a:link, .page-nav ul .is-active a:visited, .page-nav ul .is-active a:focus, .page-nav ul .is-active a:active {
		background-color: #303030;
	}
	.pagelnk-nav.-parent {
		margin-bottom: 2rem;
		padding-bottom: 2rem;
	}
	.pagelnk-nav ul li {
		margin-top: 1rem;
		margin-bottom: 0;
	}
	.pagelnk-nav ul a {
		font-size: 1rem;
		line-height: 1.5;
	}
	.tbl-form {
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.tbl-profile > thead > tr > th, .tbl-profile > thead > tr > td {
		padding: 1rem;
	}
	.tbl-profile > tbody > tr > th, .tbl-profile > tbody > tr > td {
		padding: 3.5rem 2rem;
	}
	.tbl-profile > tbody > tr > th {
		vertical-align: middle;
	}
	.tbl-bd > tbody > tr > th, .tbl-bd > tbody > tr > td {
		font-size: 1rem;
		line-height: 1.5;
	}
	.top-header, .top-sheader {
		display: -ms-flexbox;
		display: flex;
	}
	.top-header > .contents, .top-sheader > .contents {
		margin: 0 auto;
		max-width: 1040px;
		width: 100%;
	}
	.top-header + .main-contents > *:first-child, .top-sheader + .main-contents > *:first-child {
		margin-top: -12rem !important;
	}
	.top-header .intro, .top-sheader .intro {
		font-size: 1rem;
		line-height: 2.25;
	}
	.top-header {
		padding-top: 5.5rem;
		padding-bottom: 7rem;
	}
	.top-header.-business {
		padding-bottom: 7rem;
	}
	.top-header.-business > .contents {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: end;
		margin-bottom: 5rem;

		align-items: flex-end;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 1rem;
	}
	.top-header.-business > .contents .page-nav {
		margin-bottom: 3px;
		margin-left: auto;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.top-header > .contents {
		margin: 0 auto;
		padding: 0 6.25%;
		max-width: 1140px;
		width: 89.0625%;
	}
	.top-header .blk:not(:first-child) {
		margin-top: 0;
	}
	.top-header .blk.-s {
		width: 43.2692%;
	}
	.top-header .blk.-m {
		width: 50%;
	}
	.top-header .blk.-l {
		width: 53.8462%;
	}
	.top-header .head .cpy {
		margin-bottom: 5rem;
		font-size: 3rem;
		line-height: 1;
	}
	.top-header .head .hdl {
		margin: 0 0 .5rem;
		white-space: nowrap;
		font-size: 1.125rem;
		line-height: 1.5;
	}
	.top-sheader {
		padding-top: 3rem;
		padding-bottom: 7rem;
	}
	.top-sheader > .contents {
		min-height: calc(9rem + 94px);
	}
	.business-lead {
		margin-bottom: 3rem;
	}
	.business-lead .desc.-head {
		width: 100%;

		grid-area: header;
	}
	.business-lead .desc.-head .hdl {
		margin-bottom: 2rem;
	}
	.business-lead .desc.-desc1 {
		padding: 0;
		width: 100%;
	}
	.business-lead .desc.-desc2 {
		padding: 0;
		width: 100%;
	}
	.business-lead.-store .img {
		margin-top: 48px;
		margin-right: auto;
		margin-left: auto;
		max-width: 700px;
	}
	.business-lead.-media .img {
		-ms-flex-order: 1;
		margin-top: 48px;
		padding-bottom: 4.4444%;
		background-size: 1px 73.5135%;

		order: 1;
	}
	.business-lead.-media .img img {
		width: 55.8889%;
	}
	.business-concept > .cpy {
		font-size: 2.5rem;
		line-height: 1;
	}
	.business-concept .business-concept-cpy {
		margin-top: 2rem;
		padding: 1.5rem 1rem;
		min-height: 120px;
		width: 90.2439%;
		border: solid 4px #5bb431;
		border-radius: 80px;
	}
	.business-concept .business-concept-cpy > p {
		font-size: 1.25rem;
		line-height: 1.5;
	}
	.business-concept .business-concept-lst > li {
		margin: 2.5rem 0 0;
		width: 47.561%;
		border: solid 6px #d7d7d7;
	}
	.business-concept .business-concept-lst > li:first-child {
		margin-top: 0;
	}
	.business-concept .business-concept-lst > li:nth-child(2) {
		margin-top: 0;
	}
	.business-concept .business-concept-lst > li .contents ul > li {
		font-size: 1rem;
		line-height: 2;
	}
	.business-features {
		display: grid;
		margin-top: 64px;

		gap: 64px 70px;
	}
	.business-features .section {
		display: grid;
		margin-top: 0;
		margin-bottom: 0;

		gap: 0;
	}
	.business-features .section .hdl-lv3 {
		margin-bottom: 40px;
	}
	.business-features .section .img {
		-ms-flex-order: 1;
		margin-top: 32px;
		padding-bottom: 30px;
		background-size: 1px 232px;

		order: 1;
	}
	.business-features .section .img img {
		width: 150px;
	}
	.business-atcosme {
		display: grid;

		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}
	.business-atcosme .subsection {
		margin-top: 0;
	}
	.business-atcosme .subsection .dlst-nml:first-child {
		margin-top: 0;
	}
	.company-challenge .challenge-lst {
		padding-bottom: 1.25rem;
	}
	.company-challenge .challenge-lst > .hdl {
		margin-bottom: 5.5rem;
		font-size: 2.5rem;
		line-height: 1.45;
	}
	.company-challenge .challenge-lst > .hdl:after {
		margin-left: 1rem;
		width: 68px;
		height: 68px;
		border-width: 5px;
		vertical-align: 5px;
		font-size: 2rem;
		line-height: 1.8125;
	}
	.company-challenge .challenge-lst .lst {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		max-width: 100%;

		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: center;
	}
	.company-challenge .challenge-lst li {
		margin: 3.75rem 0 0;
		padding: 1rem .5rem 1rem 1rem;
		min-height: 142px;
		width: 30.7317%;
		border-width: 6px;
	}
	.company-challenge .challenge-lst li:first-child, .company-challenge .challenge-lst li:nth-child(2), .company-challenge .challenge-lst li:nth-child(3) {
		margin-top: 0;
	}
	.company-challenge .challenge-lst li:not(:nth-child(3n+1)) {
		margin-left: 3.9024%;
	}
	.company-challenge .challenge-lst .i {
		left: -8.7302%;
		width: 28.5714%;
	}
	.company-challenge .challenge-lst .cpy {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	.company-challenge .challenge-lst .ico-pwr {
		right: 1rem;
		bottom: 1rem;
	}
	.company-info .inner {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: start;
		-ms-flex-align: start;

		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.company-info .img {
		width: 36.5854%;
	}
	.company-info .img img {
		margin-bottom: 0;
	}
	.company-info .desc {
		padding-left: 7.3077%;
		width: 57.6923%;
	}
	.company-philosophy .contents {
		margin-top: 0;
		text-align: center;
	}
	.company-philosophy .contents > .hdl {
		margin: 0 0 1rem;
		font-size: 3.75rem;
		line-height: 1.2667;
	}
	.company-philosophy .contents > .cpy {
		margin: 0 0 3rem;
		font-size: 1.125rem;
		line-height: 1.8889;
	}
	.contact-corporate .head .hdl {
		float: left;
		font-size: 1.625rem;
		line-height: 1.6154;
	}
	.contact-corporate .contact-link {
		font-size: .875rem;
		line-height: 2.1429;
	}
	.index-business {
		display: grid;
		margin-right: auto;
		margin-left: auto;
		padding-top: 120px;
		padding-bottom: 136px;
		width: \min(81.25vw, 1040px);

		gap: 96px;
		grid-template: "header  intro  " auto "service service" 1fr / auto 1fr;
	}
	.index-business > .header {
		grid-area: header;
	}
	.index-business > .header .cpy {
		margin-bottom: 8px;
		font-size: 1.125rem;
	}
	.index-business > .header .hdl {
		font-size: 4rem;
	}
	.index-business > .intro {
		padding-top: 44px;
		font-size: 1rem;
		line-height: 2;

		grid-area: intro;
	}
	.index-business > .intro:lang(en) {
		padding-top: 0;
	}
	.index-business-list {
		padding-top: 16px;
		padding-bottom: 16px;

		grid-area: service;
	}
	.index-business-list > .item {
		padding-top: 24px;
		padding-bottom: 32px;
	}
	.index-business-list > .item::before {
		top: 0;
		left: 16px;
	}
	.index-business-list > .item + .item {
		border-left: 1px solid #d7d7d7;
	}
	.index-business-list > .item .subject {
		font-size: 1.75rem;
	}
	.index-business-list > .item .subject + .cpy {
		margin-top: 10px;
	}
	.index-business-list > .item .cpy {
		font-size: 1.75rem;
	}
	.index-business-list > .item .cpy + .example {
		margin-top: 24px;
	}
	.index-business-list > .item .example {
		margin-bottom: 40px;
	}
	.index-business-list > .item .example img {
		max-width: 200px;
	}
	.index-business-list > .item .example img + figcaption {
		margin-top: 22px;
	}
	.index-business-list > .item .example figcaption {
		font-size: 1rem;
	}
	.index-chapter {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.index-chapter > div {
		max-width: 1040px;
		width: 81.25%;
	}
	.index-chapter-head {
		margin-bottom: 4rem;
	}
	.index-chapter-head .hdl {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	.index-chapter-head .cpy {
		font-size: 3.75rem;
		line-height: 1.1667;
	}
	.index-chapter-hdl2 {
		font-size: 2.5rem;
		line-height: 1.4;
	}
	.index-chapter-hdl3 {
		font-size: 2.125rem;
		line-height: 1.4706;
	}
	.index-company {
		padding-top: 120px;
	}
	.index-company > .header {
		margin-right: auto;
		margin-left: auto;
		width: \min(81.25vw, 1040px);
	}
	.index-company > .header .cpy {
		font-size: 1rem;
		line-height: 2;
	}
	.index-company > .header .cpy + .hdl {
		margin-top: 8px;
	}
	.index-company > .header .hdl {
		font-size: 4rem;
	}
	.index-company > .header + * {
		margin-top: 96px;
	}
	.index-company > .body {
		margin-right: auto;
		margin-left: auto;
		padding-right: 40px;
		padding-left: 40px;
		width: \min(81.25vw, 1040px);
	}
	.index-company > .body .tbl-bd .head {
		width: 18%;
	}
	.index-company > .body .tbl-bd .data {
		width: calc(82% - 40px);
	}
	.index-company .box-map {
		margin-top: 136px;
	}
	.index-contact {
		padding-top: 120px;
	}
	.index-contact > .header {
		margin-right: auto;
		margin-left: auto;
		width: \min(81.25vw, 1040px);
	}
	.index-contact > .header .cpy {
		font-size: 1rem;
		line-height: 2;
	}
	.index-contact > .header .cpy + .hdl {
		margin-top: 8px;
	}
	.index-contact > .header .hdl {
		font-size: 4rem;
	}
	.index-contact > .header + * {
		margin-top: 96px;
	}
	.index-contact-lst {
		display: grid;

		grid-template-columns: repeat(2, 1fr);
	}
	.index-contact-lst .item a {
		aspect-ratio: 640 / 350;
		row-gap: 8px;
	}
	.index-contact-lst .item a[target="_blank"]::after {
		right: 8px;
		bottom: 8px;
		width: 16px;
		height: 16px;
	}
	.index-contact-lst .item .cpy {
		font-size: 1rem;
		line-height: 1.5;
	}
	.index-contact-lst .item .hdl {
		font-size: 2.25rem;
		line-height: 54 / 36;
	}
	.index-head .cpy {
		font-size: 1.125rem;
		line-height: 1;
	}
	.index-head .hdl {
		margin-top: .5rem;
		font-size: 4rem;
		line-height: 1;
	}
	.index-hero {
		margin: 10px 16px 20px;
		height: 526px;
	}
	.index-hero .splide__track {
		margin-right: auto;
		margin-left: auto;
		width: 740px;
	}
	.index-hero-link {
		padding: 28px 40px 10px 24px;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.index-hero-link > a {
		row-gap: 16px;
	}
	.index-hero-link .copy {
		font-size: 2.25rem;
	}
	.index-hero-link .text {
		font-size: 1rem;

		gap: 10px;
	}
	.index-hero-link .text::after {
		margin-bottom: -2px;
		width: 14px;
		height: 14px;
	}
	.index-links {
		padding: \min(8.75vw, 112px) 0 \min(9.375vw, 120px);
	}
	.index-links > .list {
		display: grid;
		-ms-flex-align: end;
		width: \min(80.6202vw, 1040px);
		-webkit-column-gap: 72px;
		-moz-column-gap: 72px;
		column-gap: 72px;

		grid-template-columns: repeat(2, 1fr);
		align-items: end;
	}
	.index-links > .list:has(:nth-child(3):last-child) {
		-webkit-column-gap: \min(3.125vw, 40px);
		-moz-column-gap: \min(3.125vw, 40px);
		column-gap: \min(3.125vw, 40px);

		grid-template-columns: repeat(3, 1fr);
	}
	.index-links > .list:has(:nth-child(3):last-child) .item dd a img {
		height: \min(2.2656vw, 29px);
	}
	.index-links > .list .item dt {
		white-space: nowrap;
		font-size: \min(1.25vw, 1rem);
	}
	.index-links > .list .item dt + dd {
		margin-top: \min(2.5vw, 32px);
	}
	.index-links > .list .item dd a {
		height: \min(15.625vw, 200px);
	}
	.index-links > .list .item dd a img {
		height: 29px;
	}
	.index-message {
		display: grid;
		margin-right: auto;
		margin-left: auto;
		padding: 120px 0 136px;
		width: \min(81.25vw, 1040px);
		-webkit-column-gap: 80px;
		-moz-column-gap: 80px;
		column-gap: 80px;

		grid-template: "header header" auto "photo body" 1fr / 36.875% 1fr;
		row-gap: 88px;
	}
	.index-message > .header {
		grid-area: header;
	}
	.index-message > .header .cpy {
		font-size: 1.125rem;
		line-height: 2;
	}
	.index-message > .header .cpy + .hdl {
		margin-top: 8px;
	}
	.index-message > .header .hdl {
		font-size: 4rem;
	}
	.index-message > .photo {
		grid-area: photo;
	}
	.index-message > .body {
		grid-area: body;
	}
	.index-message > .body p {
		font-size: 1rem;
	}
	.index-message > .body p.signature {
		margin-top: 48px;
	}
	.index-news {
		padding: 112px 0 120px;
	}
	.index-news > .inner {
		position: relative;
		margin-right: auto;
		margin-left: auto;
		width: \min(81.25vw, 1040px);
	}
	.index-news .header {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: baseline;
		-webkit-column-gap: 16px;
		-moz-column-gap: 16px;
		column-gap: 16px;

		align-items: baseline;
	}
	.index-news .header .hdl {
		font-size: 2.25rem;
	}
	.index-news .header .btn {
		margin-left: auto;
	}
	.index-news .btn {
		position: absolute;
		top: 18px;
		right: 0;
	}
	.index-news .btn .lnk-prm {
		padding-top: 0;
		padding-bottom: 0;
	}
	.index-news .btn .lnk-prm:hover {
		background-color: transparent;
		color: #0f0f0f;
	}
	.index-news .btn .lnk-prm:hover .ico-pwr.-sml::after {
		background-color: currentColor;
	}
	.index-news .btn .lnk-prm:hover .ico-pwr.-sml circle {
		stroke: currentColor;
	}
	.index-philosophy {
		padding-top: 108px;
		padding-bottom: 120px;
	}
	.index-philosophy > .header {
		margin-right: auto;
		margin-left: auto;
		width: \min(81.25vw, 1040px);
	}
	.index-philosophy > .header .cpy {
		font-size: 1rem;
		line-height: 2;
	}
	.index-philosophy > .header .cpy + .hdl {
		margin-top: 8px;
	}
	.index-philosophy > .header .hdl {
		font-size: 4rem;
	}
	.index-philosophy > .header + * {
		margin-top: 96px;
	}
	.index-philosophy .inner {
		margin-right: auto;
		margin-left: auto;
		padding-top: 88px;
		padding-right: \min(7.8125vw, 100px);
		padding-bottom: 96px;
		padding-left: \min(7.8125vw, 100px);
		width: \min(81.25vw, 1040px);
	}
	.index-philosophy .section + .section {
		margin-top: 80px;
	}
	.index-philosophy .section.-value .hdl {
		margin-bottom: 40px;
	}
	.index-philosophy .section .hdl {
		margin-bottom: 32px;
		font-size: 1.125rem;
	}
	.index-philosophy .section .subsection .lede {
		font-size: 2rem;
	}
	.index-philosophy .section .subsection .lede.-sml {
		font-size: 1.625rem;
	}
	.index-philosophy .section .subsection .lede + * {
		margin-top: 10px;
	}
	.index-philosophy .section .subsection .desc {
		font-size: 1rem;
	}
	.index-philosophy .section .subsection .desc:lang(en) {
		max-width: 640px;
	}
	.index-philosophy .section .subsection + .subsection {
		margin-top: 40px;
	}
	.cmn-header {
		position: absolute;
	}
	._sp._pc {
		display: initial !important;
	}
	._tablet {
		display: none !important;
	}
	._pc-fx {
		display: -ms-flexbox !important;
		display: flex !important;
	}
	._pc-fx-rev {
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	._pc-fx-h {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	._pc-fx-h-rev {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	._pc-fx-l {
		-ms-flex-pack: start !important;

		justify-content: flex-start !important;
	}
	._pc-fx-r {
		-ms-flex-pack: end !important;

		justify-content: flex-end !important;
	}
	._pc-fx-c {
		-ms-flex-pack: center !important;

		justify-content: center !important;
	}
	._pc-fx-btw {
		-ms-flex-pack: justify !important;

		justify-content: space-between !important;
	}
	._pc-fx-ard {
		-ms-flex-pack: distribute !important;

		justify-content: space-around !important;
	}
	._pc-fx-t {
		-ms-flex-align: start !important;

		align-items: flex-start !important;
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	._pc-fx-m {
		-ms-flex-align: center !important;

		align-items: center !important;
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	._pc-fx-b {
		-ms-flex-align: end !important;

		align-items: flex-end !important;
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	._pc-fx-bs {
		-ms-flex-align: baseline !important;

		align-items: baseline !important;
	}
	._pc-fx-str {
		-ms-flex-align: stretch !important;

		align-items: stretch !important;
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	._pc-fx-w {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	._pc-fx-nw {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	._pc-fi {
		max-width: 100% !important;

		-ms-flex: 0 1 auto !important;
		flex: 0 1 auto !important;
	}
	._pc-fi-t {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	._pc-fi-m {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}
	._pc-fi-b {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	._pc-fi-bs {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	._pc-fi-str {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
	._fzl {
		font-size: 1.125rem !important;
		line-height: 1.8889 !important;
	}
	._fzm {
		font-size: 1rem !important;
		line-height: 2 !important;
	}
	._fzs {
		font-size: .875rem !important;
		line-height: 2.1429 !important;
	}
	._fzl-l {
		font-size: 1.125rem !important;
		line-height: 1.4444 !important;
	}
	._fzm-l {
		font-size: 1rem !important;
		line-height: 1.5 !important;
	}
	._fzs-l {
		font-size: .875rem !important;
		line-height: 1.5714 !important;
	}
	._pc-ta-l {
		text-align: left !important;
	}
	._pc-ta-l td, ._pc-ta-l th {
		text-align: left !important;
	}
	._pc-ta-r {
		text-align: right !important;
	}
	._pc-ta-r td, ._pc-ta-r th {
		text-align: right !important;
	}
	._pc-ta-c {
		text-align: center !important;
	}
	._pc-ta-c td, ._pc-ta-c th {
		text-align: center !important;
	}
	body.is-fzl ul.lst-nml {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	body.is-fzl ol.lst-nml {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	body.is-fzl .lst-body {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	body.is-fzl .lst-ast {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	body.is-fzl .lst-kakko {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	body.is-fzl .lst-lnk {
		font-size: 1.125rem;
		line-height: 1.4444;
	}
	body.is-fzl .lst-file {
		font-size: 1rem;
		line-height: 1.5;
	}
	body.is-fzl .chapter-blk p {
		font-size: 1.125rem;
		line-height: 1.8889;
	}
	body.is-fzl .lower-header .intro {
		font-size: 1.25rem !important;
		line-height: 1.8 !important;
	}
	._pc-ma {
		margin: auto !important;
	}
	._pc-m0 {
		margin: auto !important;
	}
	._pc-mt0 {
		margin-top: 0 !important;
	}
	._pc-mb0 {
		margin-bottom: 0 !important;
	}
	._pc-ml0 {
		margin-left: 0 !important;
	}
	._pc-mr0 {
		margin-right: 0 !important;
	}
	._pc-mt8 {
		margin-top: 8px !important;
	}
	._pc-mb8 {
		margin-bottom: 8px !important;
	}
	._pc-ml8 {
		margin-left: 8px !important;
	}
	._pc-mr8 {
		margin-right: 8px !important;
	}
	._pc-mt16 {
		margin-top: 16px !important;
	}
	._pc-mb16 {
		margin-bottom: 16px !important;
	}
	._pc-ml16 {
		margin-left: 16px !important;
	}
	._pc-mr16 {
		margin-right: 16px !important;
	}
	._pc-mt24 {
		margin-top: 24px !important;
	}
	._pc-mb24 {
		margin-bottom: 24px !important;
	}
	._pc-ml24 {
		margin-left: 24px !important;
	}
	._pc-mr24 {
		margin-right: 24px !important;
	}
	._pc-mt32 {
		margin-top: 32px !important;
	}
	._pc-mb32 {
		margin-bottom: 32px !important;
	}
	._pc-ml32 {
		margin-left: 32px !important;
	}
	._pc-mr32 {
		margin-right: 32px !important;
	}
	._pc-mt40 {
		margin-top: 40px !important;
	}
	._pc-mb40 {
		margin-bottom: 40px !important;
	}
	._pc-ml40 {
		margin-left: 40px !important;
	}
	._pc-mr40 {
		margin-right: 40px !important;
	}
	._pc-mt48 {
		margin-top: 48px !important;
	}
	._pc-mb48 {
		margin-bottom: 48px !important;
	}
	._pc-ml48 {
		margin-left: 48px !important;
	}
	._pc-mr48 {
		margin-right: 48px !important;
	}
	._pc-mt56 {
		margin-top: 56px !important;
	}
	._pc-mb56 {
		margin-bottom: 56px !important;
	}
	._pc-ml56 {
		margin-left: 56px !important;
	}
	._pc-mr56 {
		margin-right: 56px !important;
	}
	._pc-mt64 {
		margin-top: 64px !important;
	}
	._pc-mb64 {
		margin-bottom: 64px !important;
	}
	._pc-ml64 {
		margin-left: 64px !important;
	}
	._pc-mr64 {
		margin-right: 64px !important;
	}
	._pc-mt72 {
		margin-top: 72px !important;
	}
	._pc-mb72 {
		margin-bottom: 72px !important;
	}
	._pc-ml72 {
		margin-left: 72px !important;
	}
	._pc-mr72 {
		margin-right: 72px !important;
	}
	._pc-mt80 {
		margin-top: 80px !important;
	}
	._pc-mb80 {
		margin-bottom: 80px !important;
	}
	._pc-ml80 {
		margin-left: 80px !important;
	}
	._pc-mr80 {
		margin-right: 80px !important;
	}
	._pc-mt88 {
		margin-top: 88px !important;
	}
	._pc-mb88 {
		margin-bottom: 88px !important;
	}
	._pc-ml88 {
		margin-left: 88px !important;
	}
	._pc-mr88 {
		margin-right: 88px !important;
	}
	._pc-mt96 {
		margin-top: 96px !important;
	}
	._pc-mb96 {
		margin-bottom: 96px !important;
	}
	._pc-ml96 {
		margin-left: 96px !important;
	}
	._pc-mr96 {
		margin-right: 96px !important;
	}
	._pc-mt104 {
		margin-top: 104px !important;
	}
	._pc-mb104 {
		margin-bottom: 104px !important;
	}
	._pc-ml104 {
		margin-left: 104px !important;
	}
	._pc-mr104 {
		margin-right: 104px !important;
	}
	._pc-mt112 {
		margin-top: 112px !important;
	}
	._pc-mb112 {
		margin-bottom: 112px !important;
	}
	._pc-ml112 {
		margin-left: 112px !important;
	}
	._pc-mr112 {
		margin-right: 112px !important;
	}
	._pc-mt120 {
		margin-top: 120px !important;
	}
	._pc-mb120 {
		margin-bottom: 120px !important;
	}
	._pc-ml120 {
		margin-left: 120px !important;
	}
	._pc-mr120 {
		margin-right: 120px !important;
	}
	._pc-mt128 {
		margin-top: 128px !important;
	}
	._pc-mb128 {
		margin-bottom: 128px !important;
	}
	._pc-ml128 {
		margin-left: 128px !important;
	}
	._pc-mr128 {
		margin-right: 128px !important;
	}
	._pc-mt136 {
		margin-top: 136px !important;
	}
	._pc-mb136 {
		margin-bottom: 136px !important;
	}
	._pc-ml136 {
		margin-left: 136px !important;
	}
	._pc-mr136 {
		margin-right: 136px !important;
	}
	._pc-mt144 {
		margin-top: 144px !important;
	}
	._pc-mb144 {
		margin-bottom: 144px !important;
	}
	._pc-ml144 {
		margin-left: 144px !important;
	}
	._pc-mr144 {
		margin-right: 144px !important;
	}
	._pc-mt152 {
		margin-top: 152px !important;
	}
	._pc-mb152 {
		margin-bottom: 152px !important;
	}
	._pc-ml152 {
		margin-left: 152px !important;
	}
	._pc-mr152 {
		margin-right: 152px !important;
	}
	._pc-mt160 {
		margin-top: 160px !important;
	}
	._pc-mb160 {
		margin-bottom: 160px !important;
	}
	._pc-ml160 {
		margin-left: 160px !important;
	}
	._pc-mr160 {
		margin-right: 160px !important;
	}
	._pc-mt168 {
		margin-top: 168px !important;
	}
	._pc-mb168 {
		margin-bottom: 168px !important;
	}
	._pc-ml168 {
		margin-left: 168px !important;
	}
	._pc-mr168 {
		margin-right: 168px !important;
	}
	._pc-mt176 {
		margin-top: 176px !important;
	}
	._pc-mb176 {
		margin-bottom: 176px !important;
	}
	._pc-ml176 {
		margin-left: 176px !important;
	}
	._pc-mr176 {
		margin-right: 176px !important;
	}
	._pc-mt184 {
		margin-top: 184px !important;
	}
	._pc-mb184 {
		margin-bottom: 184px !important;
	}
	._pc-ml184 {
		margin-left: 184px !important;
	}
	._pc-mr184 {
		margin-right: 184px !important;
	}
	._pc-mt192 {
		margin-top: 192px !important;
	}
	._pc-mb192 {
		margin-bottom: 192px !important;
	}
	._pc-ml192 {
		margin-left: 192px !important;
	}
	._pc-mr192 {
		margin-right: 192px !important;
	}
	._pc-mt200 {
		margin-top: 200px !important;
	}
	._pc-mb200 {
		margin-bottom: 200px !important;
	}
	._pc-ml200 {
		margin-left: 200px !important;
	}
	._pc-mr200 {
		margin-right: 200px !important;
	}
	._pc-mt208 {
		margin-top: 208px !important;
	}
	._pc-mb208 {
		margin-bottom: 208px !important;
	}
	._pc-ml208 {
		margin-left: 208px !important;
	}
	._pc-mr208 {
		margin-right: 208px !important;
	}
	._pc-mt216 {
		margin-top: 216px !important;
	}
	._pc-mb216 {
		margin-bottom: 216px !important;
	}
	._pc-ml216 {
		margin-left: 216px !important;
	}
	._pc-mr216 {
		margin-right: 216px !important;
	}
	._pc-mt224 {
		margin-top: 224px !important;
	}
	._pc-mb224 {
		margin-bottom: 224px !important;
	}
	._pc-ml224 {
		margin-left: 224px !important;
	}
	._pc-mr224 {
		margin-right: 224px !important;
	}
	._pc-mt232 {
		margin-top: 232px !important;
	}
	._pc-mb232 {
		margin-bottom: 232px !important;
	}
	._pc-ml232 {
		margin-left: 232px !important;
	}
	._pc-mr232 {
		margin-right: 232px !important;
	}
	._pc-mt240 {
		margin-top: 240px !important;
	}
	._pc-mb240 {
		margin-bottom: 240px !important;
	}
	._pc-ml240 {
		margin-left: 240px !important;
	}
	._pc-mr240 {
		margin-right: 240px !important;
	}
	._pc-mt248 {
		margin-top: 248px !important;
	}
	._pc-mb248 {
		margin-bottom: 248px !important;
	}
	._pc-ml248 {
		margin-left: 248px !important;
	}
	._pc-mr248 {
		margin-right: 248px !important;
	}
	._pc-mt256 {
		margin-top: 256px !important;
	}
	._pc-mb256 {
		margin-bottom: 256px !important;
	}
	._pc-ml256 {
		margin-left: 256px !important;
	}
	._pc-mr256 {
		margin-right: 256px !important;
	}
	._pc-mt264 {
		margin-top: 264px !important;
	}
	._pc-mb264 {
		margin-bottom: 264px !important;
	}
	._pc-ml264 {
		margin-left: 264px !important;
	}
	._pc-mr264 {
		margin-right: 264px !important;
	}
	._pc-mt272 {
		margin-top: 272px !important;
	}
	._pc-mb272 {
		margin-bottom: 272px !important;
	}
	._pc-ml272 {
		margin-left: 272px !important;
	}
	._pc-mr272 {
		margin-right: 272px !important;
	}
	._pc-mt280 {
		margin-top: 280px !important;
	}
	._pc-mb280 {
		margin-bottom: 280px !important;
	}
	._pc-ml280 {
		margin-left: 280px !important;
	}
	._pc-mr280 {
		margin-right: 280px !important;
	}
	._pc-mt288 {
		margin-top: 288px !important;
	}
	._pc-mb288 {
		margin-bottom: 288px !important;
	}
	._pc-ml288 {
		margin-left: 288px !important;
	}
	._pc-mr288 {
		margin-right: 288px !important;
	}
	._pc-mt296 {
		margin-top: 296px !important;
	}
	._pc-mb296 {
		margin-bottom: 296px !important;
	}
	._pc-ml296 {
		margin-left: 296px !important;
	}
	._pc-mr296 {
		margin-right: 296px !important;
	}
	._pc-mt304 {
		margin-top: 304px !important;
	}
	._pc-mb304 {
		margin-bottom: 304px !important;
	}
	._pc-ml304 {
		margin-left: 304px !important;
	}
	._pc-mr304 {
		margin-right: 304px !important;
	}
	._pc-mt312 {
		margin-top: 312px !important;
	}
	._pc-mb312 {
		margin-bottom: 312px !important;
	}
	._pc-ml312 {
		margin-left: 312px !important;
	}
	._pc-mr312 {
		margin-right: 312px !important;
	}
	._pc-mt320 {
		margin-top: 320px !important;
	}
	._pc-mb320 {
		margin-bottom: 320px !important;
	}
	._pc-ml320 {
		margin-left: 320px !important;
	}
	._pc-mr320 {
		margin-right: 320px !important;
	}
	._pc-mt328 {
		margin-top: 328px !important;
	}
	._pc-mb328 {
		margin-bottom: 328px !important;
	}
	._pc-ml328 {
		margin-left: 328px !important;
	}
	._pc-mr328 {
		margin-right: 328px !important;
	}
	._pc-mt336 {
		margin-top: 336px !important;
	}
	._pc-mb336 {
		margin-bottom: 336px !important;
	}
	._pc-ml336 {
		margin-left: 336px !important;
	}
	._pc-mr336 {
		margin-right: 336px !important;
	}
	._pc-mt344 {
		margin-top: 344px !important;
	}
	._pc-mb344 {
		margin-bottom: 344px !important;
	}
	._pc-ml344 {
		margin-left: 344px !important;
	}
	._pc-mr344 {
		margin-right: 344px !important;
	}
	._pc-mt352 {
		margin-top: 352px !important;
	}
	._pc-mb352 {
		margin-bottom: 352px !important;
	}
	._pc-ml352 {
		margin-left: 352px !important;
	}
	._pc-mr352 {
		margin-right: 352px !important;
	}
	._pc-mt360 {
		margin-top: 360px !important;
	}
	._pc-mb360 {
		margin-bottom: 360px !important;
	}
	._pc-ml360 {
		margin-left: 360px !important;
	}
	._pc-mr360 {
		margin-right: 360px !important;
	}
	._pc-mt368 {
		margin-top: 368px !important;
	}
	._pc-mb368 {
		margin-bottom: 368px !important;
	}
	._pc-ml368 {
		margin-left: 368px !important;
	}
	._pc-mr368 {
		margin-right: 368px !important;
	}
	._pc-mt376 {
		margin-top: 376px !important;
	}
	._pc-mb376 {
		margin-bottom: 376px !important;
	}
	._pc-ml376 {
		margin-left: 376px !important;
	}
	._pc-mr376 {
		margin-right: 376px !important;
	}
	._pc-mt384 {
		margin-top: 384px !important;
	}
	._pc-mb384 {
		margin-bottom: 384px !important;
	}
	._pc-ml384 {
		margin-left: 384px !important;
	}
	._pc-mr384 {
		margin-right: 384px !important;
	}
	._pc-mt392 {
		margin-top: 392px !important;
	}
	._pc-mb392 {
		margin-bottom: 392px !important;
	}
	._pc-ml392 {
		margin-left: 392px !important;
	}
	._pc-mr392 {
		margin-right: 392px !important;
	}
	._pc-mt400 {
		margin-top: 400px !important;
	}
	._pc-mb400 {
		margin-bottom: 400px !important;
	}
	._pc-ml400 {
		margin-left: 400px !important;
	}
	._pc-mr400 {
		margin-right: 400px !important;
	}
	._pc-mt408 {
		margin-top: 408px !important;
	}
	._pc-mb408 {
		margin-bottom: 408px !important;
	}
	._pc-ml408 {
		margin-left: 408px !important;
	}
	._pc-mr408 {
		margin-right: 408px !important;
	}
	._pc-mt416 {
		margin-top: 416px !important;
	}
	._pc-mb416 {
		margin-bottom: 416px !important;
	}
	._pc-ml416 {
		margin-left: 416px !important;
	}
	._pc-mr416 {
		margin-right: 416px !important;
	}
	._pc-mt424 {
		margin-top: 424px !important;
	}
	._pc-mb424 {
		margin-bottom: 424px !important;
	}
	._pc-ml424 {
		margin-left: 424px !important;
	}
	._pc-mr424 {
		margin-right: 424px !important;
	}
	._pc-mt432 {
		margin-top: 432px !important;
	}
	._pc-mb432 {
		margin-bottom: 432px !important;
	}
	._pc-ml432 {
		margin-left: 432px !important;
	}
	._pc-mr432 {
		margin-right: 432px !important;
	}
	._pc-mt440 {
		margin-top: 440px !important;
	}
	._pc-mb440 {
		margin-bottom: 440px !important;
	}
	._pc-ml440 {
		margin-left: 440px !important;
	}
	._pc-mr440 {
		margin-right: 440px !important;
	}
	._pc-mt448 {
		margin-top: 448px !important;
	}
	._pc-mb448 {
		margin-bottom: 448px !important;
	}
	._pc-ml448 {
		margin-left: 448px !important;
	}
	._pc-mr448 {
		margin-right: 448px !important;
	}
	._pc-mt456 {
		margin-top: 456px !important;
	}
	._pc-mb456 {
		margin-bottom: 456px !important;
	}
	._pc-ml456 {
		margin-left: 456px !important;
	}
	._pc-mr456 {
		margin-right: 456px !important;
	}
	._pc-mt464 {
		margin-top: 464px !important;
	}
	._pc-mb464 {
		margin-bottom: 464px !important;
	}
	._pc-ml464 {
		margin-left: 464px !important;
	}
	._pc-mr464 {
		margin-right: 464px !important;
	}
	._pc-mt472 {
		margin-top: 472px !important;
	}
	._pc-mb472 {
		margin-bottom: 472px !important;
	}
	._pc-ml472 {
		margin-left: 472px !important;
	}
	._pc-mr472 {
		margin-right: 472px !important;
	}
	._pc-mt480 {
		margin-top: 480px !important;
	}
	._pc-mb480 {
		margin-bottom: 480px !important;
	}
	._pc-ml480 {
		margin-left: 480px !important;
	}
	._pc-mr480 {
		margin-right: 480px !important;
	}
	._pc-mt488 {
		margin-top: 488px !important;
	}
	._pc-mb488 {
		margin-bottom: 488px !important;
	}
	._pc-ml488 {
		margin-left: 488px !important;
	}
	._pc-mr488 {
		margin-right: 488px !important;
	}
	._pc-mt496 {
		margin-top: 496px !important;
	}
	._pc-mb496 {
		margin-bottom: 496px !important;
	}
	._pc-ml496 {
		margin-left: 496px !important;
	}
	._pc-mr496 {
		margin-right: 496px !important;
	}
	._pc-mt504 {
		margin-top: 504px !important;
	}
	._pc-mb504 {
		margin-bottom: 504px !important;
	}
	._pc-ml504 {
		margin-left: 504px !important;
	}
	._pc-mr504 {
		margin-right: 504px !important;
	}
	._pc-mt512 {
		margin-top: 512px !important;
	}
	._pc-mb512 {
		margin-bottom: 512px !important;
	}
	._pc-ml512 {
		margin-left: 512px !important;
	}
	._pc-mr512 {
		margin-right: 512px !important;
	}
	._pc-pa {
		padding: auto !important;
	}
	._pc-p0 {
		padding: auto !important;
	}
	._pc-pt0 {
		padding-top: 0 !important;
	}
	._pc-pb0 {
		padding-bottom: 0 !important;
	}
	._pc-pl0 {
		padding-left: 0 !important;
	}
	._pc-pr0 {
		padding-right: 0 !important;
	}
	._pc-pt8 {
		padding-top: 8px !important;
	}
	._pc-pb8 {
		padding-bottom: 8px !important;
	}
	._pc-pl8 {
		padding-left: 8px !important;
	}
	._pc-pr8 {
		padding-right: 8px !important;
	}
	._pc-pt16 {
		padding-top: 16px !important;
	}
	._pc-pb16 {
		padding-bottom: 16px !important;
	}
	._pc-pl16 {
		padding-left: 16px !important;
	}
	._pc-pr16 {
		padding-right: 16px !important;
	}
	._pc-pt24 {
		padding-top: 24px !important;
	}
	._pc-pb24 {
		padding-bottom: 24px !important;
	}
	._pc-pl24 {
		padding-left: 24px !important;
	}
	._pc-pr24 {
		padding-right: 24px !important;
	}
	._pc-pt32 {
		padding-top: 32px !important;
	}
	._pc-pb32 {
		padding-bottom: 32px !important;
	}
	._pc-pl32 {
		padding-left: 32px !important;
	}
	._pc-pr32 {
		padding-right: 32px !important;
	}
	._pc-pt40 {
		padding-top: 40px !important;
	}
	._pc-pb40 {
		padding-bottom: 40px !important;
	}
	._pc-pl40 {
		padding-left: 40px !important;
	}
	._pc-pr40 {
		padding-right: 40px !important;
	}
	._pc-pt48 {
		padding-top: 48px !important;
	}
	._pc-pb48 {
		padding-bottom: 48px !important;
	}
	._pc-pl48 {
		padding-left: 48px !important;
	}
	._pc-pr48 {
		padding-right: 48px !important;
	}
	._pc-pt56 {
		padding-top: 56px !important;
	}
	._pc-pb56 {
		padding-bottom: 56px !important;
	}
	._pc-pl56 {
		padding-left: 56px !important;
	}
	._pc-pr56 {
		padding-right: 56px !important;
	}
	._pc-pt64 {
		padding-top: 64px !important;
	}
	._pc-pb64 {
		padding-bottom: 64px !important;
	}
	._pc-pl64 {
		padding-left: 64px !important;
	}
	._pc-pr64 {
		padding-right: 64px !important;
	}
	._pc-pt72 {
		padding-top: 72px !important;
	}
	._pc-pb72 {
		padding-bottom: 72px !important;
	}
	._pc-pl72 {
		padding-left: 72px !important;
	}
	._pc-pr72 {
		padding-right: 72px !important;
	}
	._pc-pt80 {
		padding-top: 80px !important;
	}
	._pc-pb80 {
		padding-bottom: 80px !important;
	}
	._pc-pl80 {
		padding-left: 80px !important;
	}
	._pc-pr80 {
		padding-right: 80px !important;
	}
	._pc-pt88 {
		padding-top: 88px !important;
	}
	._pc-pb88 {
		padding-bottom: 88px !important;
	}
	._pc-pl88 {
		padding-left: 88px !important;
	}
	._pc-pr88 {
		padding-right: 88px !important;
	}
	._pc-pt96 {
		padding-top: 96px !important;
	}
	._pc-pb96 {
		padding-bottom: 96px !important;
	}
	._pc-pl96 {
		padding-left: 96px !important;
	}
	._pc-pr96 {
		padding-right: 96px !important;
	}
	._pc-pt104 {
		padding-top: 104px !important;
	}
	._pc-pb104 {
		padding-bottom: 104px !important;
	}
	._pc-pl104 {
		padding-left: 104px !important;
	}
	._pc-pr104 {
		padding-right: 104px !important;
	}
	._pc-pt112 {
		padding-top: 112px !important;
	}
	._pc-pb112 {
		padding-bottom: 112px !important;
	}
	._pc-pl112 {
		padding-left: 112px !important;
	}
	._pc-pr112 {
		padding-right: 112px !important;
	}
	._pc-pt120 {
		padding-top: 120px !important;
	}
	._pc-pb120 {
		padding-bottom: 120px !important;
	}
	._pc-pl120 {
		padding-left: 120px !important;
	}
	._pc-pr120 {
		padding-right: 120px !important;
	}
	._pc-pt128 {
		padding-top: 128px !important;
	}
	._pc-pb128 {
		padding-bottom: 128px !important;
	}
	._pc-pl128 {
		padding-left: 128px !important;
	}
	._pc-pr128 {
		padding-right: 128px !important;
	}
	._pc-pt136 {
		padding-top: 136px !important;
	}
	._pc-pb136 {
		padding-bottom: 136px !important;
	}
	._pc-pl136 {
		padding-left: 136px !important;
	}
	._pc-pr136 {
		padding-right: 136px !important;
	}
	._pc-pt144 {
		padding-top: 144px !important;
	}
	._pc-pb144 {
		padding-bottom: 144px !important;
	}
	._pc-pl144 {
		padding-left: 144px !important;
	}
	._pc-pr144 {
		padding-right: 144px !important;
	}
	._pc-pt152 {
		padding-top: 152px !important;
	}
	._pc-pb152 {
		padding-bottom: 152px !important;
	}
	._pc-pl152 {
		padding-left: 152px !important;
	}
	._pc-pr152 {
		padding-right: 152px !important;
	}
	._pc-pt160 {
		padding-top: 160px !important;
	}
	._pc-pb160 {
		padding-bottom: 160px !important;
	}
	._pc-pl160 {
		padding-left: 160px !important;
	}
	._pc-pr160 {
		padding-right: 160px !important;
	}
	._pc-pt168 {
		padding-top: 168px !important;
	}
	._pc-pb168 {
		padding-bottom: 168px !important;
	}
	._pc-pl168 {
		padding-left: 168px !important;
	}
	._pc-pr168 {
		padding-right: 168px !important;
	}
	._pc-pt176 {
		padding-top: 176px !important;
	}
	._pc-pb176 {
		padding-bottom: 176px !important;
	}
	._pc-pl176 {
		padding-left: 176px !important;
	}
	._pc-pr176 {
		padding-right: 176px !important;
	}
	._pc-pt184 {
		padding-top: 184px !important;
	}
	._pc-pb184 {
		padding-bottom: 184px !important;
	}
	._pc-pl184 {
		padding-left: 184px !important;
	}
	._pc-pr184 {
		padding-right: 184px !important;
	}
	._pc-pt192 {
		padding-top: 192px !important;
	}
	._pc-pb192 {
		padding-bottom: 192px !important;
	}
	._pc-pl192 {
		padding-left: 192px !important;
	}
	._pc-pr192 {
		padding-right: 192px !important;
	}
	._pc-pt200 {
		padding-top: 200px !important;
	}
	._pc-pb200 {
		padding-bottom: 200px !important;
	}
	._pc-pl200 {
		padding-left: 200px !important;
	}
	._pc-pr200 {
		padding-right: 200px !important;
	}
	._pc-pt208 {
		padding-top: 208px !important;
	}
	._pc-pb208 {
		padding-bottom: 208px !important;
	}
	._pc-pl208 {
		padding-left: 208px !important;
	}
	._pc-pr208 {
		padding-right: 208px !important;
	}
	._pc-pt216 {
		padding-top: 216px !important;
	}
	._pc-pb216 {
		padding-bottom: 216px !important;
	}
	._pc-pl216 {
		padding-left: 216px !important;
	}
	._pc-pr216 {
		padding-right: 216px !important;
	}
	._pc-pt224 {
		padding-top: 224px !important;
	}
	._pc-pb224 {
		padding-bottom: 224px !important;
	}
	._pc-pl224 {
		padding-left: 224px !important;
	}
	._pc-pr224 {
		padding-right: 224px !important;
	}
	._pc-pt232 {
		padding-top: 232px !important;
	}
	._pc-pb232 {
		padding-bottom: 232px !important;
	}
	._pc-pl232 {
		padding-left: 232px !important;
	}
	._pc-pr232 {
		padding-right: 232px !important;
	}
	._pc-pt240 {
		padding-top: 240px !important;
	}
	._pc-pb240 {
		padding-bottom: 240px !important;
	}
	._pc-pl240 {
		padding-left: 240px !important;
	}
	._pc-pr240 {
		padding-right: 240px !important;
	}
	._pc-pt248 {
		padding-top: 248px !important;
	}
	._pc-pb248 {
		padding-bottom: 248px !important;
	}
	._pc-pl248 {
		padding-left: 248px !important;
	}
	._pc-pr248 {
		padding-right: 248px !important;
	}
	._pc-pt256 {
		padding-top: 256px !important;
	}
	._pc-pb256 {
		padding-bottom: 256px !important;
	}
	._pc-pl256 {
		padding-left: 256px !important;
	}
	._pc-pr256 {
		padding-right: 256px !important;
	}
	._pc-pt264 {
		padding-top: 264px !important;
	}
	._pc-pb264 {
		padding-bottom: 264px !important;
	}
	._pc-pl264 {
		padding-left: 264px !important;
	}
	._pc-pr264 {
		padding-right: 264px !important;
	}
	._pc-pt272 {
		padding-top: 272px !important;
	}
	._pc-pb272 {
		padding-bottom: 272px !important;
	}
	._pc-pl272 {
		padding-left: 272px !important;
	}
	._pc-pr272 {
		padding-right: 272px !important;
	}
	._pc-pt280 {
		padding-top: 280px !important;
	}
	._pc-pb280 {
		padding-bottom: 280px !important;
	}
	._pc-pl280 {
		padding-left: 280px !important;
	}
	._pc-pr280 {
		padding-right: 280px !important;
	}
	._pc-pt288 {
		padding-top: 288px !important;
	}
	._pc-pb288 {
		padding-bottom: 288px !important;
	}
	._pc-pl288 {
		padding-left: 288px !important;
	}
	._pc-pr288 {
		padding-right: 288px !important;
	}
	._pc-pt296 {
		padding-top: 296px !important;
	}
	._pc-pb296 {
		padding-bottom: 296px !important;
	}
	._pc-pl296 {
		padding-left: 296px !important;
	}
	._pc-pr296 {
		padding-right: 296px !important;
	}
	._pc-pt304 {
		padding-top: 304px !important;
	}
	._pc-pb304 {
		padding-bottom: 304px !important;
	}
	._pc-pl304 {
		padding-left: 304px !important;
	}
	._pc-pr304 {
		padding-right: 304px !important;
	}
	._pc-pt312 {
		padding-top: 312px !important;
	}
	._pc-pb312 {
		padding-bottom: 312px !important;
	}
	._pc-pl312 {
		padding-left: 312px !important;
	}
	._pc-pr312 {
		padding-right: 312px !important;
	}
	._pc-pt320 {
		padding-top: 320px !important;
	}
	._pc-pb320 {
		padding-bottom: 320px !important;
	}
	._pc-pl320 {
		padding-left: 320px !important;
	}
	._pc-pr320 {
		padding-right: 320px !important;
	}
	._pc-pt328 {
		padding-top: 328px !important;
	}
	._pc-pb328 {
		padding-bottom: 328px !important;
	}
	._pc-pl328 {
		padding-left: 328px !important;
	}
	._pc-pr328 {
		padding-right: 328px !important;
	}
	._pc-pt336 {
		padding-top: 336px !important;
	}
	._pc-pb336 {
		padding-bottom: 336px !important;
	}
	._pc-pl336 {
		padding-left: 336px !important;
	}
	._pc-pr336 {
		padding-right: 336px !important;
	}
	._pc-pt344 {
		padding-top: 344px !important;
	}
	._pc-pb344 {
		padding-bottom: 344px !important;
	}
	._pc-pl344 {
		padding-left: 344px !important;
	}
	._pc-pr344 {
		padding-right: 344px !important;
	}
	._pc-pt352 {
		padding-top: 352px !important;
	}
	._pc-pb352 {
		padding-bottom: 352px !important;
	}
	._pc-pl352 {
		padding-left: 352px !important;
	}
	._pc-pr352 {
		padding-right: 352px !important;
	}
	._pc-pt360 {
		padding-top: 360px !important;
	}
	._pc-pb360 {
		padding-bottom: 360px !important;
	}
	._pc-pl360 {
		padding-left: 360px !important;
	}
	._pc-pr360 {
		padding-right: 360px !important;
	}
	._pc-pt368 {
		padding-top: 368px !important;
	}
	._pc-pb368 {
		padding-bottom: 368px !important;
	}
	._pc-pl368 {
		padding-left: 368px !important;
	}
	._pc-pr368 {
		padding-right: 368px !important;
	}
	._pc-pt376 {
		padding-top: 376px !important;
	}
	._pc-pb376 {
		padding-bottom: 376px !important;
	}
	._pc-pl376 {
		padding-left: 376px !important;
	}
	._pc-pr376 {
		padding-right: 376px !important;
	}
	._pc-pt384 {
		padding-top: 384px !important;
	}
	._pc-pb384 {
		padding-bottom: 384px !important;
	}
	._pc-pl384 {
		padding-left: 384px !important;
	}
	._pc-pr384 {
		padding-right: 384px !important;
	}
	._pc-pt392 {
		padding-top: 392px !important;
	}
	._pc-pb392 {
		padding-bottom: 392px !important;
	}
	._pc-pl392 {
		padding-left: 392px !important;
	}
	._pc-pr392 {
		padding-right: 392px !important;
	}
	._pc-pt400 {
		padding-top: 400px !important;
	}
	._pc-pb400 {
		padding-bottom: 400px !important;
	}
	._pc-pl400 {
		padding-left: 400px !important;
	}
	._pc-pr400 {
		padding-right: 400px !important;
	}
	._pc-pt408 {
		padding-top: 408px !important;
	}
	._pc-pb408 {
		padding-bottom: 408px !important;
	}
	._pc-pl408 {
		padding-left: 408px !important;
	}
	._pc-pr408 {
		padding-right: 408px !important;
	}
	._pc-pt416 {
		padding-top: 416px !important;
	}
	._pc-pb416 {
		padding-bottom: 416px !important;
	}
	._pc-pl416 {
		padding-left: 416px !important;
	}
	._pc-pr416 {
		padding-right: 416px !important;
	}
	._pc-pt424 {
		padding-top: 424px !important;
	}
	._pc-pb424 {
		padding-bottom: 424px !important;
	}
	._pc-pl424 {
		padding-left: 424px !important;
	}
	._pc-pr424 {
		padding-right: 424px !important;
	}
	._pc-pt432 {
		padding-top: 432px !important;
	}
	._pc-pb432 {
		padding-bottom: 432px !important;
	}
	._pc-pl432 {
		padding-left: 432px !important;
	}
	._pc-pr432 {
		padding-right: 432px !important;
	}
	._pc-pt440 {
		padding-top: 440px !important;
	}
	._pc-pb440 {
		padding-bottom: 440px !important;
	}
	._pc-pl440 {
		padding-left: 440px !important;
	}
	._pc-pr440 {
		padding-right: 440px !important;
	}
	._pc-pt448 {
		padding-top: 448px !important;
	}
	._pc-pb448 {
		padding-bottom: 448px !important;
	}
	._pc-pl448 {
		padding-left: 448px !important;
	}
	._pc-pr448 {
		padding-right: 448px !important;
	}
	._pc-pt456 {
		padding-top: 456px !important;
	}
	._pc-pb456 {
		padding-bottom: 456px !important;
	}
	._pc-pl456 {
		padding-left: 456px !important;
	}
	._pc-pr456 {
		padding-right: 456px !important;
	}
	._pc-pt464 {
		padding-top: 464px !important;
	}
	._pc-pb464 {
		padding-bottom: 464px !important;
	}
	._pc-pl464 {
		padding-left: 464px !important;
	}
	._pc-pr464 {
		padding-right: 464px !important;
	}
	._pc-pt472 {
		padding-top: 472px !important;
	}
	._pc-pb472 {
		padding-bottom: 472px !important;
	}
	._pc-pl472 {
		padding-left: 472px !important;
	}
	._pc-pr472 {
		padding-right: 472px !important;
	}
	._pc-pt480 {
		padding-top: 480px !important;
	}
	._pc-pb480 {
		padding-bottom: 480px !important;
	}
	._pc-pl480 {
		padding-left: 480px !important;
	}
	._pc-pr480 {
		padding-right: 480px !important;
	}
	._pc-pt488 {
		padding-top: 488px !important;
	}
	._pc-pb488 {
		padding-bottom: 488px !important;
	}
	._pc-pl488 {
		padding-left: 488px !important;
	}
	._pc-pr488 {
		padding-right: 488px !important;
	}
	._pc-pt496 {
		padding-top: 496px !important;
	}
	._pc-pb496 {
		padding-bottom: 496px !important;
	}
	._pc-pl496 {
		padding-left: 496px !important;
	}
	._pc-pr496 {
		padding-right: 496px !important;
	}
	._pc-pt504 {
		padding-top: 504px !important;
	}
	._pc-pb504 {
		padding-bottom: 504px !important;
	}
	._pc-pl504 {
		padding-left: 504px !important;
	}
	._pc-pr504 {
		padding-right: 504px !important;
	}
	._pc-pt512 {
		padding-top: 512px !important;
	}
	._pc-pb512 {
		padding-bottom: 512px !important;
	}
	._pc-pl512 {
		padding-left: 512px !important;
	}
	._pc-pr512 {
		padding-right: 512px !important;
	}
}

@media screen and (max-width: 414px) {
	.-lot.btn-prm, .-lot.btn-return {
		padding-left: 2rem;
	}
	.tbl-form {
		border-bottom: none;
	}
	.tbl-form > tbody > tr > th, .tbl-form > thead > tr > th {
		padding: 0;
	}
	.tbl-form > tbody > tr > td, .tbl-form > thead > tr > td {
		padding-top: 1rem;
	}
	.tbl-form > tbody > tr > th, .tbl-form > tbody > tr > td, .tbl-form > thead > tr > th, .tbl-form > thead > tr > td {
		display: block;
		width: 100% !important;
	}
}

@media screen and (max-width: 767px) {
	.blk-tool.-v {
		display: none;
	}
	.blk-tool.-h {
		display: none;
	}
	.tool-fixednav .blk-tool {
		display: none;
	}
	.chapter-blk.-business .pagelnk-nav.-store li {
		margin-right: .25rem;
		margin-left: .25rem;
	}
	.news-tool .nav-print {
		display: none;
	}
	.page-nav.-business ul a {
		padding: 0 35px;
		border: 1px solid #fff;
		border-radius: 16px;
		font-size: .875rem;
		line-height: 2.3571;
	}
	.page-nav.-business ul .is-active a {
		border: 1px solid #303030;
		background-color: #303030;
	}
	.tbl-reflow {
		border-bottom: none;
	}
	.tbl-reflow > tbody > tr > th, .tbl-reflow > tbody > tr > td, .tbl-reflow > thead > tr > th, .tbl-reflow > thead > tr > td {
		display: block;
		width: 100% !important;
		border-top: none;
		border-right: none;
		border-bottom: 2px solid #d7d7d7;
		border-left: none;
	}
	.tbl-responsive > table > tbody > tr > th, .tbl-responsive > table > tbody > tr > td, .tbl-responsive > table > thead > tr > th, .tbl-responsive > table > thead > tr > td {
		white-space: nowrap;
	}
	.business-lead .desc.-head .hdl {
		margin-bottom: 1.5rem;
	}
	.business-lead.-store .desc.-head .hdl {
		text-align: center;
	}
	.business-lead.-store .img {
		margin-top: 16px;
	}
	.business-lead.-media .desc.-head .hdl {
		text-align: center;
	}
	.business-lead.-media .img {
		margin-bottom: 24px;
		padding-right: 8px;
		padding-bottom: 24px;
		padding-left: 20px;
		background-size: 1px 116px;
	}
	.business-lead.-media .img img {
		max-width: 100%;
		width: 276px;
	}
	.business-features .section .desc {
		margin-top: 24px;
	}
	.index-business {
		padding-top: 64px;
		padding-right: 1.25rem;
		padding-bottom: 64px;
		padding-left: 1.25rem;
	}
	.index-business > .header + .intro {
		margin-top: 24px;
	}
	.index-business > .intro + .index-business-list {
		margin-top: 56px;
	}
	.index-business-list > .item + .item {
		border-top: 1px solid #d7d7d7;
	}
	.index-business-list > .item .btn-prm {
		padding-top: .875rem;
		padding-bottom: .875rem;
		width: 245px;
	}
	.index-company > .header {
		padding-right: 20px;
		padding-left: 20px;
	}
	.index-company > .body {
		padding-right: 20px;
		padding-left: 20px;
	}
	.index-company > .body .tbl-bd .head {
		padding: 0;
		border: none;
	}
	.index-company > .body .tbl-bd .data {
		padding-top: 12px;
		padding-bottom: 24px;
	}
	.index-company > .body .tbl-bd tr + tr {
		margin-top: 24px;
	}
	.index-contact > .header {
		padding-right: 20px;
		padding-left: 20px;
	}
	.index-links > .list .item + .item {
		margin-top: 36px;
	}
	.index-message > .header + .photo {
		margin-top: 40px;
	}
	.index-message > .photo {
		margin-right: auto;
		margin-bottom: 32px;
		margin-left: auto;
		max-width: 335px;
	}
	.index-news .header {
		text-align: center;
	}
	.index-news .header .hdl + .cpy {
		margin-top: 4px;
	}
	.index-news .header .btn {
		display: none;
	}
	.index-news .header + * {
		margin-top: 40px;
	}
	.index-news .btn {
		margin-top: 48px;
	}
	.index-news .lst-file li {
		padding-right: 20px;
		padding-left: 20px;
	}
	.index-philosophy {
		padding: 56px 20px 64px;
	}
	.index-philosophy > .header {
		padding-right: 20px;
		padding-left: 20px;
	}
	.index-philosophy .section .subsection .lede:lang(en) {
		margin-right: auto;
		margin-left: auto;
		max-width: 440px;
	}
	.index-philosophy .section .subsection .desc:lang(en) {
		max-width: 420px;
		text-align: left;
		-webkit-hyphens: auto;
		hyphens: auto;

		-ms-hyphens: auto;
	}
	._pc {
		display: none !important;
	}
}

@media screen and (min-width: 1280px) {
	.chapter-blk {
		padding-right: 160px;
		padding-left: 160px;
	}
	.chapter-blk.-wide {
		padding-right: 50px;
		padding-left: 50px;
	}
	.chapter-blk.-business {
		padding-right: 120px;
		padding-left: 120px;
	}
	.chapter-blk.-full {
		padding-right: 70px;
		padding-left: 70px;
	}
	.cmnnav-main > li > a {
		padding: 11px 20px 19px;
	}
	.cmnnav-main > li > a:lang(en) {
		padding: 26px 24px 28px;
	}
	.newscat-blk {
		padding-right: 160px;
		padding-left: 160px;
	}
	.newscat-blk.-wide {
		padding-right: 50px;
		padding-left: 50px;
	}
	.top-header > .contents {
		padding: 0 80px;
	}
}

@media print,screen and (min-width: 415px) {
	.c-col.-w1 {
		width: calc(8.3333% - ((15 / 820) * 100%));
	}
	.c-col.-w2 {
		width: calc(16.6667% - ((15 / 820) * 100%));
	}
	.c-col.-w3 {
		width: calc(25% - ((15 / 820) * 100%));
	}
	.c-col.-w4 {
		width: calc(33.3333% - ((15 / 820) * 100%));
	}
	.c-col.-w5 {
		width: calc(41.6667% - ((15 / 820) * 100%));
	}
	.c-col.-w6 {
		width: calc(50% - ((15 / 820) * 100%));
	}
	.c-col.-w7 {
		width: calc(58.3333% - ((15 / 820) * 100%));
	}
	.c-col.-w8 {
		width: calc(66.6667% - ((15 / 820) * 100%));
	}
	.c-col.-w9 {
		width: calc(75% - ((15 / 820) * 100%));
	}
	.c-col.-w10 {
		width: calc(83.3333% - ((15 / 820) * 100%));
	}
	.c-col.-w11 {
		width: calc(91.6667% - ((15 / 820) * 100%));
	}
	.c-col.-w12 {
		width: calc(100% - ((15 / 820) * 100%));
	}
	.c-col-s.-w1 {
		width: calc(8.3333% - ((30 / 820) * 100%));
	}
	.c-col-s.-w2 {
		width: calc(16.6667% - ((30 / 820) * 100%));
	}
	.c-col-s.-w3 {
		width: calc(25% - ((30 / 820) * 100%));
	}
	.c-col-s.-w4 {
		width: calc(33.3333% - ((30 / 820) * 100%));
	}
	.c-col-s.-w5 {
		width: calc(41.6667% - ((30 / 820) * 100%));
	}
	.c-col-s.-w6 {
		width: calc(50% - ((30 / 820) * 100%));
	}
	.c-col-s.-w7 {
		width: calc(58.3333% - ((30 / 820) * 100%));
	}
	.c-col-s.-w8 {
		width: calc(66.6667% - ((30 / 820) * 100%));
	}
	.c-col-s.-w9 {
		width: calc(75% - ((30 / 820) * 100%));
	}
	.c-col-s.-w10 {
		width: calc(83.3333% - ((30 / 820) * 100%));
	}
	.c-col-s.-w11 {
		width: calc(91.6667% - ((30 / 820) * 100%));
	}
	.c-col-s.-w12 {
		width: calc(100% - ((30 / 820) * 100%));
	}
	.c-col-fit.-w1 {
		width: 8.3333%;
	}
	.c-col-fit.-w2 {
		width: 16.6667%;
	}
	.c-col-fit.-w3 {
		width: 25%;
	}
	.c-col-fit.-w4 {
		width: 33.3333%;
	}
	.c-col-fit.-w5 {
		width: 41.6667%;
	}
	.c-col-fit.-w6 {
		width: 50%;
	}
	.c-col-fit.-w7 {
		width: 58.3333%;
	}
	.c-col-fit.-w8 {
		width: 66.6667%;
	}
	.c-col-fit.-w9 {
		width: 75%;
	}
	.c-col-fit.-w10 {
		width: 83.3333%;
	}
	.c-col-fit.-w11 {
		width: 91.6667%;
	}
	.c-col-fit.-w12 {
		width: 100%;
	}
	.dlst-tbl > dt.-w1, .dlst-tbl > dd.-w1 {
		width: calc(8.3333% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w2, .dlst-tbl > dd.-w2 {
		width: calc(16.6667% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w3, .dlst-tbl > dd.-w3 {
		width: calc(25% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w4, .dlst-tbl > dd.-w4 {
		width: calc(33.3333% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w5, .dlst-tbl > dd.-w5 {
		width: calc(41.6667% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w6, .dlst-tbl > dd.-w6 {
		width: calc(50% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w7, .dlst-tbl > dd.-w7 {
		width: calc(58.3333% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w8, .dlst-tbl > dd.-w8 {
		width: calc(66.6667% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w9, .dlst-tbl > dd.-w9 {
		width: calc(75% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w10, .dlst-tbl > dd.-w10 {
		width: calc(83.3333% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w11, .dlst-tbl > dd.-w11 {
		width: calc(91.6667% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt.-w12, .dlst-tbl > dd.-w12 {
		width: calc(100% - ((20 / 820) * 100%));
	}
	.dlst-tbl > dt {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
		border-bottom: solid 2px #d7d7d7;
	}
	.dlst-tbl > dd {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}
	.dlst-tbl > dd:first-of-type {
		padding-top: 0;
	}
	.dlst-flex > dt:not(:first-child) {
		margin-top: 0;
	}
	.lst-pager li {
		width: 40px;
		height: 40px;
	}
	.lst-pager li span {
		font-size: .875rem;
		line-height: 2.8571;
	}
	.lst-pager li a {
		font-size: .875rem;
		line-height: 2.8571;
	}
	.tbl-bd > tbody > tr {
		border-bottom: none;
	}
	.tbl-bd > tbody > tr > th, .tbl-bd > tbody > tr > td {
		border-bottom: solid 2px #d7d7d7;
	}
	.tbl-bd > tbody > tr > th.-w1, .tbl-bd > tbody > tr > td.-w1 {
		width: calc(8.3333% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w2, .tbl-bd > tbody > tr > td.-w2 {
		width: calc(16.6667% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w3, .tbl-bd > tbody > tr > td.-w3 {
		width: calc(25% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w4, .tbl-bd > tbody > tr > td.-w4 {
		width: calc(33.3333% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w5, .tbl-bd > tbody > tr > td.-w5 {
		width: calc(41.6667% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w6, .tbl-bd > tbody > tr > td.-w6 {
		width: calc(50% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w7, .tbl-bd > tbody > tr > td.-w7 {
		width: calc(58.3333% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w8, .tbl-bd > tbody > tr > td.-w8 {
		width: calc(66.6667% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w9, .tbl-bd > tbody > tr > td.-w9 {
		width: calc(75% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w10, .tbl-bd > tbody > tr > td.-w10 {
		width: calc(83.3333% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w11, .tbl-bd > tbody > tr > td.-w11 {
		width: calc(91.6667% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th.-w12, .tbl-bd > tbody > tr > td.-w12 {
		width: calc(100% - ((20 / 820) * 100%));
	}
	.tbl-bd > tbody > tr > th {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}
	.tbl-bd > tbody > tr > td {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}
	.tbl-bd > tbody > tr:first-of-type > td {
		padding-top: 0;
	}
	._sp {
		display: none !important;
	}
	._tablet-fx {
		display: -ms-flexbox !important;
		display: flex !important;
	}
	._tablet-fx-rev {
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	._tablet-fx-h {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	._tablet-fx-h-rev {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	._tablet-fx-l {
		-ms-flex-pack: start !important;

		justify-content: flex-start !important;
	}
	._tablet-fx-r {
		-ms-flex-pack: end !important;

		justify-content: flex-end !important;
	}
	._tablet-fx-c {
		-ms-flex-pack: center !important;

		justify-content: center !important;
	}
	._tablet-fx-btw {
		-ms-flex-pack: justify !important;

		justify-content: space-between !important;
	}
	._tablet-fx-ard {
		-ms-flex-pack: distribute !important;

		justify-content: space-around !important;
	}
	._tablet-fx-t {
		-ms-flex-align: start !important;

		align-items: flex-start !important;
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	._tablet-fx-m {
		-ms-flex-align: center !important;

		align-items: center !important;
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	._tablet-fx-b {
		-ms-flex-align: end !important;

		align-items: flex-end !important;
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	._tablet-fx-bs {
		-ms-flex-align: baseline !important;

		align-items: baseline !important;
	}
	._tablet-fx-str {
		-ms-flex-align: stretch !important;

		align-items: stretch !important;
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	._tablet-fx-w {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	._tablet-fx-nw {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	._tablet-fi {
		max-width: 100% !important;

		-ms-flex: 0 1 auto !important;
		flex: 0 1 auto !important;
	}
	._tablet-fi-t {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	._tablet-fi-m {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}
	._tablet-fi-b {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	._tablet-fi-bs {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	._tablet-fi-str {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.cmn-links .inner {
		-ms-flex-pack: center;
		-webkit-column-gap: 4.1667%;
		-moz-column-gap: 4.1667%;
		column-gap: 4.1667%;

		justify-content: center;
		row-gap: 1rem;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cmn-links .item {
		min-width: 200px;
	}
	.business-lead .desc.-head .hdl {
		font-size: 3.125vw;
		line-height: 57 / 32;
	}
	.business-lead .desc.-head .hdl:lang(en) {
		line-height: 1.5;
	}
	.index-business-list {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;

		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 16px;
	}
	.index-business-list::after {
		display: block;
		width: 100%;
		height: 1px;
		background-color: #d7d7d7;
		content: "";

		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.index-business-list > .item {
		padding-right: 20px;
		padding-left: 20px;

		-ms-flex: 0 1 312px;
		flex: 0 1 312px;
	}
	.index-business-list > .item:last-child {
		-ms-flex-order: 1;
		border-right: 1px solid #d7d7d7;

		order: 1;
	}
	.index-business-list > .item .subject + .example {
		margin-top: 58px;
	}
}

@media print,screen and (min-width: 1024px) {
	.cmn-links .inner {
		-ms-flex-pack: justify;

		justify-content: space-between;
	}
	.cmn-headbar {
		padding: .25rem 30px;
		height: 40px;
	}
	.cmn-headbar a {
		font-size: .75rem;
		line-height: 1.5;
	}
	.cmn-headbar .group {
		font-size: .75rem;
		line-height: 1.5;
	}
	.cmn-headbar .group .logo {
		margin-right: .75rem;
		width: 45px;
	}
	.cmn-headbar .group .logo25 {
		margin-right: .75rem;
		width: 75px;
		height: 22px;
	}
	.cmn-headbar .corp {
		display: block;
	}
	.cmn-main {
		padding-top: 214px;
	}
	.cmn-nav {
		position: static;
		top: auto;
		left: auto;
		display: block;
		padding: 0;
		width: auto;
		height: auto;
	}
	.cmn-nav > .scroll {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		background-color: transparent;
	}
	.cmn-sitename {
		padding-left: 0;
		height: 96px;
	}
	.cmn-sitename .sitename {
		margin: 0 auto;
		width: 192px;
	}
	.cmn-sitename .sitename a {
		padding: 20px 0 10px;
	}
	.cmn-humberger {
		display: none;
	}
	.cmnnav-lang {
		width: 100px;
		border-radius: 10px;
	}
	.cmnnav-lang:before {
		border-radius: 10px;
	}
	.cmnnav-lang a {
		font-size: .75rem;
		line-height: 1.6667;
	}
	.cmnnav-main {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		-ms-flex-align: stretch;

		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: stretch;
	}
	.cmnnav-main > li {
		width: 163px;
		border: none;
	}
	.cmnnav-main > li:last-child > a:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		display: block;
		margin: auto;
		width: 2px;
		height: 18px;
		background-color: #d7d7d7;
		content: "";
	}
	.cmnnav-main > li.is-active > a .hdl {
		color: #5bb431;
	}
	.cmnnav-main > li > a {
		background: none;
	}
	.cmnnav-main > li > a:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		display: block;
		margin: auto;
		width: 2px;
		height: 18px;
		background-color: #d7d7d7;
		content: "";
	}
	.cmnnav-main > li > a .cpy, .cmnnav-main > li > a .hdl {
		text-align: center;
	}
	.cmnnav-main > li > a .cpy {
		font-size: .75rem;
		line-height: 2;
	}
	.cmnnav-main > li > a .hdl {
		font-size: .9375rem;
		line-height: 1.6;
	}
	.cmnnav-main .child .head a:before, .cmnnav-main .child .sublst a:before {
		display: none;
	}
	.cmnnav-main .child {
		position: absolute;
		left: 0;
		display: block;
		padding: 2.5rem 9.375%;
		width: 100%;
		background-color: #f0f1f3;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: -webkit-transform;
		transition-property: transform;
		transition-property: transform,-webkit-transform;
		-webkit-transform-origin: top left;
		transform-origin: top left;
	}
	.cmnnav-main .child .head, .cmnnav-main .child .sublst {
		margin: 0 auto;
		max-width: 1140px;
		opacity: 0;
		transition-timing-function: cubic-bezier(.5, 0, .2, 1);
		transition-duration: .3s;
		transition-property: opacity;
	}
	.cmnnav-main .child .head {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: end;
		margin-bottom: 2rem;
		padding-bottom: 1rem;
		border-bottom: solid 2px #d7d7d7;

		align-items: flex-end;
	}
	.cmnnav-main .child .head a {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: end;
		padding: 1rem;
		border-width: 2px;
		border-color: #d7d7d7;

		align-items: flex-end;
	}
	.cmnnav-main .child .head a:after {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 10px;
		height: 10px;
		background: url(../img/ico/arw-primary.svg) no-repeat center;
		background-size: cover;
		content: "";
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.cmnnav-main .child .head .cpy {
		display: block;
		color: #5bb431;
		font-weight: 600;
		font-size: 1.625rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.2308;
	}
	.cmnnav-main .child .head .hdl {
		margin-left: 1rem;
		font-weight: bold;
		font-size: 1rem;
		line-height: 1.75;
	}
	.cmnnav-main .child .head .hdl:lang(en) {
		margin-left: 0;
		color: #5bb431;
		font-weight: 600;
		font-size: 1.625rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.2308;
	}
	.cmnnav-main .child .sublst {
		display: -ms-flexbox;
		display: flex;
		padding: 0 2.8846%;

		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cmnnav-main .child .sublst li {
		width: 22.6531%;
	}
	.cmnnav-main .child .sublst li:not(:nth-child(4n)) {
		margin-right: 3.0612%;
	}
	.cmnnav-main .child .sublst.-col3 li {
		width: 31.2245%;
	}
	.cmnnav-main .child .sublst.-col3 li:not(:nth-child(3n)) {
		margin-right: 3.0612%;
	}
	.cmnnav-main .child .sublst a {
		padding: 0;
	}
	.cmnnav-main .child .sublst a[target="_blank"]:after {
		display: inline-block;
		margin-right: 4px;
		margin-left: 4px;
		width: 12px;
		height: 12px;
		background: url(../img/ico/blank-primary.svg) no-repeat center;
		background-size: contain;
		content: "";
		text-decoration: none;
	}
	.cmnnav-main .child .sublst a[href$=".pdf"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "PDF";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".xls"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "XLS";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".xlsx"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "XLSX";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".doc"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "DOC";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".docx"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "DOCX";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".ppt"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "PPT";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".pptx"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "PPTX";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a[href$=".zip"]:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "ZIP";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-pdf:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "PDF";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-xls:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "XLS";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-xlsx:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "XLSX";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-doc:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "DOC";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-docx:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "DOCX";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-ppt:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "PPT";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-pptx:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "PPTX";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst a.ico-zip:after {
		display: inline-block;
		margin-left: 6px;
		padding: 0 4px;
		width: auto;
		height: auto;
		border-radius: 2px;
		background-color: #5bb431;
		background-image: none;
		color: #fff;
		content: "ZIP";
		vertical-align: 2px;
		text-decoration: none;
		text-decoration: none;
		font-weight: 600;
		font-weight: 600;
		font-size: .6875rem;
		font-family: "Open Sans",sans-serif;
		line-height: 1.8182;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: color,background-color;
	}
	.cmnnav-main .child .sublst figure {
		display: block;
		overflow: hidden;
		margin: 0 0 .5rem;
		border-radius: 5px;
	}
	.cmnnav-main .child .sublst figure:after {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		border: solid 4px transparent;
		border-radius: 4px;
		content: "";
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: border-color;
	}
	.cmnnav-main .child .sublst span {
		position: relative;
		display: inline-block;
		padding: 4px 0;
		padding-left: 1rem;
		font-weight: bold;
		font-size: 1rem;
		line-height: 1.5;
	}
	.cmnnav-main .child .sublst span:before {
		position: absolute;
		top: 11px;
		left: 0;
		display: block;
		width: 10px;
		height: 10px;
		background: url(../img/ico/arw-primary.svg) no-repeat center;
		background-size: cover;
		content: "";
	}
	.cmnnav-search {
		margin-right: 1.5rem;
	}
	.cmnnav-search input[type="text"] {
		padding-right: 0;
		padding-left: 0;
		width: 50px;
		background-color: #fff;
		text-align: center;
		font-size: .8125rem;
		line-height: 1.2308;
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: background;
	}
	.cmnnav-search input[type="text"]:focus {
		outline: none;
	}
	.cmnnav-search input[type="text"].is-active {
		padding-right: 2rem;
		padding-left: 2rem;
		width: 100%;
		background-color: #f0f1f3;
		text-align: left;
	}
	.cmnnav-search button {
		margin-left: 4px;
		width: 13px;
		height: 13px;
	}
	.cmnnav-sub {
		position: absolute;
		top: 40px;
		right: 0;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: end;
		-ms-flex-align: center;
		margin: 0;
		padding: 1.25rem 30px 0 0;

		justify-content: flex-end;
		align-items: center;
	}
	.business-lead .desc.-head .hdl {
		font-size: 2rem;
		line-height: 1.7813;
	}
	.business-lead .desc.-head .hdl:lang(en) {
		line-height: 1.5;
	}
	.business-features {
		grid-template-columns: repeat(2, 1fr);
	}
	.business-features .section {
		grid-row: span 3;
		grid-template-rows: subgrid;
	}
	.index-business-list {
		display: grid;

		grid-template-columns: repeat(3, 1fr);
	}
	.index-business-list > .item {
		display: grid;
		padding-right: 20px;
		padding-left: 20px;

		grid-row: 1 / 5;
		grid-template-rows: subgrid;
	}
	.index-business-list > .item .subject {
		grid-row: 1 / 2;
	}
	.index-business-list > .item .cpy {
		grid-row: 2  / 3;
	}
	.index-business-list > .item .example {
		grid-row: 3 / 4;
	}
	.index-business-list > .item .btn-wrap {
		grid-row: 4  / 5;
	}
	.index-business-list > .item .btn-prm {
		padding-right: 3.5rem;
		padding-left: 3.5rem;
		max-width: 266px;
		width: 100%;
	}
}

@media print,screen and (min-width: 1024px) and (max-width: 1279px) {
	.cmn-nav {
		margin: 0 auto;
		max-width: 980px;
	}
	.cmnnav-main > li > a {
		padding: 11px 11px 19px;
	}
	.cmnnav-main > li > a:lang(en) {
		padding: 26px 20px 28px;
	}
}

@media screen and (max-width: 1023px) {
	.cmnnav-main > li:not(.-single) > a:before, .cmnnav-main > li:not(.-single) > a:after {
		position: absolute;
		top: 50%;
		right: 7.7778%;
		display: block;
		width: 3px;
		height: 18px;
		background-color: #5bb431;
		content: "";
		transition-timing-function: ease;
		transition-duration: .3s;
		transition-property: -webkit-transform;
		transition-property: transform;
		transition-property: transform,-webkit-transform;
	}
	.cmnnav-main > li:not(.-single) > a:before {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.cmnnav-main > li:not(.-single) > a:after {
		-webkit-transform: translateY(-50%) rotate(90deg);
		transform: translateY(-50%) rotate(90deg);
	}
	.cmnnav-main > li.-single a:before {
		position: absolute;
		top: 50%;
		right: 6.25%;
		display: block;
		width: 1rem;
		height: 1rem;
		background: url(../img/ico/arw-primary.svg) no-repeat center;
		background-size: cover;
		content: "";
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media screen and (max-width: 1023px) and (min-width: 1024px) {
	.cmnnav-main > li:not(.-single) > a:before, .cmnnav-main > li:not(.-single) > a:after {
		display: none;
	}
}

@media screen and (min-width: 415px) and (max-width: 767px) {
	._sp._tablet {
		display: initial !important;
	}
	._pc._tablet {
		display: initial !important;
	}
}
