@charset "UTF-8";
/**
 * デザイン幅(1563)基準で数値を入れ、
 * PC(540px)では固定、SP(767.9px以下)では可変(vw)にする関数
 */
* {
  box-sizing: border-box;
}

/* ==========================================================================
   Reset CSS (Modern Reset)
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  appearance: none;
}

button,
select {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html, body {
  height: 100%;
}

body {
  margin: 0;
  color: #1a1a1a;
  font-family: "Shippori Mincho", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.65;
  background: #0b3172;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  text-decoration: none;
}

.container {
  width: min(980px, 100% - 20px * 2);
  margin-inline: auto;
}
@media (max-width: 767.9px) {
  .container {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp {
  display: none;
}
@media (max-width: 767.9px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 767.9px) {
  .pc {
    display: none;
  }
}

/* ---------- header ---------- */
img {
  max-width: 100%;
}

.btn-apply {
  position: relative;
  display: block;
  width: min(calc(750 / 1563 * 100vw), calc(750 / 1563 * 540 * 1px));
  aspect-ratio: 75/17;
  padding: 0;
  margin: auto;
  background: #d1b548;
  background: linear-gradient(90deg, rgb(209, 181, 72) 0%, rgb(232, 229, 216) 27%, rgb(225, 204, 115) 49%, rgb(214, 185, 93) 71%, rgb(133, 72, 23) 100%);
  font-weight: 600;
  text-align: center;
  transition: 0.5s;
  z-index: 1;
  color: #000247;
  border-radius: min(calc(30 / 1563 * 100vw), calc(30 / 1563 * 540 * 1px));
  border: solid 1px #b8731c;
}
.btn-apply .text01 {
  position: relative;
  z-index: 3;
  display: block;
  margin-bottom: min(calc(15 / 1563 * 100vw), calc(15 / 1563 * 540 * 1px));
  font-size: min(calc(31 / 1563 * 100vw), calc(31 / 1563 * 540 * 1px));
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}
.btn-apply .text02 {
  position: relative;
  z-index: 3;
  display: block;
  font-size: min(calc(62 / 1563 * 100vw), calc(62 / 1563 * 540 * 1px));
  line-height: 1;
}
.btn-apply .img-apply {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.5s;
}
.btn-apply .img-apply-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.btn-apply:hover {
  background: #2d69af; /* フォールバック（中間層の青） */
  background: linear-gradient(90deg, rgb(45, 105, 175) 0%, rgb(64, 175, 255) 27%, rgb(70, 150, 240) 49%, rgb(30, 85, 160) 71%, rgb(5, 25, 60) 100%);
  color: #fff;
  border: solid 1px #2d69af;
}
.btn-apply:hover .img-apply-hover {
  opacity: 1;
}
.btn-apply.--end {
  background: #cccccc;
  background: linear-gradient(90deg, #cccccc 0%, #d6d6d6 27%, #e0e0e0 49%, #c8c8c8 71%, #b0b0b0 100%);
  color: #fff;
  border: solid 1px #cccccc;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
@media (max-width: 540px) {
  .l-bg {
    display: none;
  }
}
.l-bg .l-bg__item {
  position: absolute;
  top: 0;
  width: calc(50% - 270px);
  height: 100%;
  padding: 20px min(calc(145 / 1563 * 100vw), calc(145 / 1563 * 540 * 1px));
}
.l-bg .l-bg__item.--l {
  left: 0;
  background: url(../img/bg_left.png) top center/cover no-repeat;
}
.l-bg .l-bg__item.--l .l-bg__item__cont {
  max-width: 380px;
}
.l-bg .l-bg__item.--r {
  right: 0;
  padding: 20px 0;
  background: url(../img/bg_right.png) top center/cover no-repeat;
}
.l-bg .l-bg__item.--r .l-bg__item__cont {
  width: calc(100% - min(calc(500 / 1563 * 100vw), calc(500 / 1563 * 540 * 1px)));
  max-width: 300px;
}
.l-bg .l-bg__item.--r .l-bg__item__cont.--subpage {
  width: calc(100% - min(calc(290 / 1563 * 100vw), calc(290 / 1563 * 540 * 1px)));
}
.l-bg .l-bg__item__cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - min(calc(290 / 1563 * 100vw), calc(290 / 1563 * 540 * 1px)));
}
@media (max-width: 1300px) {
  .l-bg .l-bg__item__cont {
    display: none;
  }
}
.l-bg .l-bg__item__cont .link-boatrace {
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 5.2132701422%;
  max-width: 18.9573459716%;
}

main {
  position: relative;
  z-index: 3;
}

footer {
  position: relative;
  z-index: 3;
}

.side-menu {
  max-width: 450px;
  margin: auto;
}
.side-tit {
  margin-bottom: clamp(10px, 4%, 30px);
}
.side-text {
  margin: auto;
}
.side-text.--01 {
  margin-bottom: clamp(10px, 5.3333333333%, 40px);
}
.side-text.--02 {
  margin-bottom: clamp(10px, 5.3333333333%, 40px);
}
.side-list-item {
  margin-bottom: clamp(10px, 7.3333333333%, 55px);
}
.side .separator {
  display: block;
  aspect-ratio: 749/18;
  width: 100%;
  margin: clamp(10px, 10.6666666667%, 80px) auto;
  background: url(../img/separator.png) top center/contain no-repeat;
}
.side .btn-apply {
  width: 86.2666666667%;
  aspect-ratio: 75/17;
}

.pc-nav {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
  width: 100%;
  max-width: 70.1421800948%;
  margin: 4.5497630332% auto 0;
  gap: 2.4644549763%;
}
.pc-nav li {
  display: block;
  width: 100%;
}
.pc-nav li a {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 9.6682464455% 0;
  background: #d1b548;
  background: linear-gradient(90deg, rgb(209, 181, 72) 0%, rgb(232, 229, 216) 27%, rgb(225, 204, 115) 49%, rgb(214, 185, 93) 71%, rgb(133, 72, 23) 100%);
  border-radius: min(calc(15 / 1563 * 100vw), calc(15 / 1563 * 540 * 1px));
  align-items: center;
  font-weight: 800;
  text-align: center;
  color: #000247;
}
.pc-nav li a > span {
  font-size: clamp(10px, 0.9478672986vw, 17px);
  line-height: 1.3;
}
.pc-nav li a .teleboat {
  letter-spacing: -0.1em;
}

.l-main {
  position: relative;
  width: min(calc(1563 / 1563 * 100vw), calc(1563 / 1563 * 540 * 1px));
  min-height: 100%;
  margin: auto;
  z-index: 2;
}

.l-footer {
  padding: 10px 0;
  background-color: #000;
}
.l-footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.l-footer .footer-nav a {
  color: #fff;
  font-size: min(calc(45 / 1563 * 100vw), calc(45 / 1563 * 540 * 1px));
}
.l-footer .footer-nav a::before {
  display: inline-block;
  content: "▶";
}
.l-footer .copyright {
  margin-top: min(calc(10 / 1563 * 100vw), calc(10 / 1563 * 540 * 1px));
  color: #fff;
  text-align: center;
  font-size: min(calc(30 / 1563 * 100vw), calc(30 / 1563 * 540 * 1px));
}

.u-gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.js-accordion.js-open .js-accordionSubBtn {
  opacity: 0;
  pointer-events: none;
}
.js-accordionBtn {
  cursor: pointer;
}
.js-accordionCont {
  overflow: hidden;
  display: none;
}
.js-accordionSubBtn {
  position: absolute;
  bottom: min(calc(58 / 1563 * 100vw), calc(58 / 1563 * 540 * 1px));
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  width: min(calc(120 / 1563 * 100vw), calc(120 / 1563 * 540 * 1px));
  cursor: pointer;
}

.kv {
  width: 100%;
  height: min(calc(2500 / 1563 * 100vw), calc(2500 / 1563 * 540 * 1px));
  background: url(../img/bg_kv.jpg) top center/100% auto no-repeat;
}
.kv .inner {
  padding: min(calc(137 / 1563 * 100vw), calc(137 / 1563 * 540 * 1px)) 0 0;
}
.kv h1 {
  margin-bottom: min(calc(50 / 1563 * 100vw), calc(50 / 1563 * 540 * 1px));
}
.kv h1 .year {
  display: block;
  margin-bottom: min(calc(60 / 1563 * 100vw), calc(60 / 1563 * 540 * 1px));
}
.kv h1 img {
  margin: auto;
}
.kv-date {
  margin-bottom: min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
}

.bg {
  background: url(../img/bg.jpg) top center/100% auto repeat-y;
}

.howto .inner {
  padding: min(calc(240 / 1563 * 100vw), calc(240 / 1563 * 540 * 1px)) 0 0;
}
.howto-tit {
  width: min(calc(1303 / 1563 * 100vw), calc(1303 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
}
.howto-text {
  margin-bottom: min(calc(150 / 1563 * 100vw), calc(150 / 1563 * 540 * 1px));
  font-size: min(calc(83 / 1563 * 100vw), calc(83 / 1563 * 540 * 1px));
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.howto .experience {
  width: 100%;
  margin: 0 auto min(calc(120 / 1563 * 100vw), calc(120 / 1563 * 540 * 1px));
}
.howto .experience__item {
  width: min(calc(1155 / 1563 * 100vw), calc(1155 / 1563 * 540 * 1px));
}
.howto .experience .swiper-button-prev2 {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(calc(99 / 1563 * 100vw), calc(99 / 1563 * 540 * 1px));
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}
.howto .experience .swiper-button-next2 {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(calc(99 / 1563 * 100vw), calc(99 / 1563 * 540 * 1px));
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}
.howto .experience__cont {
  position: relative;
  margin-bottom: min(calc(300 / 1563 * 100vw), calc(300 / 1563 * 540 * 1px));
}
.howto .experience__cont .swiper-horizontal > .swiper-pagination-bullets, .howto .experience__cont .swiper-pagination-horizontal.swiper-pagination-bullets {
  position: relative;
  bottom: auto;
}
.howto .experience__cont .swiper-pagination-bullet {
  width: min(calc(42 / 1563 * 100vw), calc(42 / 1563 * 540 * 1px));
  height: min(calc(42 / 1563 * 100vw), calc(42 / 1563 * 540 * 1px));
  margin: 0 min(calc(35 / 1563 * 100vw), calc(35 / 1563 * 540 * 1px));
  background-color: #727171;
  aspect-ratio: 1/1;
  opacity: 1;
}
.howto .experience__cont .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.chance .inner {
  padding: 0;
}
.chance-tit {
  width: min(calc(1303 / 1563 * 100vw), calc(1303 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
}
.chance-text {
  margin-bottom: min(calc(150 / 1563 * 100vw), calc(150 / 1563 * 540 * 1px));
  font-size: min(calc(54 / 1563 * 100vw), calc(54 / 1563 * 540 * 1px));
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
.chance .chanceSlide {
  width: 100%;
  margin: 0 auto min(calc(123 / 1563 * 100vw), calc(123 / 1563 * 540 * 1px));
}
.chance .chanceSlide__item {
  width: min(calc(1155 / 1563 * 100vw), calc(1155 / 1563 * 540 * 1px));
}
.chance .chanceSlide .swiper-button-prev3 {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(calc(99 / 1563 * 100vw), calc(99 / 1563 * 540 * 1px));
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}
.chance .chanceSlide .swiper-button-next3 {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(calc(99 / 1563 * 100vw), calc(99 / 1563 * 540 * 1px));
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}
.chance .chanceSlide__cont {
  position: relative;
  margin-bottom: min(calc(300 / 1563 * 100vw), calc(300 / 1563 * 540 * 1px));
}
.chance .chanceSlide__cont .swiper-horizontal > .swiper-pagination-bullets, .chance .chanceSlide__cont .swiper-pagination-horizontal.swiper-pagination-bullets {
  position: relative;
  bottom: auto;
  text-align: center;
}
.chance .chanceSlide__cont .swiper-pagination-bullet {
  width: min(calc(42 / 1563 * 100vw), calc(42 / 1563 * 540 * 1px));
  height: min(calc(42 / 1563 * 100vw), calc(42 / 1563 * 540 * 1px));
  margin: 0 min(calc(35 / 1563 * 100vw), calc(35 / 1563 * 540 * 1px));
  background-color: #727171;
  aspect-ratio: 1/1;
  opacity: 1;
}
.chance .chanceSlide__cont .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.btnarea {
  background: url(../img/bg_btnarea.jpg) top center/cover repeat-y;
  position: relative;
  padding: min(calc(230 / 1563 * 100vw), calc(230 / 1563 * 540 * 1px)) 0;
}
.btnarea::before, .btnarea::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #CDB45A;
  background: linear-gradient(90deg, rgb(205, 180, 90) 0%, rgb(232, 229, 216) 27%, rgb(219, 198, 120) 58%, rgb(205, 180, 90) 100%);
  z-index: 1;
}
.btnarea::after {
  top: auto;
  bottom: 0;
}

.outline {
  background: url(../img/bg_outline.jpg) top center/100% auto repeat-y;
}
.outline-tit {
  width: min(calc(1303 / 1563 * 100vw), calc(1303 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
}
.outline-subtit {
  position: relative;
  display: block;
  width: min(calc(1303 / 1563 * 100vw), calc(1303 / 1563 * 540 * 1px));
  padding-bottom: min(calc(25 / 1563 * 100vw), calc(25 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(55 / 1563 * 100vw), calc(55 / 1563 * 540 * 1px));
  background-image: linear-gradient(180deg, #e8daae, #ab8550);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: min(calc(67 / 1563 * 100vw), calc(67 / 1563 * 540 * 1px));
}
.outline .tour {
  position: relative;
  padding: min(calc(40 / 1563 * 100vw), calc(40 / 1563 * 540 * 1px)) 0 min(calc(130 / 1563 * 100vw), calc(130 / 1563 * 540 * 1px));
  transition: padding 0.5s;
}
.outline .tour.js-open {
  padding: min(calc(197 / 1563 * 100vw), calc(197 / 1563 * 540 * 1px)) 0 min(calc(375 / 1563 * 100vw), calc(375 / 1563 * 540 * 1px));
}
.outline .tour::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #CDB45A;
  background: linear-gradient(90deg, rgb(205, 180, 90) 0%, rgb(232, 229, 216) 27%, rgb(219, 198, 120) 58%, rgb(205, 180, 90) 100%);
  z-index: 1;
}
.outline .wchance {
  position: relative;
  padding: min(calc(40 / 1563 * 100vw), calc(40 / 1563 * 540 * 1px)) 0 min(calc(130 / 1563 * 100vw), calc(130 / 1563 * 540 * 1px));
  transition: padding 0.5s;
}
.outline .wchance.js-open {
  padding: min(calc(197 / 1563 * 100vw), calc(197 / 1563 * 540 * 1px)) 0 min(calc(375 / 1563 * 100vw), calc(375 / 1563 * 540 * 1px));
}
.outline dl {
  width: min(calc(1311 / 1563 * 100vw), calc(1311 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(200 / 1563 * 100vw), calc(200 / 1563 * 540 * 1px));
  color: #fff;
  font-size: min(calc(54 / 1563 * 100vw), calc(54 / 1563 * 540 * 1px));
}
.outline dl:last-child {
  margin-bottom: 0;
}
.outline dl dt {
  color: #d2c3aa;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.outline dl dd {
  margin-bottom: min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
  line-height: 1.5;
}
.outline dl dd:last-child {
  margin-bottom: 0;
}
.outline dl dd ul {
  margin-bottom: 0;
}
.outline dl dd ul li {
  margin-bottom: min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
}
.outline ul, .outline ol {
  width: min(calc(1311 / 1563 * 100vw), calc(1311 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(210 / 1563 * 100vw), calc(210 / 1563 * 540 * 1px));
  color: #fff;
}
.outline li {
  font-size: min(calc(54 / 1563 * 100vw), calc(54 / 1563 * 540 * 1px));
}
.outline ol li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: min(calc(50 / 1563 * 100vw), calc(50 / 1563 * 540 * 1px));
}
.outline ol li:last-child {
  margin-bottom: 0;
}
.outline ul li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: min(calc(50 / 1563 * 100vw), calc(50 / 1563 * 540 * 1px));
}
.outline ul li:last-child {
  margin-bottom: 0;
}
.outline ul li.mgnBtm0 {
  margin-bottom: 0;
}
.outline span.caution {
  color: #e8daae;
}
.outline .small {
  font-size: min(calc(46 / 1563 * 100vw), calc(46 / 1563 * 540 * 1px));
}
.outline .link {
  text-decoration: underline;
  font-size: min(calc(46 / 1563 * 100vw), calc(46 / 1563 * 540 * 1px));
}

.contact {
  background: url(../img/bg_contact.jpg) top center/cover repeat-y;
  position: relative;
  padding: min(calc(200 / 1563 * 100vw), calc(200 / 1563 * 540 * 1px)) 0 min(calc(100 / 1563 * 100vw), calc(100 / 1563 * 540 * 1px));
}
.contact::before, .contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #CDB45A;
  background: linear-gradient(90deg, rgb(205, 180, 90) 0%, rgb(232, 229, 216) 27%, rgb(219, 198, 120) 58%, rgb(205, 180, 90) 100%);
  z-index: 1;
}
.contact::after {
  top: auto;
  bottom: 0;
}
.contact-tit {
  width: min(calc(1303 / 1563 * 100vw), calc(1303 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(70 / 1563 * 100vw), calc(70 / 1563 * 540 * 1px));
}
.contact-text {
  margin: 0 auto min(calc(30 / 1563 * 100vw), calc(30 / 1563 * 540 * 1px));
  text-align: center;
  font-size: min(calc(66.6 / 1563 * 100vw), calc(66.6 / 1563 * 540 * 1px));
  color: #fff;
}
.contact-icon {
  display: block;
  width: min(calc(118 / 1563 * 100vw), calc(118 / 1563 * 540 * 1px));
  margin: 0 auto min(calc(15 / 1563 * 100vw), calc(15 / 1563 * 540 * 1px));
}
.contact-mail {
  display: block;
  margin: 0 auto min(calc(50 / 1563 * 100vw), calc(50 / 1563 * 540 * 1px));
  font-size: min(calc(54 / 1563 * 100vw), calc(54 / 1563 * 540 * 1px));
  color: #fff;
  text-align: center;
}
.contact-note {
  line-height: 1.5;
  font-size: min(calc(35.4 / 1563 * 100vw), calc(35.4 / 1563 * 540 * 1px));
  text-align: center;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */
