@charset "UTF-8";
/* =================================================================
		base setting
================================================================= */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background-color: #000;
  color: #fff;
  font-family: "游ゴシック体", Yu Gothic, YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: none;
}

* {
  box-sizing: border-box;
}

img {
  height: auto;
}

ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul {
  text-align: left;
}
ul li {
  list-style: none;
}

ol {
  counter-reset: item;
  list-style-type: none;
  text-align: left;
}
ol li {
  padding-left: 1.3em;
  position: relative;
}
ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-1em);
}

figure {
  margin: 0;
}

table {
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  text-align: left;
}

.dd {
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.6;
}

em {
  font-weight: bold;
  font-style: normal;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

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

@media screen and (max-width: 1024px) {
  body {
    min-width: 980px;
  }
}
@media screen and (max-width: 47.9375em) {
  body {
    min-width: auto;
    line-height: 1.7;
  }
}
/* =================================================================
		#common
================================================================= */
.wrap {
  overflow: hidden;
}

.pct {
  line-height: 0;
}
.pct img {
  width: 100%;
}

.stack {
  margin-bottom: 14vh;
  padding: 0 30px;
  position: relative;
}

.stack-cont {
  max-width: 1200px;
  margin: 0 auto;
}

.skew {
  transform: skewY(-4deg);
}

.skew-undo {
  transform: skewY(4deg);
}

.sec-title {
  font-size: 7.2rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.06em;
  font-style: italic;
  transform: rotate(-3deg) translateX(-0.3em);
  margin-bottom: 0.7em;
  position: relative;
  z-index: 10;
}
.sec-title span {
  display: inline-block;
  transition: 0.4s ease-out 0.1s;
}
.sec-title.anim span {
  transform: translate(80px, -10px) scale(1.05);
  opacity: 0;
}
.sec-title.isshow span {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.btn-l-wrap {
  text-align: center;
}
.btn-l-wrap.report-btn {
  padding-right: 6%;
}

.btn-l {
  display: block;
  max-width: 440px;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.33333;
  color: #fff;
  border: 1px solid #dadada;
  margin: 0 auto;
  padding: 0.8em 1.3em;
  position: relative;
  transition: color 0.3s, background-color 0.3s;
}
.btn-l span {
  position: relative;
  z-index: 2;
}
.btn-l.white {
  color: #222;
  border: 1px solid #3b3b3b;
}
.btn-l:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.2, 1);
  transform: scale(0.8);
}
.btn-l.white:before {
  background-color: #222;
}
.btn-l:hover {
  color: #222;
}
.btn-l:hover:before {
  opacity: 1;
  transform: scale(1);
}
.btn-l.white:hover {
  color: #fff;
}

.sub-title {
  padding: 180px 30px 130px;
  margin-bottom: 10vh;
  background: #0c122a url(../img/subhero_bg.jpg) center center/cover no-repeat;
  overflow: hidden;
  position: relative;
}
.sub-title .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.sub-title:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 120px 2000px;
  border-color: transparent transparent #000 transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.sub-title-cont {
  font-style: italic;
  transform: rotate(-3deg) translateX(-0.3em);
}
.sub-title-cont .ttl-en,
.sub-title-cont .ttl-jp {
  opacity: 0;
}
.sub-title-cont .ttl-en {
  font-family: "Poppins", sans-serif;
  font-size: 8.5rem;
  line-height: 1.33333;
  letter-spacing: 0.06em;
  animation: slidein 0.4s ease-out 0.1s forwards;
}
.sub-title-cont .ttl-jp {
  font-size: 2.6rem;
  line-height: 1.33333;
  letter-spacing: 0.1em;
  animation: slidein 0.3s ease-out 0.2s forwards;
}

@keyframes slidein {
  0% {
    transform: translate(100px, 0) scale(1.05);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 47.9375em) {
  .sec-title {
    font-size: 10vw;
    line-height: 1.2;
  }
  .stack {
    margin-bottom: 64px;
    padding: 0 6%;
  }
  .btn-l {
    width: 90%;
    max-width: none;
    font-size: 1.6rem;
    padding: 1em 0.8em;
  }
  .sub-title {
    padding: 110px 6% 80px;
    margin-bottom: 64px;
  }
  .sub-title:before {
    border-width: 0 0 90px 950px;
  }
  .sub-title-cont .ttl-en {
    font-size: 4.6rem;
  }
  .sub-title-cont .ttl-jp {
    font-size: 1.8rem;
  }
}
/* =================================================================
		#display control
================================================================= */
@media screen and (min-width: 48em) {
  .pc {
    display: inline;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 47.9375em) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline;
  }
}
/* =================================================================
		#header
================================================================= */
.header {
  width: 100%;
  padding: 0 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9990;
  transition: background 0.3s;
}
.scrolled .header {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px) brightness(0.4);
          backdrop-filter: blur(10px) brightness(0.4);
}
.scrolled .header .headCont {
  padding: 12px 0 16px;
}
.scrolled .header .headLogo img {
  width: 170px;
}

.home.scrolled .header {
  background: rgba(0, 0, 0, 0.5);
}

.headCont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s;
}

.headLogo a {
  transition: opacity 0.3s;
}
.headLogo a:hover {
  opacity: 0.7;
}
.headLogo img {
  width: 216px;
  transition: width 0.3s;
}

.headGnav {
  width: calc(100% - 260px);
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.headGnav li {
  margin-left: 45px;
}
.headGnav a {
  color: #fff;
  display: block;
  position: relative;
  padding: 6px 0;
  transition: color 0.5s;
}
.headGnav a:hover {
  color: #7be6ff;
}

@media screen and (max-width: 47.9375em) {
  .header {
    position: absolute;
    padding: 0 20px;
  }
  .headCont {
    padding: 16px 0;
  }
  .head-brand {
    margin: 0 auto;
    transform: translateX(10px);
  }
  .headLogo img {
    width: 130px;
  }
  .headGnav {
    display: none;
  }
}
/* =================================================================
		#footer
================================================================= */
.footer {
  padding: 90px 20px 220px;
  position: relative;
}

.copyright {
  font-size: 1.4rem;
  color: #d9d9d9;
  text-align: center;
}

.footLogo {
  width: 102%;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  opacity: 0.15;
}
.footLogo img {
  width: 100%;
}

@media screen and (max-width: 47.9375em) {
  .footer {
    padding: 40px 6% 100px;
  }
  .copyright {
    font-size: 1.1rem;
  }
  .footLogo {
    width: 108%;
  }
}
.footSharebox {
  margin-bottom: 24px;
}
.footSharebox .sharebox-link {
  width: 44px;
  margin: 0 auto;
}

@media screen and (max-width: 47.9375em) {
  .footSharebox {
    margin-bottom: 16px;
  }
  .footSharebox .sharebox-link {
    width: 36px;
  }
}
/* =================================================================
  		 #mobile navigation
  ================================================================= */
/* mobile menu button */
.btn-menu-mb,
.spnav {
  display: none;
}

@media screen and (max-width: 47.9375em) {
  .btn-menu-mb {
    display: block;
    width: 42px;
    height: 42px;
    border: 0.5px solid #fff;
    border-radius: 50%;
    z-index: 9998;
    position: fixed;
    right: 12px;
    top: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .scrolled .btn-menu-mb {
    background-color: rgba(0, 0, 0, 0.6);
  }
  /* mobile menu */
  .spnav {
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px) brightness(0.4);
            backdrop-filter: blur(10px) brightness(0.4);
    width: 100%;
    height: 100%;
    padding-top: 16px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: 0.3s;
  }
  .spnav a {
    color: #fff;
    display: block;
    position: relative;
  }
  .spnav-cont {
    width: 75%;
  }
  .spnav-gnav {
    margin-bottom: 40px;
  }
  .spnav-gnav li {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1em;
  }
  .spnav-gnav a {
    padding: 0.6em 0;
  }
  .spnav-gnav a:after {
    content: "";
    display: block;
    background: url(../img/ico_arrow_s.svg) left top/100% auto no-repeat;
    width: 6px;
    height: 11px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(338deg) brightness(103%) contrast(101%);
  }
  .nav-toggle {
    width: 16px;
    height: 11px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-toggle div {
    position: relative;
  }
  .nav-toggle span {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    transition: 0.35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 0;
  }
  .nav-toggle span:nth-child(2) {
    top: 5px;
  }
  .nav-toggle span:nth-child(3) {
    top: 10px;
  }
  /* .spnav スライドアニメーション */
  .open .spnav {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
  }
  .open .nav-toggle span {
    transition: 0.3s;
  }
  .open .nav-toggle span:nth-child(1) {
    top: 6px;
    transform: rotate(315deg);
  }
  .open .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open .nav-toggle span:nth-child(3) {
    top: 6px;
    transform: rotate(-315deg);
  }
}
/* =================================================================
		#hero
================================================================= */
.hero {
  background: url(../img/hero_bg.jpg) center center/cover no-repeat;
  position: relative;
  margin-bottom: 10vh;
}
.hero:before, .hero:after {
  content: "";
  display: block;
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.hero .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero .inner:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.hero-angler {
  width: 75%;
  line-height: 0;
  position: absolute;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  filter: blur(10px);
}
.hero-angler img {
  width: 100%;
}

.hero-catch {
  width: 75%;
  position: absolute;
  right: -3%;
  bottom: 0;
  opacity: 0;
  transform: translate(120px, -6px);
}
.hero-catch img {
  width: 100%;
}

.loaded .hero:before {
  opacity: 0;
  transition: 1.5s;
}
.loaded .hero-angler {
  opacity: 1;
  left: -40px;
  filter: blur(0);
  transition: 0.5s cubic-bezier(0.47, -0.27, 0.05, 0.66) 0.5s;
}
.loaded .hero-catch {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s cubic-bezier(0.47, -0.27, 0.05, 0.66) 0.8s;
}

@media screen and (max-width: 47.9375em) {
  .hero {
    margin-bottom: 64px;
  }
  .hero .inner:before {
    content: none;
  }
  .hero-angler {
    width: 100%;
    line-height: 0;
    position: relative;
    left: -60px;
    top: 0;
    transform: none;
  }
  .hero-catch {
    width: 94%;
  }
}
/* LATEST RELEASE */
.latest {
  background: url(../img/latest_bg.jpg) right top/616px auto no-repeat;
}

.latest-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.latest-list-blc {
  width: 41.5%;
  margin-right: 7%;
  margin-bottom: 6vh;
  position: relative;
  padding-bottom: 32px;
  transition: color 0.5s, opacity 0.3s 0.2s, top 0.8s ease-out 0.2s, right 0.8s ease-out 0.2s;
  position: relative;
  top: 80px;
  right: -20px;
  opacity: 0;
}
.latest-list-blc.isshow {
  top: 0;
  right: 0;
  opacity: 1;
}
.latest-list-blc .pct {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.latest-list-blc .pct:before {
  content: "";
  display: block;
  margin-top: 54%;
}
.latest-list-blc .pct img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s;
}
.latest-list-blc .name {
  display: block;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.4em;
  transition: color 0.5s;
}
.latest-list-blc .name:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.latest-list-blc .exp {
  font-size: 1.7rem;
  margin-bottom: 0.2em;
}
.latest-list-blc:hover, .latest-list-blc:hover .name, .latest-list-blc:hover .btnCheck {
  color: #7be6ff;
}
.latest-list-blc:hover .pct img {
  transform: scale(1.1);
  transition: transform 0.2s;
}
@media screen and (min-width: 48em) {
  .latest-list-blc:nth-child(3) {
    margin-left: 7%;
  }
  .latest-list-blc:nth-child(4) {
    margin-right: 0;
  }
}
.latest-list-blc:before {
  content: "";
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  filter: blur(75px);
  position: absolute;
  left: -5%;
  top: -5%;
  z-index: 0;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 0.3s 0.4s;
}
.latest-list-blc.isshow:before {
  opacity: 1;
}
.latest-list-blc:nth-child(1):before {
  background-color: #ffcc00;
}
.latest-list-blc:nth-child(2):before {
  background-color: #00f0ff;
}
.latest-list-blc:nth-child(3):before {
  background-color: #e36cde;
}
.latest-list-blc:nth-child(4):before {
  background-color: #92db6f;
}

.btnCheck-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btnCheck {
  font-size: 2rem;
  line-height: 1.33333;
  font-family: "Poppins", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.5s;
}
.btnCheck:after {
  content: "";
  display: block;
  background: url(../img/ico_arrow.svg) left top/100% auto no-repeat;
  filter: invert(97%) sepia(3%) saturate(46%) hue-rotate(226deg) brightness(118%) contrast(100%);
  width: 1.4em;
  height: 1.4em;
  margin-left: 0.5em;
}

@media screen and (max-width: 47.9375em) {
  .latest {
    background-size: 100% auto;
  }
  .latest-list {
    display: block;
  }
  .latest-list-blc {
    width: 80%;
    margin: 0 auto 40px;
    padding-bottom: 0;
    top: 50px;
    right: 0;
  }
  .latest-list-blc .pct {
    margin-bottom: 14px;
  }
  .latest-list-blc .name {
    font-size: 2rem;
  }
  .latest-list-blc .exp {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
  }
  .latest-list-blc:before {
    width: 140px;
    height: 140px;
  }
  .btnCheck-wrap {
    position: static;
  }
  .btnCheck {
    font-size: 1.6rem;
  }
}
/* STAFF REPORT */
.report {
  color: #000;
  background: #d9d9d9 url(../img/report_bg.jpg) left top no-repeat;
  padding-top: 10vh;
  padding-bottom: 25vh;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

.reportcard {
  position: relative;
}
.reportcard:hover .pct img {
  transform: scale(1.1);
  transition: transform 0.2s;
}
.reportcard .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 0.7em;
}
.reportcard .date {
  font-size: 1.4rem;
}
.reportcard .pct {
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.reportcard .pct:before {
  content: "";
  display: block;
  margin-top: 77%;
}
.reportcard .pct img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s;
}
.reportcard .link {
  color: #000;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
}
.reportcard .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.swiper {
  height: 100%;
  margin-left: calc((100% - 1200px) / 2) !important;
  margin-bottom: 6vh;
  position: relative;
  padding-bottom: 50px !important;
  padding-right: 30px !important;
  overflow: visible !important;
}

.swiper-pagination {
  top: auto !important;
  bottom: 0;
}

.swiper-nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: -60px;
}

.swiper-button-next,
.swiper-button-prev {
  background: url(../img/ico_arrow.svg) left top/100% auto no-repeat;
  top: 0 !important;
  width: 4.2rem !important;
  height: 4.2rem !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none !important;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-prev {
  left: auto !important;
  right: 64px !important;
  transform: scale(-1, 1);
}

@media screen and (max-width: 47.9375em) {
  .report {
    background-size: 90% auto;
    padding-top: 64px;
    padding-bottom: 96px;
  }
  .reportcard-meta {
    font-size: 1.4rem;
  }
  .reportcard-date {
    font-size: 1.3rem;
  }
  .reportcard-pct {
    margin-bottom: 16px;
  }
  .reportcard-link {
    font-size: 1.6rem;
  }
  .swiper {
    height: 100%;
    margin-left: 0 !important;
    padding-bottom: 40px !important;
    margin-bottom: 40px;
  }
  .swiper-nav-wrap {
    display: none;
  }
}
/* news */
.news {
  background: url(../img/darksurface.jpg) right top/70% auto no-repeat;
}

.news-pct {
  width: 74%;
  margin: -26vh auto 14vh -30px;
  position: relative;
  z-index: 2;
  left: -40px;
  bottom: -120px;
  overflow: hidden;
}
.news-pct:before {
  content: "";
  display: block;
  margin-top: 55%;
}
.news-pct img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
  opacity: 0;
}
.news-pct.isshow {
  left: 0;
  bottom: 0;
  transition: 0.9s cubic-bezier(0.47, -0.27, 0.05, 0.66);
}
.news-pct.isshow img {
  transform: scale(1);
  transition: 1s;
  opacity: 1;
}

.newsCont {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6vh;
}
.newsCont .sec-title {
  width: 25%;
  margin-top: -0.4em;
}

.newsList {
  width: 72%;
  border-top: 1px solid #3d3d3d;
}

.newsList-blc {
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3d3d3d;
  padding: 1.3em 0;
}
.newsList-blc .date {
  width: 8em;
}
.newsList-blc a {
  display: block;
  color: #fff;
  width: calc(100% - 8em);
  transition: color 0.5s;
}
.newsList-blc a:hover {
  color: #7be6ff;
}

@media screen and (max-width: 47.9375em) {
  .news {
    background: url(../img/darksurface.jpg) right top/70% auto no-repeat;
  }
  .news-pct {
    width: 96%;
    margin: -116px auto 48px -30px;
    margin-bottom: 48px;
  }
  .news-pct:before {
    margin-top: 70%;
  }
  .newsCont {
    display: block;
    margin-bottom: 40px;
  }
  .newsCont .sec-title {
    width: 100%;
    margin-top: 0;
  }
  .newsList {
    width: 100%;
  }
  .newsList-blc {
    font-size: 1.5rem;
    display: block;
    padding: 1.3em 0;
  }
  .newsList-blc .date {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .newsList-blc a {
    width: 100%;
  }
}
/* fishing view */
.fishingview {
  width: 100%;
  height: 45vh;
  max-height: 600px;
  position: sticky;
  left: 0;
  top: 65px;
  overflow: hidden;
}

.fishingview-pct {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  opacity: 0.1;
}
.fishingview-pct.isshow {
  transform: scale(1);
  opacity: 1;
  transition: 1.8s;
}

@media screen and (max-width: 47.9375em) {
  .fishingview {
    height: 190px;
  }
}
.ribank99-video {
  margin-bottom: 6vh;
  padding: 0 30px;
}
.ribank99-video .inner {
  max-width: 700px;
  margin: 0 auto;
}
.ribank99-video .inner iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1.69;
}

.pct-anim img {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

@media screen and (max-width: 47.9375em) {
  .ribank99-video {
    margin-bottom: 40px;
    padding: 0 6%;
  }
}
/* =================================================================
		#sharebox
================================================================= */
.sharebox {
  position: fixed;
  right: 14px;
  top: 95px;
  z-index: 9991;
}

.sharebox-link {
  display: block;
  width: 22px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.sharebox-link img {
  width: 100%;
  opacity: .85;
}
.sharebox-link:hover {
  transform: scale(1.3);
}

@media screen and (max-width: 47.9375em) {
  .sharebox {
    display: none;
  }
}
.spnav-sharebox {
  display: flex;
  align-items: center;
}
.spnav-sharebox .sharebox-link {
  width: 36px;
  margin: 0 auto;
}

.sharebox {
  display: none;
}

.spnav-sharebox .sharebox-link:nth-child(1), .spnav-sharebox .sharebox-link:nth-child(3) {
  display: none;
}

/* =================================================================
		#about us
================================================================= */
.about-zeeee {
  background: url(../img/about_reel.jpg) right top 50px/65% auto no-repeat;
  padding-bottom: 18vh;
}

.about-sec {
  font-size: 1.8rem;
  letter-spacing: 2.2;
  letter-spacing: 0.2em;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
.about-sec p {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 48em) {
  .about-sec p {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s 0.1s, opacity 0.6s 0.1s;
  }
  .about-sec p.isshow {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-zeeeelogo {
  max-width: 400px;
  margin: 0 auto 10vh;
}

.about-craft {
  background: url(../img/about_craft.jpg) left bottom/46% auto no-repeat;
  padding-bottom: 24vh;
}

.about-collaboration {
  max-width: 800px;
  margin: 0 auto 10vh;
  opacity: 0;
  transform: scale(1.1);
  transition: transform 0.8s, opacity 0.8s;
}
.about-collaboration.isshow {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 47.9375em) {
  .about-zeeee {
    background-size: 90% auto;
    padding: 0 6% 80px;
  }
  .about-sec {
    font-size: 1.6rem;
  }
  .about-sec .term {
    display: inline-block;
  }
  .about-zeeeelogo {
    width: 75%;
    margin-bottom: 48px;
    animation: zoomout 0.6s ease-out 0.4s forwards;
    opacity: 0;
    transform: scale(1.15);
  }
  @keyframes zoomout {
    0% {
      transform: scale(1.15);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .about-craft {
    background-size: 85% auto;
    background-position: left -5% bottom;
    padding: 0 6% 100px;
  }
  .about-collaboration {
    width: 70%;
    margin-bottom: 48px;
  }
}
/* =================================================================
		#staff
================================================================= */
.staff-list {
  max-width: 1200px;
  margin: 0 auto 24vh;
  display: flex;
  flex-wrap: wrap;
}

.staff-blc {
  width: 46%;
  margin-right: 8%;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s 0.2s, top 0.8s ease-out 0.2s, right 0.8s ease-out 0.2s;
}
.staff-blc.anim {
  opacity: 0;
  top: 80px;
  right: -20px;
}
.staff-blc.isshow {
  top: 0;
  right: 0;
  opacity: 1;
}
.staff-blc:before {
  content: "";
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  filter: blur(75px);
  position: absolute;
  left: -5%;
  top: -5%;
  z-index: 0;
  opacity: 1;
  transform: translateZ(0);
  transition: opacity 0.3s 0.4s;
}
.staff-blc:nth-child(3n):before {
  background-color: #e36cde;
}
.staff-blc:nth-child(2):before, .staff-blc:nth-child(7):before {
  background-color: #00f0ff;
}
.staff-blc:nth-child(4n):before {
  background-color: #92db6f;
}
.staff-blc:nth-child(1):before, .staff-blc:nth-child(5n):before {
  background-color: #ffcc00;
}
.staff-blc .pct,
.staff-blc .txt {
  position: relative;
  z-index: 3;
}
.staff-blc .pct {
  margin-bottom: 24px;
}
.staff-blc .name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.6em;
}
.staff-blc dl {
  font-size: 1.8rem;
  display: flex;
}
.staff-blc dl dt,
.staff-blc dl dd {
  margin-bottom: 0.6em;
}
.staff-blc dl dt {
  width: 9em;
  color: #dbdbdb;
}
.staff-blc dl dd {
  width: calc(100% - 9em);
}
.staff-blc .introduction {
  font-size: 1.6rem;
  margin-top: 0.6em;
}
@media screen and (min-width: 48em) {
  .staff-blc:nth-child(2n) {
    margin-right: 0;
  }
  .staff-blc:nth-child(odd) {
    margin-top: 70px;
  }
}

@media screen and (max-width: 47.9375em) {
  .staff-list {
    padding: 0 6%;
    margin-bottom: 100px;
    display: block;
  }
  .staff-blc {
    width: 80%;
    margin: 0 auto 40px;
    z-index: 2;
  }
  .staff-blc:before {
    width: 120px;
    height: 120px;
  }
  .staff-blc .pct {
    margin-bottom: 16px;
  }
  .staff-blc .name {
    font-size: 2rem;
  }
  .staff-blc dl {
    font-size: 1.4rem;
  }
  .staff-blc dl dt {
    width: 8.5em;
  }
  .staff-blc dl dd {
    width: calc(100% - 8.5em);
  }
}
/* =================================================================
		#movie
================================================================= */
.movie-list {
  max-width: 900px;
  margin: 0 auto 24vh;
}

.movie-blc {
  margin-bottom: 80px;
  position: relative;
  transition: opacity 0.3s 0.2s, top 0.8s ease-out 0.2s, right 0.8s ease-out 0.2s;
}
.movie-blc.anim {
  opacity: 0;
  top: 140px;
}
.movie-blc.isshow {
  top: 0;
  opacity: 1;
}
.movie-blc .ttl,
.movie-blc iframe {
  position: relative;
  z-index: 1;
}
.movie-blc .ttl {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1em;
}
.movie-blc iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.55;
}
.movie-blc:before {
  content: "";
  display: block;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(75px);
  position: absolute;
  left: -5%;
  top: -5%;
  z-index: 0;
  opacity: 1;
  transform: translateZ(0);
  transition: opacity 0.3s 0.4s;
}
.movie-blc:nth-child(3n):before {
  background-color: #e36cde;
}
.movie-blc:nth-child(2):before, .movie-blc:nth-child(7):before {
  background-color: #00f0ff;
}
.movie-blc:nth-child(4n):before {
  background-color: #92db6f;
}
.movie-blc:nth-child(1):before, .movie-blc:nth-child(5n):before {
  background-color: #ffcc00;
}
.movie-blc .pct,
.movie-blc .txt {
  position: relative;
  z-index: 3;
}
.movie-blc .pct {
  margin-bottom: 24px;
}
.movie-blc .txt {
  font-size: 1.6rem;
}

@media screen and (max-width: 47.9375em) {
  .movie-list {
    padding: 0 6%;
    margin-bottom: 100px;
    display: block;
  }
  .movie-blc {
    width: 80%;
    margin: 0 auto 40px;
    z-index: 2;
  }
  .movie-blc:before {
    width: 120px;
    height: 120px;
  }
  .movie-blc .ttl {
    font-size: 1.6rem;
  }
  .movie-blc .pct {
    margin-bottom: 16px;
  }
  .movie-blc .txt {
    font-size: 1.4rem;
  }
  .movie-blc dl {
    display: flex;
  }
  .movie-blc dl dt {
    width: 8.5em;
  }
  .movie-blc dl dd {
    width: calc(100% - 8.5em);
  }
}
/* =================================================================
		#catch, news
================================================================= */
.wrap.blog .sub-title {
  margin-bottom: 0;
}
.wrap.blog .sub-title:before {
  border-color: transparent transparent #fff transparent;
}
.wrap.blog .fishingview {
  margin-top: -100px;
}/*# sourceMappingURL=style.css.map */