﻿@charset "UTF-8";
@keyframes subNav {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 5px;
  }
  100% {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    filter: alpha(opacity=100);
    margin-top: -8px;
  }
}
@keyframes floating {
  0% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
  50% {
    -ms-transform: translate(0, 10px);
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-animation-fill-mode: forwards;
  }
}
@keyframes scrolldown {
  0% {
    margin-bottom: 0px;
  }
  50% {
    margin-bottom: 20px;
  }
}
@keyframes swingg {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes bookFlipOut {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: perspective(600px);
    transform: perspective(600px);
  }
}
@keyframes bookFlipIn {
  from {
    -webkit-transform: perspective(600px);
    transform: perspective(600px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
  }
}
@keyframes sideFlipOut {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 70deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 70deg) translateX(10px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
  }
}
@keyframes sideFlipIn {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 60deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 60deg) translateX(10px);
  }
}
@keyframes popIn {
  0% {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation-fill-mode: forwards;
  }
  50% {
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-animation-fill-mode: forwards;
  }
  75% {
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-animation-fill-mode: forwards;
  }
  85% {
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-animation-fill-mode: forwards;
  }
  95% {
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-animation-fill-mode: forwards;
  }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-fill-mode: forwards;
  }
}
@keyframes selfspin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
html,
body,
select,
option,
.modal,
input {
  font-family: "Noto Sans TC", "Heiti TC", "儷黑 Pro", "LiHei Pro", "文泉驛正黑", "WenQuanYi Zen Hei", "微軟正黑體", "Microsoft JhengHei", "新細明體", sans-serif, Arial, Helvetica, "Montserrat";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background: #f2f2f2;
}
hr {
  border: none;
  height: 0;
  border-top: 1px solid #ddd;
  margin: 20px auto;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: right;
  padding: 40px 50px;
  height: 130px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
}
.header .logo {
  position: absolute;
  z-index: 3;
  top: 35px;
  left: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  pointer-events: auto;
}
.header .logo a {
  display: inline-block;
  width: 276px;
  height: 60px;
  background: url("../images/logo_white.png") center center no-repeat;
  background-size: 100% 100%;
}
.header .menu {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 25px;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  display: none;
}
.header .menu::before {
  content: "\f0c9";
  color: #1874bd;
  font-family: "fontawesome";
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
.header .menu.active::before {
  content: "\f061";
}
.header .main-nav {
  width: 100%;
}
.header .main-nav li {
  display: inline-block;
  pointer-events: auto;
}
.header .main-nav li a {
  display: inline-block;
  font-size: 18px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.header .main-nav li a:hover {
  color: #1874bd !important;
}
.header .main-nav li.member a {
  padding: 0;
  width: 50px;
  height: 50px;
  background: url("../images/icon_user_white.png") center center no-repeat;
  background-size: 40px 40px;
  margin-left: 20px;
  overflow: hidden;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.header .main-nav li.member a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .main-nav li.cta {
  margin: 0;
}
.header .main-nav li.cta a {
  color: #fff !important;
}
.header .main-nav li.cta a:hover {
  color: #fff !important;
}
@media screen and (min-width: 900px) {
  .header.fixtop, .header.attop {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    height: 100px;
    padding: 25px 50px;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  }
  .header.fixtop .logo, .header.attop .logo {
    top: 20px;
    left: 50px;
  }
  .header.fixtop .logo a, .header.attop .logo a {
    background: url("../images/logo_blue.png") center center no-repeat;
    background-size: 100% 100%;
  }
  .header.fixtop .main-nav li a, .header.attop .main-nav li a {
    color: #333333;
  }
  .header.fixtop .main-nav li.member a, .header.attop .main-nav li.member a {
    background-image: url("../images/icon_user.png");
  }
}
@media screen and (max-width: 900px) {
  .header {
    height: 60px;
    background: #fff;
    padding: 0;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  }
  .header.active .main-nav {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
  .header .menu {
    display: block;
  }
  .header .logo {
    top: 15px;
    left: 25px;
  }
  .header .logo a {
    width: 138px;
    height: 30px;
    background-image: url("../images/logo_blue.png");
  }
  .header .main-nav {
    background: #ffffff;
    width: 100%;
    height: calc(100vh - 59px);
    top: 59px;
    position: relative;
    overflow: auto;
    text-align: center;
    padding: 150px 0 50px;
    -ms-transform: translate(100%, 0);
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-animation-fill-mode: forwards;
    -webkit-transition: transform 0.6s;
    transition: transform 0.6s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  .header .main-nav li {
    display: block;
  }
  .header .main-nav li a {
    display: inline-block;
    font-size: 18px;
    line-height: 50px;
    padding: 0 25px;
    color: #333333;
  }
  .header .main-nav li a:hover {
    color: #1874bd !important;
  }
  .header .main-nav li.member {
    position: absolute;
    top: 30px;
    width: 100%;
  }
  .header .main-nav li.member a {
    padding: 0;
    width: 100px;
    height: 100px;
    background-image: url("../images/icon_user.png");
    background-size: 80px 80px;
    margin-left: 0;
  }
  .header .main-nav li.cta {
    margin: 0;
    margin-top: 20px;
    background: none;
    border: none;
  }
  .header .main-nav li.cta a {
    background: #1874bd;
    color: #fff !important;
  }
  .header .main-nav li.cta a:hover {
    color: #fff !important;
  }
}

.swiper-carousel {
  position: relative;
  padding: 0 0 80px;
  overflow: hidden;
}
.swiper-carousel .swiper-pagination {
  bottom: 30px !important;
}
.swiper-carousel .swiper-slide {
  width: auto;
}
.swiper-carousel .swiper-slide a {
  display: block;
}
.swiper-carousel .swiper-slide img {
  width: 100%;
  height: auto;
}
.swiper-carousel .swiper-slide.video::before {
  content: "\f16a";
  font-family: "fontawesome";
  color: #ff4141;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  font-size: 70px;
  line-height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  pointer-events: none;
}
.swiper-carousel .swiper-slide .yt {
  width: 100%;
  padding-top: 56%;
  height: 0;
  position: relative;
}
.swiper-carousel .swiper-slide iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.infowindow {
  text-align: center;
}
.infowindow h3 {
  font-size: 15px;
  color: #333333;
  font-weight: 700;
}
.infowindow a {
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  line-height: 25px;
  height: 25px;
  padding: 0 10px;
  background: #1874bd;
  text-decoration: none;
  display: inline-block;
}

.news {
  min-height: 90vh;
  background: url("../images/bg.jpg") no-repeat left 50vw top, url("../images/banner_deco.png") repeat right 50vw center;
  background-size: cover, auto auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  .news {
    background: url("../images/banner_deco.png") no-repeat center center;
    background-size: cover;
    display: block;
    padding: 50px 0 100px;
  }
}
.news .section_title {
  margin-left: 50px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.news .section_title h2 {
  font-size: 90px;
  color: #1874bd;
  line-height: 1;
  font-family: "Ubuntu";
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.news .section_title h2.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 900px) {
  .news .section_title h2 {
    font-size: 18vw;
  }
}
.news .section_title h3 {
  font-size: 48px;
  color: #1874bd;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.5em;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.news .section_title h3.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 900px) {
  .news .section_title h3 {
    font-size: 36px;
  }
}
.news .section_title .more {
  margin-bottom: 40px;
}
.news .swiper-updates {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(45vh - 250px);
  width: 100%;
  flex: none;
  overflow: hidden;
  padding: 20px 0 80px;
}
.news .swiper-updates .swiper-slide.swiper-slide-active {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-animation-fill-mode: forwards;
  -webkit-box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 900px) {
  .news .swiper-updates {
    position: relative;
    top: 50px;
  }
  .news .swiper-updates .swiper-slide.card {
    max-width: 85%;
  }
  .news .swiper-updates .swiper-slide.swiper-slide-active {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-fill-mode: forwards;
  }
}

.more {
  font-size: 18px;
  line-height: 30px;
  color: #1874bd;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: url("../images/icon_more.png") no-repeat left center;
  background-size: 18px 18px;
  padding-left: 25px;
  pointer-events: auto;
  cursor: pointer;
}

.return {
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: url("../images/btn_back.png") no-repeat left center;
  background-size: 18px 18px;
  padding-left: 25px;
  pointer-events: auto;
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  filter: alpha(opacity=30);
}

.card {
  width: 350px !important;
  height: 450px !important;
  background: #fff;
  border: 1px solid #e2e2e2;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.card:hover {
  -webkit-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
}
.card:hover .thumb img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-animation-fill-mode: forwards;
}
.card.video h4::before {
  content: "\f16a";
  font-family: "fontawesome";
  float: right;
  color: #ff4141;
}
.card.video .thumb2::before {
  content: "\f16a";
  font-family: "fontawesome";
  color: #ff4141;
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  font-size: 70px;
  line-height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  pointer-events: none;
}
.card a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.card .thumb {
  width: 100%;
  height: 0px;
  padding-top: 56%;
  overflow: hidden;
  position: relative;
}
.card .thumb img,
.card .thumb iframe {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.card h3 {
  font-size: 12px;
  line-height: 1.5;
  color: #1874bd;
  margin-bottom: 1em;
}
.card h4 {
  font-size: 18px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0.3em;
}
.card h2 {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  font-weight: 700;
  margin-bottom: 1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card p {
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  max-height: 105px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card p.address::before {
  color: #ccc;
  content: "\f041";
  font-family: "fontawesome";
  margin-right: 5px;
}
.card .info {
  padding: 30px;
}
.card .info span {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  margin-right: 5px;
  color: #fff;
  background: #1874bd;
  padding: 0 10px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .card .info {
    padding: 20px;
  }
}

.page-filter {
  position: fixed;
  width: 100%;
  top: 100px;
  left: 0;
  z-index: 5;
  background: #1874bd;
  text-align: center;
  padding: 10px 50px;
  white-space: nowrap;
  overflow: auto;
}
.page-filter a {
  display: inline-block;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  padding: 0 18px;
  margin: 5px;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  cursor: pointer;
}
.page-filter a.selected {
  background: #fff;
  color: #1874bd;
}
@media screen and (max-width: 900px) {
  .page-filter {
    padding: 5px 50px;
    top: 60px;
  }
  .page-filter a {
    font-size: 14px;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
  }
}

.lookbook-wrapper {
  position: relative;
  padding: 200px 50px 50px;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .lookbook-wrapper {
    padding: 150px 25px;
    display: block;
  }
  .lookbook-wrapper .list-deco {
    text-align: center !important;
    left: 0% !important;
    font-size: 80px !important;
  }
}
.lookbook-wrapper h2 {
  font-size: 24px;
  color: #333333;
  line-height: 40px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #ccc;
}
.lookbook-wrapper h2 span {
  font-family: "ubuntu";
  font-size: 18px;
  line-height: 40px;
  color: #60a1d3;
  float: right;
  font-weight: 700;
  margin-left: 10px;
}
.lookbook-wrapper .list-deco {
  position: absolute;
  top: 50%;
  left: -20%;
  text-align: left;
  font-size: 150px;
  line-height: 1;
  color: #d4dbe2;
  width: 100%;
  z-index: -1;
  font-weight: 700;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-animation-fill-mode: forwards;
}
.lookbook-wrapper .list-deco > div {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.lookbook-wrapper .list-deco > div.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.lookbook-wrapper .fish-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 50px auto 100px;
  max-width: 1200px;
  -webkit-transform: translate3d(0, 0, -9000px);
}
.lookbook-wrapper .fish-list > div:not(.list-deco) {
  width: 20%;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
@media screen and (max-width: 900px) {
  .lookbook-wrapper .fish-list > div:not(.list-deco) {
    width: 25%;
  }
}
@media screen and (max-width: 600px) {
  .lookbook-wrapper .fish-list > div:not(.list-deco) {
    width: 50%;
  }
  .lookbook-wrapper .fish-list > div:not(.list-deco) h3 {
    font-size: 14px !important;
  }
  .lookbook-wrapper .fish-list > div:not(.list-deco) p {
    display: none;
  }
}
.lookbook-wrapper .fish-list > div:not(.list-deco):hover {
  background: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
}
.lookbook-wrapper .fish-list > div:not(.list-deco):hover h3,
.lookbook-wrapper .fish-list > div:not(.list-deco):hover p {
  opacity: 1;
}
.lookbook-wrapper .fish-list > div:not(.list-deco) a {
  display: block;
  padding: 20px 20px;
  text-align: center;
  text-decoration: none;
  transform-style: preserve-3d;
  transform: translateZ(70px);
}
.lookbook-wrapper .fish-list > div:not(.list-deco) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(-20px);
}
.lookbook-wrapper .fish-list > div:not(.list-deco) h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #333333;
  line-height: 1.5;
  opacity: 0;
  position: relative;
  font-weight: 700;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.lookbook-wrapper .fish-list > div:not(.list-deco) p {
  font-size: 13px;
  color: #999999;
  line-height: 1.5;
  opacity: 0;
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.inpage-wrapper {
  position: relative;
  padding: 150px 50px 50px;
}
.inpage-wrapper.fish-bg {
  background: url("../images/rod.png") no-repeat left -50px bottom;
  background-size: 80% auto;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper.fish-bg {
    background-position: left -50px top;
    background-size: 150% auto;
  }
}
.inpage-wrapper > .swiper-carousel {
  margin-top: -50px;
  width: calc(100% + 100px);
  margin-left: -50px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper > .swiper-carousel {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-top: -30px;
  }
}
.inpage-wrapper .inpage-banner {
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-top: -50px;
  height: 400px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .inpage-banner {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-top: -30px;
    height: 200px;
  }
}
.inpage-wrapper .inpage-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpage-wrapper .article {
  max-width: 1000px;
  margin: 0 auto 0;
}
.inpage-wrapper .article .article-title {
  margin-bottom: 50px;
}
.inpage-wrapper .article .article-title h1 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .article .article-title h1 {
    font-size: 24px;
  }
}
.inpage-wrapper .article .editor {
  width: 100% !important;
}
.inpage-wrapper .article .editor img {
  max-width: 100%;
}
.inpage-wrapper .content {
  max-width: 1000px;
  margin: 0 auto 0;
  display: flex;
}
.inpage-wrapper .content > * {
  width: 50%;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .content {
    display: block;
  }
  .inpage-wrapper .content > * {
    width: 100%;
  }
}
.inpage-wrapper .content h1 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .content h1 {
    font-size: 24px;
  }
}
.inpage-wrapper .tag {
  font-family: "ubuntu";
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .tag {
    font-size: 15px;
  }
}
.inpage-wrapper .tag::before {
  font-family: "fontawesome";
  content: "\f02c";
  color: #999999;
  margin-right: 0.5em;
}
.inpage-wrapper .address {
  font-family: "ubuntu";
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .address {
    font-size: 15px;
  }
}
.inpage-wrapper .address::before {
  font-family: "fontawesome";
  content: "\f041";
  color: #999999;
  margin-right: 0.5em;
}
.inpage-wrapper .date {
  font-family: "ubuntu";
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper .date {
    font-size: 15px;
  }
}
.inpage-wrapper .date::before {
  font-family: "fontawesome";
  content: "\f133";
  color: #999999;
  margin-right: 0.5em;
}
.inpage-wrapper .info img {
  max-width: 100%;
  height: auto;
}
.inpage-wrapper .info label {
  font-size: 14px;
  color: #999999;
  line-height: 1.5;
  display: block;
  margin-bottom: 1em;
}
.inpage-wrapper .info h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0.3em;
}
.inpage-wrapper .info p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #333333;
}
.inpage-wrapper .info p.address::before {
  color: #ccc;
  content: "\f041";
  font-family: "fontawesome";
  margin-right: 5px;
}
.inpage-wrapper .info .level > span {
  width: 25px;
  height: 25px;
  color: #ccc;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
}
.inpage-wrapper .info .level > span::before {
  content: "\f006";
  font-family: "fontawesome";
  margin-right: 5px;
}
.inpage-wrapper .info .level > span.full {
  color: #e47818;
}
.inpage-wrapper .info .level > span.full::before {
  content: "\f005";
}
.inpage-wrapper .info .level > span.half {
  color: #e47818;
}
.inpage-wrapper .info .level > span.half::before {
  content: "\f123";
}
.inpage-wrapper .info .location {
  border: 8px solid #fff;
}
.inpage-wrapper .info .location iframe {
  width: 100%;
  height: 280px;
}
.inpage-wrapper .fish-img {
  width: 100%;
  text-align: center;
  -webkit-transform: translate3d(0, 0, -9000px);
}
.inpage-wrapper .fish-img img {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  .inpage-wrapper {
    padding: 90px 30px 30px;
  }
}

.full-gmap {
  width: 100%;
  height: 550px;
  max-height: 90vh;
}
@media screen and (max-width: 900px) {
  .full-gmap {
    height: 350px;
  }
}

.inpage-sub-wrapper {
  background: #fff;
  position: relative;
  padding: 50px;
  margin: 0 auto;
}
.inpage-sub-wrapper h2 {
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  font-weight: 700;
}
.inpage-sub-wrapper h2 span {
  font-family: "ubuntu";
  color: #1874bd;
  margin-right: 8px;
}
.inpage-sub-wrapper h2 .toggle-intro-btn {
  width: 36px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.inpage-sub-wrapper h2 .toggle-intro-btn::before {
  content: "\f060";
  font-family: "fontawesome";
  color: #333333;
  font-size: 24px;
}
.inpage-sub-wrapper h2.feedback {
  background: url("../images/icon_feedback.png") no-repeat left center;
  background-size: 23px 23px;
  padding-left: 35px;
}
.inpage-sub-wrapper .content,
.inpage-sub-wrapper .card-wrapper {
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.inpage-sub-wrapper .content-header {
  display: flex;
  margin-bottom: 50px;
}
.inpage-sub-wrapper .content-header .card-catalog {
  border-left: 1px solid #ddd;
  margin-left: 50px;
  padding-left: 50px;
}
.inpage-sub-wrapper .content-header .card-catalog li {
  display: inline-block;
  margin-right: 30px;
}
.inpage-sub-wrapper .content-header .card-catalog li label {
  font-size: 12px;
  color: #999999;
  line-height: 1.5;
  display: block;
}
.inpage-sub-wrapper .content-header .card-catalog li p {
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
}
.inpage-sub-wrapper .content-header .cta {
  margin: 0 0 0 auto;
  line-height: 40px;
  padding: 0px;
}
@media screen and (max-width: 600px) {
  .inpage-sub-wrapper .content-header {
    display: block;
  }
  .inpage-sub-wrapper .content-header .card-catalog {
    border: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
  }
  .inpage-sub-wrapper .content-header .cta {
    margin-top: -40px;
    float: right;
  }
}
@media screen and (max-width: 900px) {
  .inpage-sub-wrapper {
    padding: 30px;
    display: block;
  }
}

.card-wrapper {
  position: relative;
  padding: 150px 50px 50px;
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .card-wrapper {
    padding: 90px 30px 30px;
    display: block;
  }
}
.card-wrapper h2 {
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  font-weight: 700;
}
.card-wrapper h2 span {
  font-family: "ubuntu";
  color: #1874bd;
  margin-right: 8px;
}
.card-wrapper h2 .toggle-intro-btn {
  width: 36px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.card-wrapper h2 .toggle-intro-btn::before {
  content: "\f060";
  font-family: "fontawesome";
  color: #333333;
  font-size: 24px;
}
.card-wrapper h2.feedback {
  background: url("../images/icon_feedback.png") no-repeat left center;
  background-size: 23px 23px;
  padding-left: 35px;
}
.card-wrapper .card-list-header {
  display: flex;
  margin-bottom: 50px;
}
.card-wrapper .card-list-header .card-catalog {
  border-left: 1px solid #ddd;
  margin-left: 50px;
  padding-left: 50px;
}
.card-wrapper .card-list-header .card-catalog li {
  display: inline-block;
  margin-right: 30px;
}
.card-wrapper .card-list-header .card-catalog li label {
  font-size: 12px;
  color: #999999;
  line-height: 1.5;
  display: block;
}
.card-wrapper .card-list-header .card-catalog li p {
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
}
.card-wrapper .card-list-header .cta {
  margin: 0 0 0 auto;
  line-height: 40px;
  padding: 0px;
}
@media screen and (max-width: 600px) {
  .card-wrapper .card-list-header {
    display: block;
  }
  .card-wrapper .card-list-header .card-catalog {
    border: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
  }
  .card-wrapper .card-list-header .cta {
    margin-top: -40px;
    float: right;
  }
}
.card-wrapper .card-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.card-wrapper .card-list .card {
  width: calc(33.333% - 33.33px) !important;
  height: auto !important;
  margin-right: 50px;
  margin-bottom: 50px;
}
.card-wrapper .card-list .card:nth-child(3n+0) {
  margin-right: 0;
}
@media screen and (max-width: 900px) {
  .card-wrapper .card-list .card {
    width: calc(50% - 25px) !important;
  }
  .card-wrapper .card-list .card:nth-child(3n+0) {
    margin-right: 50px;
  }
  .card-wrapper .card-list .card:nth-child(2n+0) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .card-wrapper .card-list .card {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .card-wrapper .card-list .card:nth-child(2n+0) {
    margin-right: 0 !important;
  }
}
.card-wrapper .card-wrapper-main {
  width: 100%;
  margin-bottom: 80px;
}
.card-wrapper .card-wrapper-side {
  width: 25%;
  max-width: 360px;
  margin-left: 50px;
  margin-bottom: 80px;
  flex: none;
}
@media screen and (max-width: 900px) {
  .card-wrapper .card-wrapper-side {
    border-top: 1px solid #ddd;
    padding-top: 50px;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

.ad img {
  max-width: 100%;
  height: auto;
}

.feedbacker {
  display: block;
  background: #fff;
  padding: 20px;
  padding-left: 70px;
  border: 1px solid #e8e8e8;
  position: relative;
}
.feedbacker .avatar {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: #f2f2f2 url("../images/icon_username.png") no-repeat center center;
  background-size: 17px auto;
}
.feedbacker .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedbacker h3 {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
}
.feedbacker h4 {
  font-size: 12px;
  line-height: 1.5;
  color: #999999;
  display: inline-block;
}
.feedbacker p {
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
  display: -webkit-box;
  color: #333333;
  max-height: 54px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feedbacker input[type=text],
.feedbacker input[type=email],
.feedbacker input[type=tel],
.feedbacker input[type=number] {
  position: relative;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.feedback-list {
  margin-bottom: 50px;
}
.feedback-list li {
  display: block;
  background: #fff;
  padding: 20px;
  padding-left: 70px;
  border: 1px solid #e8e8e8;
  position: relative;
}
.feedback-list li .avatar {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: #f2f2f2 url("../images/icon_username.png") no-repeat center center;
  background-size: 17px auto;
}
.feedback-list li .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedback-list li h3 {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
}
.feedback-list li h4 {
  font-size: 12px;
  line-height: 1.5;
  color: #999999;
  display: inline-block;
}
.feedback-list li h5 {
  font-size: 12px;
  line-height: 1.5;
  color: #6e6eda;
  display: inline-block;
  float: right;
  cursor: pointer;
}
.feedback-list li h5::before {
  content: "\f05e";
  font-family: "fontawesome";
  margin-right: 0.3em;
}
.feedback-list li p {
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
  display: -webkit-box;
  color: #333333;
  max-height: 54px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

#report {
  width: calc(100vw - 102px);
  max-width: 360px;
}

#hidden-login {
  width: calc(100vw - 102px);
  max-width: 360px;
}

#hidden-logout {
  width: calc(100vw - 102px);
  max-width: 250px;
}

#hidden-filter {
  width: calc(100vw - 102px);
  max-width: 500px;
}

#hidden-newspot {
  width: calc(100vw - 102px);
  max-width: 500px;
}
#hidden-newspot .add-spot-step2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  background: #fff;
  z-index: 2;
  display: none;
}
#hidden-newspot .add-spot-step2 .form-gmap {
  height: calc(100% - 142px);
  background: #eee;
  margin-bottom: 30px;
}
#hidden-newspot .add-spot-step2 .form-gmap button {
  min-width: 1px;
}
#hidden-newspot .add-spot-step3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  background: #fff;
  z-index: 2;
  display: none;
}
#hidden-newspot.step2 .add-spot-step2 {
  display: block;
}
#hidden-newspot.step3 .add-spot-step3 {
  display: block;
}

.form-module .thumb {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 0px;
  background: #f2f2f2;
}
.form-module .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  .form-module .thumb {
    width: 120px;
    height: 120px;
    border: 5px solid #fff;
    margin-top: -100px;
  }
}
.form-module .uid {
  font-size: 20px;
  line-height: 50px;
  color: #333333;
  text-align: center;
  letter-spacing: 0.15em;
}
.form-module .level {
  display: inline-block;
  line-height: 30px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  background: #333333;
  letter-spacing: 0.15em;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.form-module .level img {
  width: 30px;
  height: 30px;
  object-fit: scale-down;
  margin-right: 2px;
}
.form-module h2 {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 1em;
  font-weight: 700;
}
.form-module h3 {
  font-size: 14px;
  line-height: 1.5;
  color: #999999;
  margin-bottom: 1em;
}
.form-module h3 span {
  color: #ff4141;
}
.form-module h4 {
  font-size: 14px;
  line-height: 1.5;
  color: #999999;
  margin-bottom: 0.3em;
}
.form-module h4 span {
  color: #ff4141;
}
.form-module .google {
  width: 100%;
  background: #ff4141;
  padding: 0;
  white-space: nowrap;
}
.form-module .google::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("../images/Icon awesome-google.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -4px;
}
.form-module .facebook {
  width: 100%;
  background: #1874bd;
  padding: 0;
  white-space: nowrap;
}
.form-module .facebook::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("../images/Icon awesome-facebook-f.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -4px;
}
.form-module .verify-zone {
  height: 50px;
  width: 100px;
  color: #6e6eda;
  margin-top: -50px;
  margin-left: calc(100% - 100px);
  font-size: 25px;
  text-align: center;
  line-height: 50px;
  font-family: "ubuntu";
  font-weight: 700;
}
.form-module .flex-box {
  display: flex;
}
.form-module .flex-box * {
  width: 100%;
  margin: 0 10px 0 0;
}
.form-module .flex-box *:last-child {
  margin: 0;
}
.form-module input[type=submit],
.form-module input[type=reset],
.form-module button {
  display: inline-block;
  min-width: 1px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 18px;
  line-height: 50px;
  height: 50px;
  background: #1874bd;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  padding: 0 15px;
}
.form-module input[type=submit].pending,
.form-module input[type=reset].pending,
.form-module button.pending {
  position: relative;
  color: transparent;
  pointer-events: none;
  opacity: 0.7;
}
.form-module input[type=submit].pending::after,
.form-module input[type=reset].pending::after,
.form-module button.pending::after {
  position: absolute;
  content: "\f110";
  font-family: "fontawesome";
  color: #fff;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  font-size: 30px;
  animation: selfspin 2s linear infinite;
}
.form-module .ghost,
.form-module input[type=reset] {
  background: transparent;
  color: #333333;
}
.form-module input,
.form-module select {
  position: relative;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
}
.form-module textarea {
  position: relative;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  min-height: 170px;
  line-height: 30px;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}
.form-module input[type=text],
.form-module input[type=email],
.form-module input[type=tel],
.form-module input[type=number],
.form-module input[type=password],
.form-module input[type=date] {
  display: block;
  width: 100%;
  line-height: 48px;
  padding: 0 1em;
  border: 1px solid #ccc;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
}
.form-module input[type=text]:focus,
.form-module input[type=email]:focus,
.form-module input[type=tel]:focus,
.form-module input[type=number]:focus,
.form-module input[type=password]:focus,
.form-module input[type=date]:focus {
  border-color: #1874bd;
}
.form-module input[type=text].user,
.form-module input[type=email].user,
.form-module input[type=tel].user,
.form-module input[type=number].user,
.form-module input[type=password].user,
.form-module input[type=date].user {
  padding-left: 60px;
  background: url("../images/icon_username.png") no-repeat center left 20px, linear-gradient(90deg, transparent 50px, rgb(204, 204, 204) 50px, transparent 51px);
  background-size: 17px auto, auto;
}
.form-module input[type=text].lock,
.form-module input[type=email].lock,
.form-module input[type=tel].lock,
.form-module input[type=number].lock,
.form-module input[type=password].lock,
.form-module input[type=date].lock {
  padding-left: 60px;
  background: url("../images/icon_password.png") no-repeat center left 20px, linear-gradient(90deg, transparent 50px, rgb(204, 204, 204) 50px, transparent 51px);
  background-size: 17px auto, auto;
}
.form-module input[type=text].verify,
.form-module input[type=email].verify,
.form-module input[type=tel].verify,
.form-module input[type=number].verify,
.form-module input[type=password].verify,
.form-module input[type=date].verify {
  padding-left: 60px;
  background: url("../images/icon_verify.png") no-repeat center left 20px, linear-gradient(90deg, transparent 50px, rgb(204, 204, 204) 50px, transparent 51px);
  background-size: 17px auto, auto;
}
.form-module a {
  color: #1874bd;
}
.form-module select {
  display: block;
  width: 100%;
  line-height: 48px;
  padding: 0 1em;
  border: 1px solid #ccc;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  background: transparent url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='15' height='15' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='gray'/></g></svg>") no-repeat;
  background-position: right 18px top 50%;
  color: #333333;
}
.form-module select:focus {
  border-color: #1874bd;
}
.form-module label > span {
  font-size: 18px;
  color: #333333;
  line-height: 50px;
  height: 50px;
  display: inline-block;
  width: 22%;
  margin: 2% 1%;
  background: #f2f2f2;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.form-module input[type=radio] {
  position: absolute;
  top: 0;
  left: -1000px;
}
.form-module input[type=radio]:checked ~ span {
  background: #1874bd;
  color: #fff;
}
.form-module input[type=checkbox] {
  position: absolute;
  top: 0;
  left: -1000px;
}
.form-module input[type=checkbox]:checked ~ span {
  background: #1874bd;
  color: #fff;
}

.block-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 150px 0 100px;
}
@media screen and (max-width: 900px) {
  .block-wrapper {
    padding: 50px 0;
  }
}
.block-wrapper .block {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.1);
}
.block-wrapper .block > div {
  width: 100%;
  padding: 50px;
}
@media screen and (max-width: 900px) {
  .block-wrapper .block > div {
    padding: 25px;
  }
}
@media screen and (max-width: 900px) {
  .block-wrapper .block {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .block-wrapper .block .block-title {
    height: 250px;
  }
}
.block-wrapper .block .block-title.signup {
  background: url("../images/banner_desktop.jpg") no-repeat center center;
  background-size: cover;
}
.block-wrapper .block .block-title.reset {
  background: url("../images/banner_mobile.jpg") no-repeat center center;
  background-size: cover;
}
.block-wrapper .block .block-title.member {
  background: url("../images/member.jpg") no-repeat center center;
  background-size: cover;
}
.block-wrapper .block .block-title h2 {
  font-size: 7vw;
  color: #fff;
  line-height: 1;
  font-family: "Ubuntu";
  font-weight: 700;
  -webkit-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.block-wrapper .block .block-title h2.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 900px) {
  .block-wrapper .block .block-title h2 {
    font-size: 18vw;
  }
}
.block-wrapper .block .block-title h3 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.block-wrapper .block .block-title h3.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 900px) {
  .block-wrapper .block .block-title h3 {
    font-size: 36px;
  }
}

.fish-pool {
  position: absolute;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.1;
  -moz-opacity: 0.1;
  -khtml-opacity: 0.1;
  filter: alpha(opacity=10);
}
.fish-pool .canvasHolder {
  width: 100%;
  height: 100%;
}
.fish-pool .canvasHolder canvas {
  width: 100%;
  height: 100%;
}

.fishing-map {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.fishing-map .func {
  position: absolute;
  z-index: 5;
  top: 30px;
  left: 30px;
  width: 450px;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .fishing-map .func {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
  }
}
.fishing-map .func .filter {
  padding: 0 0 10px;
  width: 100%;
  overflow: hidden;
}
.fishing-map .func .filter form {
  padding: 10px 20px;
}
@media screen and (max-width: 900px) {
  .fishing-map .func .filter {
    margin-left: 0;
    padding: 0;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .fishing-map .func .filter.active {
    height: auto;
    z-index: 3;
    background: #fff url("../images/btn_close.png") no-repeat top 15px right 15px;
    background-size: 30px 30px;
  }
}
.fishing-map .func > div {
  display: inline-block;
  background: #fff;
  width: 33.33%;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .fishing-map .func > div {
    width: auto;
    z-index: 2;
    position: relative;
    float: right;
    height: 60px;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .fishing-map .func > div {
    width: 60px;
  }
}
.fishing-map .func .func-btn {
  display: inline-block;
  width: 100%;
  line-height: 60px;
  height: 60px;
  font-size: 15px;
  color: #333333;
  font-weight: 700;
  text-decoration: none;
  padding: 0 0px 0 60px;
  letter-spacing: 0.1em;
}
.fishing-map .func .func-btn span {
  color: #e47818;
}
.fishing-map .func .func-btn.new-spot {
  background-image: url("../images/icon_add.png");
  background-size: 23px auto;
  background-position: center left 17px;
  background-repeat: no-repeat;
}
.fishing-map .func .func-btn.back-home {
  background-image: url("../images/icon_home.png");
  background-size: 23px auto;
  background-position: center left 17px;
  background-repeat: no-repeat;
}
.fishing-map .func .func-btn.filter-map {
  background-image: url("../images/icon_map.png");
  background-size: 23px auto;
  background-position: center left 17px;
  background-repeat: no-repeat;
}
.fishing-map .func .func-btn.filter-list {
  background-image: url("../images/icon_filter.png");
  background-size: 23px auto;
  background-position: center left 17px;
  background-repeat: no-repeat;
}
.fishing-map .spots {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  padding: 30px;
  width: 100px;
  height: 100px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.fishing-map .spots > div {
  display: none;
}
.fishing-map .spots h2 {
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 700;
}
.fishing-map .spots h2 span {
  font-family: "ubuntu";
  color: #1874bd;
  margin-right: 8px;
}
.fishing-map .spots h2 .toggle-intro-btn {
  width: 36px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.fishing-map .spots h2 .toggle-intro-btn::before {
  content: "\f060";
  font-family: "fontawesome";
  color: #333333;
  font-size: 24px;
}
.fishing-map .spots .spots-list ul li {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  padding-right: 25px;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}
.fishing-map .spots .spots-list ul li.video h3::before {
  content: "\f16a";
  font-family: "fontawesome";
  float: right;
  color: #ff4141;
}
.fishing-map .spots .spots-list ul li h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0.3em;
}
.fishing-map .spots .spots-list ul li p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333333;
}
.fishing-map .spots .spots-list ul li p.address::before {
  color: #ccc;
  content: "\f041";
  font-family: "fontawesome";
  margin-right: 5px;
}
.fishing-map .spots .spots-list ul li span {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  margin-right: 5px;
  color: #fff;
  background: #1874bd;
  padding: 0 10px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.fishing-map .spots .spots-list ul li::after {
  content: "\f105";
  font-family: "fontawesome";
  position: absolute;
  top: 50%;
  right: 15px;
  color: #ccc;
  font-size: 18px;
  line-height: 18px;
  margin-top: -9px;
}
.fishing-map .spots .spots-list ul li:hover, .fishing-map .spots .spots-list ul li:focus {
  border-color: #eee;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.fishing-map .spots .spots-list ul li:hover::after, .fishing-map .spots .spots-list ul li:focus::after {
  color: #666;
}
.fishing-map .spots .spots-list ul li:focus {
  border-color: #1874bd;
}
.fishing-map .spots .spots-intro .cta {
  width: 100%;
}
.fishing-map .spots .spots-intro .thumb {
  position: relative;
  margin-bottom: 30px;
}
.fishing-map .spots .spots-intro .thumb img {
  width: 100%;
  height: auto;
}
.fishing-map .spots .spots-intro .thumb .yt {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.6%;
  background: #eee;
}
.fishing-map .spots .spots-intro .thumb .yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fishing-map .spots .spots-intro .thumb.video::before {
  content: "\f16a";
  font-family: "fontawesome";
  color: #ff4141;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  font-size: 70px;
  line-height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  pointer-events: none;
}
.fishing-map .spots .spots-intro .info img {
  max-width: 100%;
  height: auto;
}
.fishing-map .spots .spots-intro .info label {
  font-size: 14px;
  color: #999999;
  line-height: 1.5;
  display: block;
  margin-bottom: 1em;
}
.fishing-map .spots .spots-intro .info h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0.3em;
}
.fishing-map .spots .spots-intro .info h3.video::before {
  content: "\f16a";
  font-family: "fontawesome";
  color: #ff4141;
  float: right;
}
.fishing-map .spots .spots-intro .info p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #333333;
}
.fishing-map .spots .spots-intro .info p.address::before {
  color: #ccc;
  content: "\f041";
  font-family: "fontawesome";
  margin-right: 5px;
}
.fishing-map .spots .toggle-side-btn {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  background: url("../images/btn_list.png") no-repeat center center;
  background-size: 30px 25px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  cursor: pointer;
}
.fishing-map .spots.active {
  width: 400px;
  height: 100vh;
  overflow: auto;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-animation-fill-mode: forwards;
}
.fishing-map .spots.active > div.spots-list {
  display: block;
}
.fishing-map .spots.active > div.spots-intro {
  display: none;
}
.fishing-map .spots.active .toggle-side-btn {
  background: url("../images/btn_close.png") no-repeat center center;
  background-size: 30px 30px;
  right: 0px;
}
.fishing-map .spots.active.intro > div.spots-list {
  display: none;
}
.fishing-map .spots.active.intro > div.spots-intro {
  display: block;
}
@media screen and (max-width: 900px) {
  .fishing-map .spots {
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-animation-fill-mode: forwards;
  }
  .fishing-map .spots.active {
    width: 100%;
    max-width: 550px;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-fill-mode: forwards;
  }
}
.fishing-map .gmap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .fishing-map .gmap {
    height: calc(100% - 60px);
  }
}

.top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  background: url("../images/banner_desktop.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 900px) {
  .top {
    height: calc(100vh - 75px);
    background-image: url("../images/banner_mobile.jpg");
  }
}
.top.notfixed {
  background-attachment: local;
}
.top .wording {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  z-index: 2;
  pointer-events: none;
  text-align: right;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}
.top .wording .scrolldown {
  position: absolute;
  font-size: 18px;
  font-family: "Ubuntu";
  color: #fff;
  left: 100px;
  bottom: 200px;
  background: url("../images/icon_scrolldown.png") no-repeat center left;
  background-size: auto 18px;
  padding-left: 30px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: left top;
  animation: scrolldown 1s infinite;
  z-index: 5;
}
.top .wording .hint {
  position: absolute;
  width: 200px;
  height: 100px;
  overflow: hidden;
  left: 50%;
  bottom: 50px;
  margin-left: -100px;
  z-index: 5;
  pointer-events: auto;
}
.top .wording .hint img {
  height: 220px;
  width: auto;
  position: relative;
  left: -101px;
  animation: swingg 2s infinite;
  transform-origin: center bottom;
}
@media screen and (max-width: 900px) {
  .top .wording {
    text-align: center;
    align-items: center;
  }
  .top .wording .hint {
    display: none;
  }
  .top .wording .scrolldown {
    left: 45px;
    bottom: 150px;
  }
}
.top .wording h2 {
  padding: 0 50px;
  font-size: 7vw;
  color: #fff;
  line-height: 1;
  font-family: "Ubuntu";
  font-weight: 700;
  -webkit-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media screen and (max-width: 900px) {
  .top .wording h2 {
    font-size: 12vw;
  }
}
.top .wording h2.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.top .wording ul {
  margin-top: 50px;
  padding: 0 50px;
}
.top .wording ul li {
  margin-left: 10px;
}
.top .wording ul li a {
  pointer-events: auto;
}
.top .vt {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 1;
  transform: perspective(1000px) scale3D(1, 1, 1);
}
.top .ytbg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: scale(2) translateZ(-400px);
}
.top .ytbg iframe {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-left: -89vh;
  margin-top: -50vh;
  width: 178vh;
  height: 100vh;
}
@media screen and (max-width: 900px) {
  .top .ytbg iframe {
    display: none;
  }
}
@media (min-aspect-ratio: 16/9) {
  .top .ytbg iframe {
    width: 100vw;
    height: 56.25vw;
    margin-left: -50vw;
    margin-top: -28vw;
  }
}

.app {
  padding: 100px 25px 70px;
  text-align: center;
  background: url("../images/banner_app.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.app h2 {
  font-size: 7vw;
  color: #fff;
  line-height: 1.2;
  font-family: "Ubuntu";
  font-weight: 700;
  -webkit-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.app h2.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 900px) {
  .app h2 {
    font-size: 7vw;
  }
}
.app h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  font-family: "Ubuntu";
  font-weight: 700;
  -webkit-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 900px) {
  .app h3 {
    font-size: 18px;
  }
}
.app ul {
  margin-top: 50px;
}

.footer {
  background: #202830;
  padding: 50px 50px 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .footer {
    display: block;
    padding: 30px 30px 100px;
  }
}
.footer .logo_footer {
  margin-right: auto;
}
.footer .logo_footer img {
  height: 50px;
  width: auto;
}
.footer .logo_footer p {
  max-width: 300px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .footer .logo_footer {
    text-align: center;
  }
  .footer .logo_footer p {
    text-align: left;
    max-width: none;
  }
}
.footer .social-media {
  margin-left: 50px;
  flex: none;
}
.footer .social-media li {
  display: inline-block;
}
.footer .social-media li a {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 5px;
}
.footer .social-media li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .social-media li a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  filter: alpha(opacity=70);
}
.footer .social-media li.pc {
  display: inline-block;
}
.footer .social-media li.iphone, .footer .social-media li.android {
  display: none;
}
@media screen and (max-width: 900px) {
  .footer .social-media {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .footer .social-media li.iphone, .footer .social-media li.android {
    display: inline-block;
  }
  .footer .social-media li.pc {
    display: none;
  }
}
.footer .links {
  margin-left: 50px;
  flex: none;
}
.footer .links li {
  display: block;
}
.footer .links li a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .footer .links {
    width: 48%;
    display: inline-block;
    margin: 50px 0;
    text-align: center;
  }
}
.footer .copyright {
  flex: none;
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 50px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}
@media screen and (max-width: 900px) {
  .footer .copyright {
    text-align: Center;
  }
}

.flocks {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.flocks li {
  width: 25%;
  margin: 0 8% 5% 0;
  text-align: left;
}
.flocks li img {
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.flocks li p {
  font-size: 12px;
  line-height: 1.3;
  color: #333333;
}

.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.loader-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.loader-wrapper .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #1874bd;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotationloader 1s linear infinite;
}
.loader-wrapper .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border-left: 4px solid #6e6eda;
  border-bottom: 4px solid transparent;
  animation: rotationloader 0.5s linear infinite reverse;
}

@keyframes rotationloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cta {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 50px;
  background: #1874bd;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin: 5px;
  border: 1px solid #1874bd;
  min-width: 160px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.cta a {
  text-decoration: none;
  color: #fff;
  padding: 0 25px;
  display: block;
}
.cta > * {
  position: relative;
  z-index: 1;
}
.cta.map a, .cta.lookbook a, .cta.ios a, .cta.android a, .cta.filter a {
  text-decoration: none;
  color: #fff;
  padding: 0 25px;
}
.cta.map a::before, .cta.lookbook a::before, .cta.ios a::before, .cta.android a::before, .cta.filter a::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 18px;
  vertical-align: middle;
  background: url("../images/icon_map_white.png") no-repeat center center;
  background-size: contain;
  margin-right: 0.4em;
  margin-top: -4px;
}
.cta.lookbook a::before {
  width: 23px;
  height: 18px;
  background-image: url("../images/icon_fish.png");
}
.cta.filter a::before {
  width: 27px;
  height: 18px;
  background-image: url("../images/icon_filter.png");
  filter: invert(1);
}
.cta.ios a::before {
  width: 23px;
  height: 18px;
  background-image: url("../images/icon_ios.png");
}
.cta.android a::before {
  width: 23px;
  height: 18px;
  background-image: url("../images/icon_android.png");
}
.cta.ghost {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #6e6eda;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.cta:hover {
  border-color: #6e6eda;
}
.cta:hover::after {
  width: 100%;
}

form {
  position: relative;
}

.readmore {
  text-align: center;
}
.readmore a {
  color: #e47818;
  font-size: 16px;
  line-height: 80px;
  letter-spacing: 0.1em;
}
.readmore a:hover {
  color: #e47818;
}

.bgImg {
  background-position: center center;
  background-size: cover;
}

.maxW {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.disabled {
  pointer-events: none !important;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaa;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaa;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaa;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #aaa;
}
