:root {
  --color-white: #fff;
  --color-blue: #002d74;
  --color-blue-light: #e9f3ff;
  --color-black: #111111;
  --box-padding-x: 4.599999vw;
  --box-padding-y: 100px;
  --box-padding-y-sp: 64px;
  --btn-radius: 4px;
  --radius-small: 2px;
  --radius-medium: 16px;
}

/* reset */
a {
  text-decoration: none;
}

li {
  list-style: none;
  /* padding-left: 1em; */
}

p {
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  p {
    font-size: .875rem;
  }
}

/* reset-end */
/* c */
.tb-none {
  display: block;
}

.tb-block {
  display: none;
}

@media screen and (max-width: 768px) {
  .tb-none {
    display: none;
  }

  .tb-block {
    display: block;
  }
}

body {
  color: var(--color-black);
}

body.pokopen {
  position: relative;
  margin: 0 !important;
}

.text-white {
  color: var(--color-white);
}

.po-header {
  display: none;
  position: absolute;
  width: 100vw;
  height: 59px;
  z-index: 999;
}

.po-head1 img {
  margin-inline: auto;
  width: 44vw;
}

.po-header-inner {
  display: flex;
  justify-content: space-between;
}

.po-header {
  width: 100vw;
  position: fixed;
  top: 0px;
  left: -50%;
  transform: translatex(50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding-inline: var(--box-padding-x);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.po-header.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

.logo-link {
  display: block;
}

.logo-link img {
  max-width: 272px;
}

.floating-link svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-top {
  background: var(--color-blue);
}

.floating-img {
  max-width: 32px;
}

.floating-list {
  display: flex;
  gap: 10px;
}

.floating-actions {
  display: flex;
  gap: 20px;
}

.floating-txt {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .po-head1 {
    padding-inline: 4.555vw;
  }

  .po-head1 img {
    width: 100%;
  }

  .logo {
    width: 50%;
    justify-content: left;
  }

  .logo-link img {
    max-width: 218px;
    width: 100%;
  }

  .floating-actions {
    /* flex-direction: column; */
    gap: 12px;
  }

  .floating-txt {
    font-size: 12px;
  }

  .floating-img {
    max-width: 24px;
  }

  .floating-item {
    display: flex;
    align-items: center;
  }

  .floating-link svg {
    width: 24px;
    height: 24px;
  }

  .floating-list {
    justify-content: center;
  }
}

.c-box-inner {
  padding-inline: var(--box-padding-x);
  padding-block: var(--box-padding-y);
}

.c-head2 {
  font-size: 32px;
  margin-bottom: 48px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-box-inner {
    padding-block: var(--box-padding-y-sp);
  }

  .c-head2 {
    font-size: 24px;
    margin-bottom: 48px;
    text-align: center;
  }
}

/* c-end */
/* cta */
.cta {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/cta-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-ttl {
  text-align: center;
  color: var(--color-white);
}

.cta .reserve-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
}

.cta .reserve-item {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-medium);
  overflow: hidden;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reserve-name {
  font-size: 24px;
  margin-bottom: 1em;
  color: var(--color-white);
}



@media screen and (max-width: 768px) {
  .cta {
    background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
      url(/wp-content/themes/pokopen/img/cta-back-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .reserve-bottom {
    display: flex;
    gap: 1rem;
  }

  .reserve-name {
    text-align: left;
    margin-bottom: .7em;
    font-size: 22px;
  }

  .reserve-bottom-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cta .reserve-list {
    gap: 16px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .cta .reserve-item {
    padding: 20px 16px;
  }
}

.cta-qr-img {
  max-width: 100px;
  margin-bottom: 24px;
  margin-inline: auto;
}

.cta .reserve-txt {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--color-white);
}

.cta .reserve-link {
  background: linear-gradient(135deg, #5bbfb2, #6d8bcf);
  background-size: 200% 200%;
  background-position: left center;
  transition: background-position .6s ease;
  padding: 8px 10px 12px;
  color: var(--color-white);
  border-radius: var(--btn-radius);
  display: block;
  text-align: center;

}

.cta .reserve-link:hover {
  background-position: right center;
}

.cta .reserve-link.--tel {
  margin-top: auto;
}

.cta .tel-link {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.cta .tel-link:hover {
  color: var(--color-blue);
}

.cta .reserve-tel {
  color: var(--color-white);
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  margin-top: auto;
}

.cta .reserve-tel-name {
  color: var(--color-white);
  margin-bottom: 24px;
  text-align: center;
}

.cta-txt {
  color: var(--color-white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta-qr-img {
    margin-bottom: 0;
  }

  .cta .reserve-txt {
    font-size: .875rem;
    margin-bottom: 0;
  }

  .cta .reserve-link {
    text-align: center;
  }

  .cta .reserve-tel-name {
    margin-bottom: 0;
    text-align: center;
  }

  .cta .tel-link {
    font-size: 23px;
  }

  .cta .reserve-tel {
    font-size: 23px;
    line-height: 1;
  }
}

/* cta-end */
/* mv */
.po-mv-text {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}

.po-hgroup {
  width: 100%;
  margin-inline: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.po-mv-head2 {
  text-align: center;
  margin-top: 1rem;
  font-size: clamp(24px, 2vw, 32px);
}

.po-mv-catch {
  margin-top: 1.25rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .po-hgroup {
    width: 100%;
    padding-inline: 4.5vw;
  }
}

.video-trigger-section {
  position: relative;
  width: 100%;
  height: 210vh;
  z-index: 1;
}

.video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.video-sticky img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.15);
}

.sticky-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-medium);
}

/* 前後のセクション（動画を隠すために背景色を必ず指定） */
.content-box {
  position: relative;
  z-index: 2;
  /* 動画より上にくるように設定 */
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.bg-video {
  margin-inline: auto;
}

.video-overlay {
  margin-bottom: 100px;
}

/* 背景ビデオ（mv-tate.mp4）の設定 */
.video-overlay .bg-video {
  position: absolute;
  /* 親要素に対して絶対配置 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 中央寄せ */
  width: 100%;
  height: 100%;
  z-index: 1;
  /* テキストより背面（小さい値）に配置 */
  object-fit: cover;
  /* アスペクト比を保ちつつトリミングして全体を覆う */
}

.video-textBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  /* padding: 60px 20px; */
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-medium);
  color: #fff;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.video-textBox p {
  font-size: clamp(16px, 0.83vw, 20px);
  line-height: 2;

}

.video-textBox .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: var(--radius-medium);
}

.video-textBox h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 1rem;
}



.video_strong {
  font-size: 20px;
  margin-top: 32px;
}

.video-inner {
  position: relative;
  width: 80%;
  height: 100%;
  max-width: 640px;
  overflow: hidden;
  border-radius: var(--radius-medium);
}

@media screen and (max-width: 767px) {
  .video-overlay {
    padding-inline: 0;
  }

  .video-inner {
    width: 100%;
  }

  .video-textBox {
    padding-inline: 4.5vw;
  }

  .video-textBox p {
    font-size: .875rem;
  }

  .video_strong {
    font-size: 1.185rem;
  }
}

.qr-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-top: 32px;
  width: 70%;
  margin-inline: auto;
}

.qr-item img {
  max-width: 100px;
}


/* content */
.content-section {
  position: relative;
  z-index: 999;
  padding-top: var(--box-padding-y);
}

.content-wrap {
  display: flex;
}

.content-wrap img {
  width: 48%;
}

.content-box {
  width: 48%;
}

/* .content-head {
  padding-inline: var(--box-padding-x);
} */



.content-head2 {
  font-size: 4rem;
  color: var(--color-blue);
  text-align: center;
}

.content-head3 {
  margin-bottom: 16px;
  text-align: right;
  color: var(--color-blue);
}

.content-subhead {
  color: var(--color-blue);
  font-size: 21px;
  text-align: center;
  margin-bottom: 40px;
}

.content-txt {
  font-size: 1.185rem;
  text-align: center;
}

.content-head-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 0 62px;
  margin-inline: auto;
  margin-bottom: var(--box-padding-y);
}

.content-head-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-image: url(/wp-content/themes/pokopen/img/wave.svg);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 38px;
}

@media screen and (max-width: 767px) {
  .content-section {
    padding-top: var(--box-padding-y-sp);
  }

  .content-wrap {
    display: flex;
    flex-direction: column;
  }

  .content-wrap img {
    width: 100%;
  }

  .content-box {
    width: 100%;
  }

  .content-head2 {
    font-size: 2.875rem;
  }

  .content-subhead {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .content-txt {
    font-size: .875rem;
  }

  .content-head-wrap {
    padding-block: 0 42px;
    margin-bottom: var(--box-padding-y-sp);
  }
}

/* mv-end */

/* tour */
.tour {
  position: relative;
}

#tours .content-head {
  padding-inline: var(--box-padding-x);
}

.tour-item {
  position: relative;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.tour-item.jet-ski {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/jet-ski-tour02.jpg);
}

.tour-item.cruising {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/jet-ski-tour01.jpg);
}

.tour-item.aerial {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/drone-aerial-tour.jpg);
}

.tour-item.saptour {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/tour-saptour.jpg);
}

.tour-item.star {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/star-crab02.jpg);
}

.tour-item.uni-sup {
  background-image: linear-gradient(rgb(0 27 58 / 60%), rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/sup-tour.jpg);
}

/*
.tour-item:nth-child(7) {
  background-image: linear-gradient(rgba(0, 94, 125, 0.6),
      rgba(0, 94, 125, 0.6)),
    url(/wp-content/themes/pokopen/img/img2-1.jpg);
} */

.tour-inner {
  position: relative;
  width: 100%;
  /* max-width: 1360px; */
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 7%;
  margin-inline: auto;
  padding-block: 84px;
  padding-inline: var(--box-padding-x);

  transform-origin: center top;
  will-change: transform;
  border-radius: 28px;
  backface-visibility: hidden;
}

.tour-inner:nth-child(even) {
  flex-direction: row-reverse;
}

.tour-head3 {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 20px;
}

.tour-info {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.tour-detail {
  color: var(--color-white);
  margin-bottom: 0.5em;
}

.tour-detail:last-child {
  margin-bottom: 0;
}

.tour-box.--lg {
  width: 54.9999%;
  border-radius: var(--btn-radius);
  overflow: hidden;
  aspect-ratio: 6 / 4;
}

.tour-box.--lg img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

.tour-box.--rg {
  width: 44.9999%;
  padding-block: 32px;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

.tour-price {
  display: flex;
  flex-direction: column;
  gap: .75em;
  margin-bottom: 24px;
}

.tour-price-item {
  position: relative;
  margin-left: 1em;
}

.tour-price-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-white);

  position: absolute;
  left: -1em;
  top: .7em;
}

.tour-txt {
  margin-bottom: .5em;
}

.tour-txt:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .tour-inner {
    flex-direction: column;
    padding-block: 40px;
    gap: 5%;
  }

  .tour-info {
    margin-bottom: 16px;
  }

  .tour-box.--lg {
    width: 100%;
  }

  .tour-box.--lg img {
    width: 100%;
  }

  .tour-box.--rg {
    width: 100%;
  }

  .tour-head3 {
    font-size: 20px;
  }

  .tour-price-item {
    font-size: .875rem;
  }
}

#tour01 {
  z-index: 1;
}

#tour02 {
  z-index: 2;
}

#tour03 {
  z-index: 3;
}

#tour04 {
  z-index: 4;
}

#tour05 {
  z-index: 5;
}

#tour06 {
  z-index: 6;
}

/* tour-end */
/* info */
.info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  justify-items: center;
  margin-inline: auto;
}

.info-head3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--color-blue);
}

.info-txt {
  color: var(--color-black);
}

.info-column {
  background: var(--color-blue-light);
  border: 2px solid var(--color-blue);
  border-radius: var(--radius-small);
  padding: 32px 28px;
}

.info-icon {
  width: 62px;
  margin-inline: auto;
  margin-bottom: 20px;
  display: block;
}

@media screen and (max-width: 767px) {
  .info-inner {
    grid-template-columns: 1fr;
  }

  .info-head3 {
    font-size: 20px;
  }
}

/* info-end */

/* slider */

.slider-inner.c-box-inner {
  padding-inline: 0;
  padding-bottom: 0;
}

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

.img-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.img-swiper .swiper-slide {
  width: 33.333%;
  height: auto;
}

.slider-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.slider-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .img-swiper .swiper-slide {
    width: 70%;
    height: auto;
  }
}

/* slider-end */

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1080px;
  margin-inline: auto;
}

.faq-item {
  padding: 3rem 3.5rem;
  border: 2px solid var(--color-blue);
  background: var(--color-blue-light);
}

.faq-question {
  font-size: 24px;
  color: var(--color-blue);
  margin-bottom: 1em;
  font-weight: bold;
}

.faq-answer {
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: var(--color-white);
}

.faq-txt {
  line-height: 1.75;
  color: var(--color-black);
}

.faq-txt-list {
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.faq-txt-item {
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .faq-item {
    padding: 2rem 1.75rem;
  }

  .faq-question {
    font-size: 20px;
  }

  .faq-txt-item {
    font-size: .875rem;
  }
}

/* faq-end */
/* footer */
footer {
  background-image: url(/wp-content/themes/pokopen/img/bg-sea2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.footer-tour,
.footer-contact {
  flex: 1;
}

.footer-logo {
  width: calc(34.9999% - 3rem);
  max-width: 350px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  width: calc(64.9999% - 3rem);
  gap: 2rem;
}

.footer-nav-list {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.footer-head3 {
  margin-bottom: 1em;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

.footer-sns {
  margin-bottom: 1.25em;
}

.footer-link,
.footer-tel,
.footer-tel-txt {
  color: var(--color-white);
}

.footer-link,
.footer-tel-number {
  position: relative;
  display: inline-block;
  text-decoration: none;
}


.footer-link::after,
.footer-tel-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.footer-link:hover::after,
.footer-tel-number:hover::after {
  transform: scaleX(1);
}

.footer-tel-number {
  color: var(--color-white);
}

.footer-tel-txt {
  font-size: .875rem;
}

.footer-contact {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    width: 100%;
  }

  .footer-logo {
    width: 100%;
    max-width: 100%;
  }

  .footer-logo img {
    margin-inline: auto;
    max-width: 313px;
  }

  .footer-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
  }

  .footer-sns,
  .footer-tel {
    width: calc(49.999% - 20px);
  }

  .footer-head3 {
    margin-bottom: .75em;
  }

  .footer-link {
    font-size: .875rem;
  }
}

.copy-light {
  display: block;
  font-size: 12px;
  color: var(--color-white);
  text-align: center;
  margin-inline: auto;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .copy-light {
    margin-top: 3rem;
  }
}

/* footer-end */