@charset "UTF-8";
/**====================================
 * CSS information
 * file name	: style.css
====================================**/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

/* body
-------------------------------------------------- */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6em;
	line-height: 1.75;
	zoom: 1;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #1a1a1a;
	width: 100%;
	min-width: 1120px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 
}

/* link
-------------------------------------------------- */
a {
	color: #262626;
	text-decoration: none;
	transition: all .2s;
}
a.underline {
	color: #27acc9;
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: 0.7;
	}
}

/* clear
-------------------------------------------------- */
.clear:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

/* Responsive
-------------------------------------------------- */
.sp {
	display: none;
}

/* img
-------------------------------------------------- */
img {
	width: 100%;
	height: auto;
}
.thumb {
	display: block;
	overflow: hidden;
	position: relative;
	transition: .3s all;
	background: #000000;
}
.thumb::after {
	display: block;
	content: "";
}
.thumb.overlay::after {
	position: relative;
	background: rgba(0,0,0,0.20);
}
.thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s all;
}

/*/////////////////////////////////////////////////////////////////////////////


              // common parts //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* ===============================================
    layout
=============================================== */

/* container
-------------------------------------------------- */
 #container {
	 width: 100%;
}

/* section
-------------------------------------------------- */
.section-wrap {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===============================================
    font
=============================================== */
.en {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
}
.font-w {
	font-weight: 700;
}
.s-txt {
	font-size: 1.2rem;
}
/* ===============================================
    title
=============================================== */

/* sec-ttl
-------------------------------------------------- */
.sec-ttl {
	text-align: center;
	padding: 30px 0 60px;
	position: relative;
}
.sec-ttl.sub {
	padding: 90px 0 60px;
}
.sec-ttl__numb {
	font-size: 30.0rem;
	position: absolute;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 1;
	color: #dbf5fb;
	opacity: 0.6;
}
.sec-ttl__numb.wht {
	color: #FFFFFF;
	opacity: 0.8;
}
.sec-ttl__pict {
	width: 135px;
	margin: 0 auto 20px;
	position: relative;
}
.sec-ttl__subtitle {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 5px;
}
.sec-ttl__subtitle span {
	display: inline-block;
	position: relative;
	padding: 0 20px;
}
.sec-ttl__subtitle span::before,
.sec-ttl__subtitle span::after {
	content: "";
	width: 1px;
	height: 30px;
	background: #333333;
	position: absolute;
	top: 50%;
}
.sec-ttl__subtitle span::before {
	left: 0;
	transform: translateY(-50%) rotate(-20deg);
}
.sec-ttl__subtitle span::after {
	right: 0;
	transform: translateY(-50%) rotate(20deg);
}
.sec-ttl__title {
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	padding-bottom: 30px;
}
.sec-ttl__title::after {
	content: "";
	width: 100px;
	height: 5px;
	border-radius: 3px;
	background: #27acc9;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.sec-ttl__lead {
	font-size: 2.0rem;
	line-height: 1.9;
	position: relative;
	margin-top: 35px;
}
.sub .sec-ttl__lead {
	font-size: 1.8rem;
}

/* cont-ttl
-------------------------------------------------- */
.cont-ttl {
	font-size: 3.4rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 35px;
}


/* ===============================================
    btn
=============================================== */

/* btn
-------------------------------------------------- */
.btn a {
	display: inline-block;
	width: 780px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 120px;
	position: relative;
}
.btn a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 4px;
	left: 0;
	background: #930612;
	border-radius: 10px;
}
.btn a span {
	width: 100%;
	display: inline-block;
	background: #e51728;
	box-sizing: border-box;
	border-radius: 10px;
	position: relative;
}
.btn a span::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #FFFFFF;
	background-image:  url("../images/arrow_red.png");
	background-position:  center center;
	background-repeat:  no-repeat;
	background-size: 7px auto;
}
.header-btn a {
	width: 300px;
	font-size: 1.6rem;
	line-height: 48px;
}
.header-btn a::before {
	border-radius: 50px;
}
.header-btn a span {
	border-radius: 50px;
}
.header-btn a span::after {
	width: 26px;
	height: 26px;
	right: 15px;
	top: 50%;
}

/* ===============================================
    list
=============================================== */

/* disc-list
---------------------------------------- */
.disc-list li {
	padding-left: 1.5rem;
}
.disc-list li::before {
	content: "・";
	margin: 0 5px 0 -1.2em;
	display: inline-block;
}

/* note-list
---------------------------------------- */
.note-list {
	margin-top: 10px;
}
.note-list li {
	display: flex;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
}
.note-list li .numb {
	width: 20px;
}
.note-list.numb li .numb {
	width: 30px;
}
.note-list li .numb + p {
	width: calc(100%  - 20px);
}
.note-list.numb li .numb + p {
	width: calc(100%  - 30px);
}
.tab-block-bottom .note-list {
	margin-top: 3px;
}
.tab-block-bottom .note-list li,
.sec-service-special-cont .note-list li {
	font-size: 1.2rem;
}

/*/////////////////////////////////////////////////////////////////////////////


              // header //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* header
-------------------------------------------------- */
.header {
	width: 100%;
	height: 72px;
	z-index: 99999;
	position: relative;
}
.header-inner {
	width: 100%;
	height: 72px;
	box-sizing: border-box;
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
}
.header-logo {
	width: 75px;
	position: absolute;
	top: 8px;
	left: 30px;
}
.header-logo a {
	display: block;
}
.header-btn {
	position: absolute;
	top: 12px;
	right: 20px;
}

/*/////////////////////////////////////////////////////////////////////////////


              // visual //
	  

/////////////////////////////////////////////////////////////////////////////*/
.visual {
	position: relative;
	width: 100%;
	background: #47c6e1 url("../images/d_line_bg.png") top center repeat;
	background-size: 46px auto;
}
.visual::before {
	content: "";
	width: 100%;
	height: 25px;
	background: #FFFFFF;
	position: absolute;
	left: 0;
	bottom: 0;
}
.visual-inner {
	max-width: 1080px;
	padding: 70px 20px 0;
	margin: 0 auto;
	position: relative;
	color: #FFFFFF;
	text-align: center;
}
.visual-cont {
	position: relative;
	padding-bottom: 20px;
}
.visual-cont__lead {
	font-size: 3.0rem;
	line-height: 1.5;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
.visual-cont__copy {
	font-size: 5.0rem;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin-bottom: 35px;
}
.visual-cont__copy span {
	font-size: 7.4rem;
}
.visual-cont__txtlist {
	display: flex;
	justify-content: center;
}
.visual-cont__txtlist li {
	position: relative;
	margin: 0 5px;
	padding: 0 10px;
}
.visual-cont__txtlist li::before,
.visual-cont__txtlist li::after {
	display: block;
	content: "";
	width: 10px;
	height: 40px;
	border-top: 20px solid #ffbe00;
	border-bottom: 20px solid #ffbe00;
	box-sizing: border-box;
	position: absolute;
	top: 0;
}
.visual-cont__txtlist li::before {
	border-left: 10px solid transparent;
	left: 0;
}
.visual-cont__txtlist li::after {
	border-right: 10px solid transparent;
	right: 0;
}
.visual-cont__txtlist li span {
	display: block;
	line-height: 40px;
	background: #ffbe00;
	padding: 0 10px;
	font-weight: 700;
}
.visual-cont__balloon li {
	position: absolute;
}
.visual-cont__balloon__txt01 {
	width: 111px;
	top: 40px;
	left: 105px;
}
.visual-cont__balloon__txt02 {
	width: 109px;
	top: 40px;
	right: 105px;
}
.visual-cont__balloon__txt03 {
	width: 125px;
	top: 150px;
	left: 0;
}
.visual-cont__balloon__txt04 {
	width: 121px;
	top: 150px;
	right: 0;
}
.visual-item {
	padding: 0 40px;
}

/* ===============================================
    anchor-link
=============================================== */
.anchorArea {
	padding: 20px 0 70px;
}
.anchorArea__txt {
	font-size: 2.0rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 90px;
}
.anchorArea__txt span.underline {
	background: url("../images/d_line_yel.png") left bottom repeat-x;
	background-size: 23px auto;
}
.anchorArea__txt span.l-txt {
	font-size: 3.2rem;
}
.anchor-link {
	display: flex;
	justify-content: space-between;
}
.anchor-link li {
	width: 31.5%;
}
.anchor-link li a {
	display: block;
	position: relative;
	box-sizing: border-box;
	border: 2px solid #27acc9;
	text-align: center;
}
.anchor-link__pict {
	width: 114px;
	background: #FFFFFF;
	position: absolute;
	top: -90px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 30px;
}
.anchor-link__numb {
	font-size: 12.0rem;
	color: #27acc9;
	opacity: 0.15;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.anchor-link__ttl {
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 700;
	position: relative;
	padding: 50px 0;
}
.anchor-link__ttl span {
	display: block;
	font-size: 2.0rem;
}
.anchor-link__arrow {
	width: 40px;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}

/*/////////////////////////////////////////////////////////////////////////////


              // cvArea //
	  

/////////////////////////////////////////////////////////////////////////////*/
.cvArea {
	width: 100%;
	padding: 75px 0 80px;
	background: #47c6e1 url("../images/d_line_bg.png") top center repeat;
	background-size: 46px auto;
}
.cvArea-inner {
	position: relative;
	color: #FFFFFF;
	text-align: center;
}
.cvArea__subttl {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 5px;
}
.cvArea__ttl {
	line-height: 1.9;
	font-size: 3.0rem;
	font-weight: 700;
	margin-bottom: 40px;
}

/*/////////////////////////////////////////////////////////////////////////////


              // contents //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* ===============================================
    failureArea
=============================================== */
.failureArea {
	background: #dbf5fb;
	padding-bottom: 60px;
}
.failure-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 20px;
}
.failure-list li {
	width: 24.5%;
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 50px;
	letter-spacing: 0.04em;
}
.failure-list__icon {
	width: 61.5%;
	margin: 0 auto 10px;
}

/* ===============================================
    shopArea
=============================================== */
.shopArea {
	padding: 80px 0 90px;
}
.shopArea-col2 {
	display: flex;
	justify-content: space-between;
}
.shopArea-col2__img {
	width: 44%;
	position: relative;
}
.shopArea-col2__img::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #47c6e1;
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: -1;
	opacity: 0.6;
}
.shopArea-col2__inner {
	width: 48%;
	min-width: 480px;
}
.shopArea-col2__inner .ttl {
	font-size: 2.6rem;
	font-weight: 700;
	color: #27acc9;
	position: relative;
	padding: 25px 0 35px;
	margin-bottom: 35px;
}
.shopArea-col2__inner .ttl::after {
	content: "";
	width: 100%;
	height: 4px;
	background: #27acc9;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}

/* ===============================================
    consultationArea
=============================================== */
.consultationArea {
	padding-bottom: 90px;
}

/* tab-contents
-------------------------------------------------- */
.tab-contents {
	position: relative;
}
.tab-btn {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.tab-btn li {
	width: 32.8%;
	text-align: center;
	line-height: 1.5;
	padding: 15px 0;
	position: relative;
	cursor: pointer;
	transition: .3s;
	font-weight: 700;
	background: #f5f5f5;
	color: #27acc9;
	font-size: 1.9rem;
	border-radius: 6px 6px 0 0;
}
.tab-btn li span {
	display: block;
	font-size: 1.6rem;
}
.tab-btn li.ac {
	background: #27acc9;
	color: #FFFFFF;
}
.tab-block {
	border: 3px solid #27acc9;
	padding: 40px;
}
.tab-block.hide {
	display: none;
}
.tab-block__ttl {
	text-align: center;
	margin-bottom: 40px;
	color: #27acc9;
}
.tab-block__ttl .en {
	font-size: 2.0rem;
}
.tab-block__ttl .ttl {
	font-size: 3.2rem;
	line-height: 1.5;
	font-weight: 700;
}
.tab-block-col2 {
	display: flex;
	justify-content: space-between;
}
.tab-block-col2__left {
	width: 32%;
}
.tab-block-col2__left__txt {
	color: #27acc9;
	border-bottom: 1px dashed #27acc9;
	border-top: 1px dashed #27acc9;
	padding: 8px 0;
	margin: 15px 0;
}
.tab-block-col2__left__txt li {
	font-weight: 700;
	line-height: 1.5;
	margin: 5px 0;
}
.tab-block-col2__left__txt li .mL25 {
	padding-left: 25px;
}
.tab-block-col2__right {
	width: 64%;
	box-sizing: border-box;
}
.tab-block-slider__cont {
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	padding: 15px 30px 30px;
}
.tab-block-slider__cont__ttl {
	background: url("../images/icon_check.png") left center no-repeat;
	background-size: 30px auto;
	border-bottom: 1px solid #27acc9;
	padding: 15px 0 15px 45px;
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 30px;
}
.tab-block-slider__cont__ttl .en {
	font-size: 2.2rem;
	color: #27acc9;
}
.tab-block-bottom {
	border-top: 1px solid #d9d9d9;
	padding-top: 15px;
	margin-top: 15px;
}
.tab-block-bottom .ttl {
	font-size: 1.4rem;
	font-weight: 700;
}

/* tab-btn-accordion
-------------------------------------------------- */
.tab-btn-accordion {
	display: none;
}

/* case.1
-------------------------------------------------- */
.case-col3 {
	display: flex;
	justify-content: space-between;
}
.case-col3 li {
	width: 29.3%;
}
.case-col3__ttl {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
}
.case-col3__pict {
	width: 110px;
	margin: 10px auto 15px;
}
.case-col3__txt {
	font-size: 1.2rem;
	letter-spacing: 0;
}
.case-col3__txt span {
	font-weight: 700;
	text-decoration: underline;
}
.case01_img02 {
	width: 330px;
	margin: 0 auto;
	padding: 5px 0 20px;
}
.case01_img03 {
	width: 530px;
	margin: 0 auto;
	padding: 5px 0 0;
}

/* case.2
-------------------------------------------------- */
.case02_txt {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.case02_txt .blu {
	font-size: 1.8rem;
	color: #27acc9;
	padding-bottom: 20px;
}
.case_img {
	width: 420px;
	margin: 0 auto;
}


/* ===============================================
    serviceArea
=============================================== */
.serviceArea {
	background: #dbf5fb;
	padding-bottom: 20px;
}

/* box-cont
---------------------------------------- */
.box-cont-wrap {
	margin-bottom: 70px;
}
.box-cont {
	background: #FFFFFF;
	margin-bottom: 15px;
}
.box-cont__ttl {
	background: #27acc9 url("../images/d_line_bg.png") top center repeat;
	background-size: 46px auto;
	text-align: center;
	font-size: 3.0rem;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.5;
	padding: 25px;
	border-radius: 6px 6px 0 0;
}
.box-cont-inner {
	padding: 40px;
}
.bd .box-cont-inner {
	border: 3px solid #27acc9;
}
.sec-service-mainttl {
	padding: 0 25px 0 10px;
	margin-bottom: 70px;
	display: flex;
	justify-content: space-between;
}
.sec-service-mainttl__txt {
	width: 55.5%;
}
.sec-service-mainttl__txt .subttl {
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 25px 0;
}
.sec-service-mainttl__txt .subttl span {
	background: url("../images/d_line_yel.png") left bottom repeat-x;
	background-size: 23px auto;
	padding: 0 5px;
}
.sec-service-mainttl__txt .ttl {
	font-size: 5.0rem;
	font-weight: 700;
	color: #27acc9;
	line-height: 1.5;
}
.sec-service-mainttl__txt .ttl span {
	font-size: 6.4rem;
}
.sec-service-mainttl__pict {
	width: 43.2%;
}
.sec-service-special {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}
.sec-service-special-cont {
	width: 49%;
	border: 2px solid #27acc9;
	padding: 55px 30px 30px;
	box-sizing: border-box;
	position: relative;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
}
.sec-service-special-cont__ttl {
	width: 298px;
	height: 55px;
	background: url("../images/service_special_ttl_bg.png") top center no-repeat;
	background-size: 298px;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 2.4rem;
	line-height: 42px;
	color: #FFFFFF;
	font-weight: 700;
}
.sec-service-special-cont__txt {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 35px;
	margin-bottom: 15px;
}
.sec-service-special-cont__txt .icon {
	width: 120px;
	margin-right: 20px;
}
.sec-service-special-cont__txt .ttl {
	font-size: 2.4rem;
	font-weight: 700;
	color: #27acc9;
}
.sec-service-app {
	border: 2px solid #27acc9;
	padding: 30px 30px 50px;
}
.sec-service-app__ttl {
	text-align: center;
	color: #27acc9;
	font-size: 3.2rem;
	font-weight: 700;
	border-bottom: 2px solid #27acc9;
	padding-bottom: 25px;
	margin-bottom: 40px;
}
.sec-service-app__cont {
	display: flex;
	justify-content: center;
}
.sec-service-app__cont li {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 30px;
}
.sec-service-app__cont .app-btn {
	height: 70px;
	margin-right: 30px;
}
.sec-service-app__cont .app-qr {
	height: 80px;
}
.sec-service-app__cont .app-btn img,
.sec-service-app__cont .app-qr img {
	width: auto;
	height: 100%;
}
.sec-service-ttl {
	border-bottom: 1px solid #27acc9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 35px;
	margin-bottom: 20px;
}
.sec-service-ttl__logo {
	width: 34%;
}
.sec-service-ttl__txt {
	width: 61%;
}
.sec-service-ttl__txt .subttl {
	font-size: 2.8rem;
	font-weight: 700;
	color: #e51728;
	line-height: 1.3;
}
.sec-service-ttl__txt .ttl {
	font-size: 3.2rem;
	font-weight: 700;
	color: #27acc9;
	line-height: 1.3;
}
.sec-service-ttl__txt .ttl .ja {
	font-size: 5.6rem;
}
.sec-service-ttl__txt .ttl .en {
	font-size: 6.4rem;
}

/* box-cont-col2
---------------------------------------- */
.box-cont-col2 {
	display: flex;
	justify-content: space-between;
}
.box-cont-col2 li {
	width: 50%;
	display: flex;
	align-items: center;
	font-size: 1.8rem;
}
.box-cont-col2 li .thumb {
	width: 190px;
	margin-right: 20px;
}
.box-cont-col2 li .thumb::after {
	padding-top: 100%;
}
.box-cont-col2 li .s-txt {
	margin-top: 5px;
}

/* ===============================================
    faqArea
=============================================== */
.faqArea {
	padding: 70px 0;
}
.faq-block {
	border: 2px solid #27acc9;
	background: #FFFFFF;
	padding: 0 15px;
	margin-bottom: 20px;
}
.faq-block-q {
	display: flex;
	color: #27acc9;
	font-size: 1.8rem;
	padding: 20px;
	position: relative;
}
.faq-block-q .txt {
	width: calc(100% - 50px);
	font-weight: 700;
	padding-top: 8px;
}
.faq-block-a__inner {
	display: flex;
	border-top: 1px solid #27acc9;
	padding: 20px 20px 25px;
}
.faq-block-a .txt {
	width: calc(100% - 50px);
}
.faq-block-q .en,
.faq-block-a .en {
	width: 50px;
	font-size: 3.0rem;
}
.faq-block-a .en {
	color: #e51728;
}

/* ===============================================
    aboutArea
=============================================== */
.aboutArea {
	padding-bottom: 90px;
}



/*/////////////////////////////////////////////////////////////////////////////


              // footer //
	  

/////////////////////////////////////////////////////////////////////////////*/
.footer {
	padding: 50px 0;
	background: #f5f5f5;
}
.footer .section-wrap {
	display: flex;
	justify-content: space-between;
}
.ft-logo {
	width: 320px;
}
.footer-inner {
	width: calc(100% - 340px);
}
.ft-nav {
	text-align: right;
}
.ft-nav li {
	display: inline-block;
	position: relative;
	margin-left: 25px;
}
.ft-nav li a {
	font-size: 1.4rem;
	position: relative;
	padding-left: 15px;
}
.ft-nav li a::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid #27acc9;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.copyright {
	text-align: right;
	font-size: 1.1rem;
	margin-top: 25px;
	color: #999999;
}

.pagetop {
	width: 46px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	opacity: 0;
	transition: opacity .2s;
	pointer-events: none;
}
.on .pagetop {
	opacity: 1;
	pointer-events: 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);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.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;
}
/* Arrows */
.slick-prev,
.slick-next {   
    position:  absolute;
	bottom: -45px;
	width: 30px;
	height: 30px;
	overflow: hidden;
	font-size: 0;
    line-height: 0;
	display: block;
	cursor: pointer;
    border: none;
	z-index: 999;
	transition: .2s;
	box-sizing: border-box;
	background-color: #27acc9;
	border-radius: 50%;
}
.slick-prev {
	left: 50%;
	margin-left: -90px;
}
.slick-next {
	right: 50%;
	margin-right: -90px;
}
.slick-prev::after,
.slick-next::after {
	content: "";
	width: 9px;
	height: 9px;
	box-sizing: border-box;
	border-top: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
	position: absolute;
	top: 11px;
}
.slick-next::after {
	right: 12px;
	transform:
      rotate(135deg)
}
.slick-prev::after {
	left: 12px;
	transform:
      rotate(-45deg)
}
.slick-prev:active,
.slick-prev:focus,
.slick-next:active,
.slick-next:focus {
    outline: none;
}
.flow-slider .slick-prev,
.flow-slider .slick-next {  
    bottom: -100px;
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 60px;
}
.slick-dots {
    position: absolute;
    bottom: -37px;
	left: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
	z-index: 998;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 7px !important;
    padding: 0 !important;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
	padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #d9d9d9;
	border-radius: 5px;
}
.slick-dots li.slick-active button {
     background: #27acc9;
}

/* hover */
@media screen and (min-width: 768px) {
	.slick-prev:hover,
	.slick-next:hover {
		opacity: 0.7;
	}
}
