@charset "utf-8";

/* ==========================================================
   CSS初期設定・リセット
   ========================================================== */
/* 大きさの計算 */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	font-family: 'Klee One', cursive, serif;
	font-weight: 400;
	font-style: normal;
	scroll-behavior: smooth;
}
:root {
	--main-color: #0a1c2b;
	--white-color: #fff;
	--titleFont-color: #ddf756;
	--secMarg: 19.2%;
	--leadBMarg: 8.53%;
}
@media (min-width: 1025px) {
	:root {
		--secMarg: 7.91%;
		--leadBMarg: 2.5%;
	}
}
body {
	width: 100%;
	margin: 0 auto;
	overflow: visible;
	background-color: var(--white-color);
	color: var(--main-color);
	font-size: 1.4;
	font-weight: 500;
	line-height: 1.7;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
}
p {
	font-size: clamp(1.5rem, 4vw, 1.6rem);
	font-weight: 500;
	line-height: 1.7;
}
h2 {
	font-size: clamp(2.3rem, 6.13vw, 3.3rem);
	font-weight: 600;
}
h3 {
	font-size: clamp(3rem, 8vw, 4rem);
	font-weight: 600;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
	color: var(--main-color);
	text-decoration: none;
}

hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

/* 画像の調整 */
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* iOSフォーム要素の初期化 */
input,
button,
textarea,
select {
	-webkit-appearance: none;
	appearance: none;
}

/* ==========================================================
   ユーティリティクラス
   ========================================================== */
.eng {
	font-family: 'segoe-ui', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 2px;
}

/* デバイスごとの表示切り替え（スマホファーストベース） */
@media (max-width: 1024px) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	.br-sp {
		display: block;
	}
	.br-pc {
		display: none;
	}
}
@media only screen and (min-width: 1025px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
	.br-sp {
		display: none;
	}
	.br-pc {
		display: block;
	}
}

/* ==========================================================
   ヘッダー
   ========================================================== */
/* ヘッダーアイコンサイズ調整 */
#header #name-and-logo img {
	width: 150px;
	height: 48px;
}

/* ==========================================================
   メインエリア・セクション共通
   ========================================================== */
.mainWrap,
.mainSection {
	display: block;
	width: 100%;
	margin: 0 auto;
}
/* タイトルボーダー */
.title {
	/* ここには文字のスタイル */
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: bold;
}

/* ここからは線のスタイル */
.title--border {
	display: flex;
	align-items: center;
}

.title--border:before,
.title--border:after {
	content: '';
	height: 1px;
	flex-grow: 1;
	background-color: #666;
}

.title--border:before {
	margin-right: 1rem;
}

.title--border:after {
	margin-left: 1rem;
}

/* hero Section */

.heroSection {
	background-color: var(--main-color);
	display: block;
	margin: 0 auto;
	width: 100%;
}
.heroSection {
	width: 100%;
	display: block;
	position: relative;
	padding-top: 125.37%;
}
.heroSection .images {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.heroSection .title {
	position: absolute;
	bottom: 6.4vw;
	left: 6.4vw;
	color: var(--titleFont-color);
	line-height: 1.2;
}
.heroSection .title h1.jp {
	font-size: clamp(2rem, 5.33vw, 3rem);
}
.heroSection .title h1.eng {
	font-size: clamp(4rem, 10.66vw, 6rem);
	font-weight: 800;
	letter-spacing: -0.01;
}
@media only screen and (min-width: 1025px) {
	.heroSection {
		width: 100%;
		display: block;
		position: relative;
		padding-top: 48.73%;
	}
	.heroSection .title {
		bottom: auto;
		left: auto;
		top: 50%;
		right: 10%;
		transform: translate(0, -50%);
	}
	.heroSection .title h1.jp {
		font-size: clamp(2rem, 1.95vw, 4rem);
	}
	.heroSection .title h1.eng {
		font-size: clamp(4rem, 3.9vw, 8rem);
	}
}
.leadSection {
	margin: var(--secMarg) auto;
	width: 91.46%;
	text-align: center;
}
.leadSection h2 {
	display: block;
	margin: 0 auto;
	width: 80%;
	margin-bottom: var(--leadBMarg);
}
.introSection {
	color: var(--white-color);
	background-color: var(--main-color);
	padding: var(--secMarg) 4.27vw;
	text-align: center;
}
.introSection h3 {
	width: 70%;
	margin: 0 auto var(--leadBMarg);
}
.introSection p {
	margin-top: var(--leadBMarg);
}
@media (min-width: 1025px) {
	.introSection .sizeAdj {
		width: 100%;
		max-width: 980px;
		margin: 0 auto;
	}
}

/* flex 基本設定	 */
.flexRowBlock {
	display: flex;
}
.flexColBlock {
	display: flex;
	flex-direction: column;
}
.prodFuncSection {
	margin: var(--secMarg) auto;
	width: 91.46%;
	text-align: center;
}
.prodFuncSection .flexRowBlock {
	flex-wrap: wrap;
	gap: 1.06%;
}
.prodFuncSection .flexRowBlock .flexColBlock {
	padding-top: var(--leadBMarg);
	width: calc(100% / 2 - 1.06%);
}
.prodFuncSection .flexParts img {
	width: 70%;
}
@media (min-width: 1025px) {
	.prodFuncSection .sizeAdj {
		width: 100%;
		max-width: 980px;
		margin: 0 auto;
	}
	.prodFuncSection .flexRowBlock .flexColBlock {
		padding-top: var(--leadBMarg);
		width: calc(100% / 4 - 1.06%);
	}
}

.howtoSection {
	color: var(--white-color);
	background-color: var(--main-color);
	padding: var(--secMarg) 4.27%;
	margin: 0 auto;
}
.howtoSection .flexColBlock {
	margin: var(--leadBMarg) auto 0;
	width: 60%;
}
.howtoSection .flexRowBlock {
	margin: 1rem auto 1rem 0;
	justify-self: flex-start;
	align-items: center;
}
.howtoSection .flexRowBlock img {
	width: 7%;
}
.howtoSection .flexRowBlock a,
.howtoSection .flexRowBlock a:link,
.howtoSection .flexRowBlock a:visited,
.howtoSection .flexRowBlock a:hover,
.howtoSection .flexRowBlock a:active,
.howtoSection .flexRowBlock a:focus {
	font-size: clamp(1.7rem, 4.53vw, 2.7rem);
	color: #fff;
	font-weight: 800;
	padding-left: 1rem;
}
/* ========== 追記：ただの文字をリンクのように見せる設定 ========== */
.scroll-link {
	cursor: pointer; /* マウスを乗せたら「指のマーク」にする */
	display: inline-block;
	width: 100%;
	height: 100%;
}
/* 元のaタグに当たっていたスタイルをspanにも適用する */
.howtoSection .flexRowBlock .scroll-link {
	font-size: clamp(1.7rem, 4.53vw, 2.7rem);
	color: #fff;
	font-weight: 800;
	padding-left: 1rem;
}
@media only screen and (min-width: 541px) {
	.howtoSection {
		padding: var(--secMarg) 8%;
	}
}

@media (min-width: 1025px) {
	.howtoSection .sizeAdj {
		width: 100%;
		max-width: 980px;
		margin: 0 auto;
	}
	.howtoSection .flexColBlock {
		width: 30%;
		min-width: 295px;
	}
}
.caseSection {
	margin: var(--leadBMarg) auto;
}
.caseSection .flexRowBlock {
	margin: 0 auto 0 1rem;
}
.caseSection .flexRowBlock img {
	width: 22px;
}
.caseSection .flexRowBlock h5 {
	font-size: 2.6rem;
	font-weight: 800;
	padding-left: 1rem;
	letter-spacing: -0.02rem;
}
.caseSection .imgBlock {
	width: 78.93%;
}
.caseSection.case1 .imgBlock.img1,
.caseSection.case1 .imgBlock.img3,
.caseSection.case3 .imgBlock.img1,
.caseSection.case3 .imgBlock.img3 {
	margin: 0 auto 4.26% 0;
}
.caseSection.case1 .imgBlock.img2,
.caseSection.case3 .imgBlock.img2 {
	margin: 0 0 4.26% auto;
}
.caseSection.case2 .imgBlock.img1,
.caseSection.case2 .imgBlock.img3 {
	margin: 0 0 4.26% auto;
}
.caseSection.case2 .imgBlock.img2 {
	margin: 0 auto 4.26% 0;
}
@media (min-width: 1025px) {
	.caseSection {
		margin: 0 auto var(--secMarg);
	}
	.caseSection.case1 {
		width: 100%;
		height: 0;
		position: relative;
		padding-top: 94.16%; /*1808*/

		margin-bottom: -2%;
	}
	.caseSection .flexRowBlock img {
		width: 40px;
	}
	.caseSection .flexRowBlock h5 {
		font-size: 3.6rem;
	}
	.caseSection.case1 .flexRowBlock {
		position: absolute;
		top: 8.07%;
		left: 11.66%;
	}
	.caseSection.case1 .imgBlock.img1 {
		position: absolute;
		width: 37.65%;
		top: 3.98%;
		right: 11.14%;
	}
	.caseSection.case1 .imgBlock.img2 {
		position: absolute;
		width: 41.66%;
		top: 18.36%;
		left: 11.66%;
	}
	.caseSection.case1 .imgBlock.img3 {
		position: absolute;
		width: 29.89%;
		top: 52.65%;
		right: 19.09%;
	}
	.caseSection.case1 .creditFlex {
		display: flex;
		width: 32%;
		min-width: 430px;
		position: absolute;
		top: 86.09%;
		left: 11.66%;
		z-index: 10;
	}

	/* case2 */
	.caseSection.case2 {
		width: 100%;
		height: 0;
		position: relative;
		padding-top: 91.87%; /*1764*/
		margin-bottom: -8%;
	}

	.caseSection.case2 .flexRowBlock {
		position: absolute;
		top: 12.39%;
		left: 11.66%;
	}
	.caseSection.case2 .imgBlock.img1 {
		position: absolute;
		width: 29.47%;
		top: 23.93%;
		left: 19.47%;
	}
	.caseSection.case2 .imgBlock.img2 {
		position: absolute;
		width: 41.66%;
		top: 18.36%;
		right: 10%;
	}
	.caseSection.case2 .imgBlock.img3 {
		position: absolute;
		width: 22.91%;
		top: 62.49%;
		left: 27.89%;
	}
	.caseSection.case2 .creditFlex {
		display: flex;
		width: 32%;
		min-width: 430px;
		position: absolute;
		top: 78.62%;
		left: 55.02%;
	}
	/* case3 */
	.caseSection.case3 {
		width: 100%;
		height: 0;
		position: relative;
		padding-top: 91.3%; /*1753*/
	}

	.caseSection.case3 .flexRowBlock {
		position: absolute;
		top: 8.39%;
		left: 11.66%;
	}
	.caseSection.case3 .imgBlock.img1 {
		position: absolute;
		width: 37.86%;
		top: 11.23%;
		right: 10.67%;
	}
	.caseSection.case3 .imgBlock.img2 {
		position: absolute;
		width: 36.14%;
		top: 20.3%;
		left: 16.66%;
	}
	.caseSection.case3 .imgBlock.img3 {
		position: absolute;
		width: 27.44%;
		top: 60.43%;
		right: 27.14%;
	}
	.caseSection.case3 .creditFlex {
		display: flex;
		width: 32%;
		min-width: 430px;
		position: absolute;
		top: 74.52%;
		right: 51.9%;
	}
}

/* case フェードイン
*/
/* ==========================================================
   スクロールアニメーション（フェードアップ）
   ========================================================== */

/* 1. 最初は隠しておく状態（透明 ＆ 少し下にずらす） */
.fadeUpInit {
	opacity: 0; /* 完全に透明にする */
	transform: translateY(40px); /* 本来の位置から下に40pxずらして配置する */
	transition:
		opacity 0.8s ease-out,
		transform 0.8s ease-out; /* 0.8秒かけて滑らかに変化させる設定 */
}

/* 2. 合図が出たあとの状態（はっきり見える ＆ 元の位置に戻る） */
.fadeUpActive {
	opacity: 1; /* はっきり見える状態にする */
	transform: translateY(0); /* ずらしていたのを本来の位置（0）に戻す */
}
/* creditBlock */
.creditBlock {
	width: 100%;
	padding: 1rem;
}
.creditBlock h6 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02rem;
	padding-bottom: 1%;
}
.creditBox {
	line-height: 1;
	padding-bottom: 2%;
}
.creditBox p.itemName {
	font-size: 1.4rem;
}
.creditBox p.itemName span {
	display: none;
}
.creditBox p.itemPrice {
	font-size: 1.2rem;
}
.creditBox a.buyBtn {
	display: inline-block;
	width: 100%;
	max-width: 84px;
	color: #fff;
	font-size: 1.4rem;
	background-color: var(--main-color);
	margin: 2% auto;
	text-align: center;
	padding: 4px 0;
}
@media (min-width: 1025px) {
	.creditBox p.itemName {
		font-size: 1.6rem;
	}
	.creditBox p.itemName span {
		display: inline-block !important;
	}
	.creditBox p.itemPrice {
		font-size: 1.4rem;
	}
}
.prodLineSection {
	margin: var(--secMarg) auto;
	width: 91.46%;
	text-align: center;
}
.prodLineSection h3 {
	margin-bottom: var(--leadBMarg);
}
.prodLineSection .flexRowBlock {
	gap: 4.26%;
}
@media (min-width: 1025px) {
	.prodLineSection {
		max-width: 980px;
	}
	.prodLineSection > .flexRowBlock {
		justify-content: center;
		align-items: center;
	}
	.prodLineSection > .flexRowBlock > .flexColBlock {
		width: calc(100% / 2 - 4.26%);
	}
}

.colorVar {
	display: flex;
	font-size: 16px;
}
.colorVar .colorIcon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.colorVar .colorIcon.iconWhite {
	font-size: 19px;
	padding-bottom: 2px;
}
.colorVar .colorIcon.iconGray {
	color: #4b4a45;
	padding-right: 2px;
}
.colorVar .colorIcon.iconBeige {
	color: #9a8776;
	padding-right: 2px;
}
.colorVar .colorIcon.iconBlack {
	color: #000;
}

.prodLineSection > .flexColBlock > .flexColBlock {
	width: 85.33%;
	margin: 0 auto;
}
.prodLineSection > .flexColBlock > .flexColBlock.item01 {
	margin: 0 auto var(--leadBMarg);
}
.prodLineSection .creditBlock {
	padding: 0;
}
.prodLineSection .creditBlock .creditBox {
	text-align: left;
}

/* ctaSection */
.ctaSection {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ctaSection a.ctaBtn {
	display: inline-block;
	width: 100%;
	max-width: 320px;
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 2px 0;
	font-size: 1.6rem;
	margin: 0 auto;
	text-align: center;
	font-weight: 600;
}
@media (min-width: 1025px) {
	.ctaSection {
		max-width: 980px;
		flex-direction: row;
		margin: 0 auto;
		margin-bottom: var(--secMarg);
	}
}
/* ==========================================================
   トップに戻る フローティングボタン
   ========================================================== */
.float-button__wrap {
	display: none; /*最初は隠す*/
	position: fixed;
	right: 10px; /* 20250410フッター修正 */
	bottom: 16px;
	z-index: 10000;
	width: 90px;
	height: auto;
}

.float-button__wrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
@media only screen and (min-width: 1025px) {
}
