@charset "utf-8";

/*
  File Name   : layout.css
  Description : 各ブロックのレイアウト
*/


/* PC Layout ******************************************************************************************* */


/* BASE
================================================== */


/*** structure ***/

body {
	color: #534c4a;
/* 	font-family: "游ゴシック体",
		"Yu Gothic",
		YuGothic,
		"ヒラギノ角ゴ Pro",
		"Hiragino Kaku Gothic Pro",
		"メイリオ",
		Meiryo,
		"MS Pゴシック",
		"MS PGothic",
		sans-serif; */
	font-size: 62.5%;
	font-weight: 400;
	line-height: 1.5;
	
}

@media all and (-ms-high-contrast: none) {
	body {
		font-family: "メイリオ", Meiryo, sans-serif;
	}
}

body>div:first-child,
body>article,
body>footer,
body>header,
body>main {
	width: 100%;
	min-width: 320px;
	font-size: 14px;
	font-size: 1.4rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*** hypertext ***/

/*a:link {
	color: #000;
	text-decoration: none;
}*/

a:hover,
a:active {
	text-decoration: none;
}

/*a:visited {
	color: #000;
}*/

a img {
	border: none;
}

a:hover,
a:hover img,
input:hover {
	filter: alpha(opacity=90);
	-moz-opacity: .9;
	opacity: .9;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

figure {
    width: 21%;
    position: absolute;
    right: 80px;
    top: 50px;
}

/*** pc-only / sp-only ***/


@media screen and (min-width: 768px) {
	.pc-only {
		display: block;
	}
	.sp-only {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
	
	figure {
    width: 80%;
    position: static;
    right: 0;
    top: 0;
    margin: 30px auto 10px;
	}

}



/*** js event  !! .hoge { display: none; } & <div class="hoge no-js"></div> !! ***/

.no-js {
	display: block !important;
}

img {
	width: 100%;
}

p {
	font-size: 15px;
}

.uppercase {
	font-weight: inherit;
	text-transform: uppercase;
}

/* パンくずリスト */

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin-bottom: 30px;
}

.breadcrumb li {
	font-size: 15px;
}

.breadcrumb li:not(:last-of-type)::after {
	content: "›";
	margin: 0 .6em; /* 記号の左右の余白 */
	color: #777; /* 記号の色 */
}

.breadcrumb li a {
	text-decoration: underline;
	color: #333;
}

@media screen and (max-width: 480px) {
	.breadcrumb {
		width: 85%;
		margin: 0 auto 30px;
	}
	
	.breadcrumb li {
		font-size: 13px;
	}
}

/* Common
----------------------------------------------------------- */
.inner1520 {
	width: 96%;
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1520px;
	padding: 0;
}
.inner1400 {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1400px;
	padding: 0;
}

.inner1020 {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1020px;
	padding: 0 30px;
}

.inner1000 {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1000px;
}
.inner900 {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 900px;
}
.inner690 {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 690px;
}

.flex {
	align-items: center;
	display: flex;
	justify-content: center;
}

img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* Header
----------------------------------------------------------- */
/* 
hamburger(ハンバーガーアイコン)
=================================== */

div#nav-wrapper {
    width: 100px;
    background: #F1F4F9;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
}

.hamburger {
	position: absolute;
    width: 35px;
    height: 32px;
    cursor: pointer;
    right: 30px;
    top: 25px;
    z-index: 300;
}

.hamburger::after {
	position: absolute;
    left: 0;
    bottom: -25px;
    content: 'MENU';
    display: block;
    width: 100%;
    color: #3E3A39;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all .4s;
    letter-spacing: 1px;
    margin-left: -1px;
}

.hamburger__line {
	position: absolute;
    width: 35px;
    height: 4px;
    right: 0;
    background-color: #303338;
    transition: all 0.5s;
    border-radius: 10px;
}

.hamburger__line--1 {
	top: 0;
}

.hamburger__line--2 {
	top: 15px;
}

.hamburger__line--3 {
	bottom: 0;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
	transform: translateY(18px) rotate(-45deg);
	top: -2px;
}

.open .hamburger__line--2 {
	opacity: 0;
}

.open .hamburger__line--3 {
	transform: translateY(-20px) rotate(45deg);
	top: 35px;
}
@media screen and (max-width: 480px) {
	div#nav-wrapper {
    width: 80px;
    height: 80px;
}

	.hamburger {
	    width: 35px;
		height: 25px;
		right: 23px;
		top: 20px;
	}

	.hamburger::after {
		font-size: 11px;
		margin-left: 1px;
	}

	.hamburger__line {
		width: 30px;
		height: 3px;
	}

	.hamburger__line--2 {
		top: 11px;
	}

	.hamburger__line--3 {
		bottom: 0;
	}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
	transform: translateY(18px) rotate(-45deg);
	top: -2px;
}

.open .hamburger__line--2 {
	opacity: 0;
}

.open .hamburger__line--3 {
	transform: translateY(-20px) rotate(45deg);
	top: 35px;
}
}

/* 検索窓
----------------------------------------------------------- */
.sb-search {
    position: absolute;
    margin-top: 0px;
    top: 0;
    right: 200px;
    width: 100px;
    height: 100px;
    float: right;
    overflow: hidden;
    transition: width 0.3s;
	background: #2F85A2;
}

.sb-search-input {
    position: absolute;
    top: 0;
    right: 0px;
    border: none;
    outline: none;
    background: #fff;
    width: 100%;
    height: 100px;
    margin: 0;
    z-index: 10;
    padding: 20px 65px 20px 20px;
    font-family: inherit;
    font-size: 20px;
    color: #2c3e50;
}
 
input[type="search"].sb-search-input {
    -webkit-appearance: none;
}
.sb-search-input::-webkit-input-placeholder {
    color: #2F85A2;
}
 
.sb-search-input:-moz-placeholder {
    color: #2F85A2;
}
 
.sb-search-input::-moz-placeholder {
    color: #2F85A2;
}
 
.sb-search-input:-ms-input-placeholder {
    color: #2F85A2;
}

.sb-icon-search,
.sb-search-submit  {
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
}

.sb-search-submit {
    background: #fff; /* IE needs this */
    opacity: 0;
    color: #2F85A2;
    border: none;
    outline: none;
    z-index: -1;
}

.sb-icon-search {
    color: #fff;
    background: #2F85A2;
    z-index: 90;
    font-size: 22px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
	background-image:url("../images/common/search.svg");
	background-repeat: no-repeat;
	background-position: center;
}
 
.sb-icon-search:before {
    content: "";
}

.sb-search.sb-search-open,
.no-js .sb-search {
    width: 30%;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
    background: #2F85A2;
    color: #fff;
    z-index: 11;
	background-image:url("../images/common/search.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
/*    z-index: 90;*/
}




/* 
お気に入りページ遷移ボタン
=================================== */
.favorite-btn {
	position: absolute;
    margin-top: 0px;
    top: 0;
    right: 100px;
    width: 100px;
    height: 100px;
    float: right;
    overflow: hidden;
    transition: width 0.3s;
	background: #FF7997;
	background-image:url("../images/common/favorite.svg");
	background-repeat: no-repeat;
	background-position: center;
}
@media screen and (max-width: 480px) {
	.favorite-btn {
		right: 80px;
		width: 80px;
		height: 80px;
		background-size: 50%;
	}
}

/* 
sp-nav(ナビ)
=================================== */
ul.nav-box_inner {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
	gap: 15px 0;
	margin-bottom: 40px;
}

.sns-box_inner {
	display: flex;
    align-items: center;
	margin-bottom: 40px;
}

.sns-box_inner li {
	border: none!important;
    margin-right: 0!important;
}

.sp-nav h3 {
	font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.sp-nav {
	position: fixed;
	right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
	top: 0;
	width: 100%; /* 出てくるスライドメニューの幅 */
	background-color: #0DAFC4;
	transition: all 0.5s;
	z-index: 200;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	padding: 6rem 4rem;
}

.sp-nav li {
    border-right: 1px solid #fff;
    font-size: 15px;
    font-weight: 600;
	padding-right: 25px;
	margin-right: 25px;
}

.sp-nav li a {
	color: #fff;
}

.sp-nav li.last:last-child {
	color: #fff;
    border-right: none;
    font-size: 15px;
    font-weight: 600;
	padding-right: 0;
	margin-right: 0;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
	right: 0;
}

@media screen and (max-width: 480px) {
	ul.nav-box_inner {
		margin-bottom: 30px;
		flex-wrap: wrap;
		gap: 0;
		justify-content: space-between;
		border-bottom: 1px solid #fff;
	}

	.sp-nav {
		position: fixed;
		right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
		top: 0;
		width: 90%; /* 出てくるスライドメニューの幅 */
		height: 100vh;
		transition: all 0.5s;
		z-index: 200;
		overflow-y: auto; /* メニューが多くなったらスクロールできるように */
		padding: 4rem 30px;
	}

	.sp-nav li {
		font-size: 14px;
		margin-bottom: 20px;
		border: 0;
		width: 50%;
		margin-right: 0;
		padding-right: 0;
		word-break: break-all;
	}
	
	.sp-nav li.last:last-child {
		font-size: 15px;
	}
	
	.sns-box_inner li {
		width: 30px;
		margin-right: 15px!important;
	}

}
	
/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 5;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	cursor: pointer;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
	opacity: 0.3;
	visibility: visible;
}

.BodyLayer{
  position: relative; /* 必須！ */
}

.header-box {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: #4AB9C1;
  z-index: 1500;
}

.header-01-inner {
    width: 250px;
}

.header-01-logo {
	width: 220px;
    margin-left: 30px;
    display: flex;
    height: 100px;
}

.header-01-logo img {
	width: 100%;
}

.hnav_btn {
    display: flex;
    justify-content: right;
    right: 100px;
    position: absolute;
    top: 30px;
}

.hnav-item {
    font-size: 15px;
    font-weight: 600;
    color: #3E3A39;
    background: #FCFC9D;
    border: 2px solid;
    padding: 7px;
	box-shadow: 2.5px 2.5px #FF817B;
	transition: .3s;
}

.hnav-item:nth-child(2) {
    margin-left: 25px;
}

.hnav-item:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.hnav-item img {
    width: 24px;
	vertical-align: text-top;
	margin-right: 5px;
}

@media screen and (max-width: 480px) {
	.header-box {
		height: 80px;
	}

.header-01-inner {
    width: 250px;
}

.header-01-logo {
	width: 220px;
    margin-left: 30px;
    display: flex;
    height: 100px;
}

.header-01-logo img {
	width: 100%;
}

.hnav_btn {
    display: flex;
    justify-content: right;
    right: 100px;
    position: absolute;
    top: 30px;
}

.hnav-item {
    font-size: 15px;
    font-weight: 600;
    color: #3E3A39;
    background: #FCFC9D;
    border: 2px solid;
    padding: 7px;
	box-shadow: 2.5px 2.5px #FF817B;
	transition: .3s;
}

.hnav-item:nth-child(2) {
    margin-left: 25px;
}

.hnav-item:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.hnav-item img {
    width: 24px;
	vertical-align: text-top;
	margin-right: 5px;
}
}

@media all and (-ms-high-contrast: none) {
	a.header_btn {
		padding: 10px 5px;
	}
	
	a.header_btn02 {
		padding: 10px 5px;
	}
}

a.header_btn i {
	font-size: 24px;
}

a.header_btn02 i {
	font-size: 24px;
	width: 50%;
}

#bg1 {
	background: url(../img/home/fig1.png) no-repeat center left 50%;
	background-size: 30%;
	padding: 185px 0;
	max-width: 1020px;
	margin: 0 auto;
}

#mainvisu {
	width: 100%;
	background-color: #7dc5e8;
	text-align: center;
}

@media screen and (max-width: 1009px) {
	#header .header_add {
		white-space: inherit;
	}

	#header p {
		font-size: 11px;
	}

	#header .header_add {
		font-size: 12px;
	}

	.header_tel a {
		font-size: 18px;
	}

	a.header_btn i {
		font-size: 18px;
	}

	a.header_btn {
		font-size: 10px;
		padding: 5px;
		white-space: nowrap;
		margin-left: 5px;
	}

	a.header_btn02 i {
		font-size: 18px;
	}

	a.header_btn02 {
		font-size: 10px;
		padding: 5px;
		white-space: nowrap;
		margin-left: 5px;
	}
	
	.header-01-logo {
		width: 170px;
		margin-left: 20px;
		height: 80px;
	}


	.header_box2 {
		max-width: 405px;
	}
}



/* Page nav
----------------------------------------------------------- */
#page-nav {}


/* タイトル周り
----------------------------------------------------------- */
.title_box {
    padding: 120px 0 35px;
	text-align: center;
}

.textarea {
    text-align: center;
}

.textarea h2 {
    font-size: 45px;
    letter-spacing: 2px;
    color: #0DAFC4;
    font-weight: 600;
    font-family: "baskerville-display-pt", serif;
}

a.btn::before {
	content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #303338;
    border-right: solid 1px #303338;
    position: absolute;
    top: 50%;
    right: 3px;
    margin-top: -4px;
    transform: rotate(45deg);
}

a.btn:hover::before {
    opacity: 0.7;
	transition: .3s;
}

@media screen and (max-width: 480px) {
	.title_box {
		padding: 80px 0 35px;
	}
	
	.textarea h2 {
		font-size: 28px;
		letter-spacing: 1px;
	}
}


/* 島の紹介一覧ページ_スライド
----------------------------------------------------------- */
ul.slider.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0!important;
}

ul.slick-dots {
    background: #0DAFC4;
    bottom: 20px;
    border-radius: 30px;
    width: 200px;
    left: 25px;
	height: 30px;
}

button.slick-next.slick-arrow {
    display: none!important;
}

button.slick-prev.slick-arrow {
    display: none!important;
}

.slick-dots li button:before{
	font-size: 10px!important;
	line-height: 30px;
}

.slick-slide img {
    border-radius: 15px!important;
}

@media screen and (max-width: 480px) {
	ul.slick-dots {
		bottom: 15px!important;
		width: 150px!important;
		left: 20px!important;
	}
	
	.slick-slide img {
		border-bottom-right-radius: 0!important;
		border-bottom-left-radius: 0!important;
		border-top-right-radius: 5px!important;
		border-top-left-radius: 5px!important;
	}
}

/* Container
----------------------------------------------------------- */
#container {}



/* 自動スライド
----------------------------------------------------------- */

@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}
.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0
}
.scroll-infinity__list--left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
	width: 200px;
    height: 200px;
    margin-right: 15px;
}
.scroll-infinity__item img {
	width: 100%;
	border-radius: 5px;
}

@media screen and (max-width: 480px) {
	.scroll-infinity__item {
		width: 150px;
		height: 150px;
	}
}

/* Pagination
----------------------------------------------------------- */
.Pagination {
	display: flex;
    align-items: center;
    margin: 0 auto;
    width: 1000px;
    justify-content: center;
}
.Pagination-Item-Link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  border: solid 2px #0DAFC4;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.15s linear;
}
a.Pagination-Item-Link {
  color: #0DAFC4;
}
.Pagination-Item-Link-Icon {
  width: 20px;
}
.Pagination-Item-Link.isActive {
  background: #0DAFC4;
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
  background: #0DAFC4;
  color: #fff;
}
.Pagination > * + * {
  margin-left: 15px;
}

@media screen and (max-width: 480px) {
	.Pagination {
		width: 85%;
	}
}

/* Footer
----------------------------------------------------------- */

.footer {
	padding: 20px 0;
    background: #0DAFC4;
    position: relative;
	height: 360px;
}

.footer-box {
    margin-top: 100px;
	position: relative;
	overflow: hidden;
}

.footer-inner {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

.footer-logo {
	margin: 0 auto 40px;
	width: 280px;
	/*margin-left: 0;*/
}

.footer-menu {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 20px 0;
}

.footer-weather {
	width: 1000px;
	margin-bottom: 50px;
}

.footer-weather ul {
    display: flex;
	justify-content: space-between;
}

.footer-weather li {
    width: 32%;
	margin-bottom: 10px;
}

.reservation-btn {
    transition: .3s;
    cursor: pointer;
    z-index: 999;
    width: 140px;
    height: 140px;
    position: fixed;
    top: 35%;
    right: -10px;
}

.guidebook-btnbox {
    transition: .3s;
    cursor: pointer;
    z-index: 999;
    position: fixed;
    top: 55%;
    right: 0;
    background: #0DAFC4;
    padding: 10px 13px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.guidebook-btnbox p {
    font-size: 20px;
    text-align: center;
    color: #fff;
    line-height: 10px;
    font-weight: 700;
	height: 65px;
}

.guidebook-btnbox p span {
    font-size: 12px;
    line-height: 17px;
    display: block;
}

a.guidebook-btn {
    width: 100%;
    display: block;
    background: #fff;
    margin: 10px 0 0;
    text-align: center;
    font-size: 15px;
    color: #0DAFC4;
    font-weight: 600;
    border-radius: 5px;
    line-height: 16px;
    padding: 5px 0 8px;
}

a.guidebook-btn span {
    font-size: 11px;
}

.footer-nav {
	display: flex;
    padding: 0;
}

.footer-nav a {
	color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 40px 0 0;
}

.footer-nav-item:nth-of-type(n+2) {
	margin: 0 0 0 25px;
}



.footer-bottom-nav {
	display: flex;
    padding: 0;
    margin: 0 auto 40px;
}

li.footer-bottom-nav-item {
    margin-left: 25px;
}

.footer-bottom-nav-item:nth-of-type(n+2) {
	margin: 0 0 0 25px;
}


@media screen and (max-width: 480px) {
	.footer {
		padding: 20px 0;
		height: auto;
	}
	.footer-inner {
		width: 100%;
		margin: 0 auto;
		height: 480px;
	}	
	
	.footer-logo {
		margin: 10px auto 40px;
		width: 220px;
	}
	.footer-menu {
		margin: 35px auto 0;
		justify-content: center;
		text-align: center;
		display: block;
	}
	
	li.footer-nav-item {
		margin-bottom: 15px;
	}
	
	.footer-nav {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.footer-nav a {
		font-size: 17px;
	}
	
	.footer-nav a img {
		width: 30px;
	}
	
	.footer-weather {
		width: 85%;
		margin: 0 auto 30px;
	}
	.footer-weather ul {
		
	}
	
	.footer-weather li {
		width: 30%;
		margin: 0;
	}
	
	.reservation-btn {
		width: 100px;
		height: 100px;
		bottom: 40%;
	}
}

/***トップへ戻るボタン***/
#page-top {
    padding: 10px;
    transition: .3s;
    position: absolute;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}


@media screen and (max-width: 853px) {
	#page-top {
		bottom: 65px;
	}
}
/***マウスオーバー時***/
#page-top:hover {
    opacity: 0.8;
}
.page-top img {
	width: 60px;
}
/***トップへ戻るボタンここまで***/


/* copy-right
=========================== */

.copyright {
	font-size: 14px;
	color: #fff;
	right: 0;
    bottom: 5px;
    position: absolute;
}

@media screen and (max-width: 853px) {
	.copyright {
		font-size: 13px;
		bottom: 20px;
		left: 0;
		text-align: center;
	}
}






/* SP Layout ******************************************************************************************* */
.drawer-hamburger {
	background-color: #fff !important;
	top: 0.3rem !important;
	padding-bottom: 23px !important;
	/*position: absolute !important;*/
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
	background-color: #7dc5e8 !important;
}

.drawer-open .drawer-hamburger-icon {
	background-color: #fff !important;
}

.drawer--right.drawer-open .drawer-hamburger {
	right: 250px !important;
	/*position: absolute !important;*/
}

.drawer-nav {
	background-color: #7dc5e8 !important;
}

.drawer--right .drawer-hamburger {
	right: 1rem !important;
}

.btn_menu {
	margin: 10px 0 0 0;
	position: relative;
	top: 16px;
	font-size: 12px;
}

@media screen and (max-width: 767px) {
	.inner1520 {
		width: 90%;
	}
}


@media screen and (max-width: 480px) {
	
}

@media screen and (max-width: 375px) {

}

/* End media screen */

/* pulugin */
.fancybox-button--zoom {
	display: none !important;
}