@charset "utf-8";
*, *::before, *::after {
  box-sizing: border-box;
  user-select: none;
}

html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
}

table th{
  vertical-align:top;
}


img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}


a{
	text-decoration:underline;
	color:#ffc400;
}

a {
    -webkit-tap-highlight-color:transparent;
}

a:hover{
	color: #fff;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0; 
	clear: both;
	visibility: hidden; 
	overflow: hidden;
}

a img {
    border-style:none;
}

a:hover img:hover{
opacity: 0.6;
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
}

a img{
-webkit-transition: opacity 0.3s ease-out;
-moz-transition: opacity 0.3s ease-out;
-ms-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
}

input,textarea,select,button{
	font-family: "Noto Sans JP", sans-serif;
}

img{
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

html,body {  
	-webkit-text-size-adjust: 100%; 
} 

:root {
	--black:0, 0, 0;
	--white:255, 255, 255;
	--yellow:255, 196, 0;
	--red:152, 8, 8;
}

body {
	min-height: 100vh;
    margin:0;
	width:100%; 
    color: rgba(var(--white),1.0);
	background: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: clamp(14px, 3.5vw, 18px); 
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    25deg,
    rgba(0, 0, 0, 1),
    rgba(27, 29, 37, 1)
  );
}

#wrapper {
  	overflow:hidden;
	margin: 0 auto;
	max-width: 1024px;
}

#top{
	position: relative;
	max-width: 1024px;
}

.top{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.top-boatWrap{
  position:absolute;
  top:23.5%;
  left:0;
  z-index: 0;
  opacity:0;
  transform: scale(0.6);
  transform-origin:center bottom;
  animation: boatIntro 0.9s ease-out forwards;
}

.top-boat{
  display:block;
  will-change: transform;
  transform-origin:center bottom;
  animation: boatFloat 3.2s ease-in-out 0.9s infinite;
}

@keyframes boatIntro{
  0%   { opacity:0; transform:scale(0.6); }
  60%  { opacity:1; transform:scale(1.08); }
  100% { opacity:1; transform:scale(1); }
}

@keyframes boatFloat{
	0%   { transform: translate(0,0) rotate(0deg); }
	25%  { transform: translate(2px,-2px) rotate(-0.5deg); }
	55%  { transform: translate(5px,2px) rotate(0.4deg); }
	80%  { transform: translate(2px,3px) rotate(0.6deg); }
	100% { transform: translate(0,0) rotate(0deg); }
}




.arrow{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 24%;
	width: 48.3%;
	margin: 0 auto;
	animation: arrowFloat 1.8s ease-in-out infinite;
}

@keyframes arrowFloat {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(12px); }
	100% { transform: translateY(0); }
}

.arrow img {
	animation: arrowGlow 1.8s ease-in-out infinite;
}

@keyframes arrowGlow {
	0% {
		filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
	}
	50% {
		filter: drop-shadow(0 0 16px rgba(255,255,255,1));
	}
	100% {
		filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
	}
}

.line-btn{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 11%;
	width: 93.7%;
	margin: 0 auto;
	animation: linePulse 2.2s ease-in-out infinite;
}

@keyframes linePulse {
	0%   { transform: scale(1); }
	50%  { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.line-btn img {
	animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
	0% {
		filter: drop-shadow(0 0 6px rgba(0,255,120,0.4));
	}
	50% {
		filter: drop-shadow(0 0 18px rgba(0,255,120,0.9));
	}
	100% {
		filter: drop-shadow(0 0 6px rgba(0,255,120,0.4));
	}
}

.cv{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.5%;
	width: 90%;
	margin: 0 auto;
	animation: cvFloat 2.6s ease-in-out infinite;
}

@keyframes cvFloat {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(-4px); }
	100% { transform: translateY(0); }
}

.img-title{
	margin: 15px 0;
}


/* ===== Hit Section ===== */
.hitSection{
  padding: 18px 5px 14%;
}


/* Swiper layout */
.hitSwiper{
  padding: 8px 10px 26px;
}

.hitSwiper .swiper-slide{
  height: auto;
}

/* ===== Card ===== */
.hitCard{
  position: relative;
  background: rgba(var(--white), .10);
  border: 2px solid rgba(var(--yellow), 1);
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 18px 36px rgba(0,0,0,.55);
  padding-bottom: 10%;
}

/* 上部バナー画像 */
.hitThumb{
  padding: 10px;
  padding-bottom: 0;
}
.hitThumb img{
  width: 100%;
  height: auto;
  display:block;
}

/* プラン名＋日付 */
.hitMeta{
  text-align:center;
  padding: 2px 10px;
}
.hitPlan{
  font-weight: 900;
  color: rgba(var(--yellow), 1);
  font-size: clamp(14px, 4.2vw, 40px);
}
.hitDate{
  font-weight: 900;
  color: rgba(var(--white), 1);
  font-size: clamp(14px, 4.2vw, 30px);
  letter-spacing: .04em;
}

/* 赤いレース帯 */
.hitRacePill{
  margin: 6px 4px;
  padding: 6px 2px;
  text-align:center;
  font-weight: 900;
  color: rgba(var(--white), 1);
  font-size: clamp(12px, 3.6vw, 30px);
  background: rgba(var(--red), .50);
  border: 2px solid rgba(var(--red), 1);
  border-radius: 999px;
  letter-spacing: -0.1em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 18px rgba(0,0,0,.45);
}

/* 金額 */
.hitAmount{
  text-align:center;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: clamp(22px, 7.0vw, 64px);
 background: linear-gradient(
    0deg,
    #f6b934 0%,
    #f6b934 17%,
    #d48c2d 49%,
    #ffd649 52%,
    #fffaf5 76%,
    #f9e777 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
-webkit-text-stroke: 0.6px rgba(0,0,0,.25);
}


.hitBadgeWrap{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  margin: 0;
  display: block;
  pointer-events: none;
}

.hitBadge{
  width: min(100%, 240px);
  height: auto;
  display: block;
}

/* ===== Pagination ===== */
.hitPager{
  bottom: -16% !important;
}
.hitPager .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  opacity: .45;
  background: rgba(var(--yellow), 1);
  box-shadow: 0 0 0 2px rgba(0,0,0,.35);
}
.hitPager .swiper-pagination-bullet-active{
  opacity: 1;
  width: 18px;
  border-radius: 999px;
  box-shadow:
    0 0 10px rgba(255, 196, 0, .35),
    0 0 0 2px rgba(0,0,0,.35);
}
.hitSwiper,
.hitSwiper .swiper,
.hitSwiper .swiper-wrapper,
.hitSwiper .swiper-slide{
  overflow: visible !important;
}

/* =======================
   Footer
======================= */

.siteFooter{
  padding: 0px 16px 30px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.95),
    rgba(0,0,0,1)
  );
  border-top: 1px solid rgba(var(--yellow), .4);
  text-align: center;
}

.siteFooter::before{
  content:"";
  display:block;
  width:100%;
  height:2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--yellow),1),
    transparent
  );
  box-shadow:
    0 0 8px rgba(255,196,0,.6),
    0 0 18px rgba(255,196,0,.3);
  margin-bottom: 30px;
}

/* 上部リンク */
.footerLinks{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin-bottom: 24px;
}

.footerLinks a{
  font-size: clamp(12px, 3.2vw, 18px);
  color: rgba(var(--white), .85);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--white), .3);
  padding-bottom: 2px;
}

.footerLinks a:active{
  opacity: .6;
}

/* 注意文 */
.footerNotice{
  font-size: clamp(11px, 3vw, 13px);
  line-height: 1.8;
  color: rgba(var(--white), .55);
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: left;
}

.footerNotice p{
  margin-bottom: 10px;
}

/* コピーライト */
.footerCopy{
  font-size: clamp(11px, 3vw, 13px);
  color: rgba(var(--white), .35);
  letter-spacing: .05em;
}

/* ==========================
   Sub Header
========================== */

.subHeader{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,1),
    rgba(10,10,15,1)
  );
  padding: 16px 16px;
  text-align: center;
  position: relative;
}

/* 下のゴールドライン */
.subHeader::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--yellow),1),
    transparent
  );


}

.subLogo{
  width: min(50%, 240px);
  height: auto;
  margin: 0 auto;
  display:block;
}

/* ==========================
   プライバシー・利用規約ページ
========================== */

.termsWrap{
  padding: 0 16px 30px;
}

.termsInner{
  max-width: 900px;
  margin: 0 auto;
  background: rgba(var(--white), .01);
  border: 2px solid rgba(var(--yellow), 1);
  border-radius: 18px;
  padding: 10px 24px;
}
.termsContent{
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.9;
  color: rgba(var(--white), .95);
}

.termsArticleTitle{
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 700;
  color: rgba(var(--yellow),1);
  border-left: 4px solid rgba(var(--yellow),1);
  padding-left: 12px;
}

.termsContent p{
  margin-bottom: 12px;
}

.termsList{
  list-style: decimal;
  padding-left: 1.5em;
  margin: 12px 0 20px;
}

.termsList li{
  margin-bottom: 8px;
  line-height: 1.7;
}

.legalWrap{
  padding: 0 16px 30px;
}


.legalTable dt{
  padding: 16px 0 8px;
  font-weight: 700;
  color: rgba(var(--yellow),1);
  border-bottom: 1px solid rgba(var(--white),.1);
}

.legalTable dd{
  padding: 8px 0 20px;
  margin: 0;
  border-bottom: 1px solid rgba(var(--white),.08);
  color: rgba(var(--white),1);
  line-height: 1.7;
}
