@charset "UTF-8";
/* CSS Document */

@import url(reset.css);

html { scroll-behavior: smooth; }
img { vertical-align: bottom; }

:root {
	--logo_orange: rgb(255, 130, 50);
	--shmt_green: #5ab95a;
	--shmt_accent: #ea544f;
}



::selection { background: var(--shmt_accent); color: #fff; }



body {
	font-family: "Kiwi Maru", serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1;
	background-color: #fff;
}

img.auto { width: 100%; height: auto; }

@keyframes objApr {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

a { transition: .3s; }

/* Google Fonts */
/*
.kiwi-maru-light {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

.luckiest-guy-regular {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
}
*/

.txtB { font-weight: 700; }

/* SP用記述*/
.br4pc { display: none; }
.forPC { display: none; }

/* ロゴ */
.logo_hrzntl {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 3%;
	max-width: 420px;
	margin: 0 auto;
}
.logo_hrzntl .shmt { width: 47%; }
.logo_hrzntl .cross {
	width: 8%;
	max-width: 60px;
	position: relative;
}
.logo_hrzntl .cross::before,
.logo_hrzntl .cross::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	border-radius: 1px;
	width: 100%;
	height: 3px;
}
.logo_hrzntl .cross::before {
	rotate: 45deg;
	background-color: #fff;
}
.logo_hrzntl .cross.blk::before { background-color: #000; }
.logo_hrzntl .cross::after {
	rotate: -45deg;
	background-color: var(--logo_orange);
}
.logo_hrzntl .motor { width: 39%; }

/* 言語切替ボタン */
p.langbtn {
	position: fixed;
	z-index: 500;
	right: 10px;
	top: 15px;
	transition: .3s;
	translate: 0 13.75vw;
	backdrop-filter: blur(10px);
}
/* iPad対応 */
@media only screen and (min-width:480px) {
	p.langbtn { translate: 0 64px; }
}
@media only screen and (min-width:720px) {
	p.langbtn {
		translate: 0 0;
		top: 20px;
	}
}
p.langbtn a {
	display: block;
	border: solid 1px var(--logo_orange);
	color: var(--logo_orange);
	background-color: rgba(255, 255, 255, .9);
	text-decoration: none;
  font-family: "Luckiest Guy", cursive;
	font-weight: 400;
	font-size: 18px;
	padding: 8px 21px 3px 12px;
	position: relative;
}
p.langbtn a::after { 
	content: "";
	display: block;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translate(0, -50%);
	width: 9px;
	height: 9px;
	border-right: solid 2px var(--logo_orange);
	border-bottom: solid 2px var(--logo_orange);
	border-radius: 2px;
	transform: translate(0, -50%) rotate(-45deg);
}
/* 英語 */
#en p.langbtn a {
	font-family: "Kiwi Maru", serif;
	font-size: 15px;
	font-weight: 500;
	padding: 6px 21px 7px 12px;
}

/* ヘッダ */
header.scrl {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 500;
	padding: 12px 7vw;
	background-color: rgba(0, 0, 0, .7);
	backdrop-filter: blur(10px);
	transition: .3s;
}
header.scrl.hide { translate: 0 -101%; }
header.scrl.hide + p.langbtn { translate: 0 0; }



/* コンテンツ部 */
main {
	padding-top: 100dvh;
	position: relative;
}
.wrapper { padding: 0 4vw; }

.txt_white_shadow {
	color: #000;
	text-shadow: 0px 1px 1px #fff, 1px 0px 1px #fff, 0px -1px 1px #fff, -1px 0px 1px #fff, 1px 1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff, -1px -1px 1px #fff;
}
.txt_orange_shadow {
	text-shadow: 0px 2px 1px var(--logo_orange), 2px 0px 1px var(--logo_orange), 0px -2px 1px var(--logo_orange), -2px 0px 1px var(--logo_orange), 2px 2px 1px var(--logo_orange), 2px -2px 1px var(--logo_orange), -2px 2px 1px var(--logo_orange), -2px -2px 1px var(--logo_orange);
}
.txt_green_shadow {
	text-shadow: 0px 1px 9px var(--shmt_green), 1px 0px 9px var(--shmt_green), 0px -1px 9px var(--shmt_green), -1px 0px 9px var(--shmt_green), 1px 1px 9px var(--shmt_green), 1px -1px 9px var(--shmt_green), -1px 1px 9px var(--shmt_green), -1px -1px 9px var(--shmt_green);
}
.spec_bg {
	background-color: rgba(255, 255, 255, 1);
	padding: 20px 20px 24px 20px;
}
.spec_bg .spec_ttl {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}
.spec_bg .spec_cap {
	margin-top: 15px;
	line-height: 1.6;
}
/* marker */
.spec_bg .spec_cap span.txtLB {
	font-size: 132%;
	font-weight: 700;
	line-height: 1.5;
	padding: 0 3px;
	display: inline-block;
	background-repeat: repeat-x;
	background-size: 200% 100%;
	background-position: 0 .9em;
	transition: all 1.6s ease;
	background-image: linear-gradient(to left, var(--logo_orange) 50%, transparent 50%);
}
.spec_bg .spec_cap span.marker { background-position-x: -100%; }

.watch_note {
	color: #fff;
	width: 100%;
	padding: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	font-size: 11px;
}
.watch_note p {
	line-height: 1.35;
	text-align: left;
	text-indent: -1.35em;
	margin-left: 1.35em;
}
/* 英語 */
#en .watch_note p {
	text-indent: -.6em;
	margin-left: .6em;
}

/* タイトル・メイン画像 */
.kv {
	min-height: 100dvh;
	position: fixed;
	inset: 0;
	background: url(../images/main_bg.jpg) center center / cover no-repeat;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 80px 0;
}
.kv .watch {
	width: 100%;
	animation: objApr 1.2s .5s both;
}
.kv .watch .inner {
	width: 60vw;
	max-width: 320px;
	margin: 0 auto;
}
.kv .watch .watch_note {
	position: static;
	background: none;
	padding: 0;
	margin-top: 10px;
}
.kv .watch .watch_note p {
	text-align: center;
	text-indent: 0;
	margin-left: 0;
}
/* 英語 */
#en .kv .watch .watch_note {
		padding: 0 5px;
		text-align: center;
}
#en .kv .watch .watch_note p {
	display: inline-block;
	text-align: left;
	text-indent: -1.35em;
	margin-left: 1.35em;
}

.kv .pic { position: absolute; }
.kv .pic p { background: center center / cover no-repeat; }
.kv .pic.pic_l_1 {
	left: 0;
	top: 50%;
	translate: 0 calc(-50% - 21vh);
	animation: picFromLeft 1.2s .3s both;
}
.kv .pic.pic_l_1 p {
	width: 48vw;
	height: 48vw;
	background-image: url(../images/main_pic_1.jpg);
	background-position: right center;
}
.kv .pic.pic_l_2 {
	left: 0;
	top: 50%;
	translate: 0 calc(-50% + 21vh);
	animation: picFromLeft 1.2s .5s both;
}
.kv .pic.pic_l_2 p {
	width: 48vw;
	height: 48vw;
	background-image: url(../images/main_pic_2.jpg);
	background-position: right center;
}

.kv .pic.pic_r_1 {
	right: 0;
	top: 50%;
	translate: 0 calc(-50% - 40vw);
	animation: picFromRight 1.2s .3s both;
}
.kv .pic.pic_r_1 p {
	width: 48vw;
	height: 36vw;
	background-image: url(../images/main_pic_3.jpg);
}
.kv .pic.pic_r_2 {
	right: 0;
	top: 50%;
	translate: 0 -50%;
	animation: picFromRight 1.2s .4s both;
}
.kv .pic.pic_r_2 p {
	width: 48vw;
	height: 36vw;
	background-image: url(../images/main_pic_4.jpg);
}
.kv .pic.pic_r_3 {
	right: 0;
	top: 50%;
	translate: 0 calc(-50% + 40vw);
	animation: picFromRight 1.2s .5s both;
}
.kv .pic.pic_r_3 p {
	width: 48vw;
	height: 36vw;
	background-image: url(../images/main_pic_5.jpg);
}

@keyframes picFromLeft {
	0% {
		opacity: 0;
		transform: translate(-20vw, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
@keyframes picFromRight {
	0% {
		opacity: 0;
		transform: translate(20vw, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/* About Watch */
.about_sec .bg,
.preorder .bg {
	position: sticky;
	top: 0;
	height: 100dvh;
	background: #fff url(../images/sec_1_bg_map.svg) 75% 0 / 120vw auto repeat-y;
	display: flex;
	justify-content: center;
	padding-top: 40px;
}
.about_sec .bg .bg2,
.preorder .bg .bg2 { width: 80vw; }

.about_sec .wrapper {
	margin: -100dvh auto 0;
	padding-top: 30px;
	padding-bottom: 30px;
	min-height: 100dvh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.about_sec .wrapper .inner {
	position: relative;
	width: 100%;
}
.about_sec .sec_ttl {
	text-align: center;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.35;
	color: #fff;
}
.about_sec .watch_pic_area {
	margin-top: 24px;
	width: 50vw;
	translate: -2vw 0;
}
.about_sec .watch_pic_area .watch_pic {
	margin: 0 auto;
	max-width: 320px;
}
.about_sec .watch_note {
	position: static;
	background: none;
	padding: 0;
	margin-top: 10px;
}
@media only screen and (min-width:670px) {
	.about_sec .watch_note p {
		text-align: center;
		text-indent: 0;
		margin-left: 0;
	}
}

.about_sec .chara {
	position: absolute;
	top: 150px;
	left: 56%;
	width: 52vw;
	max-width: 360px;
	margin: 0 auto;
}
.about_sec .spec_bg {
	margin: 24px auto 0;
	background: url(../images/sec_1_box_bg.png) center center / 100% 100% no-repeat;
	border-radius: 6px;
	padding: 36px 36px 30px;
	max-width: 640px;
}
.about_sec .spec_bg .spec_ttl {
	font-family: "Luckiest Guy", cursive;
	font-weight: 400;
	font-size: 42px;
	color: var(--logo_orange);
	letter-spacing: 0;
	padding-left: 0;
	line-height: 0.75
}
.about_sec .spec_bg .spec_cap { margin-top: 20px; }
/* 英語 */
#en .about_sec .spec_bg .spec_ttl { font-size: 34px; }


/* モデル紹介 */
.watch_sec .bg {
	position: sticky;
	top: 0;
	height: 100dvh;
	background: url(../images/spec_bg.jpg) center center / cover no-repeat;
	overflow: hidden;
}
.watch_sec .cont_wrap {
	margin-top: -100dvh;
	padding: 24px 0;
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
}
.watch_sec .wrapper {
	padding: 0 6vw;
	position: relative;
	z-index: 50;
	width: 100%;
}
.watch_sec .sec_ttl {
	font-weight: 500;
	font-size: 32px;
}
.watch_sec .sec_ttl .inner {
	display: inline-block;
	position: relative;
	max-width: calc(88vw - 56px);
}
.watch_sec .sec_ttl .inner::after {
	content: "";
	display: block;
	width: 56px;
	height: 45px;
	background: url(../images/shumatsu_silhouette.svg) center bottom / contain no-repeat;
	position: absolute;
	right: -8px;
	bottom: -3px;
	translate: 100% 0;
}
/* 英語 */
#en .watch_sec .sec_ttl { font-size: 27px; }
#en .watch_sec .sec_ttl::after {
	right: 0;
	bottom: -2px;
}

.watch_sec .watch_cont_wrap {
	margin: 24px auto 0;
	max-width: 480px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	position: relative;
	border-radius: 5px;
	padding-bottom: 5px;
}
.watch_sec .watch_cont_wrap .smtgrm_ttl {
	padding: 16px 24px;
	margin: 0 auto;
	max-width: 400px;
}
.watch_sec .pic_slider_wrap { position: relative; }
.watch_sec .pic_slider_wrap .slick-prev,
.watch_sec .pic_slider_wrap .slick-next { background-color: var(--logo_orange); }
.watch_sec .watch_cont_wrap .icons {
	padding: 18px 0 0 20px;
	display: flex;
	gap: 0 4px;
}
.watch_sec .watch_cont_wrap .icons li { width: 20px; }


/* プレオーダー */
.preorder .cont_wrap {
	margin-top: -100vh;
	padding: 36px 0;
	position: relative;
}
.preorder .sec_ttl {
	font-family: "Luckiest Guy", cursive;
	font-weight: 400;
	font-size: 48px;
	color: var(--logo_orange);
	text-align: center;
}
/* スペック表 */
.preorder .spec_table {
	margin-top: 20px;
	display: grid;
	grid-template-columns: 90px auto;
	row-gap: 1px;
}
.preorder .spec_table + .spec_table { margin-top: 1px; }
.preorder .spec_table .ttl,
.preorder .spec_table .spec {
	font-size: 13px;
	padding: 4px 8px 2px;
	line-height: 1.3;
}
.preorder .spec_table .ttl {
	background-color: rgba(0, 0, 0, .9);
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	text-align: right;
}
.preorder .spec_table .spec {
	color: #000;
	background-color: rgba(255, 255, 255, .9);
}
.preorder .spec_table .spec span { font-size: 90%; }

/* プレオーダー */
.preorder .watches_sec { margin: 48px auto 0; }

.preorder .watch_info_area {
	margin-top: 20px;
	text-align: center;
}
.preorder .watch_info_area .pic {
	position: relative;
	margin: 0 auto;
	width: 56vw;
	max-width: 270px;
	padding-right: min(3.9vw, 19px);
}
.preorder .watch_info_area .watch_info.spec_bg {
	background-color: rgba(255, 255, 255, .6);
	padding: 12px 8px 16px;
	backdrop-filter: blur(10px);
	display: inline-block;
	margin-top: 6px;
	border-width: 3px;
	border-radius: 8px;
	border: solid 2px var(--logo_orange);
}
.preorder .watch_info_area .watch_info .watch_name {
	line-height: 1.35;
	font-weight: 700;
	border-bottom: dashed #ccc 1px;
	padding: 0 20px 10px;
	margin-bottom: 10px;
}
.preorder .watch_info_area .watch_info .watch_name h2 {
	font-size: 14px;
	font-weight: 500;
	color: var(--logo_orange);
}
.preorder .watch_info_area .watch_info .price span {
	font-size: 135%;
	font-weight: 700;
	margin: 0 2px;
	color: var(--logo_orange);
}
.preorder .watch_info_area .watch_info .limit { margin-top: 10px; }
.preorder .watch_info_area .watch_info .limit span {
	font-size: 120%;
	font-weight: 700;
	margin: 0 2px;
	color: var(--logo_orange);
}

.preorder .watches_sec .watch_note {
	position: static;
	background: none;
	padding: 0;
	margin-top: 10px;
	text-align: center;
	text-shadow: 0px 1px 1px #000, 1px 0px 1px #000, 0px -1px 1px #000, -1px 0px 1px #000, 1px 1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, -1px -1px 1px #000;
}
.preorder .btn_area.spec_bg {
	background-color: rgba(0, 0, 0, .5);
	padding: 20px 15px;
	margin: 24px auto 0;
	border: solid 2px var(--logo_orange);
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 0 4px var(--logo_orange) inset;
}
.preorder .btn_area.kentex_only { max-width: 300px; }
.preorder .btn_area .lead {
	font-weight: 500;
	font-size: 21px;
	color: #fff;
}
.preorder .btn_area .btns {
	margin-top: 16px;
	display: flex;
	column-gap: 10px;
}
.preorder .btn_area .btns li { flex: 1; }
.preorder .btn_area .btns li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	border-radius: 4px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.preorder .btn_area .btns li.kentex a {
	background-color: #002C5D;
	padding: 16px 20px;
}
.preorder .btn_area .btns li.motor a {
	background-color: #000;
	color: #fff;
	padding: 6px 8px 8px;
}
.preorder .btn_area .btns li.motor a .copy { font-size: 13px; }
.preorder .btn_area .btns li.motor a .dealer { margin-top: 5px; }
.preorder .btn_area .btns li.motor a .dealer .shop { margin-top: 5px; }
.preorder .btn_area .btns li.animate a {
	background-color: #fff;
	padding: 10px;
}



/* フッタ */
footer.page_foot {
	position: relative;
	color: #fff;
	background-color: #000;
	text-align: center;
}
footer.page_foot ul.sns{
	padding: 16px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
footer.page_foot ul.sns li.instagram { width: 24px; }
footer.page_foot ul.sns li.x { width: 22px; }
footer.page_foot ul.sns li.youtube { width: 34px; }
footer.page_foot ul.sns li a { display: block; }
footer.page_foot .copy_area {
	border-top: 1px solid rgba(255, 255, 255, .6);
	padding: 10px 5px;
}
footer.page_foot .copy {
	font-size: 12px;
	line-height: 1.6;
}





@media only screen and (min-width:960px) {
	/* PC用記述 */
	a[href^="tel:"] { pointer-events: none; }
	a.fade:hover { opacity: .6; }
	
	.br4sp { display: none; }
	.br4pc { display: inline; }
	.forSP { display: none; }
	.forPC { display: block; }

	.wrapper {
		padding: 0 20px;
		max-width: 1200px;
		margin: 0 auto;
	}

	/* ロゴ */
	.logo_hrzntl { max-width: 480px; }
	
	/* 言語切替ボタン */
	p.langbtn {
		right: 20px;
		top: 23px;
	}
	p.langbtn a {
		font-size: 24px;
		padding:10px 28px 3px 16px;
	}
	p.langbtn a::after { 
		right: 10px;
		width: 12px;
		height: 12px;
	}
	p.langbtn a:hover { background-color: rgba(255, 255, 255, .1); }
	/* 英語 */
	#en p.langbtn a {
		font-size: 21px;
		padding: 6px 28px 8px 16px;
	}

	/* ヘッダ */
	header.scrl { padding: 16px 20px; }

	/* コンテンツ部 */
	.wrapper {
		padding: 0 20px;
		max-width: 1120px;
		margin: 0 auto;
	}

	/* タイトル・メイン画像 */
	.kv {
		padding: 80px 0 20px;
		min-height: 740px;
	}

	.kv .pic.pic_l_1 {
		left: 50%;
		translate: calc(-100% - 50px) calc(-50% - 180px);
	}
	.kv .pic.pic_l_1 p {
		width: 330px;
		height: 230px;
	}
	.kv .pic.pic_l_2 {
		left: 50%;
		background-position: center center;
		translate: calc(-100% - 50px) calc(-50% + 128px);
	}
	.kv .pic.pic_l_2 p {
		width: 500px;
		height: 320px;
	}
	.kv .pic.pic_r_1 {
		right: auto;
		left: 50%;
		translate: 110px calc(-50% - 200px);
	}
	.kv .pic.pic_r_1 p {
		width: 272px;
		height: 194px;
	}
	.kv .pic.pic_r_2 {
		right: auto;
		left: 50%;
		translate: 160px calc(-50% + 5px);
	}
	.kv .pic.pic_r_2 p {
		width: 315px;
		height: 217px;
	}
	.kv .pic.pic_r_3 {
		right: auto;
		left: 50%;
		translate: 64px calc(-50% + 249px);
	}
	.kv .pic.pic_r_3 p {
		width: 384px;
		height: 271px;
	}

	/* About Watch */
	.about_sec .bg .bg2,
	.preorder .bg .bg2 { max-width: 960px; }

	.about_sec .sec_ttl { font-size: 40px; }
	.about_sec .about_cont_wrap {
		margin-top: 20px;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		width: 100%;
	}
	.about_sec .watch_pic_area {
		margin-top: 0;
		width: 360px;
		translate: 0;
		position: relative;
		z-index: 100;
	}
	.about_sec .watch_note p { text-align: center; }
	/* 英語 */
	#en .about_sec .watch_note p {
		text-align: left;
		text-indent: -1.35em;
		margin-left: 1.35em;
	}

	.about_sec .chara {
		top: 50%;
		left: 50%;
		max-width: 300px;
		translate: calc(-50% - 60px) calc(-50% + 36px);
	}
	.about_sec .spec_bg {
		margin: 120px 0 0 auto;
		padding: 36px 36px 30px;
		width: 44.4%;
		/* max-width: 480px; */
	}
	/* 英語 */
	#en .about_sec .spec_bg .spec_ttl { font-size: 42px; }

	/* モデル紹介 */
	.watch_sec .sec_ttl { font-size: 40px; }
	.watch_sec .sec_ttl .inner::after {
		width: 64px;
		height: 50px;
	}
	/* 英語 */
	#en .watch_sec .sec_ttl { font-size: 40px; }

	.watch_sec .watch_cont_wrap {
		margin-top: 27px;
		max-width: initial;
		display: flex;
		padding-bottom: 0;
	}

	.watch_sec .watch_cont_wrap .smtgrm_ttl {
		padding: 0;
		width: 400px;
		position: absolute;
		top: 32px;
		left: 75%;
		translate: -50% 0;
	}
	.watch_sec .pic_slider_wrap { width: 50%; }
	.watch_sec .pic_slider_wrap .watch_note {
		border-radius: 0 0 0 5px;
		overflow: hidden;
	}
	.watch_sec .pic_slider_wrap .pic_slider li {
		border-radius: 5px 0 0 5px;
		overflow: hidden;
	}
	.watch_sec .txt_slider_wrap {
		padding-top: 108px;
		width: 50%;
		border-radius: 0 5px 5px 0;
		overflow: hidden;
	}
	.watch_sec .txt_slider_wrap .txt_slider { border-top: solid 1px #000; }
	.watch_sec .txt_slider_wrap .txt_slider .spec_bg { padding: 30px 20px 0 72px; }

	.watch_sec .watch_cont_wrap .icons {
		padding: 0;

		position: absolute;
		bottom: 20px;
		left: calc(50% + 72px);
		z-index: 1000;
	}

	/* プレオーダー */
	.preorder .cont_wrap { padding: 60px 0 48px; }
	.preorder .sec_ttl { font-size: 60px; }

	/* スペック表 */
	.preorder .spec_table {
		margin-top: 36px;
		width: 100%;
		grid-template-columns: 1fr 5fr;
	}
	.preorder .spec_table.clms4 { grid-template-columns: 1fr 2fr 1fr 2fr; }
	.preorder .spec_table .ttl {
		justify-content: center;
		text-align: center;
	}
	.preorder .spec_table .ttl,
	.preorder .spec_table .spec {
		font-size: 15px;
		padding: 8px 20px;
	}

	/* プレオーダー */
	.preorder .watches_sec {
		margin-top: 60px;
		max-width: 640px;
		position: relative;
	}
	.preorder .watch_info_area a { display: block; }
	.preorder .watch_info_area a .pic { transition: .3s; }
	.preorder .watch_info_area a:hover .pic { transform: scale(1.08); }
	.preorder .watch_info_area .watch_info.spec_bg {
		font-size: 16px;
		margin-top: 0;
		transition: .3s;

		position: absolute;
		left: 50%;
		top: 320px;
		translate: 150px 0;
	}
	.preorder .watch_info_area a:hover .watch_info { transform: scale(1.08); }
	.preorder .watch_info_area .watch_info .price span { font-size: 160%; }
	.preorder .watch_info_area .watch_info .limit span { font-size: 135%; }

	.preorder .btn_area {
		margin: 24px auto 0;
		padding: 27px 30px 24px;
		max-width: 640px;
	}
	.preorder .btn_area.kentex_only { max-width: 360px; }
	.preorder .btn_area .lead { font-size: 24px; }

	.preorder .btn_area .btns {
		margin-top: 24px;
		column-gap: 20px;
	}
	.preorder .btn_area .btns li.kentex a { padding: 24px 36px; }
	.preorder .btn_area .btns li.motor a { padding: 6px 8px 8px; }
	.preorder .btn_area .btns li.motor a .copy { font-size: 15px; }
	.preorder .btn_area .btns li.motor a .dealer {
		margin-top: 12px;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 0 6px;
	}
	.preorder .btn_area .btns li.motor a .dealer .logo { flex: 1; }
	.preorder .btn_area .btns li.motor a .dealer .shop {
		margin-top: 0;
		font-size: 16px;
		white-space: nowrap;
	}
	.preorder .btn_area .btns li.animate a { padding: 20px; }



	/* フッタ */
	footer.page_foot ul.sns{
		padding: 20px;
		justify-content: flex-end;
		column-gap: 48px;
	}
	footer.page_foot ul.sns li.instagram { width: 30px; }
	footer.page_foot ul.sns li.x { width: 26px; }
	footer.page_foot ul.sns li.youtube { width: 40px; }
	footer.page_foot .copy_area {
		padding: 90px 20px 10px;
		display: flex;
		justify-content: flex-end;
		column-gap: 12px;
	}





}
