@charset "UTF-8";

.pc {
	display: none !important;
}

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

#wrap {
	width: 100%;
}




#wrap > header {
	position: fixed;
	width: 100%;
	height: 50px;
	left: 0;
	top: 0;
	z-index: 1000;
	background: url(/img/bg.png) 50% 0 repeat;
	background-size: 28px auto;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#wrap > header .logo {
	position: absolute;
	width: 60px;
	height: 50px;
	left: 0;
	top: 0;
}
#wrap > header .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
#wrap > header .logo img {
	width: 38px;
	height: auto;
}

#menu-button {
	position: fixed;
	width: 50px;
	height: 50px;
	right: 0;
	top: 0;
	z-index: 1200;
}
#menu-button button {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
}
#menu-button i {
	position: absolute;
	display: block;
	width: 20px;
	height: 1px;
	left: calc(50% - 10px);
	top: 50%;
	background: #fff;
	transition: all 200ms ease-out;
}
#menu-button i:nth-child(1) {
	margin-top: -5px;
}
#menu-button i:nth-child(2) {
}
#menu-button i:nth-child(3) {
	margin-top: 5px;
}




#global-menu {
	box-sizing: border-box;
	position: fixed;
	width: 280px;
	height: 100vh;
	height: 100lvh;
	right: 0;
	top: 0;
	z-index: 1100;
	overflow: auto;
	padding: 0 40px;
	background: #fff;
	box-shadow: -2px 0 4px rgba(0,0,0,0.15);
	
	transform: translateX(286px);
	transition: all 400ms ease-out;
}

#global-menu .extra {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 0;
}

#global-menu .logo {
	width: 80px;
	height: 76px;
}
#global-menu .extra > ul {
	margin: 40px 0 0;
}
#global-menu .extra > ul li + li {
	margin-top: 24px;
}
#global-menu a {
	font-size: 16px;
	font-weight: 300;
	transition: all 200ms ease-out;
}
#global-menu a:active {
	color: #e13911;
}

#global-menu .portal {
	margin: 24px 0 0;
	padding: 24px 0 0;
	border-top: 1px solid #ccc;
}
#global-menu .popup {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 14px;
	height: 14px;
	top: -2px;
	margin-left: 10px;
	vertical-align: middle;
}

#global-menu .sns {
	display: flex;
	margin: 30px 0 0;
}
#global-menu .sns a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
}
#global-menu .sns a + a {
	margin-left: 6px;
}
#global-menu .sns a img {
	widows: 36px;
	height: 36px;
}
#global-menu .sns a:active {
	opacity: 0.8;
}


body.opened-menu {
	overflow: hidden;
}
body.opened-menu #menu-button i {
	background: #333;
}
body.opened-menu #menu-button i:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}
body.opened-menu #menu-button i:nth-child(2) {
	transform: scaleX(0);
}
body.opened-menu #menu-button i:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}


body.opened-menu #global-menu {
	transform: translateX(0);
}




body.index #wrap > header,
body.index #menu-button {
	transform: translateY(-66px);
	transition: all 300ms ease-out;
}
body.index.scrolled #wrap > header,
body.index.scrolled #menu-button {
	transform: translateY(0);
}






#wrap > footer {
	margin: 40px 0 0;
	background: url(/img/bg.png) 50% 0 repeat;
	background-size: 28px auto;
}
#wrap > footer .inner {
	position: relative;
	box-sizing: border-box;
	padding: 30px 32px 36px;
}

#wrap > footer .logo {
	width: 56px;
}
#wrap > footer .menu {
	display: flex;
	margin: 30px 0 0;
}
#wrap > footer .menu ul + ul {
	margin-left: 20px;
}
#wrap > footer .menu li + li {
	margin-top: 14px;
}
#wrap > footer .menu a {
	color: #fff;
	font-size: 12px;
}
#wrap > footer .menu a:active {
	text-decoration: underline;
}

#wrap > footer .portal {
	margin-top: calc(1em + 28px) !important;
}

#wrap > footer .sns {
	position: absolute;
	display: flex;
	right: 20px;
	top: 32px;
}
#wrap > footer .sns a {
	display: flex;
	width: 36px;
	height: 36px;
}
#wrap > footer .sns a + a {
	margin-left: 6px;
}
#wrap > footer .sns a img {
	width: 36px;
	height: 36px;
}

#wrap > footer .popup {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 12px;
	height: 12px;
	top: -2px;
	margin-left: 6px;
	vertical-align: middle;
}


#wrap > footer .copyright {
	margin: 32px 0 0;
	color: #fff;
	line-height: 1.8;
	font-size: 12px;
	font-family: Roboto, sans-serif;
}

#scroll-top {
	position: fixed;
	width: 50px;
	height: 50px;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	
	transform: translateY(90px);
	transition: all 400ms ease-out;
}
#scroll-top a {
	position: relative;
	display: block;
	height: 50px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
#scroll-top a::after {
	position: absolute;
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	left: calc(50% - 6px);
	top: calc(50% - 6px);
	background: url(/img/arrow_top.svg) 50% 50% no-repeat;
	background-size: 10px auto;
}
body.scrolled #scroll-top {
	transform: translateY(0);
}








a .thumb::after {
	position: absolute;
	box-sizing: border-box;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	border: 0 solid #e13911;
	border-radius: 0 0 10px 10px;
	transition: all 150ms linear;
}
a:active .thumb::after {
	border-width: 4px;
}



.more-button {
	display: flex;
	justify-content: center;
	margin: 36px 0 0;
}
.more-button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	font-size: 16px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
.more-button a:active {
	color: #e13911;
	border-color: #e13911;
}



/*
main {
	position: relative;
	box-sizing: border-box;
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 80px;
}
*/



/* ---------------------------------------------------------------------------------------------------- */
/* TOP */


#kv {
	position: relative;
	height: 120vw;
	z-index: 500;
	background: #fff;
}
#kv .cover {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	background: rgba(0,0,0,0.1) url(/img/logo.svg) 32px 32px no-repeat;
	background-size: 80px auto;
	pointer-events: none;
}
#kv .slide {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 50;
}
#kv .slide-item {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#kv .slide-item img {
	width: 100%;
	height: 120vw;
	object-fit: cover;
}
#kv .slide-item a {
	display: block;
}

#kv {
	opacity: 0;
	transition: all 1500ms ease-out;
}
#kv.ready {
	opacity: 1;
}





body.index main {
	padding-top: 40px;
}

body.index header {
	margin: 0 0 35px;
}
body.index h2 {
	font-size: 26px;
	font-weight: 300;
}
body.index header .more {
	display: none !important;
}






#top-news .inner {
	margin: 0 16px;
}
#top-news ul {
}
#top-news ul li {
}
#top-news ul li + li {
	margin-top: 24px;
}
#top-news ul li a {
	display: flex;
	justify-content: space-between;
}
#top-news .thumb {
	position: relative;
	width: 120px;
	height: 120px;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
}
#top-news .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top-news .text {
	width: calc(100% - 120px - 16px);
}

#top-news .date {
	color: #e13911;
	font-size: 16px;
	font-family: Roboto, sans-serif;
}
#top-news .title {
	margin: 15px 0 0;
	line-height: 1.75;
	font-size: 14px;
	font-weight: 300;
}
#top-news .more-button {
}





/*
#top-topics {
	margin: 85px 0 0;
}
#top-topics .inner {
	position: relative;
	box-sizing: border-box;
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 80px;
}
#top-topics ul {
	display: flex;
	width: calc(510px * 3 + 40px);
}
#top-topics ul li {
	width: 510px;
}
#top-topics ul li + li {
	margin-left: 18px;
}
#top-topics ul li a {
}
#top-topics .thumb {
	position: relative;
	width: 510px;
	height: 405px;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#top-topics a .thumb::after {
	border-radius: 0 0 15px 15px;
}
#top-topics .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top-topics .title {
	margin: 20px 20px 0;
	line-height: 1.75;
	font-weight: 300;
}
#top-topics .more-button {
	display: none;
}
*/



#top-topics {
	margin: 50px 0 0;
}
#top-topics header {
	margin-left: 16px;
}

#top-topics .inner {
}
#top-topics ul {
}
#top-topics ul li {
}
#top-topics ul li + li {
}
#top-topics ul li a {
	box-sizing: border-box;
	display: block;
	width: calc(100vw - 32px);
	max-width: 400px;
	padding-left: 16px;
}
#top-topics .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#top-topics a .thumb::after {
	border-radius: 0 0 15px 15px;
}
#top-topics .thumb img {
	aspect-ratio: 428 / 316;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top-topics .title {
	margin: 16px 16px 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 300;
}
#top-topics .more-button {
	margin-left: 16px;
	margin-right: 16px;
}


#top-topics .slick-dots {
	position: relative;
	display: flex;
	height: 12px;
	margin: 25px 0 0 16px;
	font-size: 0;
}
#top-topics .slick-dots li + li {
	margin-left: 10px;
}
#top-topics .slick-dots button {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin: 0;
	padding: 0;
	font-size: 0;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 6px;
}
#top-topics .slick-dots .slick-active button {
	background: #e13911;
}




#top-product {
	margin: 50px 0 0;
	padding: 40px 0;
	background: #f8f8f8;
}
#top-product .inner {
	position: relative;
	padding: 0 16px;
}
#top-product ul {
	display: flex;
	flex-wrap: wrap;
}
#top-product li {
	width: calc(50% - 6px);
}
#top-product li:nth-child(2n) {
	margin-left: 12px;
}
#top-product li:nth-child(n + 3) {
	margin-top: 20px;
}
#top-product a .thumb::after {
	border-radius: 0 0 15px 15px;
}

#top-product a {
	position: relative;
	display: flex;
	flex-direction: column;
}
#top-product .title {
	margin: 10px 0 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.75;
}
#top-product .more-button {
}





#top-support {
	padding: 40px 0;
	background: #f8f8f8;
}
#top-support .inner {
	position: relative;
	padding: 0 16px;
}
#top-support ul {
}
#top-support ul li {
}
#top-support ul li + li {
	margin-top: 24px;
}
#top-support .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#top-support a .thumb::after {
	border-radius: 0 0 15px 15px;
}
#top-support .thumb img {
	aspect-ratio: 650 / 365;
	object-fit: cover;
}
#top-support .title {
	margin: 12px 16px 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 300;
}
#top-support .more-button {
}





#top-store {
	margin: 50px 0 0;
}
#top-store .inner {
	position: relative;
	padding: 0 16px;
}
#top-store ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
#top-store ul li {
	width: calc(50% - 8px);
}
#top-store ul li:nth-child(2n) {
	margin-left: 16px;
}
#top-store ul li:nth-child(n + 3) {
	margin-top: 16px;
}
#top-store ul a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	font-size: 18px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
#top-store ul a:active {
	color: #e13911;
	border-color: #e13911;
}
#top-store .more-button {
}




#top-video {
	margin: 50px 0 0;
}
#top-video .inner {
	position: relative;
	/*
	padding: 0 16px;
	*/
	padding-left: 16px;
}

/*
#top-video ul {
}
#top-video ul li {
}
#top-video ul li + li {
	margin-top: 24px;
}
*/

#top-video .slick-list {
	overflow: visible;
}


#top-video .slide-item {
	padding-right: 18px;
}
#top-video .slide-item a {
	display: block;
	width: calc(100vw - 50px)
}

#top-video .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#top-video a .thumb::after {
	border-radius: 0 0 15px 15px;
}
#top-video .thumb img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
#top-video .title {
	margin: 12px 16px 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 300;
}
#top-video .more-button {
}

#top-video .play {
	box-sizing: border-box;
	position: absolute;
	display: block;
	width: 50px;
	height: 50px;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
	z-index: 10;
	font-size: 0;
	border: 2px solid #fff;
	background: url(/img/icon_play.svg) 55% 50% no-repeat;
	background-size: 12px auto;
	border-radius: 25px;
}



#top-video .slick-dots {
	position: relative;
	display: flex;
	height: 12px;
	margin: 25px 0 0 16px;
	font-size: 0;
}
#top-video .slick-dots li + li {
	margin-left: 10px;
}
#top-video .slick-dots button {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin: 0;
	padding: 0;
	font-size: 0;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 6px;
}
#top-video .slick-dots .slick-active button {
	background: #e13911;
}








/* ---------------------------------------------------------------------------------------------------- */

body.content main {
	position: relative;
	padding: 0 16px;
}


body.content header {
	position: relative;
	margin: 0 0 30px;
	z-index: 100;
}
body.content h1 {
	font-size: 26px;
	font-weight: 300;
}


body.list main {
	margin-top: 80px;
}



body.list header .pulldown {
	box-sizing: border-box;
	position: absolute;
	width: 150px;
	right: 0;
	top: -4px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
	transition: all 300ms ease-out;
}
body.list header .pulldown .current a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 38px;
	top: -1px;
	font-size: 14px;
	transition: all 200ms ease-out;
}
body.list header .pulldown .current a::after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	right: 10px;
	top: calc(50% - 5px);
	background: url(/img/arrow_down.svg) 50% 50% no-repeat;
	background-size: 10px auto;
	transition: all 200ms ease-out;
}

body.list header .pulldown .current a span {
	position: relative;
	top: -1px;
}
body.list header .pulldown .current a span.year {
	font-size: 16px;
	font-family: Roboto, sans-serif;
	top: 0;
}

body.list header .pulldown:active {
	border-color: #e13911;
}
body.list header a:active {
	color: #e13911;
}







body.list header .pulldown .menu {
	font-size: 16px;
	font-family: Roboto, sans-serif;
}
body.list header .pulldown .menu li {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 34px;
}
body.list header .pulldown .menu li.active a {
	color: #e13911;
}

body.list header .pulldown {
	height: 38px;
}

body.list header .pulldown.opened .current a::after {
	transform: rotate(180deg);
}


body.entry main {
	max-width: 100%;
	margin: 0;
	padding: 0;
}
body.entry section.entry {
	background: #f5f5f5;
}
body.entry section.entry .inner {
	padding: 75px 16px 40px;
}



.related-list {
	box-sizing: border-box;
	margin: 50px 0 0;
}
.related-list h2 {
	margin: 0 0 0 16px;
	font-size: 20px;
	font-weight: 300;
}

.related-list .content {
	padding: 0 0 50px;
}
.related-list ul li {
}
.related-list ul li + li {
}
.related-list ul li a {
	box-sizing: border-box;
	display: block;
	width: calc(100vw - 32px);
	max-width: 400px;
	padding-left: 16px;
}
.related-list .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
.related-list a .thumb::after {
	border-radius: 0 0 15px 15px;
}
.related-list .thumb img {
	aspect-ratio: 428 / 316;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.related-list .text {
	margin: 18px 12px 0;
}
.related-list .date {
	color: #e13911;
	font-size: 16px;
	font-family: Roboto, sans-serif;
}
.related-list .title {
	margin: 8px 0 0;
	line-height: 1.75;
	font-size: 16px;
	font-weight: 300;
}
.related-list .title dt {
	line-height: 1.75;
	font-size: 16px;
	font-weight: 300;
}
.related-list .title dd {
	margin: 10px 0 0;
	line-height: 1.75;
	font-size: 13px;
	font-weight: 300;
	
	/*
	height: 5.25em;
	
	overflow: hidden !important;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	*/
}


.related-list .slick-dots {
	position: absolute;
	display: flex;
	height: 12px;
	left: 16px;
	bottom: -50px;
	font-size: 0;
}
.related-list .slick-dots li + li {
	margin-left: 10px;
}
.related-list .slick-dots button {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin: 0;
	padding: 0;
	font-size: 0;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 6px;
}
.related-list .slick-dots .slick-active button {
	background: #e13911;
}

body.simple main {
	position: relative;
	box-sizing: border-box;
	margin: 80px auto 0;
	padding: 0 16px;
}
body.content.simple header {
	margin-bottom: 30px;
}



body.support main {
	max-width: 100%;
	padding: 0;
}







/* ---------------------------------------------------------------------------------------------------- */
/* NEWS | TOPICS */

#news-list {
	padding: 0 0 20px;
}
#news-list h1 a:active {
	color: #333;
}
#news-list h2 {
	margin: 0 0 20px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
#news-list h2 span {
	display: inline-block;
	padding-right: 10px;
	font-size: 22px;
	font-weight: 100;
	font-family: Roboto, sans-serif;
	background: #fff;
}



.entry-list .content ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.entry-list .content ul li {
	width: calc(50% - 6px);
}
.entry-list .content ul li:nth-child(2n) {
	margin-left: 12px;
}
.entry-list .content ul li:nth-child(n + 3) {
	margin-top: 30px;
}

.entry-list .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
.entry-list a .thumb::after {
	border-radius: 0 0 15px 15px;
}


#news-list .thumb img {
	aspect-ratio: 428 / 316;
	object-fit: cover;
}

#news-list .text {
	margin: 14px 10px 0;
}
#news-list .date {
	color: #e13911;
	font-size: 12px;
	font-family: Roboto, sans-serif;
}
#news-list .title {
	margin: 5px 0 0;
	font-size: 12px;
	line-height: 1.75;
	font-weight: 300;
}



#topics-list .thumb img {
	aspect-ratio: 428 / 316;
	object-fit: cover;
}

/*
#topics-list .content ul {
	display: block;
}
#topics-list .content li {
	width: 100%;
}
#topics-list .content li:nth-child(2n) {
	margin-left: 0;
}
#topics-list .content li:nth-child(n + 2) {
	margin-top: 40px;
}
*/


#topics-list .text {
	margin: 14px 10px 0;
}
#topics-list .date {
	color: #e13911;
	font-size: 12px;
	font-family: Roboto, sans-serif;
}
#topics-list .title {
	margin: 5px 0 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 300;
}

#topics-list .title dt {
	line-height: 1.75;
	font-size: 14px;
	font-weight: 300;
}
#topics-list .title dd {
	margin: 5px 0 0;
	line-height: 1.75;
	font-size: 12px;
	font-weight: 300;
	
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
#topics-list .title dd br {
	display: none;
}






#topics-list header .tag {
	margin: 36px 0 -6px;
}
#topics-list header .tag ul {
	display: flex;
	flex-wrap: wrap;
}


#topics-list .content .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 0 10px;
}


#topics-list .tag a {
	display: flex;
	margin: 0 6px 6px 0;
	padding: 4px;
	font-size: 10px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 2px;
}
#topics-list .tag a:active {
	color: #e13911;
	border-color: #e13911;
}
#topics-list .tag .active a {
	color: #fff !important;
	background: #e13911;
	border-color: #e13911;
}



.wp-pagenavi {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 30px 0 15px;
}
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0 8px;
	font-size: 18px;
	font-weight: 300;
	font-family: Roboto, sans-serif;
	transition: all 300ms ease-out;
}
.wp-pagenavi span {
	font-weight: 400;
	cursor: default;
}
.wp-pagenavi a:active {
	color: #e13911;
}

.wp-pagenavi .prev,
.wp-pagenavi .next {
	display: inline-block;
	width: 18px;
	height: 18px;
	font-size: 0;
	transition: all 300ms ease-out;
	filter: saturate(0);
}

.wp-pagenavi .prev {
	background: url(/img/arrow_prev_orange.svg) 50% 50% no-repeat;
	background-size: 12px auto;
}
.wp-pagenavi .next {
	background: url(/img/arrow_next_orange.svg) 50% 50% no-repeat;
	background-size: 12px auto;
}

.wp-pagenavi span.prev,
.wp-pagenavi span.next {
	opacity: 0.3;
}

.wp-pagenavi .prev:active,
.wp-pagenavi .next:active {
	filter: saturate(1);
}






.entry-return {
	margin: 0 0 30px;
}
.entry-return a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 300;
}
.entry-return a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -4px;
	background: #000;
	transform-origin: left top;
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
.entry-return a:active::after {
	transform: scaleX(1);
}









.entry-body .image {
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
.entry-body .image img {
	width: 100%;
	height: auto;
	max-height: 60vw;
	object-fit: cover;
}

.entry-body .image.simple {
	margin: 30px auto;
	border-radius: 0;
}
.entry-body .image.simple img {
	max-height: 1000px;
}



.entry-body .title {
	margin: 30px 12px 0;
}
.entry-body .title h1 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
}
.entry-body .title .date {
	color: #e13911;
	font-size: 16px;
	font-family: Roboto, sans-serif;
}

.entry-body .text {
	margin: 24px 12px 0;
	padding: 24px 0 0;
	border-top: 1px solid #ccc;
}

.entry-body .text h2 {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.75;
}

.entry-body .text p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.85;
}
.entry-body .text p + p {
	margin-top: 1.85rem;
}
/*
.entry-body .text p a {
	text-decoration: underline;
}
*/
.entry-body .text p strong {
	font-weight: 500;
}

.entry-body .text p img {
	overflow: hidden;
	max-width: 100%;
}





.entry-body .text table {
	width: 100% !important;
	margin: 20px 0;
}
.entry-body .text table + table {
	margin-top: 30px;
}
.entry-body .text table th,
.entry-body .text table td {
	padding-right: 20px;
	font-size: 12px;
	line-height: 1.8;
	font-weight: 300;
}

.entry-body .text table img {
	width: initial;
	max-width: 100%;
	margin: 0 0 10px;
}

.entry-body .text hr {
	margin: 30px 0;
	border-top: 1px solid #ccc;
	border-bottom: 0px;
}


.entry-body .text a {
	font-weight: 500;
}



.entry-body .meta {
	margin: 30px 0 0;
}
.entry-body .meta .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 0;
}
.entry-body .meta .tag a {
	display: flex;
	margin: 0 6px 0 0;
	padding: 4px;
	font-size: 10px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 2px;
}
.entry-body .meta .tag a:active {
	color: #e13911;
	border-color: #e13911;
}






.entry-foot {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 24px 12px 0;
	padding: 85px 0 0;
	border-top: 1px solid #ccc;
}
.entry-foot .prev,
.entry-foot .next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(50% - 6px);
	height: 50px;
	font-size: 16px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
.entry-foot a span {
	position: relative;
	top: -1px;
}
.entry-foot .prev:active,
.entry-foot .next:active {
	color: #e13911;
	border-color: #e13911;
}

.entry-foot .return {
	position: absolute;
	width: 100%;
	left: 0;
	top: 35px;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	text-decoration: underline;
}
.entry-foot a {
	position: relative;
	display: inline-block;
	text-decoration: none !important;
}
/*
.entry-foot a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -4px;
	background: #000;
	transform-origin: left top;
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
.entry-foot a:active::after {
	transform: scaleX(1);
}
*/






/* ---------------------------------------------------------------------------------------------------- */
/* STORE */

#store-list header {
	margin-bottom: 0;
}

#store-menu {
	position: sticky;
	width: 100vw;
	height: 48px;
	top: 40px;
	z-index: 100;
	margin: 0 -16px -10px;
	padding: 30px 0 0;
	overflow: auto;
}
#store-menu::after {
	position: fixed;
	content: "";
	display: block;
	width: 100%;
	height: 56px;
	left: 0;
	top: 50px;
	background: #fff;
}

#store-menu .extra {
}

#store-menu ul {
	position: relative;
	box-sizing: border-box;
	display: flex;
	width: 832px;
	z-index: 10;
	padding: 0 16px;
}
#store-menu li {
	box-sizing: border-box;
	width: 80px;
	height: 36px;
	border-bottom: 1px solid #ccc;
}
#store-menu li a {
	position: relative;
	display: block;
	height: 36px;
	font-size: 15px;
	font-weight: 300;
	text-align: center;
}
#store-menu li a:active,
#store-menu li.active a {
	color: #e13911;
}
#store-menu li.active a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background: #e13911;
}

#store-list .content {
	margin: 50px 0 0;
	font-weight: 300;
}
#store-list h2 {
	margin: 0 0 45px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
#store-list h2 span {
	display: inline-block;
	padding-right: 17px;
	font-size: 24px;
	font-weight: 300;
	background: #fff;
}

#store-list .content .area + .area {
	margin-top: 60px;
}

#store-list .content li + li {
	margin-top: 45px;
}
#store-list .content dt strong {
	display: block;
	font-size: 20px;
	line-height: 1.5;
}
#store-list .content dt span {
	display: block;
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.5;
}
#store-list .content dt a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
}
#store-list .content dt a:active {
	text-decoration: none;
}
#store-list .content dd {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 2;
}

#store-list .content dd a {
	font-size: 12px;
	word-break: break-all;
}
#store-list .content dd a {
	font-weight: 400;
	font-family: Roboto, sans-serif;
}
#store-list .content dd a:active {
	text-decoration: underline;
}

#store-list .content dd .note {
	line-height: 2;
	font-weight: 500;
}





/* ---------------------------------------------------------------------------------------------------- */
/* SUPPORT */

body.support #wrap > footer {
	margin-top: 0;
}


#support-list {
	margin: 80px 0 0;
}
#support-list header {
	box-sizing: border-box;
	padding: 0 16px;
	margin: 0 auto;
}

#support-menu {
	position: sticky;
	height: 36px;
	top: 40px;
	padding: 30px 0 0;
	background: #fff;
}
#support-menu .extra {
	box-sizing: border-box;
	margin: 0 auto;
}


#support-menu ul {
	display: flex;
}
#support-menu li {
	box-sizing: border-box;
	width: 50%;
	height: 36px;
	border-bottom: 1px solid #ccc;
}
#support-menu li a {
	position: relative;
	display: block;
	height: 36px;
	font-size: 15px;
	font-weight: 300;
	text-align: center;
}
#support-menu li a:active,
#support-menu li.active a {
	color: #e13911;
}
#support-menu li.active a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background: #e13911;
}

#support-list .content {
	padding: 30px 0 0;
	font-weight: 300;
}
#support-list #warranty {
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	background: #f8f8f8;
}
#support-list .content .extra {
	box-sizing: border-box;
	padding: 0 16px;
}



#support-list h2 {
	font-size: 26px;
}
#support-list h3 {
	margin: 0 0 30px;
	padding: 10px 12px 12px;
	font-size: 18px;
	background: #f0f0f0
}
#support-list h4 {
	margin: 50px 0 20px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
#support-list h3 + h4 {
	margin-top: 30px;
}

#support-list #warranty h3 {
	margin-bottom: 25px;
}

#support-list #warranty * + h3 {
	margin-top: 60px;
}


#support-list h4 span {
	display: inline-block;
	padding-right: 12px;
	font-size: 18px;
	font-weight: 300;
	background: #fff;
}
#support-list h4 em {
	font-size: 14px;
}


#support-list .column {
	margin: 36px 0 0;
}
#support-list .column + .column {
	margin-top: 60px;
}

#support-list .content dl.care {
	margin-top: 1.5rem;
}
#support-list .content dl.care dt {
	margin: 0 0 12px;
}
/*
#support-list .content dl.care dt span {
	display: inline-block;
	padding: 6px 8px;
	font-size: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
*/
#support-list .content dl.care dt span {
	display: inline-block;
	font-size: 14px;
}
#support-list .content dl.care dt span::before {
	content: "・";
	font-weight: 700;
	color: #e13911;
}


#support-list .content p,
#support-list .content dl.care dd {
	font-size: 14px;
	line-height: 1.85;
}
#support-list .content p + p,
#support-list .content dl.care dd + dd {
	margin-top: 1.5rem;
}

#support-list .fig1 {
	margin: 20px 0 0;
}
#support-list .fig1 ul {
	display: flex;
}
#support-list .fig1 li {
	width: calc(50% - 6px);
}
#support-list .fig1 li + li {
	margin-left: 12px;
}
#support-list .fig1 figure {
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#support-list .fig1 figcaption {
	margin: 12px 0 0;
	font-size: 12px;
	text-align: center;
}
#support-list .fig1 a {
	text-decoration: underline;
}
#support-list .fig1 a:active {
	text-decoration: none;
}




#support-list .fig2 {
	margin: 20px 0 0;
}
#support-list .fig2 ul {
}
#support-list .fig2 li {
}
#support-list .fig2 li + li {
	margin-top: 50px;
}
#support-list .fig2 dl {
	margin: 0 0 0;
}
#support-list .fig2 dt {
	background: url(/img/dot.png) 0 50% repeat-x;
}
#support-list .fig2 dt span {
	display: inline-block;
	padding-right: 12px;
	font-size: 14px;
	font-weight: 300;
	background: #fff;
}
#support-list .fig2 dd {
	margin: 25px 0 0;
	font-size: 14px;
	line-height: 1.85;
}

#support-list .note {
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.85;
}



#support-list .table {
	margin: 30px 0 0;
}
#support-list .table dl {
}
#support-list .table dl + dl {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #ccc;
}
#support-list .table dt {
	font-size: 14px;
	line-height: 1.85;
}
#support-list .table dt::before {
	content: "・";
	font-weight: 700;
	color: #e13911;
}


#support-list .table dd {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.85;
}
#support-list .table dd .comment {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.85;
}







/* ---------------------------------------------------------------------------------------------------- */
/* 品質保証 */

#quality header {
	display: none;
}

#quality .content {
	font-weight: 300;
}

#quality h2 {
	margin: 0 0 30px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
#quality h2 span {
	display: inline-block;
	padding-right: 12px;
	font-size: 20px;
	font-weight: 300;
	background: #fff;
}
#quality p {
	font-size: 14px;
	line-height: 2;
}
#quality p + p {
	margin-top: 2rem;
}

#quality div + h2 {
	margin-top: 60px;
}




/* ---------------------------------------------------------------------------------------------------- */
/* Contact */


#contact .content {
	font-weight: 300;
}
#contact .content + header {
	margin-top: 60px;
}



#contact h2 {
	margin: 0 0 20px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
#contact h2 span {
	display: inline-block;
	padding-right: 12px;
	font-size: 18px;
	font-weight: 300;
	background: #fff;
}

#contact * + h2 {
	margin-top: 30px;
}



#contact h3 {
	margin: 0 0 25px;
}
#contact h3 a {
	position: relative;
	display: block;
	padding: 12px 32px 14px 12px;
	font-size: 15px;
	font-weight: 400;
	background: #f0f0f0
}

.faq .expand ul {
	padding-bottom: 40px;
}
.faq .expand {
	overflow: hidden;
	height: 0;
	transition: all 300ms ease-out;
}



.faq h3 .toggle {
	box-sizing: border-box;
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	right: 12px;
	top: calc(50% - 9px);
	border: 1px solid #e13919;
	border-radius: 9px;
	transition: all 200ms ease-out;
}
.faq h3 .toggle::before,
.faq h3 .toggle::after {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	left: 4px;
	top: 50%;
	background: #e13919;
	transition: background 200ms ease-out;
}
.faq h3 .toggle::before {
}
.faq h3 .toggle::after {
	transform: rotate(90deg);
}

.faq h3 .opened .toggle {
	border-color: #ccc;
}
.faq h3 .opened .toggle::before,
.faq h3 .opened .toggle::after {
	background: #ccc;
}
.faq h3 .opened .toggle::after {
	transform: rotate(90deg) scaleX(0);
}







#contact .content p {
	font-size: 14px;
	line-height: 1.85;
}
#contact .content dt {
	position: relative;
	padding-left: 40px;
	font-size: 16px;
	line-height: 1.85;
}
#contact .content dd {
	position: relative;
	margin-top: 10px;
	padding-left: 40px;
	font-size: 14px;
	line-height: 1.85;
}
#contact .content li + li {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #ccc;
}

#contact .content dt::before {
	position: absolute;
	content: "Q.";
	width: 30px;
	left: 0;
	margin-top: -6px;
	text-align: center;
	font-size: 20px;
}
#contact .content dd::before {
	position: absolute;
	content: "A.";
	width: 30px;
	left: 0;
	margin-top: -8px;
	text-align: center;
	font-size: 20px;
	color: #e13911;
}




#contact .content dd a {
	position: relative;
	display: inline-block;
	font-weight: 500;
}
#contact .content dd a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -4px;
	background: #000;
	transform-origin: left top;
	transform: scaleX(0);
	transition: all 300ms ease-out
}
#contact .content dd a:active::after {
	transform: scaleX(1);
}





#contact .form {
	margin: 30px 0 0;
}
#contact .form a {
	box-sizing: border-box;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	font-size: 16px;
	padding: 0 0 3px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
#contact .form a .popup {
	position: absolute;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 12px;
	height: 12px;
	right: 12px;
	top: calc(50% - 6px);
	transition: all 200ms ease-out;
}
#contact .form a:active {
	color: #e13911;
	border-color: #e13911;
}






















/* ---------------------------------------------------------------------------------------------------- */
/* PRODUCT */

#product-list {
	padding: 40px 0 40px;
	background: #f8f8f8;
}
#product-list .inner {
	padding: 0 16px;
}

#product-list header {
	display: none;
}




#category-menu {
	position: sticky;
	width: 100vw;
	height: 48px;
	top: 40px;
	z-index: 500;
	margin: 0 -16px -10px;
	padding: 30px 0 0;
	overflow: auto;
}
#category-menu::after {
	position: fixed;
	content: "";
	display: block;
	width: 100%;
	height: 56px;
	left: 0;
	top: 50px;
	background: #f8f8f8;
}

#category-menu .extra {
}

#category-menu ul {
	position: relative;
	box-sizing: border-box;
	display: flex;
	/*
	width: 740px;
	*/
	width: 950px;
	z-index: 10;
	padding: 0 16px;
}
#category-menu li {
	box-sizing: border-box;
	width: 150px;
	height: 36px;
	border-bottom: 1px solid #ccc;
}
/*
#category-menu li:nth-child(6),
#category-menu li:nth-child(7) {
	width: 140px;
}
*/
#category-menu li:nth-child(2),
#category-menu li:nth-child(4) {
	width: 100px;
}


#category-menu li a {
	position: relative;
	display: block;
	height: 36px;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
}
#category-menu li a:active,
#category-menu li.active a {
	color: #e13911;
}
#category-menu li.active a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background: #e13911;
}









#product-list .content {
	margin: 20px 0 0;
	font-weight: 300;
}

#product-list .category {
	display: flex;
	flex-wrap: wrap;
}
#product-list .category + .category {
	margin-top: 40px;
}

#product-list .group {
}
#product-list .group + .group {
	margin-top: 40px;
}



#product-list h2 {
	width: 100%;
	margin: 0 0 30px;
	padding: 10px 12px 12px;
	font-size: 18px;
	background: #f0f0f0
}
#product-list h3 {
	margin: 0 0 20px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
#product-list h3 span {
	display: inline-block;
	padding-right: 12px;
	font-size: 14px;
	font-weight: 300;
	background: #f8f8f8;
}


#product-list .group {
	width: 100%;
}

#product-list .group ul {
	display: flex;
	flex-wrap: wrap;
}
#product-list .group li {
	width: calc(50% - 8px);
}
#product-list .group li:nth-child(2n) {
	margin-left: 16px;
}
#product-list .group li:nth-child(n + 3) {
	margin-top: 20px;
}




#product-list .group li a {
	position: relative;
}
#product-list .group .title {
	padding: 12px 10px 16px;
	text-align: center;
	font-size: 12px;
	line-height: 1.5;
}





#product-topics {
	overflow: hidden;
	padding: 45px 0 40px;
}
#product-topics header {
	margin: 0 0 30px 16px;
}
#product-topics header h2 {
	font-size: 26px;
	font-weight: 300;
}
#product-topics header a {
	display: none;
}


#product-topics .topics ul li a {
	box-sizing: border-box;
	display: block;
	width: calc(100vw - 32px);
	max-width: 400px;
	padding-left: 16px;
}

#product-topics .topics .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#product-topics .topics a .thumb::after {
	border-radius: 0 0 15px 15px;
}
#product-topics .topics .thumb img {
	aspect-ratio: 428 / 316;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#product-topics .topics .title {
	margin: 16px 16px 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 300;
}

#product-topics .more-button {
	margin-left: 16px;
	margin-right: 16px;
}





#product-topics .slick-dots {
	position: relative;
	display: flex;
	height: 12px;
	margin: 25px 0 0 16px;
	font-size: 0;
}
#product-topics .slick-dots li + li {
	margin-left: 10px;
}
#product-topics .slick-dots button {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin: 0;
	padding: 0;
	font-size: 0;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 6px;
}
#product-topics .slick-dots .slick-active button {
	background: #e13911;
}











/* ---------------------------------------------------------------------------------------------------- */
/* MODAL - VIDEO */

#video-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2200;
	background: rgba(248,248,248,0.95);
	transition: all 300ms ease-out;
	opacity: 0;
}
body.modal-video #video-overlay {
	opacity: 1;
}
body.modal-video {
	overflow: hidden;
}


#video-viewer {
	position: fixed;
	width: 100vw;
	height: calc(100vw / 16 * 9);
	left: 0;
	top: calc(50% - (100vw / 16 * 9 * 0.5));
	z-index: 2210;
	transition: all 300ms ease-out;
	
	opacity: 0;
}
#video-viewer iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

#video-viewer.active {
	opacity: 1;
}




#video-close-button {
	position: fixed;
	display: block;
	width: 30px;
	height: 30px;
	right: 16px;
	top: calc(50% - (100vw / 16 * 9 * 0.5) - 25px);
	z-index: 2220;
	margin: 0 -4px 0 0;
	transition: all 300ms ease-out;
	opacity: 0;
}
#video-close-button::before,
#video-close-button::after {
	position: absolute;
	display: block;
	content: "";
	width: 24px;
	height: 1px;
	left: calc(50% - 12px);
	background: #333;
	cursor: pointer;
}
#video-close-button::before {
	transform: rotate(45deg);
}
#video-close-button::after {
	transform: rotate(-45deg);
}
body.modal-video #video-close-button {
	opacity: 1;
}







/* ---------------------------------------------------------------------------------------------------- */
/* TOP VERSION */

#top-topics {
	padding: 40px 0;
	background: #f8f8f8;
}
#top-product {
	margin-top: 0;
	background: #fff;
}

#top-topics .content .pickup {
	margin: 0 0 50px;
	padding: 0 16px;
}
#top-topics .content .pickup > a {
	display: block;
	margin: 0 auto;
}
#top-topics .content .pickup .thumb {
	width: 100%;
}
#top-topics .content .pickup .thumb img {
	aspect-ratio: 1 / 1;
	object-position: 50% 75%;
}
#top-topics .content .box {
	margin: 30px auto 0;
}

#top-topics .content h3 {
	font-size: 24px;
	font-weight: 300;
	text-align: center;
}

#top-topics .content .pict {
	display: flex;
	justify-content: center;
	margin: 30px 0 0;
}
#top-topics .content .pict span {
	display: block;
	width: 60px;
}
#top-topics .content .pict span + span {
	margin-left: 30px;
}

#top-topics .content .lead {
	margin: 20px 12px 0;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
}

#top-topics .content .text {
	margin: 20px 12px 0;
}
#top-topics .content .text p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.85;
}

#top-topics .nav {
	display: flex;
	justify-content: center;
	margin: 30px 0 0;
}

#top-topics .nav a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(50% - 12px);
	height: 50px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
#top-topics .nav a:active {
	color: #e13911;
	border-color: #e13911;
}




#top-topics .title {
	line-height: 1.75;
	font-size: 16px;
	font-weight: 300;
}
#top-topics .title dt {
	line-height: 1.75;
	font-size: 16px;
	font-weight: 300;
}
#top-topics .title dd {
	margin: 10px 0 0;
	line-height: 1.75;
	font-size: 13px;
	font-weight: 300;
	
	/*
	height: 5.25em;
	
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	*/
}








body.notfound main {
}
body.notfound #scroll-top {
	display: none !important;
}

#notfound h2 {
	margin: 0 0 30px;
	font-size: 16px;
	font-weight: 300;
	font-family: Roboto, sans-serif;
}
#notfound p {
	font-size: 15px;
	line-height: 2;
}
#notfound nav {
	margin: 50px 0 100px;
}
#notfound .more {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
#notfound .more span {
	position: relative;
	top: -1px;
}
#notfound .more:active {
	color: #e13911;
	border-color: #e13911;
}










/* NEWS */

.entry-body * + .product-list {
	margin-top: 20px;
}
.entry-body .product-list + * {
	margin-top: 20px;
}

.entry-body .product-list ul {
	display: flex;
	flex-wrap: wrap;
}
.entry-body .product-list li {
	width: calc((100% - 20px) / 2);
	margin-left: 20px;
	margin-bottom: 30px;
}
.entry-body .product-list li:nth-child(2n + 1) {
	margin-left: 0;
}
.entry-body .product-list li .thumb {
	background: #fff;
}
.entry-body .product-list li img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	transition: all 300ms ease-out;
}
.entry-body .product-list li .thumb.transparent {
	background: none;
}
.entry-body .product-list li a:hover img {
	opacity: 0.7;
}
.entry-body .product-list li dl {
	margin: 10px 0 0;
}
.entry-body .product-list li dt {
	text-align: center;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .product-list li dt + dd {
	margin: 5px 0 0;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.8;
}
.entry-body .product-list li dd + dd {
	margin: 5px 0 0;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.8;
}



.entry-body * + .fabric-list {
	margin-top: 20px;
}
.entry-body .fabric-list + * {
	margin-top: 20px;
}

.entry-body .fabric-list ul {
	display: flex;
	flex-wrap: wrap;
}
.entry-body .fabric-list li {
	width: calc((100% - 20px) / 3);
	margin-left: 10px;
	margin-bottom: 30px;
}
.entry-body .fabric-list li:nth-child(3n + 1) {
	margin-left: 0;
}
.entry-body .fabric-list li img {
	width: 100%;
	height: auto;
}
.entry-body .fabric-list li dl {
	margin: 10px 0 0;
}
.entry-body .fabric-list li dt {
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.8;
}
.entry-body .fabric-list li dt + dd {
	margin: 2px 0 0;
	text-align: center;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.8;
}
.entry-body .fabric-list li dd + dd {
	margin: 8px 0 0;
	font-size: 11px;
	font-weight: 300;
	line-height: 1.8;
}



.entry-body h3 {
	margin: 15px 0;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.5;
}
.entry-body h4 {
	margin: 15px 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
}
.entry-body h3 + h4 {
	margin-top: -5px;
}


.entry-body * + .multi-column {
	margin-top: 30px;
}
.entry-body .multi-column + * {
	margin-top: 30px;
}

.entry-body .multi-column {
}
.entry-body .multi-column .thumb {
	background: #fff;
}
.entry-body .multi-column .article {
}
.entry-body .multi-column .thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}
.entry-body .multi-column .thumb.transparent {
	background: none;
}
.entry-body .multi-column .thumb.transparent img {
	aspect-ratio: auto;
}

.entry-body .multi-column h3 {
	margin: 15px 0;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.5;
}
.entry-body .multi-column dl {
	display: flex;
	justify-content: space-between;
	padding-bottom: 8px;
	border-bottom: 1px solid #ddd;
}
.entry-body .multi-column dl + dl {
	margin-top: 8px;
}
.entry-body .multi-column dt {
	width: 60px;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .multi-column dd {
	width: calc(100% - 60px);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .multi-column .note {
	margin: 15px 0 0 ;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.8;
}





.entry-body * + .multi-column-container {
	margin-top: 30px;
}
.entry-body .multi-column-container + * {
	margin-top: 30px;
}

.entry-body .multi-column-container {
}
.entry-body .multi-column-b {
}
.entry-body .multi-column-b:nth-of-type(n + 2) {
	margin-top: 30px;
}
.entry-body .multi-column-b .thumb {
	background: #fff;
}
.entry-body .multi-column-b .article {
}
.entry-body .multi-column-b .thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}
.entry-body .multi-column-b .thumb.transparent {
	background: none;
}
.entry-body .multi-column-b .thumb.transparent img {
	aspect-ratio: auto;
}

.entry-body .multi-column-b h3 {
	margin: 15px 0;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.5;
}
.entry-body .multi-column-b .comment {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .multi-column-b dl {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #ddd;
}
.entry-body .multi-column-b dl + dl {
	margin-top: 8px;
}
.entry-body .multi-column-b dt {
	width: 60px;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .multi-column-b dd {
	width: calc(100% - 60px);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .multi-column-b .note {
	margin: 15px 0 0 ;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.8;
}





.entry-body .quote {
	margin: 30px 0;
	padding: 20px 25px;
	background: #ececec;
}
.entry-body .quote,
.entry-body .quote p {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}
.entry-body .quote p + p {
	margin-top: 15px;
}

.entry-body blockquote {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}



.entry-body * + .image-set {
	margin-top: 30px;
}
.entry-body .image-set + * {
	margin-top: 30px;
}
.entry-body .image-set .caption {
	margin: 12px 0 0;
}
.entry-body .image-set .caption,
.entry-body .image-set .caption p {
	font-size: 11px;
	font-weight: 300;
	line-height: 1.8;
}






iframe[src*="youtube"] {
	max-width: 100%;
	aspect-ratio: 16 / 9;
}








/* Language */

#language-button {
	position: fixed;
	display: flex;
	align-items: center;
	width: 80px;
	height: 50px;
	right: 50px;
	top: 0;
	z-index: 1010;
}
#language-button .lang-selector {
	position: absolute;
	left: 0px;
	top: 58px;
	height: 0;
	overflow: hidden;
	transition: all 300ms ease-out;
}
#language-button ul {
	box-sizing: border-box;
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
}
#language-button li a {
	display: block;
	padding: 6px;
	font-size: 14px;
	font-weight: 300;
	white-space: nowrap;
	color: #333;
	cursor: pointer;
}
#language-button li a:hover {
	text-decoration: underline;
}
#language-button li a[data-stt-active] {
	color: #c4c4c4;
}
#language-button .current {
	box-sizing: border-box;
	position: relative;
	display: flex;
	min-height: 18px;
	top: 1px;
	padding: 1px 0 1px 23px;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	background: url(../img/icon_globe.svg) 0 50% no-repeat;
	background-size: 18px auto;
}


body.index #language-button {
	transform: translateY(-66px);
	transition: all 300ms ease-out;
}


body.index.scrolled #language-button {
	transform: translateY(0);
}
body.force-show-header #language-button {
	transform: translateY(0) !important;
}

body.opened-langmenu #wrap > header,
body.opened-langmenu #menu-button,
body.opened-langmenu #language-button {
	transform: translateY(0) !important;
}






#product-list .overseas,
#product-list .exclusive {
	display: none;
}
html:not([lang="ja"]) #product-list .overseas {
	position: relative;
	display: block;
	top: -8px;
	padding: 0 0 12px;
	text-align: center;
}
html:not([lang="ja"]) #product-list .overseas span {
	display: inline-block;
	padding: 3px 5px 4px;
	font-size: 12px;
	color: #fff;
	background: #e13911;
	border-radius: 3px;
}

html:not([lang="ja"]) #product-list .exclusive {
	position: relative;
	display: block;
	top: -8px;
	padding: 0 0 12px;
	text-align: center;
}
html:not([lang="ja"]) #product-list .exclusive span {
	display: inline-block;
	padding: 3px 5px 4px;
	font-size: 11px;
	color: #fff;
	background: #555;
	border-radius: 3px;
}







.entry-body .title .extra {
	display: flex;
}
.entry-body .title .types {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	top: -3px;
	margin-left: 16px;
}
.entry-body .title .type {
	display: inline-block;
	margin-right: 10px;
	padding: 3px 5px 4px;
	font-size: 12px;
	color: #fff;
	background: #e13911;
	border-radius: 3px;
}



#store-menu.new-category ul {
	width: calc((80px * 9) + 32px);
}

#store-list #overseas {
	min-height: calc(100vh - 50px - 48px)
}
#store-list .contact dt {
	font-size: 18px;
}






#store-menu.new-category.compact li {
	width: calc((80px * 8) + 32px);
}


#store-list .intro {
	margin: 50px 0 0;
	font-weight: 300;
}


#store-list .area-selector {
	margin: 30px 0 100px;
}
#store-list .area-selector li + li {
	margin-top: 15px;
}
#store-list .area-selector a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	width: 210px;
	height: 40px;
	padding: 0 16px 2px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
#store-list .area-selector a::after {
	position: absolute;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	right: 8px;
	top: calc(50% - 8px);
	background: url(/img/arrow_next_orange.svg) 50% 50% no-repeat;
	background-size: 10px auto;
	filter: saturate(0);
	transition: all 200ms ease-out;
}
#store-list .area-selector a:hover {
	color: #e13911;
	border-color: #e13911;
}
#store-list .area-selector a:hover::after {
	filter: saturate(1);
}


#store-list header {
	position: relative;
	z-index: 110;
}
#store-list header .area-nav {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	align-items: center;
	width: 90px;
	height: 28px;
	right: 0;
	bottom: -2px;
	padding: 0 10px 2px;
	font-size: 13px;
	font-weight: 300;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 200ms ease-out;
}
#store-list header .area-nav::after {
	position: absolute;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	right: 4px;
	top: calc(50% - 8px);
	background: url(/img/arrow_next_orange.svg) 50% 50% no-repeat;
	background-size: 8px auto;
	filter: saturate(0);
	transition: all 200ms ease-out;
}
#store-list header .area-nav:hover {
	color: #e13911;
	border-color: #e13911;
}
#store-list header .area-nav:hover::after {
	filter: saturate(1);
}







#topics-list.cms-list .thumb img {
	aspect-ratio: 4 / 3;
}




.entry.cms .entry-body .text ul {
	margin-left: 20px;
}
.entry.cms .entry-body .text ul li {
	list-style: disc;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
}
.entry.cms .entry-body .text ul li + li {
	margin-top: 5px;
}
.entry.cms .entry-body .text .product-list ul li + li {
	margin-top: 0;
}

.entry.cms .entry-body .text ol {
	margin-left: 20px;
}
.entry.cms .entry-body .text ol li {
	list-style: decimal;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
}
.entry.cms .entry-body .text ol li + li {
	margin-top: 5px;
}


.entry.cms .entry-body .text * + ul,
.entry.cms .entry-body .text * + ol {
	margin-top: 20px;
}

.entry.cms .entry-body .text blockquote:not(.quote) {
	margin-left: 4px;
	padding-left: 14px;
	border-left: 2px solid #999;
	font-size: 12px;
	font-weight: 300;
}
.entry.cms .entry-body .text blockquote:not(.quote) p {
	font-size: 12px;
	font-weight: 300;
}
.entry.cms .entry-body .text * + blockquote:not(.quote) {
	margin-top: 20px;
}



.entry.cms .entry-body .text .product-list ul {
	margin-left: 0;
}
.entry.cms .entry-body .text .product-list ul li {
	list-style: none;
}



.entry.cms .entry-body span.heading1 {
	display: block;
	margin: 0 0 25px;
	padding: 5px 9px 6px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
	background: #f0f0f0;
}

/*
.entry.cms .entry-body .heading2 {
	display: flex;
	margin: 0 0 25px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
}
.entry.cms .entry-body .heading2::after {
	content: "";
	flex-grow: 1;
	display: block;
	height: 14px;
	margin-left: 12px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
*/

.entry.cms .entry-body .heading2 {
	display: flex;
	align-items: center;
	margin: 0 -30px 25px 0;
	padding-right: 30px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
}
.entry.cms .entry-body .heading2::after {
	content: "";
	flex-grow: 1;
	display: block;
	min-width: 30px;
	height: 14px;
	margin-left: 10px;
	background: url(/img/dot.png) 0 50% repeat-x;
}
.entry-body .text {
	overflow: hidden;
}





/* 2025 */

body.index,
body.index #wrap {
	overflow-x: hidden;
}





#top-feature {
	padding: 40px 0;
}
#top-feature + #top-product {
}


#top-feature header {
	margin-left: 16px;
}

#top-feature ul li a {
	box-sizing: border-box;
	display: block;
	width: calc(100vw - 32px);
	max-width: 400px;
	padding-left: 16px;
}
#top-feature .thumb {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
}
#top-feature a .thumb::after {
	border-radius: 0 0 15px 15px;
}
#top-feature .thumb img {
	aspect-ratio: 4 / 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top-feature .title {
	margin: 16px 16px 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 300;
}
#top-feature .more-button {
	margin-left: 16px;
	margin-right: 16px;
}


#top-feature .slick-dots {
	position: relative;
	display: flex;
	height: 12px;
	margin: 25px 0 0 16px;
	font-size: 0;
}
#top-feature .slick-dots li + li {
	margin-left: 10px;
}
#top-feature .slick-dots button {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin: 0;
	padding: 0;
	font-size: 0;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 6px;
}
#top-feature .slick-dots .slick-active button {
	background: #e13911;
}






#top-feature .title {
	line-height: 1.75;
	font-size: 16px;
	font-weight: 300;
}
#top-feature .title dt {
	line-height: 1.75;
	font-size: 16px;
	font-weight: 300;
}
#top-feature .title dd {
	margin: 10px 0 0;
	line-height: 1.75;
	font-size: 13px;
	font-weight: 300;
	
	/*
	height: 5.25em;
	
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	*/
}


#product-topics .topics .thumb img,
body.topics.detail .related-list .thumb img {
	aspect-ratio: 4 / 3;
}




