@charset "utf-8";

/* トップスライド */
#SlideZone{
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
}
#SlideView{
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style: 0;
}
#SlideView li{
	margin: 0;
	padding: 0;
	pointer-events: none;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity 0.4s 0.4s ease-out;
}
#SlideView li:first-child{
	position: relative;
}
#SlideView li[data-amtstat="selected"],
#SlideView li:focus-within{
	opacity: 1;
	pointer-events: auto;
	z-index: 5;
	transition: opacity 0.4s ease-out;
}
#SlideView li:focus-within{
	z-index: 6;
}
#SlideView li a{
	display: block;
	outline-offset: -3px;
}
/* #SlideView li a:after{
	content: "MORE";
	font-family: 'Avenir', 'Avenir Next', 'Century Gothic', 'Futura';
	position: absolute;
	bottom: 58px;
	line-height: 1.6;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #808080;
	color: #fff;
	padding: 0.5em 0;
	width: 7.4em;
	border: 1px solid #fff;
	opacity: 0;
	text-align: center;
	transition: background-color 0.1s ease-out, opacity 0.4s 0.6s ease-out;
}
#SlideView li a:hover:after{
	background-color: var(--keycolour);
} */
#SlideView li[data-amtstat="selected"] a:after,
#SlideView li:focus-within a:after{
	opacity: 1;
}
#SlideView li img{
	vertical-align: top;
	width: 100%;
	height: auto;
}

#SlideMenu{
	display: flex;
	justify-content: center;
	position: relative;
	margin: 3px;
	padding: 0;
	text-align: center;
	list-style: none;
	gap: 3px;
	z-index: 6;
}
#SlideMenu:before{
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: -8px;
	bottom: -8px;
}
#SlideMenu li{
	display: block;
	margin: 0;
	padding: 0;
	max-width: 20px;
	height: 3px;
	flex-grow: 1;
	
	font-size: 2px;
	color: transparent;
	cursor: pointer;
	position: relative;
	
	background-color: #eee;
}
#SlideMenu li[data-amtstat="selected"]{
	background-color: #999;
}
#SlideMenu li::after{
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: -8px;
	bottom: -8px;
	background-color: inherit;
	transition: opacity 0.2s ease-out;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset, 0 0 0 3px #fff;
}
.mouseUI #SlideMenu:hover li::after,
.mouseUI #SlideMenu li:hover::after{
	opacity: 1;
}

#PrevButton,
#NextButton{
	display: none;
	position: absolute;
	top: 50%;
	left: 0;
	color: transparent;
	border-radius: 0 5px 5px 0;
	/*width: 60px;
	height: 160px;*/
		width: 40px;
		height: 106px;
	margin: -80px 0 0;
	
	background-color: rgba(0,0,0,0.3);
	background-image: url(top/arrowleft.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
#NextButton{
	right: 0;
	left: auto;
	border-radius: 5px 0 0 5px;
	background-image: url(top/arrowright.png);
}
.mouseUI #PrevButton:hover,
.mouseUI #NextButton:hover{
	background-color: rgba(0,0,0,0.35);
}
.mouseUI #PrevButton:active,
.mouseUI #NextButton:active{
	background-color: rgba(0,0,0,0.6);
}
@media (max-width:800px){
	#PrevButton,
	#NextButton{
		width: 20px;
		height: 53px;
		margin: -27px 0 0;
	}
}


/* テストモード表示 */
#TestModeKey{
	display: block;
	position: absolute;
	top: 1em;
	left: 10%;
	right: 10%;
	text-align: center;
	opacity: 0;
	z-index: 100;
	
	-webkit-transition: all 2s 6s ease-out;
	transition: all 2s 6s ease-out;
}
.loading #TestModeKey{
	opacity: 1;
}
#TestModeKey span{
	display: inline-block;
	vertical-align: top;
	background-color: #fff;
	padding: 0.6em;
	font-weight: bold;
	content: #222;
	border-radius: 6px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.4);
	text-align: left;
}













/* セクション共通 */
.topsections{
	padding: 18px;
}
.topsections h2{
	font-size: 1em;
	line-height: 1.3;
	font-weight: normal;
	margin: 6px auto 12px;
	text-align: center;
	width: fit-content;
	min-width: 10em;
}
.topsections h2 span:lang(en){
	display: block;
	font-size: 1.333333333333333em;
	border-bottom: 1px solid #808080;
	line-height: 1.25;
	margin: 0 auto 0.1em;
}
.topsections h2 span:lang(en):only-child{
	margin-right: 0;
	padding-right: 0;
	border-right: 0;
}
@media (min-width:1100px){
	.topsections{
		padding: 45px;
	}
	.topsections h2{
		margin: 0 auto 32px;
	}
}


.topsectionmenu{
	max-width: 1686px;
	margin: 0 auto;
	overflow: hidden;
}
.topsectionmenu > ul{
	margin: 0;
	padding: 0;
	list-style: none;
	
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.topsectionmenu > ul > li{
	flex-basis: 25%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	display: flex;
}
.topsectionmenu > ul > li > a{
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	outline: none !important;
}
.mouseUI .topsectionmenu > ul > li > a:hover{
	opacity: 0.9;
}
.mouseUI .topsectionmenu > ul > li > a:active{
	opacity: 1;
	filter: brightness(90%);
}
.js.tabkeyenabled .topsectionmenu > ul > li > a:focus:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	outline: 3px solid var(--outline);
	outline-offset: -3px;
}
@media (max-width:900px){
	.topsectionmenu > ul{
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width:600px){
	.topsectionmenu > ul{
		gap: 9px;
	}
}










/* 製品 */
#TopProducts{
	/* border-top: 1px solid #808080; */
}
#TopProducts .topsectionmenu > ul > li > a{
	line-height: 1.3;
}
#TopProducts .topsectionmenu > ul > li > a > img{
	width: 100%;
	height: auto;
	vertical-align: top;
}
#TopProducts .topsectionmenu > ul > li > a > span{
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(242,242,242,0.75);
	text-align: center;
	padding: 1em 0;
}
#TopProducts .topsectionmenu > ul > li > a > span span{
	display: block;
}
@media (max-width:600px){
	#TopProducts .topsectionmenu > ul > li > a > span{
		position: static;
		padding: 0.5em 0;
		background-color: #f2f2f2;
	}
}












/* おしらせ */
#TopOshirase{
}
#TopOshirase .topsectionmenu > ul > li > a{
	line-height: 1.3;
}
#TopOshirase .topsectionmenu > ul > li > a > span{
	display: block;
	aspect-ratio: 1618/1000;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: #ddd;
}
#TopOshirase .topsectionmenu > ul > li > a > p:first-child{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	z-index: 1;
	
	
	background-color: rgba(77,77,77,0.7);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	
	color: #fff;
	line-height: 1.5;
	display: flex;
	padding: 0.5em 0.6em;
	justify-content: space-between;
}
#TopOshirase .topsectionmenu > ul > li > a > p:first-child time{
	display: block;
	white-space: nowrap;
	margin: 0 0 0 1em;
}
#TopOshirase .topsectionmenu > ul > li > a > p:last-child{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	z-index: 1;
	
	background-color: rgba(242,242,242,0.75);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	
	color: #404040;
	padding: 0.5em 0.6em;
}
#TopOshirase .topsectionmenu > ul > li > a > p:last-child b,
#TopOshirase .topsectionmenu > ul > li > a > p:last-child span{
	display: block;
}
@media (max-width:1800px){
	#TopOshirase .topsectionmenu > ul > li > a{
		font-size: 1vw;
	}
}
@media (max-width:900px){
	#TopOshirase .topsectionmenu > ul > li > a{
		font-size: 2vw;
	}
}
@media (max-width:600px){
	#TopOshirase .topsectionmenu > ul > li > a{
		font-size: inherit;
		display: flex;
		flex-direction: column;
	}
	#TopOshirase .topsectionmenu > ul > li > a > p:first-child,
	#TopOshirase .topsectionmenu > ul > li > a > p:last-child{
		position: static;
	}
	#TopOshirase .topsectionmenu > ul > li > a > p:first-child{
		background-color: #666;
	}
	#TopOshirase .topsectionmenu > ul > li > a > p:last-child{
		flex-grow: 1;
		background-color: #f2f2f2;
	}
}



#TopNewsOnSlide{
	display: none;
	background-color: #4d4d4d;
	color: #fff;
	
	margin: 45px auto 0;
	padding: 5px 0;
	text-align: center;
	
	max-width: 1686px;
}
@media (min-width:1400px){
	#TopNewsOnSlide{
		font-size: 1.333333333333333em;
	}
}

.js #TopNewsOnSlide{
	display: block;
}

#TopNewsOnSlide > div{
	position: relative;
	padding: 0 48px;
	margin: 0;
}

#TopNewsOnSlideView{
	margin: 0 auto;
	padding: 0;
	list-style: none;
	position: relative;
	overflow: hidden;
	max-width: 960px;
}
#TopNewsOnSlideView li{
	position: absolute;
	background-color: #4d4d4d;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	padding: 0;
	opacity: 0;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#TopNewsOnSlideView li[data-amtstat="passed"]{
	transform: translate(-100%, 0);
}
#TopNewsOnSlideView li[data-amtstat="upcoming"]{
	transform: translate(100%, 0);
}
#TopNewsOnSlideView li[aria-hidden="false"],
.js.tabkeyenabled #TopNewsOnSlideView li:focus-within{
	opacity: 1;
	z-index: 5;
	transform: none;
}
.js.tabkeyenabled #TopNewsOnSlideView li:focus-within{
	z-index: 6;
	transition: none;
}
#TopNewsOnSlideView li:first-child{
	position: relative;
}
.documentnotready #TopNewsOnSlideView li{
	transition: none;
}

#TopNewsOnSlideView li a{
	display: block;
	text-decoration: none;
	line-height: 1.5;
	font-size: 0.9em;
	padding: 5px 0;
	outline-offset: -3px;
}
#TopNewsOnSlideView li a span{
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
#TopNewsOnSlideView li a span.complex{
	display: flex;
	justify-content: center;
}
#TopNewsOnSlideView li a span.complex span + span{
	flex-shrink: 0;
}
@media (max-width:720px){
	#TopNewsOnSlideView li a span{
		white-space: normal;
		height: 3em;
		text-align: left;
	}
	#TopNewsOnSlideView li a span.complex{
		align-items: flex-end;
		margin-top: 0.5em;
	}
	#TopNewsOnSlideView li a span.complex span + span:before{
		content: "...";
	}
}

#TopNewsOnSlidePrev,
#TopNewsOnSlideNext{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 48px;
	margin: auto 0;
	
	color: transparent;
	font-size: 10px;
	overflow: hidden;
	
	cursor: pointer;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	background-color: #4d4d4d;
}
#TopNewsOnSlideNext{
	left: auto;
	right: 0;
}
.mouseUI #TopNewsOnSlidePrev:active,
.mouseUI #TopNewsOnSlideNext:active{
	filter: brightness(90%);
}
#TopNewsOnSlidePrev.unavailable,
#TopNewsOnSlideNext.unavailable{
	opacity: 0;
	pointer-events: none;
}
.documentnotready #TopNewsOnSlidePrev,
.documentnotready #TopNewsOnSlideNext{
	transition: none;
}
#TopNewsOnSlidePrev:before,
#TopNewsOnSlideNext:after{
	content: "＜";
	font-family: 'AmaitorteSugarpowder';
	display: block;
	font-size: 36px;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	color: #fff;
}
#TopNewsOnSlideNext:after{
	content: "＞";
}
@media (max-width:720px){
	#TopNewsOnSlidePrev,
	#TopNewsOnSlideNext{
		width: 36px;
	}
	#TopNewsOnSlidePrev:before,
	#TopNewsOnSlideNext:after{
		width: 1em;
	}
}









/* ボルネードをより知っていただくために */
#TopSpecialContents{
	background-color: #f2f2f2;
}
#TopSpecialContents .topsectionmenu > ul > li > a{
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
#TopSpecialContents .topsectionmenu > ul > li > a > img{
	width: 100%;
	height: auto;
	vertical-align: top;
	flex-shrink: 0;
}
#TopSpecialContents .topsectionmenu > ul > li > a > span{
	background-color: #fff;
	text-align: center;
	padding: 0.75em 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
#TopSpecialContents .topsectionmenu > ul > li > a > span span:first-child{
	display: block;
}
#TopSpecialContents .topsectionmenu > ul > li > a > span span:last-child{
	display: flex;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
}
@media (max-width:600px){
	#TopSpecialContents .topsectionmenu > ul > li > a > span{
		position: static;
		padding: 0.5em 0;
	}
}

















/* インスタグラム */
#InstagramListHolder{
	border-top: 1px solid #808080;
}
#InstagramListHolder h2 span{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0;
	border-bottom: 0;
}
#InstagramListHolder h2 span:before{
	display: block;
	width: 1em;
	height: 1em;
	margin: -0.1em 0.25em 0 0;
	content: "";
	background-image: url(base/sns_instagram.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}


@media (min-width:1800px){
	#InstagramListHolder{
		padding: 45px 45px 55px;
	}
}
@media (max-width:720px){
	#InstagramListHolder{
		padding: 45px 18px 26px;
	}
}



#InstagramPicList{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 1.5em auto;
	padding: 0;
	list-style: none;
	gap: 12px;
	max-width: 1686px;
}
@media (max-width:1000px){
	#InstagramPicList{
		grid-template-columns: repeat(3, 1fr);
		gap: 9px;
	}
}
@media (max-width:600px){
	#InstagramPicList{
		grid-template-columns: repeat(3, 1fr);
		gap: 6px;
	}
}
#InstagramPicList li{
	margin: 0;
	padding: 0;
}
#InstagramPicList li a{
	display: block;
	background-color: #fff;
	transition: filter 0.1s ease-out;
	border: 1px solid rgba(0,0,0,0.1);
}
#InstagramPicList li a:hover{
	filter: brightness(110%);
}
#InstagramPicList li a:active{
	transition: none;
	filter: brightness(80%);
}
#InstagramPicList li img{
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: auto;
	vertical-align: top;
	padding: 0;
}


#InstagramListZone{
	max-width: 1686px;
	margin: 0 auto;
	overflow: hidden;
}
#InstagramListZone > div{
	margin: -13px -9px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
#InstagramListZone > div .amtinstagramzone{
	flex-basis: calc(25% - 9px*2);
	margin: 13px 9px;
	box-sizing: border-box;
	overflow: hidden;
}

@media (max-width:1000px){
	#InstagramListZone > div .amtinstagramzone{
		flex-basis: 33.3333333%;
		flex-basis: calc(33.3333333% - 9px*2);
	}
}
@media (max-width:600px){
	#InstagramListZone > div{
		margin: -6px -4px;
	}
	#InstagramListZone > div .amtinstagramzone{
		margin: 6px 4px;
		flex-basis: calc(50% - 4px*2);
	}
}

#InstagramListZone > div .amtinstagramzone > div{
	overflow: hidden;
}

#InstagramListZone > div .amtinstagramzone.trim{
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
}
#InstagramListZone > div .amtinstagramzone.trim > div{
	overflow: hidden;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}

#InstagramListZone > div .amtinstagramzone iframe{
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
}
#InstagramListZone > div .amtinstagramzone.hideheader iframe{
	margin-top: -54px !important;
	border-top: none !important;
	border-radius: 0 !important;
}
#InstagramListZone > div .amtinstagramzone.hidefooter iframe{
	margin-bottom: -155px !important;
	border-bottom: none !important;
	border-radius: 0 !important;
}
#InstagramListZone > div .amtinstagramzone.hideheader iframe,
#InstagramListZone > div .amtinstagramzone.hidefooter iframe{
	border-left: none !important;
	border-right: none !important;
}
/*@media (max-width:682px){
	#InstagramListZone{
		display: block;
	}
}*/





