/* ==================================================
	d_model_search
================================================== */

.d_model_search {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-top: 20px;
	padding: 10px;
	background: #f2f2f2;
}



/* ----------------------------------------
	filter
---------------------------------------- */

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

.d_model_filter_button {
	display: inline-block;
	vertical-align: bottom;
	padding: 0 1.2em;
	font-size: 16px;
	text-align: center;
	line-height: 42px;
	background: #0096d6;
	border-radius: 4px;
	transition: .2s;
}
.d_model_filter_button:link,
.d_model_filter_button:visited,
.d_model_filter_button:hover,
.d_model_filter_button:active {
	color: #fff;
	text-decoration: none;
}
.d_model_filter_button:hover {
	background: #007dba;
}



/* ----------------------------------------
	clear
---------------------------------------- */

.d_model_clear_wrap {
	margin-left: 10px;
}
.d_model_clear_wrap input[type="button"] {
	-webkit-appearance: button;
	appearance: button;
	padding: 0 .8em;
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	text-align: center;
	line-height: 42px;
	background: #767676;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: .2s;
}
.d_model_clear_wrap input[type="button"]:hover {
	background: #5a5a5a;
}



/* ----------------------------------------
	sort
---------------------------------------- */

.d_model_sort_wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	margin-top: 10px;
}
.d_model_sort_label {
	margin-right: 5px;
	color: #5a5a5a;
	font-size: 14px;
	line-height: 1;
}

@media screen and (min-width: 480px) {
	.d_model_sort_wrap {
		width: auto;
		margin: 0 0 0 10px;
	}
}

@media screen and (min-width: 768px) {
	.d_model_sort_wrap {
		margin-left: 20px;
	}
}



/* select -------------------- */

.d_model_sort_select {
	display: inline-block;
	position: relative;
}
.d_model_sort_select::after {
	content: "\E90c";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	color: #0096d6;
	font-family: HPIcons;
	font-size: 15px;
	font-weight: bold;
	line-height: 1;
}
.d_model_sort {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 12.5em;
	height: 42px;
	padding-left: .8em;
	font-family: inherit;
	color: #000;
	font-size: 15px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	cursor: pointer;
}
.d_model_sort::-ms-expand {
	display: none;
}
.d_model_sort:focus {
	box-shadow: none;
	outline: none;
}





/* ==================================================
	d_model_filter - modal
================================================== */

.d_model_filter {
	overflow-y: scroll;
}
.d_model_filter .modal_content_inner {
	max-height: 90vh;
	padding: 20px 0 0;
}

@media screen and (min-width: 768px) {
	.d_model_filter .modal_content_inner {
		width: 580px;
		padding: 40px 0 0;
	}
}



/* ----------------------------------------
	d_model_filter_text
---------------------------------------- */

.d_model_filter_text {
	padding: 0 20px 15px;
	text-align: center;
}
.d_model_filter_text p {
	font-size: 16px;
}



/* ----------------------------------------
	d_model_filter_item
---------------------------------------- */

.d_model_filter_item {
	width: 100%;
	padding: 0 20px;
}
.d_model_filter_item dt {
	position: relative;
	padding: 12px 15px;
	font-size: 16px;
	line-height: 1;
	background: #f2f2f2;
}
.d_model_filter_item dd {
	padding: 15px;
}
.d_model_filter_check_area {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
	.d_model_filter_item dd {
		padding: 20px 15px;
	}
}



/* ----------------------------------------
	d_model_filter_check_area
---------------------------------------- */

/* reset */
.d_model_filter_check_area input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

/* radio, check */
.d_model_filter_check_area input {
	display: none;
}
.d_model_filter_check_area label {
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 5px 0;
	padding-left: 35px;
	cursor: pointer;
}
.d_model_filter_check_area input + label::before,
.d_model_filter_check_area input + label::after {
	display: inline-block;
	content: "";
	position: absolute;
	transition: .2s;
}
.d_model_filter_check_area input + label::before {
	top: 0;
	left: 0;
	width: 23px;
	height: 23px;
	background: #fff;
	border: 2px solid #ccc;
}
.d_model_filter_check_area input:checked + label::before {
	border-color: #0096d6;
}
.d_model_filter_check_area input + label::after {
	top: 3px;
	left: 8px;
	transform: rotate(45deg);
	width: 7px;
	height: 14px;
	border-right: 2px solid #0096d6;
	border-bottom: 2px solid #0096d6;
	opacity: 0;
}
.d_model_filter_check_area input:checked + label::after {
	opacity: 1;
}

@media screen and (min-width: 480px) {
	.d_model_filter_check_area label {
		width: 50%;
		padding-right: 20px;
	}
}



/* ----------------------------------------
	d_model_filter_fixed
---------------------------------------- */

.d_model_filter_fixed {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: sticky;
	bottom: 0;
	padding: 20px;
	color: #fff;
	text-align: center;
	background: rgba(0,0,0,.8);
	z-index: 2;
}
.d_model_filter_hit {
	width: 100%;
	margin-bottom: 15px;
}
.d_model_filter_hit p {
	font-size: 16px;
	line-height: 1;
}
.d_model_filter_hit_num {
	margin: 0 4px;
	font-size: 140%;
	line-height: 1;
}
.d_model_filter_clear_button {
	margin-left: 15px;
}

@media screen and (min-width: 768px) {
	.d_model_filter_hit {
		width: auto;
		margin-bottom: 0;
	}
	.d_model_filter_search_button {
		margin-left: auto;
	}
}


/* input -------------------- */

/* .d_model_filter input[type="submit"], */
.d_model_filter input[type="button"] {
	-webkit-appearance: button;
	appearance: button;
	padding: 0 .8em;
	font-family: inherit;
	color: #fff;
	text-align: center;
	line-height: 42px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: .2s;
}

/* submit */
.d_model_filter .d_model_filter_search_button input[type="button"] {
	width: 140px;
	font-size: 18px;
	background: #0096d6;
}
.d_model_filter .d_model_filter_search_button input[type="button"]:hover {
	background: #007dba;
}
@media screen and (min-width: 480px) {
	.d_model_filter .d_model_filter_search_button input[type="button"] {
		width: 180px;
	}
}

/* button */
.d_model_filter input[type="button"] {
	font-size: 13px;
	background: #767676;
}
.d_model_filter input[type="button"]:hover {
	background: #5a5a5a;
}





/* ==================================================
	d_model_list
================================================== */

.d_model_list_wrap {
	padding: 10px 10px 40px;
}
.d_model_list {
	max-width: 400px;
	margin: 0 auto;
}
.d_model_list > li {
	margin-top: 10px;
}
.d_model_content {
	height: 100%;
	padding: 20px;
	text-align: center;
	border: 1px solid #eee;
	box-shadow: 0 0 5px 0 rgba(0,0,0,10%);
	transition: .2s;
}
.d_model_content:hover {
	border-color: #007dba;
}
.d_model_name {
	margin-top: 15px;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.4;
}
.d_model_buy {
	margin-top: 10px;
}
.d_model_price {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
}
.d_model_price p + .regular_price {
	margin-left: .5em;
}
.d_model_price .price {
	width: 100%;
}
.d_model_promotions_link {
	margin-top: 10px;
	font-size: 11px;
}
.d_model_button {
	margin-top: 10px;
}
.d_model_comment {
	margin-top: 15px;
	padding: 10px;
	background: #f2f2f2;
}
.d_model_comment p {
	color: #007dba;
	font-size: 14px;
	line-height: 1.4;
}

@media screen and (min-width: 768px) {
	.d_model_list_wrap {
		padding: 20px 10px 60px;
	}
	.d_model_list {
		display: flex;
		flex-wrap: wrap;
		max-width: 820px;
	}
	.d_model_list > li {
		width: 50%;
		padding: 0 5px;
	}
}

@media screen and (min-width: 1024px) {
	.d_model_list_wrap {
		padding: 20px 0 80px;
	}
	.d_model_list {
		max-width: none;
		margin: 0 -5px;
	}
	.d_model_list > li {
		width: 33.33333%;
	}
}



/* ----------------------------------------
	d_model_spec
---------------------------------------- */

.d_model_spec {
	margin-top: 20px;
}
.d_model_spec_list {
	text-align: left;
}
.d_model_spec_list > li {
  min-height: 20px;
	position: relative;
	margin-bottom: .8em;
	padding-left: 32px;
	font-size: 14px;
	line-height: 1.4;
}
.d_model_spec_list > li::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-size: 22px;
}
.d_model_spec_os::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/os.png);
}
.d_model_spec_processor::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/processor.png);
}
.d_model_spec_graphics::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/graphics.png);
}
.d_model_spec_momery::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/momery.png);
}
.d_model_spec_cooling_system::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/cooling_system.png);
}
.d_model_spec_color::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/color.png);
}
.d_model_spec_display::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/display.png);
}
.d_model_spec_storage::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/storage.png);
}
.d_model_spec_storage_2nd::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/storage_2nd.png);
}
.d_model_spec_optical_drive::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/optical_drive.png);
}
.d_model_spec_web_camera::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/web_camera.png);
}
.d_model_spec_wireless::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/wireless.png);
}
.d_model_spec_communication_module::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/communication_module.png);
}
.d_model_spec_media_card_slot::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/media_card_slot.png);
}
.d_model_spec_keyboard::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/keyboard.png);
}
.d_model_spec_mouse_keyboard::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/mouse_keyboard.png);
}
.d_model_spec_tv_tuner::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/tv_tuner.png);
}
.d_model_spec_security::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/security.png);
}
.d_model_spec_interface::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/interface.png);
}
.d_model_spec_audio::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/audio.png);
}
.d_model_spec_pen::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/pen.png);
}
.d_model_spec_size::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/size.png);
}
.d_model_spec_weight::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/weight.png);
}
.d_model_spec_ac_adapter::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/ac_adapter.png);
}
.d_model_spec_power::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/power.png);
}
.d_model_spec_battery::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/battery.png);
}
.d_model_spec_warranty::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/warranty.png);
}
.d_model_spec_office::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/office.png);
}
.d_model_spec_monitor::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/monitor.png);
}
.d_model_spec_main_attachments::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/main_attachments.png);
}
.d_model_spec_other::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/other.png);
}
.d_model_spec_free1::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/free1.png);
}
.d_model_spec_free2::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/free2.png);
}
.d_model_spec_free3::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/free3.png);
}
.d_model_spec_free4::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/free4.png);
}
.d_model_spec_free5::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/free5.png);
}
.d_model_spec_link {
	margin-top: 1em !important;
	font-size: 14px;
	text-align: right;
	line-height: 1;
}

/* delivery_date */
.d_model_spec_delivery_date {
	font-weight: bold;
}
.d_model_spec_delivery_date::before {
	background: url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/common/images/delivery.png);
}
.d_model_spec_delivery_date:empty {
	display: none;
}

/* icon_customize */
.d_model_spec_list .icon_customize::after {
	display: inline-block;
	vertical-align: middle;
	margin: -2px 0 0 8px;
}



/* ----------------------------------------
	d_model_campaign
---------------------------------------- */

.d_model_campaign {
	margin-top: 15px;
}
.d_model_campaign_icon {
	display: flex;
	flex-wrap: wrap;
	margin-right: -5px;
}
.d_model_campaign_icon > li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% / 4) - 5px);
	/* min-height: calc((3em * 1.3) + 12px); */
  min-height: calc(12px + (3em * 1.3));
	margin: 5px 5px 0 0;
	padding: 6px 3px;
	color: #007dba;
	font-size: 13px;
	text-align: center;
	line-height: 1.3;
	background: rgba(0,150,214,.1);
  border-radius: 4px;
}



/* ----------------------------------------
	d_model_spec_modal
---------------------------------------- */

.d_model_spec_modal {
	text-align: left;
}
.d_model_spec_modal h3 {
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	line-height: 1.4;
}
.d_model_spec_modal dl {
	margin-top: 20px;
	border-top: 1px solid #eee;
}
.d_model_spec_modal dt,
.d_model_spec_modal dd {
	font-size: 15px;
	line-height: 1.4;
}
.d_model_spec_modal dt {
	padding: 10px 5px 0;
	font-weight: bold;
}
.d_model_spec_modal dd {
	padding: .5em 5px 10px;
	border-bottom: 1px solid #eee;
}
.d_model_spec_modal .icon_customize::after {
	display: inline-block;
	margin: 0 0 0 8px;
}
.d_model_spec_modal .d_model_spec_pdf {
	text-align: center;
	margin-top: 20px;
}
.d_model_spec_modal .d_model_spec_pdf a {
	font-size: 16px;
}

@media screen and (min-width: 320px) {
	.d_model_spec_modal h3 {
		/* 18~22px */
		font-size: calc(1.8rem + ((1vw - 0.32rem) * 0.2841));
	}
}

@media screen and (min-width: 480px) {
	.d_model_spec_modal dt,
	.d_model_spec_modal dd {
		/* min-height: calc((1em * 1.4) + 20px); */
    min-height: calc(20px + (1em * 1.4));
		padding: 10px 15px;
	}
	.d_model_spec_modal dt {
		clear: both;
		float: left;
		width: calc(80px + 8em);
	}
	.d_model_spec_modal dd {
		padding-left: calc(85px + 8em);
	}
}

@media screen and (min-width: 1024px) {
	.d_model_spec_modal {
		width: 800px !important;
	}
	.d_model_spec_modal h3 {
		font-size: 22px;
	}
}

.hpj-pim-2 .series_name {
  height: 42px;
}
.hpj-pim-2 .comment_sale {
  height: 22px;
}
.hpj-pim-2 .normal_price_balance {
  height: 22px;
}
.hpj-pim-2 .product_page_url {
  height: 22px;
}
.hpj-pim-2 .regular_price_text {
  color: #d7410b;
  font-size: 1.1rem;
}
.hpj-pim-2 .regular_price_text_cam {
  color: #666666;
  font-size: 1.1rem;
}
.hpj-pim-2 .d_model_comment.for_pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hpj-pim-2 .d_model_comment.for_mobile {
    display: none;
  }
  .hpj-pim-2 .d_model_comment.for_pc {
    display: block;
  }
}
.hpj-pim-2 .model_filter_disabled {
  opacity: 0.9;
  pointer-events: none;
  background: #a9a9a9 !important;
}
.hpj-pim-2 .d_model_button {
  display: flex;
  justify-content: center;
}
.hpj-pim-2 .d_model_button > a {
  margin: auto;
}
.hpj-pim-2 .d_model_button > p {
  margin: auto;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('site/less/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('site/resources/fonts/slick.eot');
    src: url('site/resources/fonts/slick.eot?#iefix') format('embedded-opentype'), url('site/resources/fonts/slick.woff') format('woff'), url('site/resources/fonts/slick.ttf') format('truetype'), url('site/resources/fonts/slick.svg') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(site/less/skin/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(site/less/skin/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(site/less/skin/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/* ==================================================
	base
================================================== */

.modal_content.custom_modal {
	width: 90vw;
	max-width: 1220px;
	color: #000;
}
.modal_content.custom_modal .modal_content_inner {
	overflow: hidden;
	padding: 5px;
	background: #000;
}
.custom_modal_cont {
	background: #fff;
}





/* ==================================================
	custom_modal_head
================================================== */

.custom_modal_head {
	padding: 10px 30px 10px 10px;
	color: #fff;
	background: #000;
}
.custom_modal_head h2 {
	font-size: 18px !important;
	font-weight: normal;
	line-height: 1.3;
}

@media screen and (min-width: 768px) {
	.custom_modal_head {
		padding: 10px 40px;
		text-align: center;
	}
	.custom_modal_head h2 {
		font-size: 20px !important;
	}
}





/* ==================================================
	custom_modal_prod
================================================== */

/* ----------------------------------------
	layout
---------------------------------------- */

@media screen and (max-width: 767px) {
	.custom_modal_prod {
		padding: 20px 10px;
	}
}

@media screen and (min-width: 768px) {
	.custom_modal_prod {
		display: flex;
		justify-content: space-between;
	}
	.custom_modal_prod_img {
		width: 280px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.custom_modal_prod {
		flex-wrap: wrap;
		padding: 20px;
	}
	.custom_modal_prod_text {
		width: calc(100% - (280px + 20px));
	}
	.custom_modal_prod_button {
		width: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.custom_modal_prod_img {
		width: 300px;
		padding: 10px 0 10px 20px;
	}
	.custom_modal_prod_text {
		align-self: center;
		width: calc(100% - (300px + 230px));
		padding: 10px 20px;
	}
	.custom_modal_prod_button {
		position: relative;
		width: 230px;
		padding: 10px 20px;
	}
	.custom_modal_prod_button::after {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 1px;
		height: 100%;
		background: #000;
	}
}



/* ----------------------------------------
	img
---------------------------------------- */

.custom_modal_prod_img {
	text-align: center;
}
.custom_modal_prod_img img {
	height: auto;
}



/* ----------------------------------------
	text
---------------------------------------- */

.custom_modal_prod_selected {
	display: inline-block;
	margin-bottom: 8px;
	padding: 0 10px;
	color: #007dba;
	font-size: 12px;
	line-height: 20px;
	background: rgba(0,150,214,.07);
	border-radius: 10px;
}
.custom_modal_prod_text h3 {
	font-weight: normal;
	font-size: 14px !important;
	line-height: 1.3;
}

@media screen and (max-width: 767px) {
	.custom_modal_prod_text {
		margin-top: 10px;
	}
}

@media screen and (min-width: 768px) {
	.custom_modal_prod_text h3 {
		font-size: 16px !important;
	}
}



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

.custom_modal_prod_price {
	display: flex;
	align-items: flex-end;
	margin-top: 10px;
}
.custom_modal_prod_price_total {
	color: #5a5a5a;
	line-height: 1.2;
}
.custom_modal_prod_price .price {
	margin-left: 5px;
	font-size: 14px;
	font-weight: normal;
	white-space: nowrap;
}
.custom_modal_prod_price .price > span {
	font-size: 35px;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.custom_modal_prod_price {
		justify-content: center;
	}
}

@media screen and (min-width: 768px) {
	.custom_modal_prod_price_total {
		font-size: 23px;
	}
	.custom_modal_prod_price .price > span {
		font-size: 40px;
	}
}

@media screen and (min-width: 1280px) {
	.custom_modal_prod_price .price {
		margin-left: 10px;
	}
}



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

.custom_modal_prod_button > ul {
	display: flex;
}
.custom_modal_prod_button .button {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	border-radius: 0;
}
.custom_modal_prod_button .button.keep_shopping {
	color: #767676;
	font-size: 13px;
	background: #fff;
	outline: 1px solid #767676;
	outline-offset: -1px;
}
.custom_modal_prod_button .button.keep_shopping:hover {
	color: #fff;
	background: #767676;
}
.custom_modal_prod_button .button.add_to_cart {
	color: #fff;
	font-size: 16px;
	background: #d7410b;
}
.custom_modal_prod_button .button.add_to_cart:hover {
	background: #c1401a;
}

@media screen and (max-width: 479px) {
	.custom_modal_prod_button > ul > li {
		width: 50%;
	}
	.custom_modal_prod_button .button {
		width: 100%;
		padding-right: .8em;
		padding-left: .8em;
	}
}

@media screen and (min-width: 480px) {
	.custom_modal_prod_button .button br {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
	.custom_modal_prod_button > ul {
		flex-direction: row-reverse;
		justify-content: center;
		margin: 20px -5px 0;
	}
	.custom_modal_prod_button > ul > li {
		padding: 0 5px;
	}
	.custom_modal_prod_button .add_to_cart_button,
	.custom_modal_prod_button .keep_shopping_button,
	.custom_modal_prod_button .button {
		height: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.custom_modal_prod_button {
		display: flex;
		align-items: center;
	}
	.custom_modal_prod_button > ul {
		flex-wrap: wrap;
		flex-direction: row;
		align-items: center;
	}
	.custom_modal_prod_button > ul > li {
		width: 100%;
		margin: 8px 0;
	}
	.custom_modal_prod_button .button.add_to_cart {
		height: 68px;
	}
}





/* ==================================================
	custom_modal_slider
================================================== */

.custom_modal_slider {
	padding: 20px 0;
	background: #f2ebdc;
	border-top: 1px solid #000;
}
.custom_modal_slider_notes {
	margin-top: 10px;
	padding: 0 10px;
	text-align: center;
}





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

.custom_modal_slider .slick-prev,
.custom_modal_slider .slick-next {
	background: none !important;
}
.custom_modal_slider .slick-prev::before,
.custom_modal_slider .slick-next::before {
	transform: none !important;
	position: static !important;
}





/* ==================================================
	navi & for
================================================== */

/* ----------------------------------------
	navi
---------------------------------------- */

.custom_modal_slider_navi_wrap {
	padding: 0 20px;
}
.custom_modal_slider_navi {
	display: none;
}
.custom_modal_slider_navi.slick-initialized {
	display: block;
}

@media screen and (max-width: 478px) {
	.custom_modal_slider_navi_wrap {
		position: relative;
		text-align: center;
	}
	.custom_modal_slider_navi_wrap > a {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		min-height: 40px;
		padding: 5px 10px;
		color: #fff;
		background: #0096d6;
	}
	.custom_modal_slider_navi_wrap > a:hover {
		text-decoration: none;
	}
	.custom_modal_slider_navi_wrap > a::after {
		display: inline-block;
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		width: 12px;
		height: 6px;
		background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><path d="m455.465 769.707-1.847-.974 3.478-5.054-3.475-4.989 1.841-.983 4.156 5.966z" transform="rotate(90 611.663 158.045)" fill="%23fff"></path></svg>');
	}
	.custom_modal_slider_navi_wrap > a.open::after {
		transform: translateY(-50%) rotate(180deg);
	}
	.custom_modal_slider_navi {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 1 !important;
	}
	.custom_modal_slider_navi .slick-track {
		transform: none !important;
		width: 100% !important;
	}
	.custom_modal_slider_navi_btn {
		float: none;
		width: 100% !important;
		padding: 10px;
		color: #0096d6;
		line-height: 1.3;
		background: #f2f2f2;
		border-bottom: 1px solid #ccc;
	}
}

@media screen and (min-width: 480px) {
	.custom_modal_slider_navi_wrap {
		padding: 0 40px;
	}
	.custom_modal_slider_navi_wrap > a {
		display: none;
	}
	.custom_modal_slider_navi_btn {
		display: flex !important;
		justify-content: center;
		align-items: center;
		transition: .2s;
		min-height: 38px;
		margin-right: 2px;
		padding: 5px 10px;
		color: #5a5a5a;
		text-align: center;
		border: 1px solid #5a5a5a;
		border-radius: 3px;
		cursor: pointer;
	}
	.custom_modal_slider_navi_btn.slick-current {
		color: #fff !important;
		background: #0096d6 !important;
		border-color: #0096d6 !important;
	}
	.custom_modal_slider_navi_btn:hover {
		color: #fff;
		background: #007dba;
		border-color: #007dba;
	}

	/* arrow -------------------- */
	.custom_modal_slider_navi .slick-prev,
	.custom_modal_slider_navi .slick-next {
		width: 20px !important;
		height: 20px !important;
	}
	.custom_modal_slider_navi .slick-prev {
		left: -25px !important;
	}
	.custom_modal_slider_navi .slick-next {
		right: -25px !important;
	}
	.custom_modal_slider_navi .slick-prev::before,
	.custom_modal_slider_navi .slick-next::before {
		transition: .2s !important;
		color: #5a5a5a !important;
		font-family: "slick" !important;
		font-size: 20px !important;
		line-height: 1 !important;
	}
	.custom_modal_slider_navi .slick-prev::before {
		content: "\2190" !important;
	}
	.custom_modal_slider_navi .slick-next::before {
		content: "\2192" !important;
	}
	.custom_modal_slider_navi .slick-prev:hover::before,
	.custom_modal_slider_navi .slick-next:hover::before {
		opacity: .7 !important;
	}
}



/* ----------------------------------------
	for
---------------------------------------- */

.custom_modal_slider_for {
	display: none;
	margin-top: 20px;
}
.custom_modal_slider_for.slick-initialized {
	display: block;
}





/* ==================================================
	item
================================================== */

.custom_modal_slider_for_item_wrapper {
	padding: 0 30px;
}

@media screen and (min-width: 480px) {
.custom_modal_slider_for_item_wrapper {
	padding: 0 36px;
}
}



/* ----------------------------------------
	custom_modal_slider_for_inner
---------------------------------------- */

.custom_modal_slider_for_inner {
	overflow: hidden;
	height: 100%;
	background: #fff;
	border: 1px solid #000;
	border-radius: 5px;
	box-shadow: 0 0 5px 0 rgb(0,0,0,.3);
	cursor: pointer;
}
.custom_modal_slider_for_img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 170px;
}
.custom_modal_slider_for_img img {
	width: auto !important;
	height: auto;
	max-height: 150px;
}
.custom_modal_slider_for_text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 170px);
	padding: 15px 10px 20px;
}
.custom_modal_slider_for_text h3 {
	font-size: 14px !important;
	font-weight: normal;
	line-height: 1.3;
}
.custom_modal_slider_for_buy {
	margin-top: 10px;
	text-align: center;
}
.custom_modal_slider_for_price .price {
	font-weight: normal;
}
.custom_modal_slider_for_price .price > span {
	font-size: 20px;
	line-height: 1;
}
.custom_modal_slider_for_button {
	margin-top: 10px;
}
.custom_modal_slider_for_button .button {
	text-align: center;
	text-decoration: none;
	border-radius: 0;
}
.custom_modal_slider_for_button .add_to {
	color: #fff;
	background: #d7410b;
}
.custom_modal_slider_for_inner:hover .add_to {
	background: #c1401a;
}

@media screen and (min-width: 768px) {
	.custom_modal_slider_for_text h3 {
		font-size: 16px !important;
	}
	.custom_modal_slider_for_price .price > span {
		font-size: 23px;
	}
}


/* selected -------------------- */

.custom_modal_slider_for_inner.selected {
	border-color: #0096d6;
}
.custom_modal_slider_for_inner.selected .custom_modal_slider_for_text {
	background: rgba(0,150,214,.07);
}
.custom_modal_slider_for_inner.selected .add_to,
.custom_modal_slider_for_inner.selected .change {
	color: #0096d6;
	background: none;
}
.custom_modal_slider_for_inner.selected:hover .add_to,
.custom_modal_slider_for_inner.selected:hover .change {
	color: #007dba;
}


/* standard -------------------- */

.custom_modal_slider_for_inner.standard h3 {
	text-align: center;
}


/* backordered -------------------- */

.custom_modal_slider_for_inner.backordered .custom_modal_slider_for_text {
	background: #ddd;
}



/* ----------------------------------------
	slick
---------------------------------------- */

.custom_modal_slider_for_item_wrapper {
	display: none;
}
.custom_modal_slider_for_item_wrapper.slick-initialized {
	display: block;
}
.custom_modal_slider_for_item_wrapper.slick-dotted.slick-slider {
	margin-bottom: 0 !important;
}
.custom_modal_slider_for_item_wrapper .slick-track {
	display: flex !important;
	margin: 0 !important;
}
.custom_modal_slider_for_item_wrapper .slick-slide {
	user-select: text !important;
	height: auto !important;
	padding: 5px !important;
}


/* dots -------------------- */

.custom_modal_slider_for_item_wrapper .slick-dots {
	position: static !important;
	margin-top: 10px !important;
}
.custom_modal_slider_for_item_wrapper .slick-dots li {
	width: 20px !important;
	height: 20px !important;
	margin: 0 5px !important;
	padding: 0 !important;
}
.custom_modal_slider_for_item_wrapper .slick-dots li button {
	width: 20px !important;
	height: 20px !important;
	padding: 5px !important;
}
.custom_modal_slider_for_item_wrapper .slick-dots li button::before {
	transition: .2s !important;
	background: #ccc !important;
	opacity: 1 !important;
}
.custom_modal_slider_for_item_wrapper .slick-dots li button:hover::before,
.custom_modal_slider_for_item_wrapper .slick-dots li button:focus::before,
.custom_modal_slider_for_item_wrapper .slick-dots li.slick-active button::before {
	background: #000 !important;
}


/* arrow -------------------- */

.custom_modal_slider_for_item_wrapper .slick-prev,
.custom_modal_slider_for_item_wrapper .slick-next {
	width: 30px !important;
	height: 30px !important;
	z-index: 1 !important;
}
.custom_modal_slider_for_item_wrapper .slick-prev {
	left: 0 !important;
}
.custom_modal_slider_for_item_wrapper .slick-next {
	right: 0 !important;
}
.custom_modal_slider_for_item_wrapper .slick-prev::before,
.custom_modal_slider_for_item_wrapper .slick-next::before {
	display: inline-block !important;
	content: "\E90c" !important;
	transition: .2s !important;
	font-family: HPIcons !important;
	color: #000 !important;
	font-size: 30px !important;
	line-height: 1 !important;
	opacity: 1 !important;
}
.custom_modal_slider_for_item_wrapper .slick-prev::before {
	transform: rotate(90deg) !important;
}
.custom_modal_slider_for_item_wrapper .slick-next::before {
	transform: rotate(270deg) !important;
}
.custom_modal_slider_for_item_wrapper .slick-prev:hover::before,
.custom_modal_slider_for_item_wrapper .slick-next:hover::before {
	opacity: .5 !important;
}

@media screen and (min-width: 480px) {
	.custom_modal_slider_for_item_wrapper .slick-prev,
	.custom_modal_slider_for_item_wrapper .slick-next {
		width: 35px !important;
		height: 35px !important;
	}
	.custom_modal_slider_for_item_wrapper .slick-prev::before,
	.custom_modal_slider_for_item_wrapper .slick-next::before {
		font-size: 35px !important;
	}
}





/* ==================================================
	error
================================================== */

.custom_modal_error {
	padding: 40px 20px;
	text-align: center;
	background: #e6e6e6 url(../../../../../../content/dam/jp-ext-hp-com/jp/ja/ec/404/style/images/bg404.png);
}
.custom_modal_error_text {
	padding: 40px 20px;
	text-align: center;
	background: rgba(255,255,255,.9);
	border: 1px solid #e6e6e6;
}
.custom_modal_error_icon {
	margin-bottom: 20px;
}
.custom_modal_error_text p {
	font-size: 20px;
	line-height: 1.375;
}
.custom_modal_error_text .modal_close {
	position: static;
	transform: none;
	transition: .2s;
	width: auto;
	height: auto;
	margin-top: 20px;
	padding: .5em 1.2em;
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
	background: #000;
}
.custom_modal_error_text .modal_close:hover {
	background: #5a5a5a;
}
.custom_modal_error_text .modal_close::before,
.custom_modal_error_text .modal_close::after {
	content: none;
}

@media screen and (max-width: 479px) {
	.custom_modal_error_icon {
		width: 80px;
		height: 80px;
	}
}

@media screen and (min-width: 1024px) {
	.custom_modal_error {
		padding: 40px;
	}
}

