@charset "utf-8";
/*==========================================================================

   bread

==========================================================================*/
.bread {
	margin: 0 0 15px;
	font-size: 11px;
	background: #f8f8f8;
}
.bread__list {
	padding: 10px;
}
.bread__item {
	display: inline-block;
	vertical-align: middle;
}
.bread__item a::after {
	position: relative;
	top: -.05em;
	display: inline-block;
	font: bold 14px/1 FontAwesome;
	content: "\f105";
	color: #2278b2;
	vertical-align: middle;
	margin: 0 10px 0 15px;
}


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

   table

==========================================================================*/
.table01 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 14px;
}
.table01 th, .table01 td {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid #cbcbcb;
}
.table01 tr:last-child th,
.table01 tr:last-child td {
    border: none;
}
.table01 th {
    width: 288px;
    padding: 20px 0 35px;
    font-weight: 500;
}
.table01 td {
    padding: 20px 20px 35px;
	font-weight: 200;
}

.table02 {
    width: 100%;
}
.table02 th,
.table02 td {
    padding: 25px;
    border-bottom: 1px dashed #8e8e8e;
    vertical-align: top;
}
.table02 + .table02 {
	margin-top: 50px;
}
.table02 caption {
	margin: 20px 0 35px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

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

   btn

==========================================================================*/
.btn-outer {
	display:table;
}
.btn {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.btn01 {
	padding-top: .1em;
    color: #fff;
    border: 1px solid #e40011;
    border-radius: 5px;
    background: #e40011;
    transition: .3s;
}
.btn01:hover {
    color: #e40011;
    border-radius: 5px;
    background: #fff;
}
.btn02 {
	padding-top: .1em;
    color: #fff;
    border: 1px solid #909090;
    border-radius: 5px;
    background: #909090;
    transition: .3s;
}
.btn02:hover {
    color: #909090;
    background: #fff;
}
.btn03 {
	padding-top: .1em;
    color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    background: #000;
    transition: .3s;
}
.btn03:hover {
    color: #000;
    background: #fff;
}

.btn-inquiry {
	padding-top: .1em;
	color: #fff;
    border-radius: 5px;
	background: #37abd6;
}
.btn-inquiry:before {
    display: inline-block;
    font: normal 27px/1 FontAwesome;
    content: "\f003";
    position: relative;
    top: -.1em;
    margin-right: .4em;
    vertical-align: middle;
}


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

   icon

==========================================================================*/
.fa-phone.circle-phone {
    position: relative;
    padding: .05em .14em .05em .175em;
    border: 3px solid #000;
    border-radius: 50%;
}
.icon-new {
	display: inline-block;
    color: #fff;
    border-radius: 3px;
    background: #e60011;
}


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

   easytab

==========================================================================*/
.tab__body {overflow: hidden;}
.tab__content {display: none;}
.tab__content.active {display: block;}



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

   animation, action

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

/*----------------------------------------------------
blink
----------------------------------------------------*/
@keyframes blink {
  0% {opacity: 0.7;}
  100% {opacity: 1;}
}
@keyframes blinking {
  0% {opacity: 0;}
  50% {opacity: 0.5;}
  100% {opacity: 1;}
}

/*----------------------------------------------------
pulse
----------------------------------------------------*/
@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(237, 55, 55, 0.6);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(237, 55, 55, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(237, 55, 55, 0);
	}
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(237, 55, 55, 0.6);
		box-shadow: 0 0 0 0 rgba(237, 55, 55, 0.6);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(237, 55, 55, 0);
		box-shadow: 0 0 0 20px rgba(237, 55, 55, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(237, 55, 55, 0);
		box-shadow: 0 0 0 0 rgba(237, 55, 55, 0);
	}
}

/*----------------------------------------------------
floating
----------------------------------------------------*/
.act-floating {
    animation: floating 3s infinite ease-in-out;
}
@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 10px); }
    to   { transform: translate(0, -0px); }    
}

/*----------------------------------------------------
spin
----------------------------------------------------*/
.act-spin {
	/* keyframes に任意の名前を付ける */
	-moz-animation: spin 40s linear infinite;
	-webkit-animation: spin 40s linear infinite;
	animation: spin 40s linear infinite;
}
 
@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
	0% {-ms-transform: rotate(0deg);}
	100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
	0% {-o-transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

/*----------------------------------------------------
fade-in-left
----------------------------------------------------*/
.act-fade-in-left
{
	-webkit-animation: fade-in-left 1s;
	animation: fade-in-left 1s;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
@-webkit-keyframes fade-in-left {
    0%
	{
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
    100%
	{
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
}
@keyframes fade-in-left {
    0%
	{
		transform: translateX(100%);
		opacity: 0;
	}
    100%
	{
		transform: translateX(0%);
		opacity: 1;
	}
}


/*----------------------------------------------------
bounce
----------------------------------------------------*/
@-webkit-keyframes bounce{
  0%{
    opacity: 0;
    transform: scale(0.3) translate3d(0,0,0);
  }
  50%{
    opacity: 0.9;
    transform: scale(1.1);
  }
  80%{
    opacity: 1;
    transform: scale(0.89);
  }
  100%{
    opacity: 1;
    transform: scale(1) translate3d(0,0,0);
  }
}
@keyframes bounce{
  0%{
    opacity: 0;
    transform: scale(0.3) translate3d(0,0,0);
  }
  50%{
    opacity: 0.9;
    transform: scale(1.1);
  }
  80%{
    opacity: 1;
    transform: scale(0.89);
  }
  100%{
    opacity: 1;
    transform: scale(1) translate3d(0,0,0);
  }
}

/*----------------------------------------------------
zoomIn
----------------------------------------------------*/
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

/*----------------------------------------------------
bound
----------------------------------------------------*/
@-webkit-keyframes bound {
  0% {transform: scale(0) translate(0,-500px);}
  50% {transform: scaleX(2) translate(0,200px);}
  70% {transform: scaleY(.5) translate(0,-100px);}
  90% {transform: scaleX(1.5) translate(0,50px);}
  100% {transform: scale(1) translate(0,0);}
}
@keyframes bound {
  0% {transform: scale(0) translate(0,-500px);}
  50% {transform: scaleX(2) translate(0,200px);}
  70% {transform: scaleY(.5) translate(0,-100px);}
  90% {transform: scaleX(1.5) translate(0,50px);}
  100% {transform: scale(1) translate(0,0);}
}

/*----------------------------------------------------
bubble
----------------------------------------------------*/

.bubble {
	-webkit-animation:short-bubble 1500ms linear infinite;
	animation:short-bubble 1500ms linear infinite;
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	height:10px;
	width:9px;
	border:1px solid rgba(240,240,240,0.5);
	border-radius:50%;
}
.b2{
    -webkit-animation:medium-bubble 5000ms linear infinite;
    animation:medium-bubble 5000ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    margin-left:-6px;
    margin-top: 36px;
    height:13px;
    width:12px;
}
.b3{
    -webkit-animation-duration:2000ms;
    animation-duration:2000ms;
    margin-left:-5px;
    margin-bottom:10px;
}
.b4{
    -webkit-animation-duration:1000ms;
    animation-duration:1000ms;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    margin:0 0 40px -9px;
    height:7px;
    width:6px;
}
.b5{
    -webkit-animation:medium-bubble 2000ms linear infinite;
    animation:medium-bubble 2000ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    height:5px;
    width:4px;
    margin-left: 3px;
    margin-top:66px;
}
.b6{
    -webkit-animation-duration:2000ms;
    animation-duration:2000ms;
    margin-left:-9px;
    margin-bottom:39px;
}
.b7{
    -webkit-animation-duration:3000ms;
    animation-duration:3000ms;
    height:7px;
    width:6px;
    margin-left:-6px;
    margin-bottom:66px;
}
.b8{
    -webkit-animation:medium-bubble 1500ms linear infinite;
    -webkit-animation-fill-mode:forwards;
    animation:medium-bubble 1500ms linear infinite;
    animation-fill-mode:forwards;
    margin-left:-10px;
    margin-bottom:30px;
}
@keyframes short-bubble{
    0%{ transform:translate3d(5px, 0, 0);opacity:0; }
    13%{ transform:translate3d(2px, -20px, 0); opacity:1; }
    20%{ transform:translate3d(5px, -40px, 0) scale(1.2); }
    30%{ transform:translate3d(0px, -60px, 0); }
    40%{ transform:translate3d(8px, -80px, 0); }
    50%{ transform:translate3d(3px, -100px, 0); }
    60%{ transform:translate3d(8px, -120px, 0); }
    70%{ opacity:0.4; }
    80%, 100%{ transform:translate3d(0,-200px, 0); opacity:0; }
}
@keyframes medium-bubble{
    0%{ transform:translate3d(0, 0, 0); opacity:0;}
    5%{ transform:translate3d(4px, -20px, 0); opacity:1;}
    10%{ transform:translate3d(2px, -40px, 0) rotate(10deg); }
    20%{ transform:translate3d(7px, -80px, 0) rotate(14deg) scale(0.7); }
    30%{ transform:translate3d(5px, -120px, 0) rotate(15deg); }
    40%{ transform:translate3d(1px, -160px, 0) rotate(20deg); }
    50%{ transform:translate3d(2px, -200px, 0) rotate(18deg) scale(1.1); }
    60%{ transform:translate3d(-3px, -240px, 0) rotate(22deg); opacity:0.4; }
    100%{ transform:translate3d(0, -400px, 0); opacity:0; }
}


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

   humberger

==========================================================================*/
#humberger{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	width: 45px;
	padding: 17px 10px 10px;
	cursor: pointer;
}
.icon-bar{
	height: 7px;
	background: #e50013;
	display: block;
	margin-bottom: 9px;
	-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	   -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
		 -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
			transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);

	-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
		 -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
			transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
}
/* drawer-opened */
body.drawer-opened #humberger .icon-bar{
}
body.drawer-opened #humberger :nth-child(1) {
    transform: translate(0,20px) rotate(45deg);
    -webkit-transform: translate(0,20px) rotate(45deg);
}
body.drawer-opened #humberger :nth-child(2){
	transform:translate(-20px ,0);
	-webkit-transform:translate(-20px ,0);
	opacity:0;
}
body.drawer-opened #humberger :nth-child(3) {
    transform: translate(0,-12px) rotate(-45deg);
    -webkit-transform: translate(0,-12px) rotate(-45deg);
}


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

   tab01

==========================================================================*/
.page-header-tab01 {
    position: relative;
    margin-top: 14px;
}
.tab01 {
    display: table;
    width: 100%;
}
.tab01__item {
	position: relative;
    display: table-cell;
}
.tab01__item:after {
    position: absolute;
    display: block;
    content: "";
    top: 4px;
    right: 0;
    width: 1px;
    height: 38px;
    background: #fff;
}
.tab01__item:last-child:after {
	display: none;
}
.tab01__item.item--col1 { width: 100%;}
.tab01__item.item--col2 { width: 50%;}
.tab01__item.item--col3 { width: 33.333333%;}

.tab01__target {
    display: block;
    width: 100%;
    height: 46px;
	padding-top: .1em;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
	font-weight: 100;
    line-height: 46px;
    color: #fff;
    background: #e50014;
}
.tab01__target.current {
    background: #aa000d;
}
.tab01__target:before {
    display: inline-block;
    font: normal 25px/1 FontAwesome;
    content: "\f105";
    position: relative;
    top: -.1em;
    margin-right: .75em;
    vertical-align: middle;
}
.tab01__target.current:before {
    display: inline-block;
    font: normal 25px/1 FontAwesome;
    content: "\f107";
    position: relative;
    top: -.1em;
    margin-right: .75em;
    vertical-align: middle;
}
.tab01__target:hover {
    color: #fff;
	background: #aa000d;
}
.tab02__list {
    font-size: 0;
    text-align: left;
}
.tab02__item {
    display: inline-block;
    box-sizing: border-box;
    padding: 5px;
    font-size: 14px;
	text-align: center;
}
.tab02__item.item--col2 { width: 33.33333%;}
.tab02__item.item--col3 { width: 33.33333%;}
.tab02__item.item--col4 { width: 25%;}

.tab02__target {
    display: block;
    padding: 21px 5px 20px;
    border-bottom: 1px solid #ccc;
}
.tab02__target.current {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: none;
    border-left: 1px solid #ccc;
}


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

   pagetop

==========================================================================*/
.pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
	z-index: 100;
	-webkit-transform: translate3d(1px ,1px, 1px) !important;
	display: none;
}
.pagetop a {
    display: block;
    width: 63px;
    height: 63px;
	text-align: center;
    border-radius: 10px;
    background: #d51519;
}
.pagetop a:before {
    display: inline-block;
    font: normal 52px/1 FontAwesome;
    content: "\f106";
    vertical-align: middle;
    color: #fff;
    text-align: center;
}
.pagetop02 {
    position: fixed;
    right: 30px;
    bottom: 30px;
	display: none;
}
.pagetop02 a {
    display: block;
    width: 53px;
    height: 53px;
	color: #fff;
	text-align: center;
    border-radius: 10px;
    background: #000;
}
.pagetop02 a:before {
    display: inline-block;
    font: normal 49px/1 FontAwesome;
    content: "\f106";
    vertical-align: middle;
    color: #fff;
    text-align: center;
}

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

   form01

==========================================================================*/
.form01 input[type=radio], .form01 input[type=checkbox] {
	display: none;
}
.form01 .radio, .form01 .checkbox {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    border-radius: 8px;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: background-color .3s linear;
    transition: background-color .3s linear;
}
.form01 .radio:hover:after, .form01 .checkbox:hover:after {
  border-color: #e60014;
}
.radio:after, .checkbox:after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: -40px;
    width: 28px;
    height: 28px;
    margin-top: -18px;
    border: 2px solid #bbb;
    border-radius: 6px;
    background: #fff;
    -webkit-transition: border-color .3s linear;
    transition: border-color .3s linear;
}

.form01 .radio:before {
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #53b300;
	content: '';
	opacity: 0;
	-webkit-transition: opacity .3s linear;
	transition: opacity .3s linear;
}
.form01 input[type=radio]:checked + .radio:before {
	opacity: 1;
}
.form01 .checkbox:before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: -30px;
    width: 7px;
    height: 17px;
    margin-top: -15px;
    border-right: 4px solid #000;
    border-bottom: 4px solid #000;
    opacity: 0;
    z-index: 2;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
}
.form01 input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}


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

   form02

==========================================================================*/
.form02 {
    padding: 0 25px 35px;
    background: #fafafa;
}
.form02-privacy {
    margin: 35px 0;
    padding: 0 33px;
}
.form02 input,
.form02 textarea,
.form02 select {
    box-sizing: border-box;
    padding: 7px;
    font-size: 16px;
    border: 2px solid #bfbfbf;
}
.form02 .table02 th {
    width: 240px;
	padding : 25px 0 25px 40px;
}
.form02 .zip1,
.form02 .zip2 {
    width: 100px;
}
.form02__label {
    position: relative;
    display: inline-block;
    padding: 10px;
}
.form02 .must-terms {
    position: absolute;
    top: 50%;
    right: -.5em;
    margin-top: -12px;
    font-size: 24px;
    color: #e60012;
}
.form02__guide {
    padding: 5px;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.7;
    color: #434343;
}
.form02__icon.icon--zip {
	margin-right: .25em;
}
.btn-additonal-set {
	position: relative;
	display: inline-block;
	padding: 12px 25px;
	border: 1px solid #000;
	background: #fff;
}
.btn-additonal-set:before {
	position: relative;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f067";
	top: -.1em;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
.btn-additonal-set:hover {
	cursor: pointer;
}
.additonal-set-footer.hidden {
	display: none;
}
.form02-captcha {
    line-height: 2;
}
.form02-captcha img {
    filter: brightness(400%);
}
.form02 .confirm-email {
    margin-top: 20px;
}
.form02-privacy__text {
    margin: 35px auto;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}
.form02-privacy__block {
    box-sizing: border-box;
    height: 530px;
    padding: 20px;
    overflow: auto;
    border: 1px solid #b9c9b6;
    background: #f3f9ed;
}
.form02-privacy__block .privacy-index {
    border: none;
    background: #fff;
}
.form02-privacy__block .privacy-more__desc {
    margin: 25px 0 12px;
    padding: 0 35px 12px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    border-bottom: 1px solid #bababa;
}
.form02-btn:hover {
	cursor: pointer;
}
.form02-btn.submit-btn {
    width: 362px;
    height: 65px;
	font-size: 22px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background: #e50011;
}
.form02-btn.back-btn {
	display: inline-block;
    width: 230px;
    height: 65px;
	font-size: 22px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background: #7b7b7b;
}
.form02-btn + .form02-btn {
	margin-left: 68px;
}
.form02-btn-block {
    margin-top: 30px;
    text-align: center;
}
.form02-btn-block .form02-btn + form02-btn {
    margin-left: 20px;
}
.form02.form02--confirm .form02__label {
	padding: 0;
}
.form02.form02--confirm .form02__guide,
.form02.form02--confirm .form02-privacy,
.form02.form02--confirm .form02-row__captcha,
.mw_wp_form_confirm .confirm-email-row {
	display: none;
}
.form-news-box {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ff9393;
    background: #ffdede;
}


.form02-repeat-field + .form02-repeat-field {
    margin-top: 25px;
}
.form02-repeat-field.field--02,
.form02-repeat-field.field--03 {
	display: none;
}
.form02-repeat-field.is--visible {
	display: table;
}

.form02-rows-footer {
    margin: 25px 0 0;
    text-align: center;
}
.additonal-history-footer.hidden {
    display: none;
}
.mw_wp_form_confirm .btn-additonal-set {
	display: none;
}


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

   page - form

==========================================================================*/
.form-step {
    margin: 5px auto 0;
	padding-bottom: 50px;
	border-bottom: 1px solid #ddd;
}
.form-step__list {
    font-size: 0;
    text-align: center;
}
.form-step__item {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 246px;
    padding: 16px;
    font-size: 16px;
    font-weight: 300;
    color: #626262;
    border: 3px solid #c5c5c5;
}
.form-step__item + .form-step__item {
    margin-left: 60px;
}
.form-step__item + .form-step__item:before {
    position: absolute;
    display: block;
    left: -40px;
    content: "▲";
    color: #7b7b7b;
    transform:rotate(90deg);
}
.form-step__item.current {
    color: #e60014;
    border-color: #e60014;
}
.form-step__item.current + .form-step__item:before {
    color: #e60014;
}
.form-desc {
    padding: 35px 80px;
    font-size: 13px;
    line-height: 1.7;
}
.form-desc__important {
    color: #e60014;
}
.form-complete {
    display: table;
    box-sizing: border-box;
    width: 100%;
    height: 312px;
    padding: 30px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 2;
    color: #e60012;
    border: 2px solid #d5d5d5;
    background: #fafafa;
}
.form-complete-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.privacy-content p {
    margin-bottom: 1em;
}

.privacy-content h3 {
    margin: 25px 0 5px;
    padding-top: 25px;
    text-decoration: underline;
    border-top: 1px solid #000;
}


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

   swiper

==========================================================================*/
.swiper-button-prev,
.swiper-button-next {
  width: 48px !important;
  height: 55px !important;
  margin-top: -27px !important;
  z-index: 10000 !important;
}
.swiper-button-prev:before,
.swiper-button-next:before {
    display: inline-block;
    font: normal 55px/1 FontAwesome;
	color: #666;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.swiper-button-prev:before { content: "\f137";}
.swiper-button-next:before { content: "\f138";}


.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: none !important;
  left: 9px !important;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: none !important;
  right: 0px !important;
}

