/* CSS Document */

/*-- ============================================================
	reset
============================================================ --*/

.everything h1,
.everything h2,
.everything h3,
.everything h4,
.everything h5,
.everything h6,
.everything p,
.everything ul,
.everything ol,
.everything img,
.everything video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

.everything *,
.everything *::before,
.everything *::after {
	box-sizing: border-box;
}
.everything img,
.everything video {
	vertical-align: bottom;
}
.everything img {
    max-width: unset;
}
.everything ul,
.everything ol {
	list-style: none;
}
.everything sup, .everything sub {
	position: relative;
	vertical-align: baseline;
	height: 0;
	font-size: smaller;
	line-height: 1;
}
.everything sup {
	bottom: 1ex;
}
.everything sub {
	top: 1ex;
}

.everything .button2 {
    color: #fff;    
}

.everything .button2:hover {
    transition: none;
    text-decoration: none;
}



/*-- ============================================================
	common style
============================================================ --*/

/* ----------------------------------------
	display
---------------------------------------- */

.d_none { display: none; }
.d_block { display: block; }
.d_inline { display: inline; }
.d_i_block { display: inline-block; }

@media screen and (min-width: 480px) {
	.d_none_sm { display: none; }
	.d_block_sm { display: block; }
	.d_inline_sm { display: inline; }
	.d_i_block_sm { display: inline-block; }
}

@media screen and (min-width: 768px) {
	.d_none_md { display: none; }
	.d_block_md { display: block; }
	.d_inline_md { display: inline; }
	.d_i_block_md { display: inline-block; }
}

@media screen and (min-width: 1024px) {
	.d_none_lg { display: none; }
	.d_block_lg { display: block; }
	.d_inline_lg { display: inline; }
	.d_i_block_lg { display: inline-block; }
}

@media screen and (min-width: 768px) {
	.posR_md {
		position: relative;
	}
	.posA_md {
		position: absolute;
	}
}

@media screen and (min-width: 1024px) {
	.posR_lg {
		position: relative;
	}
	.posA_lg {
		position: absolute;
	}
}
/* ==================================================

	column (new)

================================================== */

.col_1, .col_2, .col_3, .col_4, .col_5 {
	display: flex;
	flex-wrap: wrap;
}

/* width -------------------- */
.col_1 > * { width: 100%; }
.col_2 > * { width: 50%; }
.col_3 > * { width: 33.333333%; }
.col_4 > * { width: 25%; }
.col_5 > * { width: 20%; }

.col_1.space > * { width: 100%; }
.col_2.space > * { width: calc((100% - (16px * 1)) / 2); }
.col_3.space > * { width: calc((100% - (16px * 2)) / 3); }
.col_4.space > * { width: calc((100% - (16px * 3)) / 4); }
.col_5.space > * { width: calc((100% - (16px * 4)) / 5); }

/* IE10-11 , Edge */
_:-ms-lang(x), .col_2.space > * { width: calc(((100% - (16px * 1)) / 2) - 0.1px); }
_:-ms-lang(x), .col_3.space > * { width: calc(((100% - (16px * 2)) / 3) - 0.1px); }
_:-ms-lang(x), .col_4.space > * { width: calc(((100% - (16px * 3)) / 4) - 0.1px); }
_:-ms-lang(x), .col_5.space > * { width: calc(((100% - (16px * 4)) / 5) - 0.1px); }

/* margin-top -------------------- */
.col_1.space > *:nth-of-type(n+2),
.col_2.space > *:nth-of-type(n+3),
.col_3.space > *:nth-of-type(n+4),
.col_4.space > *:nth-of-type(n+5),
.col_5.space > *:nth-of-type(n+6) { margin-top: 16px; }

/* margin-right -------------------- */
[class*="col_"].space > * { margin-right: 16px; }
.col_1.space > *:nth-of-type(1n),
.col_2.space > *:nth-of-type(2n),
.col_3.space > *:nth-of-type(3n),
.col_4.space > *:nth-of-type(4n),
.col_5.space > *:nth-of-type(5n) { margin-right: 0; }

@media screen and (min-width: 768px) {
	/* width -------------------- */
	.col_1.space > * { width: 100%; }
	.col_2.space > * { width: calc((100% - (20px * 1)) / 2); }
	.col_3.space > * { width: calc((100% - (20px * 2)) / 3); }
	.col_4.space > * { width: calc((100% - (20px * 3)) / 4); }
	.col_5.space > * { width: calc((100% - (20px * 4)) / 5); }

	/* IE10-11 , Edge */
	_:-ms-lang(x), .col_2.space > * { width: calc(((100% - (20px * 1)) / 2) - 0.1px); }
	_:-ms-lang(x), .col_3.space > * { width: calc(((100% - (20px * 2)) / 3) - 0.1px); }
	_:-ms-lang(x), .col_4.space > * { width: calc(((100% - (20px * 3)) / 4) - 0.1px); }
	_:-ms-lang(x), .col_5.space > * { width: calc(((100% - (20px * 4)) / 5) - 0.1px); }

	/* margin-top -------------------- */
	.col_1.space > *:nth-of-type(n+2),
	.col_2.space > *:nth-of-type(n+3),
	.col_3.space > *:nth-of-type(n+4),
	.col_4.space > *:nth-of-type(n+5),
	.col_5.space > *:nth-of-type(n+6) { margin-top: 20px; }

	/* margin-right -------------------- */
	[class*="col_"].space > * { margin-right: 20px; }
	.col_1.space > *:nth-of-type(1n),
	.col_2.space > *:nth-of-type(2n),
	.col_3.space > *:nth-of-type(3n),
	.col_4.space > *:nth-of-type(4n),
	.col_5.space > *:nth-of-type(5n) { margin-right: 0; }
}



@media screen and (min-width: 480px) {
	/* width -------------------- */
	.col_1_sm > * { width: 100%; }
	.col_2_sm > * { width: 50%; }
	.col_3_sm > * { width: 33.333333%; }
	.col_4_sm > * { width: 25%; }
	.col_5_sm > * { width: 20%; }

	.col_1_sm.space > * { width: 100%; }
	.col_2_sm.space > * { width: calc((100% - (16px * 1)) / 2); }
	.col_3_sm.space > * { width: calc((100% - (16px * 2)) / 3); }
	.col_4_sm.space > * { width: calc((100% - (16px * 3)) / 4); }
	.col_5_sm.space > * { width: calc((100% - (16px * 4)) / 5); }

	/* IE10-11 , Edge */
	_:-ms-lang(x), .col_2_sm.space > * { width: calc(((100% - (16px * 1)) / 2) - 0.1px); }
	_:-ms-lang(x), .col_3_sm.space > * { width: calc(((100% - (16px * 2)) / 3) - 0.1px); }
	_:-ms-lang(x), .col_4_sm.space > * { width: calc(((100% - (16px * 3)) / 4) - 0.1px); }
	_:-ms-lang(x), .col_5_sm.space > * { width: calc(((100% - (16px * 4)) / 5) - 0.1px); }

	/* margin-top -------------------- */
	.col_1_sm.space > *:nth-of-type(1n),
	.col_2_sm.space > *:nth-of-type(1n),
	.col_3_sm.space > *:nth-of-type(1n),
	.col_4_sm.space > *:nth-of-type(1n),
	.col_5_sm.space > *:nth-of-type(1n) { margin-top: 0; }
	.col_1_sm.space > *:nth-of-type(n+2),
	.col_2_sm.space > *:nth-of-type(n+3),
	.col_3_sm.space > *:nth-of-type(n+4),
	.col_4_sm.space > *:nth-of-type(n+5),
	.col_5_sm.space > *:nth-of-type(n+6) { margin-top: 16px; }

	/* margin-right -------------------- */
	.col_1_sm.space > *:nth-of-type(1n),
	.col_2_sm.space > *:nth-of-type(1n),
	.col_3_sm.space > *:nth-of-type(1n),
	.col_4_sm.space > *:nth-of-type(1n),
	.col_5_sm.space > *:nth-of-type(1n) { margin-right: 16px; }

	.col_1_sm.space > *:nth-of-type(1n),
	.col_2_sm.space > *:nth-of-type(2n),
	.col_3_sm.space > *:nth-of-type(3n),
	.col_4_sm.space > *:nth-of-type(4n),
	.col_5_sm.space > *:nth-of-type(5n) { margin-right: 0; }
}



@media screen and (min-width: 768px) {
	/* width -------------------- */
	.col_1_md > * { width: 100%; }
	.col_2_md > * { width: 50%; }
	.col_3_md > * { width: 33.333333%; }
	.col_4_md > * { width: 25%; }
	.col_5_md > * { width: 20%; }

	.col_1_md.space > * { width: 100%; }
	.col_2_md.space > * { width: calc((100% - (20px * 1)) / 2); }
	.col_3_md.space > * { width: calc((100% - (20px * 2)) / 3); }
	.col_4_md.space > * { width: calc((100% - (20px * 3)) / 4); }
	.col_5_md.space > * { width: calc((100% - (20px * 4)) / 5); }

	/* IE10-11 , Edge */
	_:-ms-lang(x), .col_2_md.space > * { width: calc(((100% - (20px * 1)) / 2) - 0.1px); }
	_:-ms-lang(x), .col_3_md.space > * { width: calc(((100% - (20px * 2)) / 3) - 0.1px); }
	_:-ms-lang(x), .col_4_md.space > * { width: calc(((100% - (20px * 3)) / 4) - 0.1px); }
	_:-ms-lang(x), .col_5_md.space > * { width: calc(((100% - (20px * 4)) / 5) - 0.1px); }

	/* margin-top -------------------- */
	.col_1_md.space > *:nth-of-type(1n),
	.col_2_md.space > *:nth-of-type(1n),
	.col_3_md.space > *:nth-of-type(1n),
	.col_4_md.space > *:nth-of-type(1n),
	.col_5_md.space > *:nth-of-type(1n) { margin-top: 0; }
	.col_1_md.space > *:nth-of-type(n+2),
	.col_2_md.space > *:nth-of-type(n+3),
	.col_3_md.space > *:nth-of-type(n+4),
	.col_4_md.space > *:nth-of-type(n+5),
	.col_5_md.space > *:nth-of-type(n+6) { margin-top: 20px; }

	/* margin-right -------------------- */
	.col_1_md.space > *:nth-of-type(1n),
	.col_2_md.space > *:nth-of-type(1n),
	.col_3_md.space > *:nth-of-type(1n),
	.col_4_md.space > *:nth-of-type(1n),
	.col_5_md.space > *:nth-of-type(1n) { margin-right: 20px; }

	.col_1_md.space > *:nth-of-type(1n),
	.col_2_md.space > *:nth-of-type(2n),
	.col_3_md.space > *:nth-of-type(3n),
	.col_4_md.space > *:nth-of-type(4n),
	.col_5_md.space > *:nth-of-type(5n) { margin-right: 0; }
}



@media screen and (min-width: 1024px) {
	/* width -------------------- */
	.col_1_lg > * { width: 100%; }
	.col_2_lg > * { width: 50%; }
	.col_3_lg > * { width: 33.333333%; }
	.col_4_lg > * { width: 25%; }
	.col_5_lg > * { width: 20%; }

	.col_1_lg.space > * { width: 100%; }
	.col_2_lg.space > * { width: calc((100% - (20px * 1)) / 2); }
	.col_3_lg.space > * { width: calc((100% - (20px * 2)) / 3); }
	.col_4_lg.space > * { width: calc((100% - (20px * 3)) / 4); }
	.col_5_lg.space > * { width: calc((100% - (20px * 4)) / 5); }

	/* IE10-11 , Edge */
	_:-ms-lang(x), .col_2_lg.space > * { width: calc(((100% - (20px * 1)) / 2) - 0.1px); }
	_:-ms-lang(x), .col_3_lg.space > * { width: calc(((100% - (20px * 2)) / 3) - 0.1px); }
	_:-ms-lang(x), .col_4_lg.space > * { width: calc(((100% - (20px * 3)) / 4) - 0.1px); }
	_:-ms-lang(x), .col_5_lg.space > * { width: calc(((100% - (20px * 4)) / 5) - 0.1px); }

	/* margin-top -------------------- */
	.col_1_lg.space > *:nth-of-type(1n),
	.col_2_lg.space > *:nth-of-type(1n),
	.col_3_lg.space > *:nth-of-type(1n),
	.col_4_lg.space > *:nth-of-type(1n),
	.col_5_lg.space > *:nth-of-type(1n) { margin-top: 0; }
	.col_1_lg.space > *:nth-of-type(n+2),
	.col_2_lg.space > *:nth-of-type(n+3),
	.col_3_lg.space > *:nth-of-type(n+4),
	.col_4_lg.space > *:nth-of-type(n+5),
	.col_5_lg.space > *:nth-of-type(n+6) { margin-top: 20px; }

	/* margin-right -------------------- */
	.col_1_lg.space > *:nth-of-type(1n),
	.col_2_lg.space > *:nth-of-type(1n),
	.col_3_lg.space > *:nth-of-type(1n),
	.col_4_lg.space > *:nth-of-type(1n),
	.col_5_lg.space > *:nth-of-type(1n) { margin-right: 20px; }

	.col_1_lg.space > *:nth-of-type(1n),
	.col_2_lg.space > *:nth-of-type(2n),
	.col_3_lg.space > *:nth-of-type(3n),
	.col_4_lg.space > *:nth-of-type(4n),
	.col_5_lg.space > *:nth-of-type(5n) { margin-right: 0; }
}

/* ----------------------------------------
	width
---------------------------------------- */

.w_auto { width: auto !important; }
.w00 { width: 0 !important; }
.w01 { width: 1% !important; }
.w02 { width: 2% !important; }
.w03 { width: 3% !important; }
.w04 { width: 4% !important; }
.w05 { width: 5% !important; }
.w10 { width: 10% !important; }
.w11 { width: 11% !important; }
.w12 { width: 12% !important; }
.w13 { width: 13% !important; }
.w14 { width: 14% !important; }
.w15 { width: 15% !important; }
.w16 { width: 16% !important; }
.w17 { width: 17% !important; }
.w18 { width: 18% !important; }
.w19 { width: 19% !important; }
.w20 { width: 20% !important; }
.w21 { width: 21% !important; }
.w22 { width: 22% !important; }
.w23 { width: 23% !important; }
.w24 { width: 24% !important; }
.w25 { width: 25% !important; }
.w26 { width: 26% !important; }
.w27 { width: 27% !important; }
.w28 { width: 28% !important; }
.w29 { width: 29% !important; }
.w30 { width: 30% !important; }
.w31 { width: 31% !important; }
.w32 { width: 32% !important; }
.w33 { width: 33% !important; }
.w34 { width: 34% !important; }
.w35 { width: 35% !important; }
.w36 { width: 36% !important; }
.w37 { width: 37% !important; }
.w38 { width: 38% !important; }
.w39 { width: 39% !important; }
.w40 { width: 40% !important; }
.w41 { width: 41% !important; }
.w42 { width: 42% !important; }
.w43 { width: 43% !important; }
.w44 { width: 44% !important; }
.w45 { width: 45% !important; }
.w46 { width: 46% !important; }
.w47 { width: 47% !important; }
.w48 { width: 48% !important; }
.w49 { width: 49% !important; }
.w50 { width: 50% !important; }
.w51 { width: 51% !important; }
.w52 { width: 52% !important; }
.w53 { width: 53% !important; }
.w54 { width: 54% !important; }
.w55 { width: 55% !important; }
.w56 { width: 56% !important; }
.w57 { width: 57% !important; }
.w58 { width: 58% !important; }
.w59 { width: 59% !important; }
.w60 { width: 60% !important; }
.w61 { width: 61% !important; }
.w62 { width: 62% !important; }
.w63 { width: 63% !important; }
.w64 { width: 64% !important; }
.w65 { width: 65% !important; }
.w66 { width: 66% !important; }
.w67 { width: 67% !important; }
.w68 { width: 68% !important; }
.w69 { width: 69% !important; }
.w70 { width: 70% !important; }
.w71 { width: 71% !important; }
.w72 { width: 72% !important; }
.w73 { width: 73% !important; }
.w74 { width: 74% !important; }
.w75 { width: 75% !important; }
.w76 { width: 76% !important; }
.w77 { width: 77% !important; }
.w78 { width: 78% !important; }
.w79 { width: 79% !important; }
.w80 { width: 80% !important; }
.w81 { width: 81% !important; }
.w82 { width: 82% !important; }
.w83 { width: 83% !important; }
.w84 { width: 84% !important; }
.w85 { width: 85% !important; }
.w86 { width: 86% !important; }
.w87 { width: 87% !important; }
.w88 { width: 88% !important; }
.w89 { width: 89% !important; }
.w90 { width: 90% !important; }
.w91 { width: 91% !important; }
.w92 { width: 92% !important; }
.w93 { width: 93% !important; }
.w94 { width: 94% !important; }
.w95 { width: 95% !important; }
.w96 { width: 96% !important; }
.w97 { width: 97% !important; }
.w98 { width: 98% !important; }
.w99 { width: 99% !important; }
.w100 { width: 100% !important; }

@media screen and (min-width:1024px) {
	.w_auto_lg { width: auto !important; }
}

/* ----------------------------------------
	margin
---------------------------------------- */

.m_auto { margin: auto !important; }
.m00 { margin: 0 !important; }
.m05 { margin: 5px !important; }
.m10 { margin: 10px !important; }
.m15 { margin: 15px !important; }
.m20 { margin: 20px !important; }
.m25 { margin: 25px !important; }
.m30 { margin: 30px !important; }
.m35 { margin: 35px !important; }
.m40 { margin: 40px !important; }
.m45 { margin: 45px !important; }
.m50 { margin: 50px !important; }
.m55 { margin: 55px !important; }
.m60 { margin: 60px !important; }
.m65 { margin: 65px !important; }
.m70 { margin: 70px !important; }
.m75 { margin: 75px !important; }
.m80 { margin: 80px !important; }
.m85 { margin: 85px !important; }
.m90 { margin: 90px !important; }
.m95 { margin: 95px !important; }
.m100 { margin: 100px !important; }

.mt_auto { margin-top: auto !important; }
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }
.mt55 { margin-top: 55px !important; }
.mt60 { margin-top: 60px !important; }
.mt65 { margin-top: 65px !important; }
.mt70 { margin-top: 70px !important; }
.mt75 { margin-top: 75px !important; }
.mt80 { margin-top: 80px !important; }
.mt85 { margin-top: 85px !important; }
.mt90 { margin-top: 90px !important; }
.mt95 { margin-top: 95px !important; }
.mt100 { margin-top: 100px !important; }

.mr_auto { margin-right: auto !important; }
.mr00 { margin-right: 0 !important; }
.mr05 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr25 { margin-right: 25px !important; }
.mr30 { margin-right: 30px !important; }
.mr35 { margin-right: 35px !important; }
.mr40 { margin-right: 40px !important; }
.mr45 { margin-right: 45px !important; }
.mr50 { margin-right: 50px !important; }
.mr55 { margin-right: 55px !important; }
.mr60 { margin-right: 60px !important; }
.mr65 { margin-right: 65px !important; }
.mr70 { margin-right: 70px !important; }
.mr75 { margin-right: 75px !important; }
.mr80 { margin-right: 80px !important; }
.mr85 { margin-right: 85px !important; }
.mr90 { margin-right: 90px !important; }
.mr95 { margin-right: 95px !important; }
.mr100 { margin-right: 100px !important; }

.mb_auto { margin-bottom: auto !important; }
.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb55 { margin-bottom: 55px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb65 { margin-bottom: 65px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb75 { margin-bottom: 75px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb85 { margin-bottom: 85px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb95 { margin-bottom: 95px !important; }
.mb100 { margin-bottom: 100px !important; }

.ml_auto { margin-left: auto !important; }
.ml00 { margin-left: 0 !important; }
.ml05 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml25 { margin-left: 25px !important; }
.ml30 { margin-left: 30px !important; }
.ml35 { margin-left: 35px !important; }
.ml40 { margin-left: 40px !important; }
.ml45 { margin-left: 45px !important; }
.ml50 { margin-left: 50px !important; }
.ml55 { margin-left: 55px !important; }
.ml60 { margin-left: 60px !important; }
.ml65 { margin-left: 65px !important; }
.ml70 { margin-left: 70px !important; }
.ml75 { margin-left: 75px !important; }
.ml80 { margin-left: 80px !important; }
.ml85 { margin-left: 85px !important; }
.ml90 { margin-left: 90px !important; }
.ml95 { margin-left: 95px !important; }
.ml100 { margin-left: 100px !important; }



/* ----------------------------------------
	padding
---------------------------------------- */

.p00 { padding: 0 !important; }
.p05 { padding: 5px !important; }
.p10 { padding: 10px !important; }
.p15 { padding: 15px !important; }
.p20 { padding: 20px !important; }
.p25 { padding: 25px !important; }
.p30 { padding: 30px !important; }
.p35 { padding: 35px !important; }
.p40 { padding: 40px !important; }
.p45 { padding: 45px !important; }
.p50 { padding: 50px !important; }
.p55 { padding: 55px !important; }
.p60 { padding: 60px !important; }
.p65 { padding: 65px !important; }
.p70 { padding: 70px !important; }
.p75 { padding: 75px !important; }
.p80 { padding: 80px !important; }
.p85 { padding: 85px !important; }
.p90 { padding: 90px !important; }
.p95 { padding: 95px !important; }
.p100 { padding: 100px !important; }

.pt00 { padding-top: 0 !important; }
.pt05 { padding-top: 5px !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt25 { padding-top: 25px !important; }
.pt30 { padding-top: 30px !important; }
.pt35 { padding-top: 35px !important; }
.pt40 { padding-top: 40px !important; }
.pt45 { padding-top: 45px !important; }
.pt50 { padding-top: 50px !important; }
.pt55 { padding-top: 55px !important; }
.pt60 { padding-top: 60px !important; }
.pt65 { padding-top: 65px !important; }
.pt70 { padding-top: 70px !important; }
.pt75 { padding-top: 75px !important; }
.pt80 { padding-top: 80px !important; }
.pt85 { padding-top: 85px !important; }
.pt90 { padding-top: 90px !important; }
.pt95 { padding-top: 95px !important; }
.pt100 { padding-top: 100px !important; }

.pr00 { padding-right: 0 !important; }
.pr05 { padding-right: 5px !important; }
.pr10 { padding-right: 10px !important; }
.pr15 { padding-right: 15px !important; }
.pr20 { padding-right: 20px !important; }
.pr25 { padding-right: 25px !important; }
.pr30 { padding-right: 30px !important; }
.pr35 { padding-right: 35px !important; }
.pr40 { padding-right: 40px !important; }
.pr45 { padding-right: 45px !important; }
.pr50 { padding-right: 50px !important; }
.pr55 { padding-right: 55px !important; }
.pr60 { padding-right: 60px !important; }
.pr65 { padding-right: 65px !important; }
.pr70 { padding-right: 70px !important; }
.pr75 { padding-right: 75px !important; }
.pr80 { padding-right: 80px !important; }
.pr85 { padding-right: 85px !important; }
.pr90 { padding-right: 90px !important; }
.pr95 { padding-right: 95px !important; }
.pr100 { padding-right: 100px !important; }

.pb00 { padding-bottom: 0 !important; }
.pb05 { padding-bottom: 5px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb25 { padding-bottom: 25px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb35 { padding-bottom: 35px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb45 { padding-bottom: 45px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb55 { padding-bottom: 55px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb65 { padding-bottom: 65px !important; }
.pb70 { padding-bottom: 70px !important; }
.pb75 { padding-bottom: 75px !important; }
.pb80 { padding-bottom: 80px !important; }
.pb85 { padding-bottom: 85px !important; }
.pb90 { padding-bottom: 90px !important; }
.pb95 { padding-bottom: 95px !important; }
.pb100 { padding-bottom: 100px !important; }

.pl00 { padding-left: 0 !important; }
.pl05 { padding-left: 5px !important; }
.pl10 { padding-left: 10px !important; }
.pl15 { padding-left: 15px !important; }
.pl20 { padding-left: 20px !important; }
.pl25 { padding-left: 25px !important; }
.pl30 { padding-left: 30px !important; }
.pl35 { padding-left: 35px !important; }
.pl40 { padding-left: 40px !important; }
.pl45 { padding-left: 45px !important; }
.pl50 { padding-left: 50px !important; }
.pl55 { padding-left: 55px !important; }
.pl60 { padding-left: 60px !important; }
.pl65 { padding-left: 65px !important; }
.pl70 { padding-left: 70px !important; }
.pl75 { padding-left: 75px !important; }
.pl80 { padding-left: 80px !important; }
.pl85 { padding-left: 85px !important; }
.pl90 { padding-left: 90px !important; }
.pl95 { padding-left: 95px !important; }
.pl100 { padding-left: 100px !important; }



/* ----------------------------------------
	background
---------------------------------------- */

.bg_cyan { background: #0096d6 !important }
.bg000 { background: #000 !important }
.bg333 { background: #333 !important }
.bgfff { background: #fff !important }
.bgf2f2f2 { background: #f2f2f2 !important }
.bg767676 { background: #767676 !important }
.bg5a5a5a { background: #5a5a5a !important }



/* ----------------------------------------
	font
---------------------------------------- */

.tleft { text-align: left !important; }
.tright { text-align: right !important; }
.tcenter { text-align: center !important; }

@media screen and (min-width:1024px) {
	.tleft_lg { text-align: left!important; }
}

.bold { font-weight: bold !important; }
.fwnormal { font-weight: normal !important; }

.fs10 { font-size: 10px !important; }
.fs11 { font-size: 11px !important; }
.fs12 { font-size: 12px !important; }
.fs13 { font-size: 13px !important; }
.fs14 { font-size: 14px !important; }
.fs15 { font-size: 15px !important; }
.fs16 { font-size: 16px !important; }
.fs17 { font-size: 17px !important; }
.fs18 { font-size: 18px !important; }
.fs19 { font-size: 19px !important; }
.fs20 { font-size: 20px !important; }
.fs21 { font-size: 21px !important; }
.fs22 { font-size: 22px !important; }
.fs23 { font-size: 23px !important; }
.fs24 { font-size: 24px !important; }
.fs25 { font-size: 25px !important; }
.fs26 { font-size: 26px !important; }
.fs27 { font-size: 27px !important; }
.fs28 { font-size: 28px !important; }
.fs29 { font-size: 29px !important; }
.fs30 { font-size: 30px !important; }
.fs35 { font-size: 35px !important; }
.fs40 { font-size: 40px !important; }
.fs45 { font-size: 45px !important; }
.fs50 { font-size: 50px !important; }

.fc_cyan { color: #0096d6 !important; }
.fc_org { color: #d7410b !important; }
.fcfff { color: #fff !important; }
.fc999 { color: #999 !important; }
.fc767676 { color: #767676 !important; }
.fc666 { color: #666 !important; }
.fc5a5a5a { color: #5a5a5a !important; }
.fc333 { color: #333 !important; }

.lh10 { line-height: 1 !important; }
.lh12 { line-height: 1.2 !important; }
.lh13 { line-height: 1.3 !important; }
.lh14 { line-height: 1.4 !important; }
.lh15 { line-height: 1.5 !important; }
.lh16 { line-height: 1.6 !important; }
.lh17 { line-height: 1.7 !important; }
.lh18 { line-height: 1.8 !important; }
.lh19 { line-height: 1.9 !important; }
.lh20 { line-height: 2 !important; }

.ls1 { letter-spacing: 1px !important; }
.ls2 { letter-spacing: 2px !important; }
.ls3 { letter-spacing: 3px !important; }



/* ----------------------------------------
	list
---------------------------------------- */

/* basic -------------------- */

.list_basic > li {
	position: relative;
	padding-left: 1em;
}
.list_basic > li:nth-child(n+2) {
	margin-top: .5em;
}
.list_basic > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: calc((1em * 1.6) - 1em);
	width: 6px;
	height: 6px;
	background: #999;
	border-radius: 100%;
}


/* footnote -------------------- */

.footnote > li {
	padding-left: 1em;
	color: #767676;
	font-size: 11px;
	text-indent: -1em;
}
.footnote > li:nth-child(n+2) {
	margin-top: .5em;
}

.footnote_num > li {
	padding-left: 1.75em;
	color: #767676;
	font-size: 11px;
	text-indent: -1.75em;
}
.footnote_num > li:nth-child(n+2) {
	margin-top: .5em;
}





/*-- ============================================================
	button
============================================================ --*/

.button {
	display: inline-block;
	vertical-align: bottom;
	padding: .5em 1.2em;
	font-size: 16px;
	line-height: 1.2;
	background-color: #d7410b;
	border-radius: 0 4px;
	transition: .2s;
}

.button:link,
.button:visited,
.button:hover,
.button:focus {
	color: #fff;
	text-decoration: none;
}

.button.slim {
	padding: .4em 1.2em;
	font-size: 13px;
}

.button.sslim {
	padding: .4em 1.2em;
	font-size: 11px;
}

.button.critical { background-color: #d7410b; }
.button.primary { background-color: #0096d6; }
.button.secondary { background-color: #767676; }

/* hover */
.button:hover, .button.critical:hover { background-color: #c1401a; }
.button.primary:hover { background-color: #007dba; }
.button.secondary:hover { background-color: #5a5a5a; }



/* white -------------------- */

.button.white {
	background-color: #fff;
}
.button.white:link,
.button.white:visited {
	color: #0096d6;
}
.button.white:hover,
.button.white:focus {
	color: #069;
}



/* ----------------------------------------
	line_button
---------------------------------------- */

.button.line {
	display: inline-block;
	vertical-align: bottom;
	padding: .5em 1.2em;
	color: #0096d6;
	font-size: 16px;
	line-height: 1.2;
	background-color: transparent;
	border: 1px solid #0096d6;
	border-radius: 4px;
	transition: .2s;
}

.button.line:link,
.button.line:visited,
.button.line:hover,
.button.line:focus {
	text-decoration: none;
}

.button.line.slim {
	padding: .4em 1.2em;
	font-size: 13px;
}

.button.line.sslim {
	padding: .4em 1.2em;
	font-size: 11px;
}

.button.line.primary {
	color: #0096d6;
	border-color: #0096d6;
}
.button.line.critical {
	color: #d7410b;
	border-color: #d7410b;
}
.button.line.secondary {
	color: #767676;
	border-color: #767676;
}

/* hover */
.button.line:hover {
	color: #fff;
}
.button.line.primary:hover {
	background-color: #0096d6;
}
.button.line.critical:hover {
	background-color: #d7410b;
}
.button.line.secondary:hover {
	background-color: #767676;
}



/* white -------------------- */

.button.line.white:link,
.button.line.white:visited {
	color: #fff;
	border-color: #fff;
}
.button.line.white:hover,
.button.line.white:focus {
	color: #0096d6;
	background-color: #fff;
}





/*-- ============================================================
	button 2
============================================================ --*/

.button2 {
	position: relative;
	display: inline-block;
	padding: 12px 25px 10px 15px;
	color: #fff;
	font-size: 14px;
	text-align: left;
	line-height: 1.4;
	text-decoration: none;
	background: linear-gradient(to bottom, #eb5f01, #d7410b);
	border-bottom: 2px solid rgba(0,0,0,.3);
	border-radius: 4px;
}
.button2:hover {
	background: #d7410b;
}
.button2::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%) rotate(-45deg);
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
.button2.down::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
/* blue */
.button2.blue {
	background: linear-gradient(to bottom, #0096d6, #007dba);
}
.button2.blue:hover {
	background: #007dba;
}

/* large */
.button2.large {
	padding: 12px 40px 10px 30px;
	font-size: 16px;
}
.button2.large::after {
	right: 20px;
	width: 10px;
	height: 10px;
}
@media screen and (min-width: 1024px) {
	.button2.large {
		padding: 12px 50px 10px 40px;
		font-size: 18px;
		letter-spacing: 1px;
	}
}
/* ==================================================
	flexbox
================================================== */

.d_flex { display: flex; }
@media screen and (min-width: 480px) {
	.d_flex_sm { display: flex; }
}
@media screen and (min-width: 768px) {
	.d_flex_md { display: flex;}
}

.jc_fs { justify-content: flex-start; }
.jc_fe { justify-content: flex-end; }
.jc_center { justify-content: center; }
.jc_sb { justify-content: space-between; }

.ai_fs { align-items: flex-start; }
.ai_fe { align-items: flex-end; }
.ai_center { align-items: center; }

.as_fs { align-self: flex-start; }
.as_fe { align-self: flex-end; }
.as_center { align-self: center; }

.fw_wrap { flex-wrap: wrap; }
.fw_nowrap { flex-wrap: nowrap; }

@media screen and (min-width: 1024px) {
	.d_flex_lg { display: flex; }

	.jc_fs_lg { justify-content: flex-start; }
	.jc_fe_lg { justify-content: flex-end; }
	.jc_center_lg { justify-content: center; }
	.jc_sb_lg { justify-content: space-between; }

	.ai_fs_lg { align-items: flex-start; }
	.ai_fe_lg { align-items: flex-end; }
	.ai_center_lg { align-items: center; }

	.as_fs_lg { align-self: flex-start; }
	.as_fe_lg { align-self: flex-end; }
	.as_center_lg { align-self: center; }

	.fw_wrap_lg { flex-wrap: wrap; }
	.fw_nowrap_lg { flex-wrap: nowrap; }
}
.d_table {
	display: table;
	width: 100%;
}
.d_table > * {
	display: table-cell;
}
.va_middle {
	vertical-align: middle;
}

/* ==================================================
	YouTube
================================================== */

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




/*-- content style --*/

/* ----------------------------------------
	base
---------------------------------------- */

.contents {
	color: #000;
	line-height: 1.6;
	background: #fff;
}
.contents * + p {
	margin-top: 1em;
}
.contents video {
	width: 100%;
}

@media screen and (min-width: 1024px) {
	.contents {
		width: 980px;
		margin: 0 auto;
	}
}



/* link -------------------- */

.contents a img {
	border-style: none;
	transition: .6s;
}
.contents a:hover img {
	opacity: .8;
}



/* price -------------------- */

.price,
p.price {
	color: #d7410b;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}
.price > span,
p.price > span {
	font-size: 25px;
}



/* ----------------------------------------
	head_logo
---------------------------------------- */

.head_logo {
	display: flex;
	justify-content: space-between;
	padding: 10px 16px;
}
.head_logo > div img {
	width: auto;
	height: 20px;
}

@media screen and (min-width: 768px) {
	.head_logo {
		padding: 20px;
	}
	.head_logo > div img {
		height: 30px;
	}
}

@media screen and (min-width: 1024px) {
	.head_logo {
		padding: 25px 30px;
	}
	.head_logo > div img {
		height: 40px;
	}
}



/* ----------------------------------------
	main
---------------------------------------- */

.main img {
	width: 100%;
}
.main_btn {
	margin-top: 10px;
	text-align: center;
}
.main_btn img {
	width: 80%;
	max-width: 340px;
}

@media screen and (min-width: 1024px) {
	.main {
		position: relative;
	}
	.main_btn {
		position: absolute;
		bottom: 40px;
		left: 40px;
		margin-top: 0;
	}
	.main_btn img {
		width: auto;
	}
}



/* ----------------------------------------
	content
---------------------------------------- */

/* content -------------------- */

.content {
	padding: 40px 16px;
}

@media screen and (min-width: 768px) {
	.content {
		padding: 50px 30px;
	}
}



/* content_title -------------------- */

h2.content_title {
	position: relative;
	margin: 0;
	padding: 0 0 15px;
	color: #0096d6;
	font-size: 18px;
	font-weight: normal;
	text-align: center;
}
.content_title::after {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 5px;
	margin: 0 auto;
	background: #0096d6;
}
/* white */
.content_title.white {
	color: #fff;
}
.content_title.white::after {
	background: #fff;
}
.content_title + * {
	margin-top: 30px;
}

@media screen and (min-width: 768px) {
	h2.content_title {
		font-size: 25px;
	}
	.content_title::after {
		width: 60px;
	}
}



/* sub_title -------------------- */

h3.sub_title,
h4.sub_title {
	color: #0096d6;
	font-size: 14px;
    font-weight: bold;
}
.sub_title + p {
	margin-top: 5px;
}

@media screen and (min-width: 768px) {
	h3.sub_title,
	h4.sub_title {
		font-size: 16px;
	}
}



/* sub_title -------------------- */

@media screen and (min-width: 1024px) {
	.data_link {
		text-align: right;
	}
}



/* hLine -------------------- */

.hLine {
	overflow: hidden;
	font-weight: normal;
	text-align: center;
}
.hLine > span {
	display: inline-block;
	position: relative;
	padding: 0 .5em;
	font-size: 18px;
}
.hLine > span::before,
.hLine > span::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 99em;
	border-top: 1px solid #000;
	opacity: .3;
}
.hLine > span::before {
	right: 100%;
}
.hLine > span::after {
	left: 100%;
}

/* white */
.hLine.cv_white {
	color: #fff;
}
.hLine.cv_white > span::before,
.hLine.cv_white > span::after {
	border-color: #fff;
}

@media screen and (min-width: 768px) {
	.hLine > span {
		font-size: 25px;
	}
}

.marker {
	background: linear-gradient(transparent 65%, rgba(0,150,214,.3) 65%);
}

/* ----------------------------------------
	製品ラインアップ
---------------------------------------- */

.prod_area {
	margin-top: 40px;
	padding-bottom: 40px;
	box-shadow: 0 10px 10px -10px rgba(0,0,0,.2);
}

@media screen and (min-width: 768px) {
	.prod_area {
		margin-top: 60px;
		padding-bottom: 60px;
	}
}



/* prod_head -------------------- */

.prod_head {
	text-align: center;
}
.prod_head h2 {
	font-size: 28px;
	font-weight: normal;
	line-height: 1;
}
.prod_head p {
	margin-top: 10px;
}

@media screen and (min-width: 768px) {
	.prod_head h2 {
		font-size: 40px;
	}
	.prod_head p {
		margin-top: 1em;
		font-size: 16px;
	}
}



/* prod_chara -------------------- */

.prod_chara ~ div {
	margin-top: 40px;
}
.prod_chara_img {
	padding: 15px;
	text-align: center;
}
.prod_chara_img img {
	width: 100%;
	max-width: 440px;
}
.prod_chara li:nth-child(n+2) {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dotted #ccc;
}

@media screen and (min-width: 768px) {
	.prod_chara ~ div {
		margin-top: 60px;
	}
	.prod_chara_img img {
		width: auto;
	}
}

@media screen and (min-width: 1024px) {
	.prod_chara {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 40px;
	}
	.prod_chara_img {
		width: 440px;
		padding: 0;
	}
	.prod_chara ul {
		width: 460px;
	}
}



/* prod_detail -------------------- */

.prod_detail_img img {
	width: 100%;
}
.prod_detail li {
	margin-top: 20px;
}
.prod_detail ul {
	counter-reset: prod_detail_num;
}
.prod_detail h3::before {
	counter-increment: prod_detail_num;
	content: counters(prod_detail_num, "") ". ";
}

@media screen and (min-width: 768px) {
	.prod_detail ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.prod_detail li {
		width: calc((100% - 30px) / 2);
		margin-top: 30px;
	}
}

@media screen and (min-width: 1024px) {
	.prod_detail ul {
		margin-top: 10px;
	}
	.prod_detail li {
		width: calc((100% - 60px) / 4);
		margin-top: 0;
	}
	.prod_detail h3::before {
		content: none;
	}
}



/* prod_view -------------------- */

.prod_view_head {
	text-align: center;
}
.prod_view_head h3 span {
	display: inline-block;
	padding: 0 20px;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	line-height: 32px;
	letter-spacing: 5px;
	background: #0096d6;
	border-radius: 16px;
}
.prod_view > ul > li {
	margin-top: 20px;
}
.prod_view_img img {
	width: 100%;
}
.prod_view ol {
	margin-top: 10px;
	padding-left: 1.5em;
}
.prod_view ol > li {
	list-style-type: decimal;
	font-size: 12px;
}
.prod_view ol > li:nth-child(n+2) {
	margin-top: 5px;
}
.prod_view > ul > li ul {
	margin: 0;
	padding: 0 0 0 2em;
}
.prod_view > ul > li ul li {
	font-size: 12px;
	line-height: 1.6;
	list-style-type: disc;
	list-style-position: outside;
}
.prod_view > ul > li ul li:nth-child(n+2) {
	margin-top: .5em;
}

@media screen and (min-width: 768px) {
	.prod_view_head h3 span {
		padding: 0 40px;
	}
	.prod_view > ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding-bottom: 20px;
		background: linear-gradient(to top, #f2f2f2, #fff 100px);
		border-radius: 0 0 10px 10px;
	}
	.prod_view > ul > li {
		width: calc((100% - 20px) / 2);
	}
	.prod_view ol {
		margin: 20px 0 0 20px;
	}
}



/* prod_spec -------------------- */

.prod_spec h4 {
	color: #fff;
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	line-height: 32px;
	letter-spacing: 5px;
	background: #333;
	border-bottom: 3px solid #0096d6;
}
.prod_spec_table table {
	width: 100%;
	margin: 0;
	padding: 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 2px solid #ccc;
	border-top: none;
}
.prod_spec_table th,
.prod_spec_table td {
	padding: 10px 5px;
	font-size: 12px;
	text-align: center;
}
.prod_spec_table thead {
	background: rgba(0,150,214,.1);
}
.prod_spec_table thead th {
	color: #007dba;
	font-size: 13px;
	border-left: 1px dotted rgba(0,150,214,.8);
}
.prod_spec_table tbody th {
	white-space: nowrap;
	border-top: 1px dotted #ccc;
}
.prod_spec_table tbody td {
	border-top: 1px dotted #ccc;
	border-left: 1px dotted #ccc;
}
.prod_spec_table tfoot {
	background: rgba(255,204,0,.05);
}
.prod_spec_table tfoot th {
	border-top: 1px dotted #ccc;
}
.prod_spec_table tfoot td {
	border-top: 1px dotted #ccc;
	border-left: 1px dotted #ccc;
}
.prod_spec_table tfoot tr:first-of-type th,
.prod_spec_table tfoot tr:first-of-type td {
	border-top: 2px solid rgba(0,150,214,.8);
}

/* button */
.prod_spec_table .button2 {
	white-space: nowrap;
}

/* scroll */
.prod_spec_table {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.prod_spec_table::-webkit-scrollbar {
	height: 6px;
}
.prod_spec_table::-webkit-scrollbar-track {
	background: #f5f5f5;
}
.prod_spec_table::-webkit-scrollbar-thumb {
	background: #0096d6;
	border-radius: 3px;
}
.prod_spec_table table {
	min-width: 100%;
}

@media screen and (min-width: 1024px) {
	.prod_spec_table table {
		table-layout: fixed;
	}
	.prod_spec_table th,
	.prod_spec_table td {
		font-size: 13px;
	}
	.prod_spec_table thead th {
		font-size: 14px;
	}
	.prod_spec_table thead td {
		width: 10em;
	}
	/* scroll */
	.prod_spec_table {
		overflow-x: visible;
	}
}
/* prod_chara_telework -------------------- */

.prod_chara_telework > ul > li:nth-child(n+2) {
	margin: 2rem 0 0 ;
	padding: 2rem 0 0 ;
	border-top: 1px dotted #ccc;
}
.prod_chara_telework .d_flex_md > div:nth-child(2) {
	margin: 2rem 0 0;
}
@media screen and (min-width:768px) {
	.prod_chara_telework .d_flex_md > div:nth-child(2) {
		margin: 0 0 0 2rem;
	}
}
/* prod_chara_sureview -------------------- */
.prod_chara_sureview .d_flex_md > div:nth-child(2) {
	margin: 2rem 0 0;
}
@media screen and (min-width:768px) {
	.prod_chara_sureview .d_flex_md > div:nth-child(2) {
		margin: 0 0 0 2rem;
	}
}


.line_box {
	position: relative;
	padding: 20px;
	border: 2px solid #0096d6;
	border-radius: 8px;
}
.line_box span {
	display: inline-block;
	position: relative;
	top: -2.5em;
	left: 0;
	right: 0;
	padding: 0 5px;
	background: #fff;
	color: #0096d6;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.line_box span {
		top: -1.75em;
		/*left: 7rem;
		right: 7rem;*/
		font-size: 18px;
	}
}
@media screen and (min-width: 1024px) {
	.line_box span {
		/*left: 170px;
		right: 170px;*/
		font-size: 20px;
		letter-spacing: 1px;
	}
}



/* ----------------------------------------
	option
---------------------------------------- */

.op_area {
	margin-top: 40px;
}
h2.op_title {
	padding: 5px;
	color: #fff;
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	background: #333;
	border-radius: 8px 8px 0 0;
}
.op_inner {
	padding: 20px 15px;
	border: 3px solid #333;
	border-top: none;
	border-radius: 0 0 8px 8px;
}
.op_top img {
	width: 100%;
}
.op_content + .op_content {
	margin-top: 40px;
}
.op_sale::before {
	display: block;
	content: "＼ お求めやすくなりました ／";
	margin-bottom: 10px;
	color: #e91c00;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
h3.op_cate_title {
	margin-bottom: 20px;
	padding: 3px;
	color: #0096d6;
	font-size: 16px;
	text-align: center;
	background: rgba(0,150,214,.1);
    font-weight: bold;
}
.op_point {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #ccc;
}
.op_point_icon {
	display: table;
}
.op_point_icon > span {
	display: table-cell;
	vertical-align: middle;
	width: 80px;
	height: 80px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #0096d6;
	border-radius: 0 10px;
}
.op_point_content {
	width: calc(100% - 95px);
}
.op_point_content > div:nth-child(n+2) {
	margin-top: 15px;
}
.op_lineup > li:nth-child(n+2) {
	margin-top: 40px;
}
.op_main {
	text-align: center;
}
.op_main_img {
	display: inline-block;
	position: relative;
}
.op_main_img img {
	width: 100%;
	max-width: 400px;
}
.op_acce .op_main_img img {
	width: 80%;
	max-width: 300px;
}
.op_main h4 {
	margin-top: 10px;
}
.op_main p.price {
	margin-top: 5px;
}
.op_main p.price > span {
	font-size: 30px;
}
/* sale */
.op_main.sale .op_main_img::before {
	display: inline-block;
	content: "";
	position: absolute;
	top: -10px;
	right: -10px;
	width: 100px;
	height: 86px;
	margin-bottom: 0;
	background: url(/portal/page/out/mss/hpi/cp_20200819/images/op_balloon_sale.png) no-repeat 0 0 / 100px 86px;
}
/* new */
.op_main.new .op_main_img::before {
	content: "NEW";
	position: absolute;
	top: -10px;
	left: 0;
	width: 70px;
	height: 70px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 70px;
	background: #e91c00;
	border-radius: 50%;
}
.op_spec {
	margin-top: 15px;
	padding: 15px 15px 20px;
	background: linear-gradient(to bottom, #f2f2f2, #fff);
	border-radius: 8px 8px 0 0;
}
.op_spec li {
	font-size: 13px;
}
.op_buy {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.op_area {
		margin-top: 60px;
	}
	.op_inner {
		padding: 30px;
	}
	h3.op_cate_title {
		font-size: 20px;
	}
	.op_point_icon > span {
		width: 100px;
		height: 100px;
		font-size: 16px;
	}
	.op_point_content {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 120px);
	}
	.op_point_content > div {
		width: calc((100% - 20px) / 2);
	}
	.op_point_content > div:nth-child(n+2) {
		margin-top: 0;
	}
	.op_lineup {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.op_lineup > li {
		width: calc((100% - 20px) / 2);
	}
	.op_lineup > li:nth-child(n+2) {
		margin-top: 0;
	}
	.op_lineup > li:nth-child(n+3) {
		margin-top: 40px;
	}
	.op_main.new::before {
		width: 80px;
		height: 80px;
		font-size: 22px;
		line-height: 80px;
	}
}

@media screen and (min-width: 1024px) {
	.op_sale::before {
		width: 140px;
		height: 120px;
		background: url(/portal/page/out/mss/hpi/cp_20200819/images/op_balloon_sale.png) no-repeat 0 0 / 140px 120px;
	}
	.op_point_content {
		width: calc(100% - 130px);
	}
	.op_point_content > div {
		width: calc((100% - 30px) / 2);
	}
	.op_main img,
	.op_acce .op_main img {
		width: auto;
	}
	.op_spec {
		padding: 20px;
	}
	.op_lineup > li:nth-child(1) .op_spec,
	.op_lineup > li:nth-child(2) .op_spec {
		min-height: 186px;
	}
	.op_main.new::before {
		left: 20px;
		width: 90px;
		height: 90px;
		font-size: 24px;
		line-height: 90px;
	}
}





/* ----------------------------------------
	point
---------------------------------------- */

.point_area > li {
	position: relative;
	margin-top: 30px;
}
.point_icon {
	position: absolute;
	top: -20px;
	left: -10px;
	width: 80px;
	height: 80px;
}
.point_content {
	color: #fff;
	background: #0096d6;
}
.point_img {
	padding: 5px 5px 0;
}
.point_img img {
	width: 100%;
}
.point_text {
	padding: 15px;
}
.point_text h3 {
	display: inline-block;
	margin: 0;
	padding: 5px 1em;
	color: #fff;
	border: 1px solid #fff;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
	.point_area > li {
		margin: 30px 10px 0;
	}
	.point_icon {
		top: -30px;
		left: -30px;
		width: 100px;
		height: 100px;
	}
	.point_content {
		display: flex;
	}
	.point_img {
		width: 300px;
		padding: 5px 0 5px 5px;
	}
}

@media screen and (min-width: 1024px) {
	.point_text {
		padding: 25px 25px 0 25px;
	}
}

.limited_cam .d_table > div:first-child {
	width: 120px;
}
	.limited_cam .d_table > div:first-child > span >span:first-child:after {
		content: url(/portal/page/out/mss/hpi/cp_20200819/images/star.png);
		position: absolute;
	}
@media screen and (min-width:768px) {
	.limited_cam .d_table > div:first-child {
		width: 20%;
	}
}
