@charset "utf-8";
/*@charset "UTF-8";     コメント */
/*css初期設定 start*/
html {
	font-size: 62.5%; /*文字標準*/
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
a {
	text-decoration: none !important; /*リンクデコレーションリセット*/
}
/*大きさの計算*/
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
body {
	width: 100%;
	margin: 0 auto;
	/*文字詰め*/
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	/*スマホ横向き時のフォントサイズリセット*/
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow: visible;
	font-size: clamp(14px, 3.73vw, 16px);
	line-height: 1.7;
	/* word-break: keep-all;
  overflow-wrap: anywhere; */
}

/*iOSフォーム要素の初期化*/
input,
button,
textarea,
select {
	-webkit-appearance: none;
	appearance: none;
}
/*画像の調整*/
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: bottom;
}

@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;
	}
}

#main-footer {
	background-color: #f6f6f6;
}
#copyright {
	font-size: 1.2rem;
}
#main-footer a {
	font-size: 1.2rem;
}
/*css初期設定 end*/
/*main start*/
body {
	background-color: #fff;
}
.mainWrap {
	display: block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	color: var(--colorBlack);
}
/* ========== メインビジュアル ========== */
/* =========================================================================
       1. CSS変数
========================================================================= */
:root {
	--colorWhite: #ffffff;
	--colorBlack: #1a2530;
	--fontEn: 'Montserrat', sans-serif;
	--fontJa: 'Noto Sans JP', sans-serif;
	--marginS1: 2%;
	--marginS2: 4%;
	--marginMiddle: 8%;
	--marginLarge: 16%;
}

h2,
h3,
h4,
a {
	font-family: var(--fontEn) var(--fontJa);
	font-weight: 500;
}
p {
	font-family: var(--fontJa) var(--fontEn);
	font-weight: 400;
	line-height: 1.7;
}
a.ctaBtn {
	display: block;
	/* width: 86.4%; */
	max-width: 340px;
	height: 50px;
	/* max-width: 428px; */
	border: solid 1px var(--colorBlack);
	font-size: clamp(2.2rem, 4.8vw, 1.8rem);
	font-weight: 700;
	font-family: var(--fontEn);
	color: var(--colorBlack);
	background-color: var(--colorWhite);
	margin: 8% auto 0;
	padding: 4px 0;
	text-align: center;

	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: 0.2s cubic-bezier(0.25, 0, 0.55, 1);
}
a.ctaBtn:active {
	background: var(--colorBlack);
	color: var(--colorWhite);
}

@media (any-hover: hover) {
	a.ctaBtn::after {
		background: var(--colorBlack);
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 100%;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: 0.2s cubic-bezier(0.25, 0, 0.55, 1);
		z-index: -1;
	}
	a.ctaBtn:hover {
		color: var(--colorWhite);
	}
	a.ctaBtn:hover::after {
		transform: scale(1, 1);
	}
}

.flexBox,
.flexColumn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flexItem {
	max-width: 100%;
	width: 100%;
}
.container {
	max-width: 1540px;
	width: 90%;
	margin-inline: auto;
}
.bold {
	font-weight: 700;
}
.inline-block {
	display: inline-block;
}
.section {
	margin-bottom: var(--marginLarge);
}
/* =========================================================================
    2. HEROセクション
========================================================================= */
.heroSec {
	width: 100%;
	display: block;
	height: 0;
	padding-top: 176%; /*height:1584px*/
	position: relative;
	overflow: hidden;
	background-color: #f4f6f9;
}
.heroSec > * {
	position: absolute;
}

.heroSec .bgImg {
	width: 100%;
	top: 0;
	left: 0;
	transform: scale(1);
	transition: transform 1.5s ease-out;
}
.heroSec.isLoaded .bgImg {
	transform: scale(1.1);
}
.heroSec .logoImg {
	max-width: 500px;
	width: 77.33%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 1s ease-out 1.5s;
}
.heroSec.isLoaded .logoImg {
	opacity: 1;
}
@media only screen and (min-width: 1025px) {
	.heroSec {
		padding-top: 47.39%; /*height:910px*/
	}
	.heroSec .logoImg {
		width: 21.61%;
	}
}

/*ヘッダーエリア*/
.header {
	width: 100%;
}
.header {
	padding-bottom: 8px;
	margin-bottom: -8px;
}

.toplogo {
	width: 100%;
	height: 100px;
	text-align: center;
}
img.blandLogo {
	height: 80px;
	width: auto;
	margin: 10px;
}
/* トップに戻るボタン */
.back-to-top {
	display: none;
	position: fixed;
	right: 5%;
	bottom: 5%;
	color: #fff;
	padding: 2rem;
	border-radius: 50%;
	display: inline-block;
	text-decoration: none;
	z-index: 10000;
}
.back-to-top::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	width: 70px;
	height: 70px;
	background-color: #333;
	border-radius: 50%;
	z-index: -1;
}

/* ========== リードセクション ========== */
.leadSec {
	margin-bottom: var(--marginLarge);
	background-color: #f4f6f9;
}
.leadTxt {
	margin-bottom: var(--marginS2);
}
.sub {
	display: block;
}
.leadSec_inner {
	margin-bottom: var(--marginLarge);
	padding-bottom: var(--marginMiddle);
}
.leadSec h2 {
	margin: 0.8em 0;
	line-height: 1.4;
	font-size: clamp(2.4rem, 4vw, 3.5rem);
}
.iconImgBox {
	padding-bottom: var(--marginMiddle);
}
.iconTitle {
	margin: 0.5em 0;
	text-align: center;
	font-size: clamp(2.4rem, 3vw, 2.6rem);
	font-weight: 500;
}
.iconImgBox img {
	max-width: 120px;
	width: calc((100% - 32px) / 3);
}

.flexRow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.visualBlock {
	max-width: 500px;
	width: 100%;
	margin-bottom: var(--marginMiddle);
	margin-inline: auto;
	height: auto;
}
/* ========== プロダクトセクション ========== */

.prodTop .prodTitle {
	margin-bottom: var(--marginS1);
	line-height: 1.1;
	font-family: var(--fontEn);
	font-size: clamp(4.4rem, 4vw, 6.2rem);
}

.prodTop .prodTitle .heading {
	display: block;
	font-size: clamp(1.8rem, 2vw, 3.6rem);
}
.prodTop .prodTitle_sub {
	margin-bottom: var(--marginMiddle);
	line-height: 1.2;
	font-size: clamp(1.8rem, 2vw, 3.5rem);
}
.prodTop .prodImg.model {
	max-width: 670px;
	width: 100%;
	margin-bottom: var(--marginMiddle);
	margin-inline: auto;
}
.prodTop .flexBox {
	margin-bottom: var(--marginMiddle);
}
.prodTop .flexItem {
	margin-bottom: var(--marginMiddle);
}

.prodTop .prodDesc {
	max-width: 670px;
	margin-inline: auto;
}
.prodColor .prodColor_title {
	font-size: 3.1rem;
	font-family: var(--fontEn);
	font-weight: 600;
	text-align: center;
	color: #00a3c4;
}

.prodColor .prodColor_img {
	margin-top: 6%;
	margin-bottom: var(--marginLarge);
	position: relative;
}
.prodColor .swiper-wrapper {
	position: relative;
}

.prodColor .prodColor_name {
	width: 100%;
	position: absolute;
	left: 50%;
	bottom: -25%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.2;
	z-index: 100;
	display: block;
}
.prodColor .prodColor_name a {
	color: var(--colorBlack);
}
.flexBox.flexReverse {
	flex-direction: row-reverse;
}
/* クレジットボックス */
.creditBox {
	margin-bottom: var(--marginMiddle);
	text-align: center;
}
.prodSec a.ctaBtn {
	display: block;
	margin-inline: auto;
}
/* ========== エンドセクション ========== */
.endingSec {
	background-color: #f4f6f9;
}
.endingSec .logoImg {
	text-align: center;
}
.endingSec .logoImg img {
	max-width: 220px;
	width: 80%;
	margin: 0 auto;
	padding: 30% 0;
}

/* --- 初期状態 --- */
.endingSec_inner {
	opacity: 0;
	transform: translateY(5px);
	transition:
		opacity 1.5s ease-in-out,
		transform 2s ease-in-out;
}

/* --- スクロール到達時にJSで付与するクラス --- */
.endingSec_inner.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* swiper 基本設定 */
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-wrapper {
	max-width: 100%;
}
.swiper-slide {
	margin-top: 0;
}
.swiper-slide img {
	height: auto;
	width: 100%;
	margin-top: 0;
}

.swiper-button-next,
.swiper-button-prev {
	mix-blend-mode: difference;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 30px;
	color: #fff;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 1%;
	right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 1%;
	left: auto;
}

.swiper02 .swiper-wrapper {
	width: 100%;
	/* margin: 40px 0; */
	padding: 45px 0;
}

.swiper02 .swiper-slide {
	width: 100%;
	margin: 0 auto;
}
.swiper02 .swiper-slide-active img {
	opacity: 1;
	z-index: 1;
	transform: scale(1.5);
	/* スライドの大きさ調整 */
}
/* .swiper02.slideName .swiper-slide-active {
	transform: scale(1);
} */
.swiper02 .swiper-slide img {
	padding: 0 10%;
	/* width: 85%;
	margin: 0 auto; */
}

@media screen and (min-width: 768px) {
	.container {
		width: 85%;
	}
	.iconImgBox {
		padding-bottom: var(--marginS2);
	}
	a.ctaBtn {
		margin-top: var(--marginS2);
	}
	.prodColor .prodColor_img {
		margin-top: var(--marginMiddle);
	}
	.prodColor .prodColor_name {
		font-size: 1.6rem;
	}
	.creditBox {
		margin-bottom: var(--marginS2);
	}
	.prodColor .prodColor_name {
		bottom: -15%;
	}
	.endingSec .logoImg img {
		padding: 60% 0;
	}
}

@media screen and (min-width: 1025px) {
	.container {
		width: 95%;
	}
	.flexBox {
		flex-direction: row;
		align-items: center;
		gap: 4.5rem;
	}
	.flexOuter_pc {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: flex-start;
		gap: 3.5rem;
	}

	.leadSec {
		margin-bottom: var(--marginMiddle);
		/* padding: 10% 0 var(--marginS2); */
	}
	.leadSec_inner {
		margin-bottom: 0;
		padding: var(--marginMiddle) 0 var(--marginS2);
	}
	.leadSec .leadSec_pcLeft {
		max-width: 726px;
		width: 60%;
	}
	.leadSec h2 {
		margin-top: 0;
	}
	.iconImgBox .iconTitle {
		text-align: left;
	}
	a.ctaBtn,
	.iconImgBox {
		width: 90%;
		margin-left: 0;
		margin-right: auto;
	}
	.leadSec .flexItem.pc {
		max-width: 465px;
		width: 40%;
	}
	.iconImgBox img {
		width: calc((100% - 48px) / 5);
	}

	/* プロダクトセクション */
	.prodTop .prodTxt {
		max-width: 726px;
	}
	.prodTop .prodTitle_sub {
		margin-bottom: 1em;
	}
	/* .prodTop .prodDesc {
		max-width: 1450px;
		width: 90%;
	} */
	.prodTop .flexItem {
		width: 50%;
		margin-bottom: 0;
	}
	.prodTop .flexBox {
		margin-bottom: var(--marginMiddle);
	}
	.prodColor .prodColor_img {
		margin: var(--marginS2) auto var(--marginMiddle);
	}
	.prodColor .prodColor_name {
		font-size: 1.8rem;
	}
	.prodTop .prodImg.model {
		margin-bottom: 0;
	}
	.prodTop .prodDesc {
		margin-left: 0;
	}
	.creditBox {
		margin-bottom: var(--marginS1);
	}
	.creditBtn_block.pc {
		width: 100%;
		margin: var(--marginS2) 0 var(--marginMiddle);
	}
	a.ctaBtn {
		margin: 0;
	}
	.section {
		margin-bottom: var(--marginMiddle);
	}

	/* エンドセクション */
	.endingSec_inner {
		max-width: 80%;
		margin: 0 auto;
		padding: 150px 0;
	}
	.endingSec .visualImg {
		max-width: 726px;
		width: 60%;
	}
	.endingSec .logoImg img {
		padding: 30% 0;
	}

	.logoImg {
		width: 40%;
	}
}
