@charset "utf-8";
/*@charset "UTF-8";     コメント */
/*css初期設定 start*/
html {
	font-size: 62.5%;
	/*文字標準*/
	font-family: 'Noto Sans JP', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
a:visited,
a:hover,
a:link,
a:active {
	color: #111;
}
/*大きさの計算*/
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*hrリセット*/
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
body {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	line-height: 1.7;
	/*文字詰め*/
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	/*スマホ横向き時のフォントサイズリセット*/
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size: 1.4rem;
	background-color: #fff;
	color: #111;
	word-break: keep-all;
	overflow-wrap: anywhere;
	/*  line-break: anywhere;*/
	overflow-x: clip;
}

/*iOSフォーム要素の初期化*/
input,
button,
textarea,
select {
	-webkit-appearance: none;
	appearance: none;
}
/*画像の調整*/
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

@media only screen and (max-width: 1024px) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	.br-sp {
		display: inline-block;
	}
}
@media only screen and (min-width: 1025px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
	.br-sp {
		display: none;
	}
}
/* ==========================================================================
   1. 全体・共通レイアウト
   ========================================================================== */
.mainSection {
	display: block;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow: clip;
}
h3 {
	font-size: clamp(3rem, 8vw, 4.5rem);
	line-height: 1.2;
	color: #0b76a0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
}
p {
	font-size: clamp(1.4rem, 3vw, 1.6rem);
	line-height: 1.8;
}
@media (min-width: 1025px) {
	h3 {
		font-size: 5rem;
	}
}
.flexRow {
	display: flex;
	justify-content: center;
	align-items: center;
}
.colBox {
	display: flex;
	width: 50%;
	flex-direction: column;
	justify-content: center;
}
/* ==========================================================================
   2. トップセクション（スライダー含む）
   ========================================================================== */
.topSec {
	width: 100%;
	margin: 0 auto;
}
@media (min-width: 1025px) {
	.topSec {
		position: relative;
		height: 0;
		padding-top: 39.64%;
	}
}

.swiperSp {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.swiperSp .swiper-wrapper {
	transform: none !important;
	width: 100% !important;
	height: 100% !important;
}
.swiperSp .swiper-slide {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* 1. 未来のスライド（一番下）*/
.swiperSp .swiper-slide {
	z-index: 1;
}

/* 2. 新しいスライド（真ん中） */
.swiperSp .swiper-slide-active,
.swiperSp .swiper-slide-duplicate-active {
	z-index: 2;
}

/* 3. 古いスライド（一番上）*/
.swiperSp .swiper-slide-prev,
.swiperSp .swiper-slide-duplicate-prev {
	z-index: 3;
}

.spSplitImgWrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.spClipCol {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.spClipCol img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
}

.swiperSp .swiper-slide .leftCol {
	clip-path: inset(0 66.666% 0 0);
	transition: none;
}
.swiperSp .swiper-slide .centerCol {
	clip-path: inset(0 33.333% 0 33.333%);
	transition: none;
}
.swiperSp .swiper-slide .rightCol {
	clip-path: inset(0 0 0 66.666%);
	transition: none;
}

/* ①右1/3：下から上に剥がれる（下から100%削る）/ 遅延0秒 */
.swiperSp .swiper-slide-prev .rightCol,
.swiperSp .swiper-slide-duplicate-prev .rightCol {
	clip-path: inset(0 0 100% 66.666%);
	transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}

/* ②中1/3：上から下に剥がれる（上から100%削る）/ 遅延0.3秒 */
.swiperSp .swiper-slide-prev .centerCol,
.swiperSp .swiper-slide-duplicate-prev .centerCol {
	clip-path: inset(100% 33.333% 0 33.333%);
	transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

/* ③左1/3：下から上に剥がれる（下から100%削る）/ 遅延0.6秒 */
.swiperSp .swiper-slide-prev .leftCol,
.swiperSp .swiper-slide-duplicate-prev .leftCol {
	clip-path: inset(0 66.666% 100% 0);
	transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}
/* --- PC版：3連スライダーのスタイル --- */
.topFlex {
	display: none;
}
@media (min-width: 1025px) {
	.topFlex {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		height: 39.63vw;
		margin: 0 auto;
		overflow: hidden;
	}
}

@media (min-width: 1025px) {
	.topFlex .swiperF {
		width: 33.33%;
	}
	.topFlex .swiperF img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* ==========================================================================
   3. リード文セクション
   ========================================================================== */
.leadSec {
	width: 85%;
	margin: 70px auto 120px;
	text-align: center;
	position: relative;
}

.leadSec img {
	display: block;
	width: 100%;
	margin: 0 auto 10%;
}
.leadSec p {
	margin-top: 10%;
}

/* ヨットを動かす */
.leadSec .animeImg {
	position: absolute;
	bottom: -32%;
	right: -11%;
	width: 30%;
	z-index: 10;
	pointer-events: none;
}
/* ヨット画像本体の揺れ設定 */
.leadSec .animeImg img {
	width: 100%;
	height: auto;
	display: block;
	transform-origin: left bottom;
	animation: swayYacht 3s ease-in-out infinite;
}
/* ヨットアニメーション */
@keyframes swayYacht {
	0% {
		transform: rotate(-5deg) translateY(0);
	}
	50% {
		transform: rotate(5deg) translateY(-10px);
	}
	100% {
		transform: rotate(-5deg) translateY(0);
	}
}
@media (min-width: 740px) {
}
@media (min-width: 1025px) {
	.leadSec {
		width: 100%;
		margin: 120px auto 160px;
	}

	.leadSec p {
		margin-top: 3%;
	}
	.leadSec .animeImg {
		bottom: -77%;
		right: 15%;
		width: 14%;
	}
	/* ヨット画像本体の揺れ設定 */
	.leadSec .animeImg img {
		transform-origin: center bottom;
	}
}
/* ==========================================================================
   4. ノベルティセクション
   ========================================================================== */
.noveltySec {
	width: 85%;
	margin: 0 auto 120px;
	text-align: center;
}
.noveltySec h3 {
	margin-bottom: 10%;
	text-align: center;
}
.noveltySec p {
	margin-top: 3%;
}
.noveltySec p.note {
	margin-top: 3%;
	font-size: 14px;
	line-height: 1.3;
}
@media (min-width: 1025px) {
	.noveltySec {
		margin: 0 auto 160px;
	}
	.noveltySec h3 {
		margin-bottom: 3%;
		text-align: center;
	}
	.noveltySec img {
		width: 35.41%;
	}
	.noveltySec p.note {
		margin-top: 1.5%;
		font-size: 14px;
	}
}
/* ==========================================================================
   5. カテゴリセレクトセクション
   ========================================================================== */
.cateSelectSec {
	width: 100%;
	margin: 0 auto 10%;
	text-align: center;
}
.cateSelectSec h3 {
	margin-bottom: 8%;
	text-align: center;
}
.cateSelectSec .flexRow {
	width: 92%;
	margin: 0 auto;
	gap: 16px;
}
@media (min-width: 1025px) {
	.cateSelectSec {
		margin: 0 auto;
	}
	.cateSelectSec h3 {
		margin-bottom: 4%;
	}
	.cateSelectSec .flexRow {
		width: 65%;
		margin: 0 auto;
		gap: 40px;
	}
}
/* ==========================================================================
   魚のアニメーション（波を描いて横切る）
   ========================================================================== */

/* 1. 魚が泳ぐ専用空間の設定 */
.animationSecFish {
	position: relative;
	width: 100%;
	height: 120px; /* 魚が波打つための高さを十分に確保（必要に応じて調整） */
	overflow: hidden;
	margin: 0 auto 5%;
	pointer-events: none;
}

/* 2. 左右移動の枠（スタート時は左の画面外に待機） */
.animationSecFish .fishMoveX {
	position: absolute;
	left: 5%;
	top: 50%;
	width: 60px;
}

/* 画像特有の隙間を消す */
.animationSecFish .fishMoveY_hover {
	width: 100%;
	height: auto;
	display: block;
}
@media (min-width: 541px) {
	.animationSecFish {
		height: 200px;
	}
	.animationSecFish .fishMoveX {
		width: 120px;
	}
}
@media (min-width: 1025px) {
	.animationSecFish {
		height: 360px;
	}
	.animationSecFish .fishMoveX {
		left: 15%;
		top: 50%;
		width: 200px;
	}
}
/* ==========================================================================
   アニメーション発動時の設定（ .isActive が付与されたら動く ）
   ========================================================================== */

/* ① X軸：左から右への移動 */
.animationSecFish.isActive .fishMoveX {
	animation: swimRight 4.5s linear forwards;
}

/* ② Y軸（大）：移動中の波打ち（クラス名を変更） */
.animationSecFish.isActive .fishMoveY_wave {
	animation: waveUpAndDown 1.5s ease-in-out 3 forwards;
}

/* ③ Y軸（小）：到着後のふわふわ漂い（★新しく追加！） */
.animationSecFish.isActive .fishMoveY_hover {
	animation: fishHover 2s ease-in-out 4.5s infinite;
}

/* 左右移動のパラパラ漫画 */
@keyframes swimRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(70vw);
	}
}

/* 上下移動（波打ち）のパラパラ漫画 */
@keyframes waveUpAndDown {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-70px); /* 上に浮かぶ距離*/
	}
}
/* ③ 到着後にふわふわ漂う動き */
@keyframes fishHover {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}
/* ==========================================================================
   6. カテゴリセクション
   ========================================================================== */
.categorySec {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.categorySec .flexRow {
	width: 92%;
	margin: 0 auto;
	gap: 16px;
}
.categorySec h3 {
	margin-bottom: 6%;
	text-align: center;
}
.categorySec p {
	font-size: clamp(1.4rem, 3.73vw, 1.6rem);
	line-height: 1.5 !important;
	text-align: left;
}
.categorySec .colBox {
	width: calc(50% - 8px);
	margin-bottom: 40px;
	align-items: flex-start;
}
.prodName {
	margin-top: 16px;
	font-weight: 600;
	line-height: 1.4;
}
.prodCredit {
	width: 100%;
}
.creditTxt {
	font-size: 1.3rem;
	color: #555;
	letter-spacing: 0.05em;
}
/* アイテム用swiper */
.wrapper {
	width: 100%;
}

.swiperItem {
	width: 100%;
	margin-inline: auto;
}
.categorySec .colBox > img,
.swiperItem img {
	width: 100%;
	height: auto;
	display: block;
}
@media (min-width: 1025px) {
	.categorySec .flexRow {
		width: 65%;
		gap: 40px;
	}
	.categorySec .colBox {
		width: calc(50% - 20px);
		margin-bottom: 60px;
	}
	.categorySec h3 {
		margin-bottom: 3%;
	}
}
/* ==========================================================================
   潜水艦のアニメーション（右から左へ波打ち → 停止してプカプカ）
   ========================================================================== */

/* 1. 潜水艦の専用空間 */
.animationSecSubmarine {
	position: relative;
	width: 100%;
	height: 200px; /* 魚と同じ高さ（調整可） */
	overflow: hidden;
	pointer-events: none;
}

/* 2. スタート位置（魚とは逆で、右端からスタート） */
.animationSecSubmarine .subMoveX {
	position: absolute;
	right: 15%; /* 右端に配置 */
	top: 50%;
	width: 80px; /* 潜水艦のサイズ（調整可） */
}

/* 3. 画像特有の隙間を消す */
.animationSecSubmarine .subMoveY_hover {
	width: 100%;
	height: auto;
	display: block;
}
@media (min-width: 541px) {
	.animationSecSubmarine {
		height: 250px;
	}
	.animationSecSubmarine .subMoveX {
		width: 120px;
	}
}
@media (min-width: 1025px) {
	.animationSecSubmarine {
		height: 350px; /* 魚と同じ高さ（調整可） */
		margin-bottom: 5%;
	}
	.animationSecSubmarine .subMoveX {
		width: 200px; /* 潜水艦のサイズ（調整可） */
	}
}
/* ==========================================================================
   アニメーション発動時の設定（ isActive が付与されたら動く ）
   ========================================================================== */

/* ① X軸：右から左への移動 */
.animationSecSubmarine.isActive .subMoveX {
	/* ゆったり「6秒」かけて移動させる */
	animation: subSwimLeft 6s linear forwards;
}

/* ② Y軸（大）：移動中の大きな波打ち */
.animationSecSubmarine.isActive .subMoveY_wave {
	/* ゆったり「3秒」の波打ちを「2回」だけ繰り返す（3秒 × 2回 ＝ 合計6秒！） */
	animation: waveUpAndDown 3s ease-in-out 2 forwards;
}

/* ③ Y軸（小）：到着後のプカプカ */
.animationSecSubmarine.isActive .subMoveY_hover {
	/* 上の2つが終わる「6秒間」キッチリ待ってから(delay)、プカプカを開始する */
	animation: subHover 1.5s ease-in-out 6s infinite;
}

/* ==========================================================================
   パラパラ漫画（キーフレーム）
   ========================================================================== */

/* ① 右から左へ進む動き */
@keyframes subSwimLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-70vw);
	}
}

/* ② 大きな波打ちは 魚の @keyframes waveUpAndDown をそのまま使うので記述不要！ */

/* ③ 到着後のプカプカする動き */
@keyframes subHover {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		/* 大きな波より小さく、10pxだけ上に浮かぶ */
		transform: translateY(-20px);
	}
}
/* ==========================================================================
   6. ボタン・アクション要素（BUY・CVボタン）
   ========================================================================== */
.listCol {
	display: flex;
	flex-direction: column;
}
.listCol a.listBtn {
	width: 100%;
	margin-top: 1%;
	text-align: center;
	border: solid 1px #111;
}
.poroShirts .cvSec {
	margin-bottom: 10%;
}
.buyBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 28px;
	border-radius: 2px;
	font-size: 1.2rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: #fff !important;
	background-color: #111;
	letter-spacing: 0.1em;
	margin: 12px 0 0 0;
	text-decoration: none !important;
}

.cvSec {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 90%;
	max-width: 1000px;
	margin: 40px auto 0;
	position: relative;
}
.mainWrap .cvSec:nth-of-type(2),
.poroShirts .cvSec {
	margin-bottom: 80px;
}
@media (min-width: 1025px) {
	.cvSec {
		width: 90%;
		margin: 60px auto 0;
	}
	.mainWrap .cvSec:nth-of-type(2),
	.poroShirts .cvSec {
		margin-bottom: 120px;
	}
}

a.cvBtn {
	display: inline-block;
	width: 85.33%;
	max-width: 320px;
	padding: 8px 0;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	text-align: center;
	background-color: #111;
	border: 1px solid #111;
	transition: all 0.3s ease;
	text-decoration: none;
}
a.cvBtn:active {
	display: inline-block;
	transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
	a.cvBtn:hover,
	.buyBtn:hover {
		opacity: 0.7;
		cursor: pointer;
		color: #fff !important;
		transition: opacity 0.3s;
	}
}
/* ==========================================================================
   カメのアニメーション（右上へ移動 ＋ 左右に揺れ続ける）
   ========================================================================== */

/* 1. カメ全体の位置とサイズの設定（絶対配置） */
.animeTurtle {
	position: absolute;
	bottom: -150px;
	right: 1vw;
	width: 80px;
	z-index: 10;
	pointer-events: none;
}

/* 2. 画像特有の隙間を消し、回転の軸を中央に設定 */
.animeTurtle img {
	width: 100%;
	height: auto;
	display: block;
	transform-origin: center center; /* ヨットの時と同じ！お腹を中心に揺れる */
	transform: rotate(-110deg);
}
@media (min-width: 740px) {
	.animeTurtle {
		width: 120px; /* カメのサイズ（調整可） */
	}
}
@media (min-width: 1025px) {
	.animeTurtle {
		bottom: -150%;
		right: -20%;
		width: 200px; /* カメのサイズ（調整可） */
	}
}
/* ==========================================================================
   アニメーション発動時の設定（ isActive が付与されたら動く ）
   ========================================================================== */

/* ① 親箱：左上への移動SP */
.animeTurtle.isActive .turtleMove {
	/* 4秒かけて(4s) ゆっくり減速しながら(ease-out) ゴールで止まる(forwards) */
	animation: moveTopRight 12s ease-out forwards;
}
@media (min-width: 740px) {
	/* ① 親箱：左上への移動PC */
	.animeTurtle.isActive .turtleMove {
		/* 4秒かけて(4s) ゆっくり減速しながら(ease-out) ゴールで止まる(forwards) */
		animation: moveTopRight2 12s ease-out forwards;
	}
}
/* ② 子画像：左右への揺れ */
.animeTurtle.isActive .turtleSway {
	/* 2秒周期で(2s) 滑らかに(ease-in-out) ずっと揺れ続ける(infinite) */
	animation: swayTurtle 2s ease-in-out infinite;
}

/* ==========================================================================
   パラパラ漫画（キーフレーム）
   ========================================================================== */

/* ① 右上への移動 */
@keyframes moveTopRight {
	0% {
		transform: translate(0, 0);
	}
	100% {
		/* 右、上 移動した場所がゴール */
		transform: translate(-75vw, -12vh);
	}
}
@keyframes moveTopRight2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		/* 右、上 移動した場所がゴール */
		transform: translate(-50vw, -12vh);
	}
}
/* ② 左右の揺れ（カメが泳いでいるイメージ） */
@keyframes swayTurtle {
	0% {
		transform: rotate(-110deg);
	}
	50% {
		transform: rotate(-90deg);
	}
	100% {
		transform: rotate(-110deg); /* 元に戻る */
	}
}
/* ==========================================================================
   7. 吹き出し要素（その他デザインパーツ）
   ========================================================================== */
.arrow_box {
	width: 100%;
	margin: 10% auto -4%;
}
.arrow_box img {
	width: 22%;
}
@media (min-width: 1025px) {
	.arrow_box {
		width: 100%;
		margin: 10% auto 4% -23%;
	}
	.arrow_box img {
		width: 40%;
	}
}

/* ==========================================================================
   8. その他セクション（otherSec）
   ========================================================================== */
.otherSec {
	width: 100%;
	margin: 26% auto 5%;
}
.otherSec h5 {
	margin: 5% auto;
	font-size: clamp(18px, 4.8vw, 32px);
	text-align: center;
}
.otherSec .otherFlex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	margin-left: 10px;
}
.otherSec .otherFlex .listCol {
	width: calc((100% / 2) - (10px * 1 / 2));
	padding-right: 10px;
	margin-bottom: 25px;
}
@media (min-width: 740px) {
	.otherSec {
		margin: 10% auto 0;
	}
	.otherSec .otherFlex .listCol {
		width: calc((100% / 3) - (10px * 2 / 3));
		margin-bottom: 35px;
	}
}
@media (min-width: 1025px) {
	.otherSec .otherFlex {
		width: 70%;
		margin: 0 auto;
	}
	.otherSec .otherFlex .listCol {
		width: calc((100% / 3) - (20px * 2 / 3));
		padding-right: 20px;
		margin-bottom: 5%;
	}
}

/* ==========================================================================
   9. Swiper スタイル
   ========================================================================== */
.swiper01,
.swiper02,
.swiper03,
.swiper04 {
	height: 100%;
}
.swiper-container {
	width: 95%;
	margin: 2% auto;
}
.swiper-wrapper {
	height: auto;
}
.casu01 .prodSwiper02 .swiper-wrapper,
.casu04 .prodSwiper02 .swiper-wrapper,
.casu05 .prodSwiper02 .swiper-wrapper,
.casu06 .prodSwiper02 .swiper-wrapper,
.casu07 .prodSwiper02 .swiper-wrapper,
.golf01 .prodSwiper02 .swiper-wrapper,
.golf03 .prodSwiper02 .swiper-wrapper {
	justify-content: center;
}
.swiper-slide {
	overflow: hidden;
}
.swiper-slide img {
	width: 100%;
	height: auto;
}
.swiper-notification {
	display: none;
}

.swiper-button-prev,
.swiper-button-next {
	width: 30px;
	height: 30px;
	mix-blend-mode: multiply;
}
.swiper-button-prev::after,
.swiper-button-next::after {
	display: block;
	width: 100%;
	height: 100%;
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
}
.swiper-button-prev::after {
	background-image: url('../images/arrow_left.svg');
}
.swiper-button-next::after {
	background-image: url('../images/arrow_right.svg');
}

/* ==========================================================
   トップに戻る フローティングボタン
   ========================================================== */
.float-button__wrap {
	display: none;
	position: fixed;
	right: 10px;
	bottom: 16px;
	z-index: 10000;
	width: 90px;
	height: auto;
}

.float-button__wrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 50%;
}
