@charset "UTF-8";

/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}

/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* boat color */
/*流動フォントサイズ @include m.rsfontsize(14, 16);*/
/* cont */
* {
  min-height: 0vw;
}

:root {
  color-scheme: light !important;
}

img {
  height: auto;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif, -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  color: #161616;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "palt";
  font-weight: 400;
}

body {
  margin: 0;
  position: relative;
  background-color: #fff;
}

.front-page {
  overflow-x: hidden;
}

p {
  line-height: 1.6;
  margin-bottom: 1.2em;
}

a {
  color: #634a32;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  color: #634a32;
}

/*改行*/
.break {
  display: inline-block;
}

/* 表示 */
.show_pc {
  display: none;
}

@media screen and (min-width: 960px) {
  .show_pc {
    display: block;
  }
}

.show_tab {
  display: none;
}

@media screen and (min-width: 768px) {
  .show_tab {
    display: block;
  }
}

.show_sp_max {
  display: block;
}

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

.show_sp {
  display: block;
}

@media screen and (min-width: 960px) {
  .show_sp {
    display: none;
  }
}

/* margin */
.mt60 {
  margin-top: 60px;
}

@media screen and (min-width: 960px) {
  .mt60 {
    margin-top: 100px;
  }
}

.mb40 {
  margin-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .mb40 {
    margin-bottom: 80px;
  }
}

.mb30 {
  margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
  .mb30 {
    margin-bottom: 60px;
  }
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (min-width: 960px) {
  .mb50 {
    margin-bottom: 100px;
  }
}

/*padding*/
.pt30 {
  padding-top: 30px;
}

@media screen and (min-width: 960px) {
  .pt30 {
    padding-top: 60px;
  }
}

.pt40 {
  padding-top: 40px;
}

@media screen and (min-width: 960px) {
  .pt40 {
    padding-top: 60px;
  }
}

.pb40 {
  padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .pb40 {
    padding-bottom: 60px;
  }
}

/* form */
input,
textarea,
select {
  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid #b7d9f6;
  outline: none;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}

textarea[rows] {
  height: auto;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

/*
モーダル
*/
.modal {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal .modal-inner {
  background-color: #fff;
  margin: 15% auto 10% auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 20px;
  width: 90%;
  height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

@media screen and (min-width: 960px) {
  .modal .modal-inner {
    margin: 5% auto;
    max-width: 800px;
    max-height: 980px;
  }
}

.modal .modal-inner .modalClose {
  position: absolute;
  top: 0;
  right: 0;
}

/* クローズボタン */
.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}

.close__line {
  width: 2px;
  height: 30px;
  background-color: #fff;
  border-radius: 0px;
}

.close__line001 {
  display: inline-block;
  transform: rotate(45deg);
}

.close__line002 {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  transform: rotate(-45deg);
}

.modal.m-open {
  display: block;
  opacity: 1;
  animation: none-fadeIn 0.3s ease-in 0s forwards;
  visibility: inherit;
}

body.m-open {
  height: 100vh;
  overflow-y: hidden;
}

/* modal content */
.modal-inner h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 1em;
}

.modal-inner .reg_btn {
  background-color: #01b901;
  display: block;
  text-decoration: none;
  text-align: center;
  width: 90%;
  max-width: 500px;
  margin: 1em auto;
  padding: 1em;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  letter-spacing: 1px;
  border: 1px solid #fff;
  color: #fff;
}

.modal-inner .reg_btn:hover {
  filter: brightness(1.2);
}

.modal-inner .swiper-button-prev,
.modal-inner .swiper-button-next {
  height: 50px;
  width: 50px;
}

.modal-inner .swiper-button-prev:after,
.modal-inner .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

.modal-inner .swiper-button-prev:after {
  background-image: url(../images/lp/top/arrow_l.svg);
}

.modal-inner .swiper-button-next:after {
  background-image: url(../images/lp/top/arrow_r.svg);
  background-position: right;
}

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

.reg_slide {
  background: #ECF6FF;
  padding: 30px;
}

.reg_slide p {
  text-align: left;
  color: #333;
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .reg_slide p {
    text-align: center;
  }
}

.reg_slide img {
  margin: auto auto 2em auto;
  max-width: 300px;
}

.modal-inner ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.modal-inner ul li {
  margin-bottom: 0.5em;
}

.modal-inner ul ul {
  list-style-type: circle;
  padding-left: 1.5em;
  margin: 0.5em 0;
}

.modal-inner ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.modal-inner ol li {
  margin-bottom: 0.5em;
}

.modal-inner ol ol {
  list-style-type: lower-roman;
  padding-left: 1.5em;
  margin: 0.5em 0;
}

.modal-inner h3 {
  font-size: 18px;
  border-bottom: 1px solid;
  margin-bottom: 1em;
  padding-bottom: 0.3em;
}

.modal-caution {
  font-size: 14px;
}

.modal-inner .swiper-wrapper {
  align-items: stretch !important;
}

.modal-inner .swiper-slide {
  height: auto;
  background: #ECF6FF;
}

.reg-qr {
  margin: auto;
}

.modalOpen:hover {
  cursor: pointer;
}

/* opacity0で一瞬表示される要素をnoneからフェードイン */
@keyframes none-fadeIn {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

/* footer_banner */
.spfooter_banner {
  /*   background: rgba(0, 0, 0, 0.6); */
  padding: 10px 0;
  bottom: 0;
  position: fixed;
  z-index: 5;
  width: 100%;
  transition: all 0.5s;
  transform: translate(0, 180px);
  transition: all 0.5s;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.6));
}

.spfooter_banner img {
  width: 100%;
  max-width: 400px;
  margin: auto;
  animation-name: banner;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

@media screen and (min-width: 960px) {
  .spfooter_banner {
    display: none;
  }
}

.spfooter_banner.scroll-in {
  display: block;
  transform: translate(0, 0);
}

@keyframes banner {
  0% {
    transform: translate(0, 0px);
  }

  100% {
    transform: translate(0, -15px);
  }
}

/*side banner*/
.side-banner {
  display: none;
}

@media screen and (min-width: 960px) {
  .side-banner {
    display: block;
    width: 207px;
    height: 113px;
    position: fixed;
    z-index: 2;
    top: 40px;
    right: 0px;
    transform: translate(210px, 0);
    transition: all 0.5s;
  }
}

@media screen and (min-width: 960px) {
  .side-banner.scroll-in {
    display: block;
    transform: translate(0, 0);
  }
}

.side_banner_inner {
  position: relative;
  transition: 0.5s;
}

.side_banner_inner:hover {
  filter: brightness(1.2);
}

/* mv */
.mv-block {
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .mv-block {
    width: 850px;
    /*
    overflow: visible;
    */
    position: relative;
  }
}

.mv-block-boat {
  /* background-image: url(../images/top/mv-bg-sp.jpg); */
  background-size: cover;
  background-position: center top;
  position: relative;
}

@media screen and (min-width: 960px) {
  .mv-block-boat {
    background-image: none !important;
  }
}

#mv {
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  #mv {
    background-image: url(../images/lp/top/mv-bg-pc.jpg);
    background-size: cover;
    background-position: center top;
  }
}

.mv-layout {
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .mv-layout {
    position: relative;
    display: flex;
    max-width: 1366px;
    justify-content: space-between;
    margin: auto;
    align-items: flex-end;
  }
}

.login {
  position: absolute;
  opacity: 0;
  right: 0px;
  top: 16px;
  z-index: 20;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  animation: Logo 0.5s ease-in 0.5s forwards;
}

.login:hover {
  color: rgba(254, 254, 254, 0.7);
}

.login::before {
  content: "";
  background-image: url(../images/lp/top/icon-login.svg);
  display: block;
  width: 16px;
  height: 14px;
  position: absolute;
  left: -24px;
  top: 3px;
  opacity: 1;
  transition: 0.5s;
}

.login:hover::before {
  opacity: 0.7;
}

.mv-block-catch {
  overflow: hidden;
  position: absolute;
  z-index: 4;
  left: 5.6vw;
  top: 3.5vw;
}

@media screen and (max-width: 959px) {
  .mv-block-catch {
    width: 85vw;
  }
}

@media screen and (min-width: 960px) {
  .mv-block-catch {
    left: 95px;
    top: 16px;
  }
}

.mv-block-catch-1 {
  width: 48.5vw;
  opacity: 0;
  position: relative;
  /*
  transform: translate(-50%,40%);

  transform: translate(0,40%);
  */
}

@media screen and (min-width: 960px) {
  .mv-block-catch-1 {
    max-width: 334px;
    width: 24.5vw;
  }
}

.mv-block-catch-2 {
  width: 55.5vw;
  margin-top: -10.4vw;
  margin-left: 11.5vw;
  opacity: 0;
  /*
  transform: translate(50%,-40%);

  transform: translate(0,-40%);    */
}

@media screen and (min-width: 960px) {
  .mv-block-catch-2 {
    max-width: 382px;
    width: 28vw;
    margin-top: -104px;
    margin-left: 192px;
  }
}

.mv-block-boat {
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

@media screen and (min-width: 960px) {
  .mv-block-boat {
    overflow-x: visible;
    overflow-y: visible;
  }
}

.mv-block-boat-sp {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 22.4vw;
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .mv-block-boat-sp {
    max-width: 100%;
    padding-top: 5.9vw;
    width: 58.8vw;
  }
}

.mv-block-boat-catch {
  position: absolute;
  z-index: 2;
  top: 27.47vw;
  right: 0;
  width: 58.1vw;
  opacity: 0;
  transform: translate(100%, -40%);
}

@media screen and (min-width: 960px) {
  .mv-block-boat-catch {
    max-width: 503px;
    width: 37vw;
    top: 11.7vw;
    z-index: 1;
    right: 0;
    transform: translate(-50%, 20%);
  }
}

.mv-block-boat-logo.show_sp {
  position: absolute;
  z-index: 3;
  bottom: 8.53vw;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  width: 76.8vw;
}

.mv-block-boat-1 {
  position: absolute;
  z-index: 3;
  top: 28vw;
  width: 55.7vw;
  left: -4.8vw;
  opacity: 0;
  transform: translateX(-100%);
}

@media screen and (min-width: 960px) {
  .mv-block-boat-1 {
    max-width: 300px;
    width: 22vw;
    top: 6.5vw;
    left: 5.9vw;
    transform: translateX(-10%);
  }
}

.mv-block-boat-2 {
  position: absolute;
  z-index: 3;
  top: 59.2vw;
  width: 76vw;
  left: 14.1vw;
  opacity: 0;
  transform: translateX(-100%);
}

@media screen and (min-width: 960px) {
  .mv-block-boat-2 {
    max-width: 441px;
    width: 32.3vw;
    top: 22vw;
    left: 12.4vw;
    transform: translateX(-30%);
  }
}

.mv-block-boat-3 {
  position: absolute;
  z-index: 3;
  bottom: 26.9vw;
  width: 74.7vw;
  left: 19.2vw;
  opacity: 0;
  transform: translateX(-100%);
}

@media screen and (min-width: 960px) {
  .mv-block-boat-3 {
    max-width: 456px;
    width: 33.4vw;
    bottom: 4.8vw;
    left: 19vw;
    transform: translateX(-30%);
  }
}

.mv-block-boat .mv-phone-mask {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 45.3vw;
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .mv-block-boat .mv-phone-mask {
    max-width: 285px;
    width: 20.7vw;
    margin-left: 1.1vw;
  }
}

.mv-block.anime .mv-block-boat-sp,
.mv-block.anime .mv-phone-mask {
  animation: spAnime 0.2s ease 0.5s forwards;
}

.mv-block.anime .mv-block-catch-1 {
  animation: cathAnime1 0.2s ease 0.5s forwards;
}

.mv-block.anime .mv-block-catch-2 {
  animation: cathAnime2 0.2s ease 0.7s forwards;
}

.mv-block.anime .mv-block-boat-1 {
  animation: boatAnime 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.4s forwards;
}

.mv-block.anime .mv-block-boat-2 {
  animation: boatAnime 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.3s forwards;
}

.mv-block.anime .mv-block-boat-3 {
  animation: boatAnime 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
}

.mv-block.anime .mv-block-boat-catch {
  animation: cathAnime 0.2s ease-in 1.6s forwards;
}

.mv-block.anime .mv-block-boat-logo.show_sp {
  animation: Logo 0.5s ease-in 2s forwards;
}

.mv-block-boat-logo.show_pc {
  margin-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 960px) {
  .mv-layout-pc-right {
    width: 430px;
  }
}

.race-block {
  padding: 24px 15px 24px 15px;
}

@media screen and (min-width: 960px) {
  .race-block {
    background-image: none;
  }
}

.race-block h2 {
  text-align: center;
}

.race-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #fff;
  padding: 16px 16px;
  position: relative;
  z-index: 2;
}

.race-block ul li {
  font-weight: bold;
  font-size: 14px;
}

.race-block ul li img {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 3px;
}

.race-block .big1 {
  font-size: clamp(20px, 20px + (100vw - 480px) * (21 - 20) / (960 - 480), 21px);
  background-color: #D9514F;
  color: #fff;
  padding: 2px 8px;
  margin-right: 4px;
}

.race-block .big2 {
  font-size: clamp(20px, 20px + (100vw - 480px) * (21 - 20) / (960 - 480), 21px);
  background-color: #fff;
  color: #145C9A;
  padding: 2px 8px;
  margin-left: 4px;
  margin-right: 4px;
}

.race-block .mini {
  font-size: clamp(15px, 15px + (100vw - 480px) * (16 - 15) / (960 - 480), 16px);
  color: #fff;
}

.race-block .mini2 {
  font-size: clamp(15px, 15px + (100vw - 480px) * (13 - 15) / (960 - 480), 13px);
  color: #fff;
  text-shadow: 0 0 8px #2c2c2c;
}

.race-block .big3 {
  font-size: clamp(40px, 40px + (100vw - 480px) * (60 - 40) / (960 - 480), 60px);
  color: #FFD702;
  text-shadow: 0 0 8px #2c2c2c;
}

.race-block .big4 {
  font-size: clamp(25px, 25px + (100vw - 480px) * (39 - 25) / (960 - 480), 39px);
  color: #FFD702;
  text-shadow: 0 0 8px #2c2c2c;
}

.race-block .big5 {
  font-size: clamp(25px, 25px + (100vw - 480px) * (35 - 25) / (960 - 480), 35px);
  color: #fff;
  text-shadow: 0 0 8px #2c2c2c;
}

.race-block h3 {
  background-color: #D9514F;
  color: #fff;
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  padding: 4px 0;
}

@media screen and (min-width: 960px) {
  .race-block h3 {
    margin-top: 24px;
  }
}

.race-cta {
  background-color: #FFD702;
  padding: 40px 15px 24px 15px;
}

@media screen and (min-width: 960px) {
  .race-cta {
    background-color: transparent;
    padding: 0px;
  }
}

.race-cta .cta-btn {
  font-size: clamp(26px, 26px + (100vw - 480px) * (29 - 26) / (960 - 480), 29px);
  background: linear-gradient(#0b9c1c 0%, #00b915 50.63%, #0b9c1c 100%);
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.4));
  font-weight: bold;
  text-align: center;
  display: block;
  border-radius: 80px;
  padding: 20px 0 18px 0;
  color: #fff;
  text-shadow: 0 0 8px #204922;
  position: relative;
  max-width: 400px;
  margin: auto;
  animation: zoomRepeat 1.5s ease-in-out infinite;
  filter: saturate(100%);
}

@media screen and (min-width: 960px) {
  .race-cta .cta-btn {
    background: linear-gradient(#0b7a18 0%, #00b915 50.63%, #0b7a18 100%);
    padding: 38px 0 28px 0;
  }
}

.race-cta .cta-btn .mini {
  font-size: clamp(18px, 18px + (100vw - 480px) * (24 - 18) / (960 - 480), 24px);
}

.race-cta .cta-btn .yellow {
  color: #FFD702;
}

.race-cta .cta-btn .cta-btn-txt {
  position: relative;
  display: inline-block;
  padding-left: 32px;
}

@media screen and (min-width: 960px) {
  .race-cta .cta-btn .cta-btn-txt {
    padding-left: 40px;
  }
}

.race-cta .cta-btn .cta-btn-txt::before {
  content: "";
  background-image: url(../images/lp/top/icon-line.svg);
  display: block;
  background-size: cover;
  width: 34px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 960px) {
  .race-cta .cta-btn .cta-btn-txt::before {
    width: 37px;
    height: 35px;
  }
}

.race-cta .cta-btn .cta-btn-txt::after {
  content: "";
  background-image: url(../images/top/cta-txt.svg);
  display: block;
  background-size: cover;
  width: 339px;
  height: 38px;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 960px) {
  .race-cta .cta-btn .cta-btn-txt::after {
    top: -62px;
    width: 418px;
    height: 47px;
  }
}

.race-cta .cta-btn:hover {
  filter: saturate(200%);
  transition-duration: 1s;
}

.race-cta ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  margin-top: 12px;
}

.race-cta ul li {
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 5px;
  position: relative;
}

.race-cta ul li:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 8px;
  border-right-width: 8px;
  border-bottom-color: #fff;
  bottom: 100%;
  left: 43%;
}

.race-cta ul li:first-child {
  color: #D9514F;
}

.race-cta ul li:nth-child(2) {
  color: #145C9A;
}

.race-cta p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 12px;
}

@media screen and (min-width: 960px) {
  .race-cta p {
    color: #ccc;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 959px) {
  #mv .race-block {
    opacity: 0;
    transform: translate(0, 20%);
    animation: raceBg 0.5s ease-in 1s forwards;
  }
}

#mv .mv-block-boat-logo.show_pc {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 1.5s forwards;
}

#mv h2 {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 1.8s forwards;
}

#mv .race-block-anime {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 1.8s forwards;
  position: relative;
  z-index: 1;
}

.race-cta {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 2s forwards;
}

a.regbtn {
  filter: saturate(100%);
  transition: 0.5s;
}

a.regbtn:hover {
  filter: saturate(200%);
}

.regbtn-img {
  width: 100%;
  margin: auto;
  animation: zoomRepeat 1.5s ease-in-out infinite;
  filter: saturate(100%);
  transition: 0.5s;
}

.regbtn-img:hover {
  filter: saturate(200%);
}

@keyframes zoomRepeat {
  0% {
    transform: scale(0.9);
  }

  30% {
    transform: scale(1, 1);
  }

  60% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(0.9);
  }
}

@keyframes spAnime {
  to {
    opacity: 1;
  }
}

@keyframes boatAnime {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cathAnime {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes cathAnime1 {
  from {
    opacity: 0;
    transform: translate(-20%, 40%);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes cathAnime2 {
  from {
    opacity: 0;
    transform: translate(20%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes Logo {
  from {
    opacity: 0;
    transform: translate(-50%, 50%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes Logos {
  from {
    opacity: 0;
    transform: translate(0, 50%);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes raceBg {
  from {
    opacity: 0;
    background-image: none;
    transform: translate(0, 50%);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
    background-image: linear-gradient(180deg, rgb(17, 73, 122) 14.1999475891%, rgb(17, 73, 122) 15.5%, rgb(20, 92, 154) 70.9295073375%, rgb(20, 92, 154) 72.2295597484%);
  }
}

@media screen and (min-width: 1280px) {
  .mv-block-boat-catch {
    right: -40px;
  }
}

@media screen and (min-width: 1366px) {
  .mv-block-boat-1 {
    top: 120px;
    left: 72px;
  }

  .mv-block-boat-2 {
    top: 325px;
    left: 160px;
  }

  .mv-block-boat-3 {
    bottom: 50px;
    left: 280px;
  }

  .mv-block-boat .mv-phone-mask {
    margin-left: 15px;
    width: 281px;
  }

  .mv-block-boat-catch {
    top: 160px;
    right: -30px;
  }

  .mv-block-boat-sp {
    max-width: 791px;
    padding-top: 110px;
  }
}

/* SEC1 */
#sec1 {
  background: #fff url(../images/lp/top/sec1-bg-sp.svg) no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 960px) {
  #sec1 {
    background: #fff url(../images/lp/top/sec1-bg-pc.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }
}

.sec1-inner {
  max-width: 970px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .sec1-inner {
    width: calc(100% - 30px);
  }
}

@media screen and (min-width: 960px) {
  .sec1-inner {
    max-width: 850px;
  }
}

.sec1-inner .sec1-title {
  margin: auto;
}

@media screen and (max-width: 959px) {
  .sec1-inner .sec1-title {
    width: 100%;
    max-width: 345px;
  }
}

.sec1-inner .sec1-benefit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .sec1-inner .sec1-benefit {
    gap: 32px;
    flex-direction: row;
  }
}

.sec1-inner p {
  margin-top: 32px;
  font-size: 12px;
  margin-bottom: 0;
}

.sec1-inner p span {
  font-weight: bold;
  color: #F22320;
}

/* SEC2 */
#sec2 {
  overflow: hidden;
}

.sec2-block1 {
  background: url(../images/lp/top/sec2-bg-sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 70px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .sec2-block1 {
    background: url(../images/lp/top/sec2-bg-pc.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 104px;
    background-attachment: fixed;
  }
}

@media screen and (max-width: 959px) {
  .sec2-block1 .sec2-bottom {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: 0;
  }
}

.sec2-inner {
  max-width: 970px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .sec2-inner {
    width: calc(100% - 30px);
  }
}

.sec2-inner h2 {
  font-size: clamp(24px, 24px + (100vw - 480px) * (37 - 24) / (960 - 480), 37px);
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 0 0 8px #051220;
}

.sec2-inner h2 .big {
  font-size: clamp(29px, 29px + (100vw - 480px) * (44 - 29) / (960 - 480), 44px);
}

.sec2-inner h2 .big2 {
  font-size: clamp(34px, 34px + (100vw - 480px) * (52 - 34) / (960 - 480), 52px);
}

@media screen and (min-width: 960px) {
  .sec2-inner h2 {
    margin-bottom: 56px;
  }
}

.sec2-inner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-width: 960px) {
  .sec2-inner ul {
    gap: 15px 12px;
  }
}

.sec2-inner ul li {
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #145C9A;
  font-weight: bold;
  font-size: clamp(14px, 14px + (100vw - 480px) * (17 - 14) / (960 - 480), 17px);
  line-height: 1;
  width: calc(50% - 5px);
}

.sec2-inner ul li span {
  font-size: clamp(24px, 24px + (100vw - 480px) * (28 - 24) / (960 - 480), 28px);
  color: #161616;
  background-color: #FFD702;
  line-height: 1.5;
  padding: 2px 10px;
  margin-right: 10px;
}

.sec2-inner ul li:last-child {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .sec2-inner ul li {
    width: calc(25% - 9px);
  }

  .sec2-inner ul li:last-child {
    width: calc(50% - 6px);
  }
}

.sec2-inner .sec2-txt {
  font-size: clamp(19px, 19px + (100vw - 480px) * (24 - 19) / (960 - 480), 24px);
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
  text-shadow: 0 0 8px #051220;
}

@media screen and (min-width: 960px) {
  .sec2-inner .sec2-txt {
    margin-top: 48px;
    margin-bottom: 16px;
  }
}

.sec2-inner .sec2-txt2 {
  text-align: center;
}

.sec2-inner .sec2-txt2 .sec2-txt2-txt {
  font-size: clamp(29px, 29px + (100vw - 480px) * (38 - 29) / (960 - 480), 38px);
  font-weight: bold;
  color: #FFD702;
  background: linear-gradient(transparent 93%, #FFD702 7%);
  display: inline;
  text-shadow: 0 0 8px #051220;
  opacity: 0;
}

.sec2-block2 {
  background-color: #FFD702;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
  margin-bottom: 45px;
}

@media screen and (min-width: 960px) {
  .sec2-block2 {
    padding-top: 50px;
    margin-bottom: 70px;
  }
}

.sec2-block2 h3 {
  text-align: center;
  font-size: clamp(34px, 34px + (100vw - 480px) * (60 - 34) / (960 - 480), 60px);
}

.sec2-block2 h3 span {
  font-size: clamp(45px, 45px + (100vw - 480px) * (80 - 45) / (960 - 480), 80px);
  color: #D9514F;
}

.sec2-block2::after {
  content: "";
  background-color: #FFD702;
  display: block;
  width: 100%;
  height: 45px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -45px;
}

@media screen and (min-width: 960px) {
  .sec2-block2::after {
    height: 70px;
    bottom: -69px;
  }
}

.sec2-block2 .sec2-block2-img1 {
  position: absolute;
  right: 0;
  top: -34px;
  z-index: 2;
  width: 22.1vw;
  max-width: 302px;
}

.sec2-block3 {
  max-width: 970px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .sec2-block3 {
    width: calc(100% - 30px);
  }
}

@media screen and (min-width: 960px) {
  .sec2-block3::before {
    content: "";
    background-image: url(../images/lp/top/sec2-bg1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 32.8vw;
    max-width: 447px;
    height: 32.8vw;
    position: absolute;
    left: -30%;
  }
}

@media screen and (min-width: 960px) {
  .sec2-block3::after {
    content: "";
    background-image: url(../images/lp/top/sec2-bg1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 32.8vw;
    max-width: 447px;
    height: 32.8vw;
    position: absolute;
    right: -30%;
    bottom: 0;
  }
}

.sec2-block3-baloon {
  margin-top: 80px;
  position: relative;
  background-color: #FFD702;
  font-size: clamp(14px, 14px + (100vw - 480px) * (21 - 14) / (960 - 480), 21px);
  font-weight: bold;
  text-align: center;
  padding: 16px 24px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  max-width: 500px;
}

.sec2-block3-baloon:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 9px;
  border-right-width: 9px;
  margin-left: -9px;
  border-top-color: #FFD702;
  top: 100%;
  left: 50%;
}

@media screen and (min-width: 960px) {
  .sec2-block3-baloon {
    margin-top: 144px;
    padding: 21px 24px;
    max-width: 500px;
  }
}

.sec2-block3-date {
  margin-top: 20px;
  text-align: center;
  font-size: clamp(18px, 18px + (100vw - 480px) * (21 - 18) / (960 - 480), 21px);
  font-weight: bold;
}

.sec2-block3-date span {
  font-size: clamp(14px, 14px + (100vw - 480px) * (16 - 14) / (960 - 480), 16px);
}

@media screen and (min-width: 960px) {
  .sec2-block3-date {
    margin-top: 40px;
  }
}

.sec2-block3-race-wrap {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 960px) {
  .sec2-block3-race-wrap {
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
  }
}

.sec2-block3-race-wrap .sec2-block3-race {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .sec2-block3-race-wrap .sec2-block3-race {
    width: 32.1vw;
  }
}

.sec2-block3-race-wrap .sec2-block3-race-title {
  background-color: #145C9A;
  color: #fff;
  text-align: center;
  padding: 8px 0;
}

.sec2-block3-race-wrap .sec2-block3-race-title strong {
  font-size: 16px;
}

.sec2-block3-race-wrap .sec2-block3-race-img {
  background-image: url(../images/lp/top/sec2-block3.jpg);
  width: 100%;
  height: 34.1vw;
  background-size: cover;
  background-position: bottom center;
}

@media screen and (min-width: 960px) {
  .sec2-block3-race-wrap .sec2-block3-race-img {
    height: 15.7vw;
  }
}

.sec2-block3-race-wrap table,
.sec2-block3-race-wrap td,
.sec2-block3-race-wrap th {
  border: 1px solid #D6D6D6;
  border-collapse: collapse;
}

.sec2-block3-race-wrap table {
  width: 100%;
  background-color: #fff;
}

@media screen and (min-width: 960px) {
  .sec2-block3-race-wrap table {
    max-width: 364px;
  }
}

.sec2-block3-race-wrap td {
  padding: 8px;
  font-size: 14px;
  text-align: center;
}

.sec2-block3-race-wrap td.name {
  font-size: 16px;
  font-weight: bold;
}

.sec2-block3-race-wrap th {
  padding: 6px;
}

.sec2-block3-race-wrap tr:first-child th {
  background-color: #EBEBEB;
}

.sec2-block3-race-wrap tr:nth-child(2) th {
  background-color: #505050;
  color: #fff;
}

.sec2-block3-race-wrap tr:nth-child(3) th {
  background-color: #F04141;
  color: #fff;
}

.sec2-block3-race-wrap tr:nth-child(4) th {
  background-color: #4184D0;
  color: #fff;
}

.sec2-block3-race-wrap tr:nth-child(5) th {
  background-color: #ECE962;
}

.sec2-block3-race-wrap tr:nth-child(6) th {
  background-color: #54B74D;
  color: #fff;
}

.sec2-result {
  font-size: clamp(29px, 29px + (100vw - 480px) * (44 - 29) / (960 - 480), 44px);
  text-align: center;
  margin-top: 32px;
  margin-bottom: 40px;
}

.sec2-result span {
  font-size: clamp(42px, 42px + (100vw - 480px) * (58 - 42) / (960 - 480), 58px);
  color: #D9514F;
}

@media screen and (min-width: 960px) {
  .sec2-result {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}

.prediction1 {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  font-weight: bold;
}

.prediction1 h4 {
  color: #145C9A;
  border-bottom: 1px solid #145C9A;
  padding-bottom: 4px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 960px) {
  .prediction1 {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 32px;
  }

  .prediction1 li {
    width: 50%;
  }
}

.prediction2 {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 32px 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 960px) {
  .prediction2 {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
  }
}

.prediction2 strong {
  color: #D9514F;
}

.prediction2 li {
  border: 1px solid #D6D6D6;
  background-color: #fff;
  display: flex;
  align-items: stretch;
}

.prediction2 li p {
  padding: 16px;
  margin-bottom: 0;
}

.prediction2 li:first-child .boatNo {
  background-color: #EBEBEB;
}

.prediction2 li:nth-child(2) .boatNo {
  background-color: #505050;
  color: #fff;
}

.prediction2 li:nth-child(3) .boatNo {
  background-color: #F04141;
  color: #fff;
}

.prediction2 li:nth-child(4) .boatNo {
  background-color: #4184D0;
  color: #fff;
}

.prediction2 li:nth-child(5) .boatNo {
  background-color: #ECE962;
}

.prediction2 li:nth-child(6) .boatNo {
  background-color: #54B74D;
  color: #fff;
}

.prediction2 .boatNo {
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.prediction3 {
  font-size: 19px;
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
}

.prediction3 span {
  color: #145C9A;
  font-weight: bold;
}

.prediction4 {
  background-color: #FFD702;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  max-width: 586px;
  margin: auto;
  padding: 1rem;
}

.sec2-block4 {
  max-width: 970px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .sec2-block4 {
    width: calc(100% - 30px);
  }
}

@media screen and (min-width: 960px) {
  .sec2-block4 {
    flex-direction: row;
    align-items: flex-start;
    gap: 96px;
    max-width: 1020px;
    margin-top: 80px;
    margin-bottom: 96px;
  }
}

.sec2-block4 .sec2-block4-txt {
  margin: 32px auto 32px auto;
}

.sec2-block4 p {
  margin-top: 1.6rem;
}

.sec2-block4 p.sec2-block4-strong {
  font-size: 17px;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fff1a7 40%);
  display: inline;
}

.sec2-block4 .sec2-block4-txt {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.clip.effect-scroll {
  animation-name: clipAnime-sp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .clip.effect-scroll {
    animation-name: clipAnime;
    animation-duration: 0.5s;
  }
}

@keyframes clipAnime {
  0% {
    -webkit-clip-path: polygon(0 100%, 0 100%, 0 0, 0 0);
    clip-path: polygon(0 100%, 0 100%, 0 0, 0 0);
    transform: translate(0, 0);
    opacity: 0;
  }

  100% {
    -webkit-clip-path: polygon(100% 100%, 0 99%, 0 0, 100% 0);
    clip-path: polygon(100% 100%, 0 99%, 0 0, 100% 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes clipAnime-sp {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 250%, 0% 250%);
    clip-path: polygon(0 0, 0 0, 0 250%, 0% 250%);
    transform: translate(0, 0);
    opacity: 0;
  }

  100% {
    -webkit-clip-path: polygon(0 0, 250% 0, 250% 250%, 0% 250%);
    clip-path: polygon(0 0, 250% 0, 250% 250%, 0% 250%);
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* SEC3 */
#sec3 {
  position: relative;
  overflow-x: hidden;
}

#sec3 h2 {
  font-size: clamp(61px, 61px + (100vw - 480px) * (59 - 61) / (960 - 480), 59px);
  color: #fff;
  text-shadow: 0 0 8px #051220;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  #sec3 h2 {
    background-image: url(../images/lp/top/sec3-header-sp.jpg);
    background-size: cover;
    height: 57vw;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  #sec3 h2 {
    text-align: center;
    background-color: #145C9A;
    background-image: url(../images/lp/top/sec3-header-pc.jpg), url(../images/lp/top/sec3-header-pc2.jpg);
    background-size: contain, contain;
    background-position: left, right;
    padding: 24px 0;
  }
}

@media screen and (max-width: 767px) {
  #sec3 h2 .rotate {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(348deg);
    width: 300px;
  }
}

#sec3 h2 span.mini {
  font-size: clamp(38px, 38px + (100vw - 480px) * (38 - 38) / (960 - 480), 38px);
}

.sec3-img {
  background-image: url(../images/lp/top/sec3-img-sp.jpg);
  background-size: cover;
  background-position: center;
  height: 120vw;
  max-height: 600px;
}

@media screen and (min-width: 768px) {
  .sec3-img {
    background-image: url(../images/lp/top/sec3-img-pc.jpg);
    height: 500px;
  }
}

@media screen and (min-width: 960px) {
  .sec3-img {
    height: 340px;
  }
}

.sec3-inner {
  background: #ECF6FF url(../images/lp/top/sec3-bg.jpg);
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 100px;
}

@media screen and (min-width: 960px) {
  .sec3-inner {
    padding-bottom: 20px;
    margin-bottom: 180px;
  }
}

.sec3-inner::after {
  content: "";
  background-color: #ECF6FF;
  display: block;
  width: 100%;
  height: 60px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -60px;
}

@media screen and (min-width: 960px) {
  .sec3-inner::after {
    height: 120px;
    bottom: -119px;
  }
}

.sec3-content {
  max-width: 970px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .sec3-content {
    width: calc(100% - 30px);
  }
}

.sec3-content .sec3-title-sub {
  margin: 0 auto 24px auto;
  animation: heartbeat 1.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) infinite both;
}

.sec3-content .red {
  color: #F22320;
  font-weight: bold;
}

.sec3-content .blue {
  color: #145C9A;
  font-weight: bold;
}

.sec3-block1 {
  background-color: #fff;
  padding: 16px 20px 130px 20px;
  position: relative;
  margin-bottom: 20vw;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .sec3-block1 {
    padding: 16px 20px 24px 20px;
    margin-bottom: 80px;
  }
}

.sec3-block1 h3 {
  font-size: clamp(19px, 19px + (100vw - 480px) * (28 - 19) / (960 - 480), 28px);
  color: #145C9A;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 960px) {
  .sec3-block1 h3 {
    position: relative;
    top: -32px;
    margin-bottom: 16px;
  }
}

.sec3-block1 ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .sec3-block1 ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.sec3-block1 ul li {
  display: flex;
  color: #145C9A;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.sec3-block1 ul li:not(:last-child) {
  border-bottom: 1px solid #145C9A;
  padding-bottom: 6px;
}

.sec3-block1 ul li .icon {
  width: 50px;
  height: 50px;
  display: grid;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}

.sec3-block1 ul li h4 {
  font-size: 18px;
  width: 54px;
  text-align: center;
  line-height: 1.2;
}

.sec3-block1 ul li .kinds {
  font-size: 20px;
  margin-left: 20px;
}

.sec3-block1 ul li .kinds-big {
  font-size: 30px;
}

.sec3-block1 ul li .kinds-small {
  font-size: 14px;
  width: 90px;
  position: relative;
  bottom: -6px;
  left: 5px;
}

.sec3-block1 ul li.boat {
  margin-top: 32px;
  position: relative;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .sec3-block1 ul li.boat {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 960px) {
  .sec3-block1 ul li.boat {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0 18px 0;
  }
}

.sec3-block1 ul li.boat h4 {
  background-color: #FFD702;
  font-size: 22px;
  width: 80%;
  padding: 6px 0;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .sec3-block1 ul li.boat h4 {
    width: 250px;
    margin-bottom: 0px;
  }
}

.sec3-block1 ul li.boat .boat-img {
  position: absolute;
  left: 0;
  top: -29px;
}

.sec3-block1 ul li.boat .boat-txt .kinds {
  color: #F22320;
  font-size: 22px;
}

.sec3-block1 ul li.boat .boat-txt .kinds-big {
  font-size: 35px;
}

.sec3-block1 ul li.boat .boat-txt .kinds-small {
  bottom: 0;
}

@media screen and (min-width: 768px) {

  .sec3-block1 ul li:first-child,
  .sec3-block1 ul li:nth-child(2) {
    width: 49.25%;
  }
}

@media screen and (min-width: 960px) {

  .sec3-block1 ul li:first-child,
  .sec3-block1 ul li:nth-child(2) {
    width: 32%;
  }
}

.sec3-block1 ul li:nth-child(3) {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .sec3-block1 ul li:nth-child(3) {
    width: 33%;
  }
}

.sec3-block1 ul li:nth-child(4) {
  width: 100%;
  max-width: 550px;
}

.sec3-block1 .sec3-block1-40 {
  opacity: 0;
  position: absolute;
  bottom: -19vw;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 767px) {
  .sec3-block1 .sec3-block1-40 {
    width: 57.3vw;
  }
}

@media screen and (min-width: 768px) {
  .sec3-block1 .sec3-block1-40 {
    bottom: -30px;
    left: auto;
    right: -100px;
  }
}

@media screen and (min-width: 960px) {
  .sec3-block2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.sec3-block1-top {
  position: relative;
}

.sec3-block1-top::before {
  content: "";
  background-image: url(../images/lp/top/sec3-block1-waku.svg);
  width: 35px;
  height: 35px;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  position: absolute;
  top: -19px;
  left: -23px;
}

.sec3-block1-top::after {
  content: "";
  background-image: url(../images/lp/top/sec3-block1-waku.svg);
  width: 35px;
  height: 35px;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  position: absolute;
  top: -19px;
  right: -23px;
  transform: rotate(90deg);
}

.sec3-block1-bottom {
  position: relative;
}

.sec3-block1-bottom::before {
  content: "";
  background-image: url(../images/lp/top/sec3-block1-waku.svg);
  width: 35px;
  height: 35px;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  position: absolute;
  bottom: -132px;
  left: -23px;
  transform: rotate(-90deg);
}

@media screen and (min-width: 768px) {
  .sec3-block1-bottom::before {
    bottom: -26px;
  }
}

.sec3-block1-bottom::after {
  content: "";
  background-image: url(../images/lp/top/sec3-block1-waku.svg);
  width: 35px;
  height: 35px;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  position: absolute;
  bottom: -132px;
  right: -23px;
  transform: rotate(-180deg);
}

@media screen and (min-width: 768px) {
  .sec3-block1-bottom::after {
    bottom: -26px;
  }
}

.show_sp.sec3-block2-img {
  margin: 0 auto 1.5rem auto;
}

.sec3-block2-txt2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.sec3-block2-txt3 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #F22320;
  background: linear-gradient(transparent 91%, #F22320 9%);
  display: inline;
}

.txt-center {
  text-align: center;
}

.txt-center p {
  line-height: 2.2;
}

.sec3-block3 ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin: 32px 0;
}

@media screen and (min-width: 960px) {
  .sec3-block3 ul {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 56px 0 64px 0;
    gap: 15px;
    background-color: rgba(20, 92, 154, 0.06);
    padding: 24px;
  }
}

.sec3-block3 ul li {
  background-color: #fff;
  font-size: 19px;
  font-weight: bold;
  color: #145C9A;
  padding: 24px 0 24px 120px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

@media screen and (min-width: 960px) {
  .sec3-block3 ul li {
    width: calc(33.33% - 10px);
    font-size: 16px;
  }
}

.sec3-block3 ul li:first-child {
  background-image: url(../images/lp/top/sec3-block3-li1.png);
}

.sec3-block3 ul li:nth-child(2) {
  background-image: url(../images/lp/top/sec3-block3-li2.png);
}

.sec3-block3 ul li:nth-child(3) {
  background-image: url(../images/lp/top/sec3-block3-li3.png);
}

.sec3-block3 ul li:nth-child(4) {
  background-image: url(../images/lp/top/sec3-block3-li4.png);
}

.sec3-block3 ul li:nth-child(5) {
  background-image: url(../images/lp/top/sec3-block3-li5.png);
}

.sec3-block3 ul li:nth-child(6) {
  background-image: url(../images/lp/top/sec3-block3-li6.png);
}

.sec3-block3 ul li:nth-child(7) {
  background-image: url(../images/lp/top/sec3-block3-li7.png);
  padding: 10px 0 10px 120px;
}

.sec3-block3 .txt-center strong {
  font-size: 24px;
  margin-bottom: 1.5em;
}

.sec3-block3 .sec3-block3-txt {
  font-size: clamp(31px, 31px + (100vw - 480px) * (46 - 31) / (960 - 480), 46px);
  font-weight: bold;
  text-align: center;
  color: #F22320;
  background: linear-gradient(transparent 92%, #F22320 8%);
  display: inline;
}

.sec3-block3 .sec3-block3-txt .small {
  font-size: clamp(25px, 25px + (100vw - 480px) * (37 - 25) / (960 - 480), 37px);
}

.sec3-block3 .effect-anime.clip {
  opacity: 0;
}

.sec3-block4 {
  background-image: url(../images/lp/top/sec3-block4-bg-sp.jpg);
  background-size: cover;
  background-position: center top;
  padding-bottom: 98px;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .sec3-block4 {
    background-image: url(../images/lp/top/sec3-block4-bg-pc.jpg);
    padding-bottom: 108px;
  }
}

.sec3-block4-baloon1 p,
.sec3-block4-baloon2 p {
  position: relative;
  width: 300px;
  font-size: clamp(18px, 18px + (100vw - 480px) * (24 - 18) / (960 - 480), 24px);
  font-weight: bold;
  background-color: #636363;
  border-radius: 80px;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  padding: 4px 0;
  line-height: 1.4;
  display: grid;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {

  .sec3-block4-baloon1 p,
  .sec3-block4-baloon2 p {
    padding: 15px 0;
  }
}

.sec3-block4-baloon1 {
  padding: 0 15px;
  display: flex;
  margin-bottom: 16px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .sec3-block4-baloon1 {
    margin-right: 20%;
  }
}

.sec3-block4-baloon1 img {
  width: 86px;
}

@media screen and (min-width: 960px) {
  .sec3-block4-baloon1 img {
    width: 115px;
  }
}

.sec3-block4-baloon1 p {
  margin-left: 30px;
}

.sec3-block4-baloon1 p:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 0px;
  border-right-width: 20px;
  margin-top: -10px;
  border-right-color: #636363;
  right: 99%;
  top: 50%;
}

.sec3-block4-baloon2 {
  display: flex;
  padding: 0 15px;
  margin-bottom: 70px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .sec3-block4-baloon2 {
    margin-left: 20%;
  }
}

.sec3-block4-baloon2 img {
  width: 86px;
}

@media screen and (min-width: 960px) {
  .sec3-block4-baloon2 img {
    width: 115px;
  }
}

.sec3-block4-baloon2 p {
  margin-right: 30px;
  height: 96px;
}

.sec3-block4-baloon2 p:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 0px;
  border-right-width: 20px;
  margin-top: -10px;
  border-right-color: #636363;
  left: 99%;
  top: 50%;
  transform: rotate(180deg);
}

.sec3-block4 .sec3-block4-txt1 {
  margin: auto;
  width: 91.7vw;
  max-width: 584px;
}

.sec3-block4 .sec3-block4-txt2 {
  margin: 18px auto auto auto;
  width: 51.5vw;
  max-width: 323px;
}

@media screen and (min-width: 768px) {
  .sec3-block4 .sec3-block4-txt2 {
    margin: 24px auto auto auto;
  }
}

@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }

  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }

  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }

  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

.effect-scroll2.sec3-block1-40 {
  animation: scale-up-center2 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) both;
  transition-delay: 0.2s;
  animation-delay: 0.2s;
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .effect-scroll2.sec3-block1-40 {
    transition-delay: 1s;
    animation-delay: 1s;
  }
}

@keyframes scale-up-center2 {
  0% {
    opacity: 0;
    transform: scale(0.5) translate(-50%, 0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translate(-50%, 0);
  }
}

.sec3-title {
  width: 80%;
  transform: rotate(351deg);
  margin: 5.3vw auto auto auto;
}

/* SEC4 */
#sec4 {
  overflow: hidden;
  background: #145C9A url(../images/lp/top/sec4-bg.jpg) no-repeat top center;
  background-size: contain;
  padding: 32px 0 0 0;
}

@media screen and (min-width: 960px) {
  #sec4 {
    padding: 64px 0 0 0;
  }
}

.sec4-inner h2 {
  margin-bottom: 32px;
}

.sec4-inner h2 img {
  width: 80%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .sec4-inner h2 img {
    width: 308px;
  }
}

.sec4-inner .result-slide {
  padding: 14px 6px 6px 6px;
  box-shadow: 0 0 8px #072641;
  background-image: linear-gradient(180deg, rgb(255, 215, 2) 15.5%, rgb(255, 215, 2) 19.9910901468%, rgb(255, 160, 2) 72.2295597484%, rgb(255, 154, 2) 78.3752620545%);
}

.sec4-inner .result-slide .result-innner {
  background-color: #fff;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .sec4-inner .result-slide .result-innner {
    padding: 10px 10px 10px 10px;
  }
}

.sec4-inner .result-slide .result-innner .result-innner-money {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  color: #F22320;
  margin-top: 4px;
}

.sec4-inner .result-slide .result-innner .result-innner-money:after {
  content: "円";
  font-size: 19px;
  margin-left: 4px;
}

.sec4-inner .result-slide h3 {
  font-size: 16px;
  margin-bottom: 14px;
  text-align: center;
}

.sec4-inner .sec4-txt {
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-top: 32px;
  font-size: clamp(26px, 26px + (100vw - 480px) * (35 - 26) / (960 - 480), 35px);
  text-shadow: 0 0 6px #102a46;
}

.swiper.sec4-result-slide {
  padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .swiper.sec4-result-slide {
    width: 90%;
  }
}

@media screen and (min-width: 960px) {
  .swiper.sec4-result-slide {
    max-width: 800px;
  }
}

@media screen and (min-width: 960px) {
  .sec4-result-wrap {
    max-width: 1170px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #4E8DC4;
    padding-bottom: 50px;
    margin-bottom: 64px;
  }
}

@media screen and (min-width: 960px) and (max-width: 959px) {
  .sec4-result-wrap {
    width: calc(100% - 30px);
  }
}

.sec4-arrow {
  margin: auto;
  margin-top: 24px;
  padding-bottom: 24px;
  animation: flicker-1 2s linear infinite both;
}

@media screen and (min-width: 960px) {
  .sec4-arrow {
    padding-bottom: 32px;
  }
}

@keyframes flicker-1 {

  0%,
  100% {
    opacity: 1;
  }

  41.99% {
    opacity: 1;
  }

  42% {
    opacity: 0;
  }

  43% {
    opacity: 0;
  }

  43.01% {
    opacity: 1;
  }

  47.99% {
    opacity: 1;
  }

  48% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  49.01% {
    opacity: 1;
  }
}

.sec4-cta {
  filter: brightness(0.5) grayscale(1);
  opacity: 1 !important;
  /* background-image: url(../images/top/mv-bg-sp.jpg); */
  background-size: cover;
  background-position: center top;
  padding-top: 22.4vw;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 960px) {
  .sec4-cta {
    background-image: url(../images/top/mv-bg-pc.jpg);
    padding-top: 40px;
  }
}

.sec4-cta .mv-block-boat {
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .sec4-cta .mv-block-boat {
    background-image: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sec4-cta .mv-layout {
    align-items: center;
  }
}

@media screen and (min-width: 960px) {
  .sec4-cta .race-cta .cta-btn {
    max-width: 500px;
    padding: 28px 0 28px 0;
  }

  .sec4-cta .race-cta .cta-btn .cta-btn-txt::after {
    top: -68px;
  }
}

@media screen and (min-width: 960px) {
  .sec4-cta .mv-layout-pc-right {
    width: 500px;
  }
}

.sec4-cta .race-cta ul {
  margin-top: 24px;
}

.effect-scroll.sec4-cta {
  filter: brightness(1) grayscale(0);
  transition-duration: 1s;
}

.sec4-cta-catch {
  position: absolute;
  top: 0;
}

.sec4-cta-logo.show_pc {
  margin: 18px auto 30px auto;
}

.sec4-cta-txt.show_pc {
  margin: auto;
}

.sec4-cta-boat {
  width: 100%;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 960px) {
  .sec4-cta-boat {
    max-width: 738px;
  }
}

.sec4-cta-catch {
  position: absolute;
  z-index: 4;
  left: 5.6vw;
  top: 3.5vw;
  overflow: hidden;
  width: 85vw;
}

@media screen and (min-width: 960px) {
  .sec4-cta-catch {
    left: 116px;
    top: 0;
  }
}

.sec4-cta-catch-1 {
  width: 48.5vw;
  position: relative;
  opacity: 0;
  transform: translate(-100%, 40%);
}

@media screen and (min-width: 960px) {
  .sec4-cta-catch-1 {
    max-width: 334px;
    width: 24.5vw;
  }
}

.sec4-cta-catch-2 {
  width: 55.5vw;
  margin-top: -10.4vw;
  margin-left: 11.5vw;
  opacity: 0;
  transform: translate(100%, -40%);
}

@media screen and (min-width: 960px) {
  .sec4-cta-catch-2 {
    max-width: 382px;
    width: 28vw;
    margin-top: -100px;
    margin-left: 186px;
  }
}

.sec4-race-cta {
  background-color: #FFD702;
  padding: 40px 15px 24px 15px;
}

@media screen and (min-width: 960px) {
  .sec4-race-cta {
    background-color: transparent;
    padding: 0px;
  }
}

.sec4-race-cta .cta-btn {
  font-size: clamp(22px, 22px + (100vw - 480px) * (29 - 22) / (960 - 480), 29px);
  background: linear-gradient(#0b9c1c 0%, #00b915 50.63%, #0b9c1c 100%);
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.4));
  font-weight: bold;
  text-align: center;
  display: block;
  border-radius: 80px;
  padding: 5.3vw 0 4.8vw 0;
  color: #fff;
  text-shadow: 0 0 8px #204922;
  position: relative;
  max-width: 600px;
  margin: auto;
  animation: zoomRepeat 1.5s ease-in-out infinite;
  filter: saturate(100%);
}

@media screen and (min-width: 960px) {
  .sec4-race-cta .cta-btn {
    background: linear-gradient(#0b7a18 0%, #00b915 50.63%, #0b7a18 100%);
    padding: 38px 0 28px 0;
  }
}

.sec4-race-cta .cta-btn .mini {
  font-size: clamp(18px, 18px + (100vw - 480px) * (24 - 18) / (960 - 480), 24px);
}

.sec4-race-cta .cta-btn .yellow {
  color: #FFD702;
}

.sec4-race-cta .cta-btn .cta-btn-txt {
  position: relative;
  display: inline-block;
  padding-left: 32px;
}

@media screen and (min-width: 960px) {
  .sec4-race-cta .cta-btn .cta-btn-txt {
    padding-left: 40px;
  }
}

.sec4-race-cta .cta-btn .cta-btn-txt::before {
  content: "";
  background-image: url(../images/lp/top/icon-line.svg);
  display: block;
  background-size: cover;
  width: 29px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 960px) {
  .sec4-race-cta .cta-btn .cta-btn-txt::before {
    width: 37px;
    height: 35px;
  }
}

.sec4-race-cta .cta-btn .cta-btn-txt::after {
  content: "";
  background-image: url(../images/top/cta-txt.svg);
  display: block;
  background-size: cover;
  width: 339px;
  height: 38px;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 960px) {
  .sec4-race-cta .cta-btn .cta-btn-txt::after {
    top: -72px;
    width: 418px;
    height: 47px;
  }
}

.sec4-race-cta .cta-btn:hover {
  filter: saturate(200%);
  transition-duration: 1s;
}

.sec4-race-cta ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  margin-top: 12px;
}

.sec4-race-cta ul li {
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 5px;
  position: relative;
}

.sec4-race-cta ul li:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 8px;
  border-right-width: 8px;
  border-bottom-color: #fff;
  bottom: 100%;
  left: 43%;
}

.sec4-race-cta ul li:first-child {
  color: #D9514F;
}

.sec4-race-cta ul li:nth-child(2) {
  color: #145C9A;
}

.sec4-race-cta p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 12px;
}

@media screen and (min-width: 960px) {
  .sec4-race-cta p {
    color: #ccc;
    margin-bottom: 24px;
  }
}

.sec4-cta-boat-catch {
  position: absolute;
  z-index: 2;
  top: 3vw;
  right: 0;
  width: 58.1vw;
  opacity: 0;
  transform: translate(100%, -40%);
}

@media screen and (min-width: 960px) {
  .sec4-cta-boat-catch {
    transform: translate(-50%, 20%);
  }
}

.sec4-cta-logo.show_sp {
  position: absolute;
  z-index: 3;
  bottom: 8.53vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 76.8vw;
}

.effect-anime.effect-scroll .mv-block .sec4-cta-catch-1 {
  animation: cathAnime1 0.2s ease 0.5s forwards;
}

.effect-anime.effect-scroll .mv-block .sec4-cta-catch-2 {
  animation: cathAnime2 0.2s ease 0.7s forwards;
}

.effect-anime.effect-scroll .mv-block .sec4-cta-boat-catch {
  animation: cathAnime 0.2s ease-in 1s forwards;
}

.effect-anime .mv-layout .sec4-cta-logo.show_pc,
.effect-anime .mv-layout .sec4-cta-txt.show_pc,
.effect-anime .mv-layout .sec4-race-cta {
  opacity: 0;
}

.effect-anime.effect-scroll .mv-layout .sec4-cta-logo.show_pc,
.effect-anime.effect-scroll .mv-layout .sec4-cta-txt.show_pc,
.effect-anime.effect-scroll .mv-layout .sec4-race-cta {
  opacity: 0;
  animation: Logos 0.5s ease-in 1.5s forwards;
  transform: translate(0, 20%);
}

/* SEC5 */
#sec5 {
  overflow-x: hidden;
  position: relative;
  padding-bottom: 64px;
}

#sec5 h2 {
  font-size: clamp(26px, 26px + (100vw - 480px) * (36 - 26) / (960 - 480), 36px);
  color: #fff;
  text-shadow: 0 0 8px #051220;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  #sec5 h2 {
    background-image: url(../images/lp/top/sec3-header-sp.jpg);
    background-size: cover;
    height: 51vw;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  #sec5 h2 {
    text-align: center;
    background-color: #145C9A;
    background-image: url(../images/lp/top/sec3-header-pc.jpg), url(../images/lp/top/sec3-header-pc2.jpg);
    background-size: contain, contain;
    background-position: left, right;
    padding: 24px 0;
  }
}

@media screen and (max-width: 767px) {
  #sec5 h2 .rotate {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(348deg);
    width: 350px;
  }
}

#sec5 h2 span.mini {
  font-size: clamp(40px, 40px + (100vw - 480px) * (36 - 40) / (960 - 480), 36px);
}

#sec5 h2 span.big {
  font-size: clamp(60px, 60px + (100vw - 480px) * (60 - 60) / (960 - 480), 60px);
}

#sec5 .sec5-img {
  position: relative;
}

@media screen and (max-width: 767px) {
  #sec5 .sec5-img:after {
    content: "";
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 61%, 0% 83%);
    clip-path: polygon(0 0, 100% 0, 100% 61%, 0% 83%);
    overflow: hidden;
    display: block;
    background-color: #D9514F;
    height: 83.3vw;
    position: absolute;
    top: 0;
    z-index: -1;
  }
}

#sec5 .sec5-lead {
  color: #fff;
  text-align: center;
  font-size: clamp(23px, 23px + (100vw - 480px) * (30 - 23) / (960 - 480), 30px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #sec5 .sec5-lead {
    margin-top: -27px;
    transform: rotate(355deg);
    position: relative;
  }

  #sec5 .sec5-lead img {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) rotate(354deg);
    width: 86%;
  }
}

@media screen and (min-width: 768px) {
  #sec5 .sec5-lead {
    background-color: #D9514F;
    padding: 8px 0;
  }
}

#sec5 .sec5-lead span.big {
  font-size: clamp(38px, 38px + (100vw - 480px) * (49 - 38) / (960 - 480), 49px);
}

@media screen and (max-width: 767px) {
  #sec5 .sec5-lead .rotate {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0) rotate(348deg);
    width: 400px;
  }
}

#sec5 ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  #sec5 ul {
    margin-top: 150px;
  }
}

@media screen and (min-width: 960px) {
  #sec5 ul {
    flex-direction: row;
    gap: 32px 18px;
    flex-wrap: wrap;
    max-width: 986px;
    margin-top: 84px;
  }
}

#sec5 ul li {
  font-weight: bold;
  background-color: #ECF6FF;
  border: 2px solid #145C9A;
  padding: 40px 20px 24px 20px;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 960px) {
  #sec5 ul li {
    width: 31.95%;
  }
}

#sec5 ul li .sec5-step {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

#sec5 ul li:first-child p {
  margin-bottom: 10px;
}

#sec5 ul li:first-child a {
  background-color: #00B915;
  font-size: 22px;
  font-weight: bold;
  display: block;
  padding: 18px 10px;
  color: #fff;
  border-radius: 10px;
  text-shadow: 0 0 8px #204922;
  max-width: 300px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  filter: saturate(100%) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
  animation: zoomRepeat 1.5s ease-in-out infinite;
}

#sec5 ul li:first-child a:hover {
  filter: saturate(200%);
  transition-duration: 1s;
}

#sec5 ul li:first-child .line-btn {
  position: relative;
  padding-left: 35px;
}

#sec5 ul li:first-child .line-btn:before {
  content: "";
  background-image: url(../images/lp/top/icon-line.svg);
  display: block;
  background-size: cover;
  width: 32px;
  height: 31px;
  position: absolute;
  top: 0;
  left: 0;
}

#sec5 ul li:first-child .memo {
  font-weight: normal;
  background-color: #FFD702;
  text-align: center;
  padding: 4px 14px;
  white-space: nowrap;
}

#sec5 ul li:first-child .memo:first-of-type {
  margin-right: 5px;
}

#sec5 ul li:not(:first-child):not(:last-child) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 960px) {
  #sec5 .step5 {
    display: flex;
    flex-grow: 1;
    flex-direction: row-reverse;
    gap: 26px;
    justify-content: flex-end;
    text-align: left;
  }
}

#sec5 .step5-img {
  background-image: url(../images/lp/top/sec5-step5-img.jpg);
  display: block;
  width: 100%;
  height: 27.7vw;
  background-size: cover;
  background-position: center;
  max-width: 276px;
  max-height: 104px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {
  #sec5 .step5-img {
    max-height: 100%;
    height: 146px;
    width: 260px;
  }
}

#sec5 .step5 .step5-red {
  font-size: 24px;
  color: #F22320;
  line-height: 1.4;
  margin-bottom: 14px;
}

.sec5-title {
  width: 85%;
  transform: rotate(351deg);
  margin: 9.3vw auto auto auto;
}

@media screen and (max-width: 959px) {
  .step5-img2 {
    margin: 1rem auto auto auto;
  }
}

/* SEC6 */
#sec6 {
  position: relative;
}

#sec6 h2 {
  font-size: clamp(34px, 34px + (100vw - 480px) * (36 - 34) / (960 - 480), 36px);
  color: #fff;
  text-shadow: 0 0 8px #051220;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  #sec6 h2 {
    background-image: url(../images/lp/top/sec3-header-sp.jpg);
    background-size: cover;
    height: 57vw;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 65%, 0% 100%);
    overflow: hidden;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 768px) {
  #sec6 h2 {
    text-align: center;
    background-color: #145C9A;
    background-image: url(../images/lp/top/sec3-header-pc.jpg), url(../images/lp/top/sec3-header-pc2.jpg);
    background-size: contain, contain;
    background-position: left, right;
    padding: 24px 0;
    margin-bottom: 72px;
  }
}

@media screen and (max-width: 767px) {
  #sec6 h2 .rotate {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(348deg);
    width: 300px;
  }
}

#sec6 h2 span.big {
  font-size: 72px;
}

@media screen and (min-width: 768px) {
  #sec6 h2 span.big {
    font-size: 60px;
  }
}

#sec6 .container {
  max-width: 970px;
  margin: auto;
  max-width: 370px;
}

@media screen and (max-width: 959px) {
  #sec6 .container {
    width: calc(100% - 30px);
  }
}

@media screen and (min-width: 960px) {
  #sec6 .container {
    max-width: 840px;
    display: flex;
    justify-content: space-between;
  }
}

#sec6 h3 {
  font-size: clamp(18px, 18px + (100vw - 480px) * (24 - 18) / (960 - 480), 24px);
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 960px) {
  #sec6 h3 {
    text-align: left;
  }
}

#sec6 h3 span {
  color: #145C9A;
}

.sec6-block2 {
  margin: auto;
  position: relative;
}

@media screen and (min-width: 960px) {
  .sec6-block2 {
    margin: auto 0 auto auto;
  }
}

.sec6-block3 {
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .sec6-block3 {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 960px) {
  .sec6-block3 {
    text-align: left;
  }
}

.sec6-txt {
  position: relative;
}

.sec6-txt p {
  font-size: clamp(18px, 18px + (100vw - 480px) * (24 - 18) / (960 - 480), 24px);
  font-weight: bold;
  background-color: #D9514F;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  writing-mode: vertical-rl;
  padding: 24px 4px;
  display: inline-block;
}

.sec6-txt p span {
  position: relative;
  left: 4px;
}

.sec6-txt p:first-of-type {
  position: absolute;
  z-index: 1;
  top: 19px;
  left: 64px;
  transform: rotate(353deg) translate(0, -30px);
}

@media screen and (min-width: 960px) {
  .sec6-txt p:first-of-type {
    top: -32px;
    left: 0;
    transform: rotate(344deg) translate(0, -30px);
  }
}

.sec6-txt p:nth-of-type(2) {
  position: absolute;
  z-index: 1;
  top: 140px;
  left: 31px;
  transform: rotate(353deg) translate(0, 30px);
}

@media screen and (min-width: 960px) {
  .sec6-txt p:nth-of-type(2) {
    left: -40px;
    transform: rotate(344deg) translate(0, 30px);
    top: 80px;
  }
}

.sec6-txt p.effect-anime.effect-scroll:first-of-type {
  transform: rotate(353deg) translate(0, 0);
}

@media screen and (min-width: 960px) {
  .sec6-txt p.effect-anime.effect-scroll:first-of-type {
    transform: rotate(344deg) translate(0, 0);
  }
}

.sec6-txt p.effect-anime.effect-scroll:nth-of-type(2) {
  transform: rotate(353deg) translate(0, 0);
}

@media screen and (min-width: 960px) {
  .sec6-txt p.effect-anime.effect-scroll:nth-of-type(2) {
    transform: rotate(344deg) translate(0, 0);
  }
}

.sec6-title {
  width: 70%;
  transform: rotate(351deg);
  margin: 9.3vw auto auto auto;
}

/* SEC7 */
#sec7 {
  overflow: hidden;
  filter: brightness(0.5) grayscale(1);
  opacity: 1;
}

@media screen and (min-width: 960px) {
  #sec7 {
    background-image: url(../images/top/mv-bg-pc.jpg);
    background-size: cover;
    background-position: center top;
    padding-top: 40px;
  }
}

#sec7 .mv-block-boat {
  /* background-image: url(../images/top/mv-bg-sp.jpg); */
  background-size: cover;
  background-position: center top;
  position: relative;
}

@media screen and (min-width: 960px) {
  #sec7 .mv-block-boat {
    background-image: none !important;
  }
}

.effect-anime.effect-scroll .mv-block .mv-block-boat-sp,
.effect-anime.effect-scroll .mv-block .mv-phone-mask {
  animation: spAnime 0.2s ease 0.5s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-catch-1 {
  animation: cathAnime1 0.2s ease 0.5s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-catch-2 {
  animation: cathAnime2 0.2s ease 0.7s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-boat-1 {
  animation: boatAnime 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.4s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-boat-2 {
  animation: boatAnime 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.3s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-boat-3 {
  animation: boatAnime 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-boat-catch {
  animation: cathAnime 0.2s ease-in 1.6s forwards;
}

.effect-anime.effect-scroll .mv-block .mv-block-boat-logo.show_sp {
  animation: Logo 0.5s ease-in 2s forwards;
}

.effect-anime .mv-layout-pc-right .mv-block-boat-logo.show_pc {
  opacity: 0;
}

.effect-anime.effect-scroll .mv-layout-pc-right .mv-block-boat-logo.show_pc {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 1.5s forwards;
}

.effect-anime.effect-scroll .mv-layout-pc-right h2,
.effect-anime.effect-scroll .mv-layout-pc-right .race-block-anime {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 1.5s forwards;
}

@media screen and (max-width: 959px) {
  .effect-anime.effect-scroll .mv-layout-pc-right .race-block {
    opacity: 0;
    transform: translate(0, 20%);
    animation: raceBg 0.5s ease-in 1s forwards;
  }
}

.effect-anime.effect-scroll .mv-layout-pc-right .sec4-race-cta {
  opacity: 0;
  transform: translate(0, 20%);
  animation: Logos 0.5s ease-in 1.5s forwards;
}

#sec7.effect-anime.effect-scroll {
  filter: brightness(1) grayscale(0);
  transition-duration: 1s;
}

/* LP-footer */
footer.lp-footer {
  background-color: #145C9A;
  padding-top: 40px;
}

footer.lp-footer .footer-inner {
  margin: auto 15px;
}

footer.lp-footer .footer-inner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 24px;
}

footer.lp-footer .footer-inner ul li {
  margin-bottom: 4px;
}

footer.lp-footer .footer-inner ul li a {
  color: #fff;
  font-size: 14px;
  transition: 0.5s;
}

footer.lp-footer .footer-inner ul li a:hover {
  color: #FFD702;
}

footer.lp-footer .foot_caution {
  color: #9EB8CE;
  font-size: 12px;
}

footer.lp-footer .copy {
  font-size: 10px;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 959px) {
  footer.lp-footer {
    padding-bottom: 140px;
  }
}

/*　アニメーション */
.effect-anime.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-anime {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.fade {
  transform: translate(0, 0);
}

.fade-t {
  transform: translate(0, -45px);
}

.fade-r {
  transform: translate(45px, 0);
}

.fade-l {
  transform: translate(-45px, 0);
}

.effect-scroll.de2s {
  transition-delay: 0.2s;
}

.effect-anime.list-anime {
  transform: translate(0, 0);
}

.effect-scroll.list-anime li {
  animation-name: listAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transform: translate(0, 0);
  opacity: 0;
}

.effect-scroll.list-anime li:nth-child(1) {
  animation-delay: 0.2s;
}

.effect-scroll.list-anime li:nth-child(2) {
  animation-delay: 0.3s;
}

.effect-scroll.list-anime li:nth-child(3) {
  animation-delay: 0.4s;
}

.effect-scroll.list-anime li:nth-child(4) {
  animation-delay: 0.5s;
}

.effect-scroll.list-anime li:nth-child(5) {
  animation-delay: 0.6s;
}

.effect-scroll.list-anime li:nth-child(6) {
  animation-delay: 0.7s;
}

.effect-scroll.list-anime li:nth-child(7) {
  animation-delay: 0.8s;
}

@keyframes listAnime {
  from {
    opacity: 0;
    transform: translate(-20px, 0);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.effect-scroll.expand {
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 0.6;
    transform: translate(0, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.effect-scroll.scale-up {
  animation: scale-up-center 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) both;
}

@keyframes scale-up-center {
  0% {
    transform: scale(0.5) translate(0, 0);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

/*# sourceMappingURL=style.css.map */