@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;
}

.l-main {
  background-color: #001d37;
}

#contents {
  width: min(calc(1311 / 1563 * 100vw), calc(1311 / 1563 * 540 * 1px));
  min-height: 100vh;
  margin: 0 auto 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2ca95;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (max-width: 736px) {
  #contents {
    margin-bottom: 7%;
    padding-bottom: 5%;
    font-size: 14px;
  }
}

.title-main {
  margin: 0 auto 20px;
  padding: 30px 0;
  color: #e2ca95;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 2px solid #e2ca95;
}
@media only screen and (max-width: 736px) {
  .title-main {
    margin-bottom: 3%;
    padding: 4% 0;
    font-size: 5.5vw;
  }
}

.title-comp {
  text-align: center;
  padding: 30px 0 50px;
}

.title-sub {
  margin: 0 0 30px;
  padding: 8px 15px;
  background: #e2ca95;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.title-section {
  margin: 25px 0 10px;
  color: #e2ca95;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 736px) {
  .title-section {
    margin: 5% 0 2%;
    font-size: 15px;
  }
}

.form:not(.--radio) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7em 0;
}
.form:not(.--radio) label {
  display: inline-block;
}
.form {
  margin-bottom: 20px;
  line-height: 1;
}
@media only screen and (max-width: 736px) {
  .form {
    margin-bottom: 8%;
  }
}
.form-label:not(.--radio) {
  display: block;
  width: 3em;
}
.form.--name {
  justify-content: space-between;
}
.form.--name input[type=text] {
  width: calc(100% - 4em);
  appearance: auto;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  padding: 5px;
}
.form.--short input[type=text] {
  width: 4em;
  margin-right: 0.5em;
}
.form.--email {
  margin-bottom: 10px;
}
.form input[type=radio] {
  appearance: auto;
  -webkit-appearance: auto;
  background-color: initial;
  border: initial;
  width: 18px;
  height: 18px;
  cursor: pointer;
  vertical-align: middle;
  accent-color: #e2ca95;
}
@media only screen and (max-width: 736px) {
  .form input[type=radio] {
    width: 22px;
    height: 22px;
  }
}
.form label {
  cursor: pointer;
  vertical-align: middle;
  margin: 0 0 0 0.2em;
  color: #fff;
}
.form label:last-child {
  margin-right: 0;
}
.form input[type=text],
.form input[type=email],
.form textarea {
  width: 100%;
  appearance: auto;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  padding: 5px;
}
.form textarea {
  min-height: 120px;
}
.form.--radio label {
  line-height: 1.5;
}
@media only screen and (max-width: 736px) {
  .form.--radio label {
    line-height: 24px;
  }
}
.form.--radio_row label {
  margin: 0 1em 0 0.2em;
}

.conf .form {
  justify-content: flex-start;
  gap: 0.5em;
}

#form_submit,
.back_top {
  display: block;
  width: 400px;
  max-width: 100%;
  margin: 20px auto;
  padding: 15px;
  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%);
  color: #000;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: center;
  color: #001d37;
}
#form_submit:hover,
.back_top:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 736px) {
  #form_submit,
  .back_top {
    width: 100%;
    font-size: 3.8vw;
    padding: 12px 5px;
  }
}

.button_back {
  display: block;
  width: 400px;
  max-width: 100%;
  margin: 40px auto 20px;
  padding: 15px;
  background: #ccc;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.button_back:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 736px) {
  .button_back {
    width: 100%;
    font-size: 4vw;
    padding: 12px 5px;
  }
}

.link_caution {
  color: #ff2739;
  text-decoration: underline;
}

.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;
}

#attention {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
#attention ul {
  margin-top: 10px;
}
#attention ul li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
  list-style: none;
}

.caution {
  color: #e2ca95;
}

.red {
  color: #ff3747;
}

.error {
  color: #ff3747;
  margin-bottom: 5px;
}
/*# sourceMappingURL=form.css.map */
