@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

.pc {
	display: none;
}



html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background: #fff;
}
header, footer, main, nav, section, article, figure, figcaption {
	display: block;
}
html, body, header, footer, main, nav, section, article, figure, figcaption,
div, p, ul, ol, dl, li, dt, dd,
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
i {
	font-style: normal;
}

img {
	vertical-align: bottom;
	border: none;
}

em {
	font-style: normal;
}

::selection {
	color: #fff;
	background: #000;
	opacity: 1;
}

#wrap > footer *::selection {
	color: #000;
	background: #bbb;
}


main {
	will-change: opacity;
	opacity: 0;
	transition: opacity 1000ms ease-out 100ms;
}
.loaded main {
	opacity: 1;
}

body {
	line-height: 1;
	color: #1e1e1e;
	font-family: "FP-ヒラギノ角ゴ ProN W4", sans-serif;
	background: #f0f0f0;
}

html:lang(en) body {
	font-family: "UniversLTPro-55Roman", sans-serif;
}


a {
	color: #1e1e1e;
	text-decoration: none;
}
a.disabled {
	pointer-events: none;
	cursor: default;
	opacity: 0.3;
}

.nowrap {
	white-space: nowrap;
}



html:lang(en) .column p {
	word-break: keep-all !important;
	text-align: left !important;
}





#wrap > header {
	position: fixed;
	width: 100%;
	height: 75px;
	left: 0;
	top: 0;
	z-index: 1000;
	background: #f0f0f0;
}


#wrap > header nav {
	position: fixed;
	width: 100vw;
	height: 100vh;
	height: 100lvh;
	left: 0;
	top: 75px;
	z-index: 999;
	background: #f0f0f0;
	overflow: auto;
	
	visibility: hidden;
	opacity: 0;
	transition: all 400ms ease-out;
}
body.menu #wrap > header nav {
	visibility: visible;
	opacity: 1;
}
body.menu main {
	visibility: hidden;
	transition: all 400ms ease-out;
}
body.menu footer {
	visibility: hidden;
	transition: all 400ms ease-out;
}

#wrap > header .logo {
	position: absolute;
	width: 172px;
	height: 38px;
	left: 20px;
	top: calc(50% - 19px);
}
#wrap > header .logo img {
	width: 100%;
	height: auto;
}


#wrap > header nav > ul {
	margin: 75px 60px 0;
	font-size: 16px;
	text-align: right;
}
#wrap > header nav > ul > li + li {
	margin-top: 30px;
}

#wrap > header nav > ul .submenu {
	height: 0;
	overflow: hidden;
	font-size: 14px;
	transition: all 300ms ease-out;
}
#wrap > header nav > ul ul li {
	margin-top: 20px;
}

#wrap > header .lang {
	margin: 50px 60px 0;
	text-align: right;
}
#wrap > header .lang ul {
	display: flex;
	justify-content: flex-end;
}
#wrap > header .lang li {
	position: relative;
}
#wrap > header .lang li + li {
	margin-left: 24px;
}
#wrap > header .lang li * {
	font-size: 16px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
#wrap > header .lang li + li::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 18px;
	left: -12.5px;
	top: calc(50% - 11px);
	background: #1e1e1e;
}
#wrap > header .lang li.current a {
	color: #999;
}



#wrap > header nav > ul li.expand > a {
	position: relative;
	display: inline-block;
	padding-right: 18px;
	cursor: pointer;
	transition: all 300ms ease-out;
}
#wrap > header nav > ul li.expand > a::after {
	position: absolute;
	display: block;
	content: "";
	width: 14px;
	height: 14px;
	right: 0;
	top: calc(50% - 7px);
	background: url(../img/arrow_expand.svg) 100% 50% no-repeat;
	background-size: 14px auto;
	transition: all 300ms ease-out;
}
#wrap > header nav > ul li.expand.opened > a {
	color: #aaa;
}
#wrap > header nav > ul li.expand.opened > a::after {
	transform: rotate(180deg);
}




#wrap > header .reserve {
	position: absolute;
	width: 80px;
	height: 30px;
	right: 62px;
	top: calc(50% - 15px);
}
#wrap > header .reserve a {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	font-size: 13px;
	font-family: "UniversLTPro-55Roman", sans-serif;
	border: 1px solid #1e1e1e;
}
#wrap > header .reserve a em {
	position: relative;
	display: inline-block;
	top: 1px;
}




#menu-button {
	position: fixed;
	width: 36px;
	height: 36px;
	right: 13px;
	top: 19px;
	z-index: 1001;
}
#menu-button a {
	position: relative;
	display: block;
	height: 36px;
}
#menu-button a i {
	position: absolute;
	width: 22px;
	height: 1px;
	left: 7px;
	top: 50%;
	background: #1e1e1e;
	transition: all 300ms ease-out;
}
#menu-button a i:nth-child(1) {
	margin-top: -7px;
}
#menu-button a i:nth-child(3) {
	margin-top: 7px;
}


body.menu #menu-button a i:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
body.menu #menu-button a i:nth-child(2) {
	opacity: 0;
}
body.menu #menu-button a i:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}











#wrap > footer {
	padding: 60px 20px 50px;
	color: #f0f0f0;
	background: #1e1e1e;
}
#wrap > footer a {
	color: #f0f0f0;
}
#wrap > footer a:hover,
#wrap > footer a:active {
	text-decoration: none;
}

#wrap > footer .inner {
	position: relative;
}

#wrap > footer .logo {
	position: relative;
	padding: 0 0 35px;
	border-bottom: 1px solid #646464;
}
#wrap > footer .logo img {
	width: 66%;
	height: auto;
}


#wrap > footer .nav {
	margin: 25px 0 0;
}

#wrap > footer .nav a {
	font-size: 12px;
}

#wrap > footer .nav .reserve {
	font-size: 14px;
	line-height: 1.9;
}
#wrap > footer .nav .reserve strong {
	font-size: 14px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
#wrap > footer .nav .reserve span {
	font-family: "UniversLTPro-55Roman", sans-serif;
}


#wrap > footer .menu {
	margin: 25px 0 0;
}
#wrap > footer .menu ul {
	display: inline;
	font-size: 0;
}
#wrap > footer .menu li {
	display: inline-block;
	width: 50%;
	margin: 0 0 18px;
}
#wrap > footer .menu ul.sp {
	display: block;
	margin: 40px 0 0;
}
#wrap > footer .menu li.sp a {
	color: #969696;
}

#wrap > footer .menu ul.external {
	display: block;
	margin: 15px 0 0;
	padding: 25px 0 0;
	border-top: 1px solid #646464;
}
#wrap > footer .menu ul.external li {
	margin: 0 0 24px;
}
#wrap > footer .menu ul.external a {
	display: inline-block;
	padding-right: 14px;
	background: url(../img/arrow_foot.svg) 100% 50% no-repeat;
	background-size: 9px auto;
}

#wrap > footer .extra {
	display: none;
}



#wrap > footer .sns {
	margin: 20px 0 0;
}
#wrap > footer .sns ul {
	display: flex;
}
#wrap > footer .sns li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: #f0f0f0;
}
#wrap > footer .sns li a img {
	width: 18px;
	height: auto;
}
#wrap > footer .sns li + li {
	margin-left: 36px;
}
#wrap > footer .lang {
	margin: 30px 0 0;
}
#wrap > footer .lang ul {
	display: flex;
}
#wrap > footer .lang li {
	position: relative;
}
#wrap > footer .lang li + li {
	margin-left: 16px;
}
#wrap > footer .lang li * {
	font-size: 14px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
#wrap > footer .lang li + li::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 14px;
	left: -9px;
	top: calc(50% - 7px);
	background: #f0f0f0;
}

#wrap > footer .info {
	margin: 35px 0 0;
}
#wrap > footer .address {
	font-size: 14px;
	line-height: 2;
}

#wrap > footer .copyright {
	margin: 2px 0 0;
	font-size: 12px;
	font-family: "UniversLTPro-55Roman", sans-serif;
	color: #969696;
}
#wrap > footer .copyright span {
	position: relative;
	display: inline-block;
	margin: 0 3px;
	transform: scale(1.15);
}









#wrap {
	padding: 75px 0 0;
}




















body.page main {
	box-sizing: border-box;
	margin: 50px auto 100px;
	padding: 0 20px;
}

body.news.detail main,
body.collection.detail main {
	margin-bottom: 20px;
}

body.page main {
	will-change: opacity;
	opacity: 0;
	transition: opacity 1000ms ease-out 100ms;
}
html.loaded body.page main {
	opacity: 1;
}

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




body.page h1 {
	margin: 0 0 25px;
	letter-spacing: 5px;
	line-height: 1.2;
	font-size: 36px;
	font-weight: normal;
	font-family: "UniversNextPro-Thin", sans-serif;
}
body.page h2 {
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}



.static-box dt {
	font-weight: normal;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}



.entry-nav {
	margin: 50px 0;
}
.entry-nav ul {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.entry-nav li + li {
	margin-top: 10px;
}
.entry-nav li a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 128px;
	height: 30px;
	font-size: 13px;
	border: 1px solid #1e1e1e;
}



.entry-list + .entry-list {
	margin-top: 70px;
}

.entry-list .header {
	margin: 0 0 30px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c8c8c8;
}
.entry-list h3 {
	font-size: 14px;
	font-weight: normal;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.entry-list ul {
}
.entry-list li {
}
.entry-list li + li {
	margin-top: 25px;
}

.entry-list .pict {
	margin: 0 0 15px;
}
.entry-list .date {
	font-size: 14px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
.entry-list .title {
	margin: 2px 0 0;
	line-height: 1.9;
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}
.entry-list .pict + .summary .title {
	margin-top: -5px;
}

.entry-list a {
	display: block;
	transition: all 300ms ease-out;
}
.entry-list a:hover {
	opacity: 0.7;
}


.content-intro {
	margin: 40px 0 40px;
}
.content-intro p {
	font-size: 14px;
	line-height: 2;
}


.schedule-box {
	min-height: 200px;
	margin: 40px 0 0;
	background: #ddd;
}



.entry-detail {
	margin: 50px 0 0;
}
.entry-detail .column {
}
.entry-detail .column .box {
}
.entry-detail .column .pict {
}
.entry-detail .column .pict {
	margin: 25px 0 0;
}
.entry-detail .column .pict span {
	display: block;
	margin: 8px 0 0 ;
	font-size: 11px;
	line-height: 1.6;
	text-align: right;
}


.entry-detail .header .date {
	font-size: 16px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
.entry-detail .header h3 {
	margin: 10px 0 0;
	line-height: 1.75;
	font-size: 18px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.entry-detail .column .text {
	margin: 25px 0 0;
}
.entry-detail .column .text p {
	line-height: 2;
	font-size: 14px;
}
.entry-detail .column .text p + p {
	margin-top: 2em;
}


.entry-detail .column .text nav {
	margin: 25px 0 0;
}
.entry-detail .column .text nav a {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 250px;
	height: 50px;
	padding: 0 28px;
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	background: #1e1e1e;
}
.entry-detail .column .text nav a em {
	position: absolute;
	display: block;
	width: 52px;
	height: 6px;
	right: 18px;
	top: calc(50% - 3px);
	background: url(../img/arrow_white.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
.entry-detail .column .text nav a + a {
	margin-top: 20px;
}





.entry-extra {
	margin: 50px 0 0;
}
.entry-extra .header {
	margin: 0 0 30px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c8c8c8;
}
.entry-extra h3 {
	font-size: 14px;
	font-weight: normal;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.entry-extra dl {
}
.entry-extra dt {
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
	line-height: 1.9;
}
.entry-extra dd {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.9;
}
.entry-extra dl + dl {
	margin-top: 20px;
}





.news-list {
	margin: 50px 0 0;
}
.news-list ul {
	border-top: 1px solid #c8c8c8;
}
.news-list li {
	border-bottom: 1px solid #c8c8c8;
}
.news-list li a {
	display: block;
}
.news-list li .summary {
	box-sizing: border-box;
	display: block;
	padding: 20px 0 15px;
}
.news-list li .date {
	position: relative;
	font-size: 14px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
.news-list li .title {
	position: relative;
	margin: 4px 0 0;
	line-height: 1.75;
	font-size: 14px;
}


.return-index {
	margin: 80px 0 0;
}
.return-index a {
	display: inline-flex;
	letter-spacing: 2px;
	font-size: 20px;
	font-weight: 400;
	font-family: "UniversNextPro-Thin", sans-serif;
}
.return-index a .back {
	position: relative;
	display: flex;
	width: 50px;
	height: 30px;
	top: -5px;
	background: url(../img/arrow_left_thin.svg) 0% 50% no-repeat;
	background-size: 42px auto;
	transition: all 300ms ease-out;
}
.return-index a:active .back {
	transform: translateX(-5px);
}






.about-section {
	margin: 50px 0 0;
}
.about-section + .about-section {
	margin-top: 70px;
}
.about-section .column {
	display: flex;
	flex-direction: column-reverse;
}
.about-section .column .box {
}
.about-section .column .pict {
}

.about-section .header {
	margin: 0 0 20px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c8c8c8;
}
.about-section .header h3 {
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.about-section .column .text {
	margin: 15px 0 0;
}
.about-section.text-only .column .text {
	margin-top: 0;
}
.about-section.text-only .header {
	margin-bottom: 15px;
}

.about-section .column .text p {
	line-height: 2;
	font-size: 14px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c9c9c9;
}
.about-section .column .text dl {
	margin: 15px 0 0;
	line-height: 2;
	font-size: 14px;
}
.about-section .column .text dt {
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}
.about-section .column .text dl:last-of-type  {
	padding: 0 0 15px;
	border-bottom: 1px solid #c9c9c9;
}

.about-section .column nav {
	margin: 30px 0 0;
}
.about-section .column nav a {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 250px;
	height: 50px;
	padding: 0 28px;
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	background: #1e1e1e;
}
.about-section .column nav a em {
	position: absolute;
	display: block;
	width: 52px;
	height: 6px;
	right: 18px;
	top: calc(50% - 3px);
	background: url(../img/arrow_white.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}







.company-list {
	margin: 50px 0 0;
}
.company-list .header {
	margin: 0 0 30px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c8c8c8;
}
.company-list .header h3 {
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.company-list dt {
	font-weight: normal;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}


.company-list dl {
	font-size: 14px;
	line-height: 1.9;
}
.company-list dt,
.company-list dd {
	box-sizing: border-box;
}
.company-list dt {
}
.company-list dd {
	margin: 4px 0 0;
}
.company-list dl + dl {
	margin-top: 20px;
}
.company-list dd a {
	text-decoration: underline;
}
.company-list dd a:hover {
	text-decoration: none;
}





.company-history {
	margin: 70px 0 0;
}
.company-history .header {
	margin: 0 0 30px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c8c8c8;
}
.company-history .header h3 {
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.company-history dt {
}


.company-history dl {
	font-size: 14px;
	line-height: 1.9;
}
.company-history dt {
}
.company-history dd {
	margin: 4px 0 0;
}
.company-history dl + dl {
	margin-top: 20px;
}





body.collection .entry-detail .column {
	display: flex;
	flex-direction: column-reverse;
}
body.collection .entry-detail .column .box {
}
body.collection .entry-detail .column .pict {
	margin: 0 0 10px;
}

body.collection .entry-detail h3 {
	font-size: 18px;
	line-height: 2;
}

.collection-caption {
	margin: 15px 0 0;
	font-size: 14px;
	line-height: 2;
}
.collection-detail {
	margin: 40px 0 0;
	font-size: 14px;
}
.collection-detail dl + dl {
	margin-top: 40px;
}
.collection-detail dt {
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}
.collection-detail dd {
	margin: 12px 0 0;
	line-height: 2;
}






.indent-list {
	margin: 50px 0 0;
}
.indent-list + .indent-list {
	margin-top: 60px;
}
.indent-list .header {
	margin: 0 0 20px;
	padding: 0 0 15px;
	border-bottom: 1px solid #c8c8c8;
}
.indent-list .header h3 {
	font-size: 14px;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.indent-list dl {
	line-height: 2;
	font-size: 14px;
}
.indent-list dt {
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}
.indent-list dd {
	margin: 4px 0 0;
}
.indent-list dl + dl {
	margin-top: 25px;
}

.indent-list dl.large dt {
	font-size: 20px;
}
.indent-list dl.large dt.en {
	font-family: "UniversNextPro-Bold", sans-serif;
}
.indent-list dl.large dt + dd {
	margin-top: 5px;
}
.indent-list p {
	line-height: 2;
	font-size: 14px;
}
.indent-list p + p {
	margin-top: 5px;
}
.indent-list p strong.tel {
	font-size: 18px;
}

.indent-list a {
	text-decoration: underline;
}
.indent-list a:hover {
	text-decoration: none;
}

.indent-list nav {
	margin: 20px 0 0;
}
.indent-list nav a {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 250px;
	height: 50px;
	padding: 0 28px;
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	background: #1e1e1e;
}
.indent-list nav a em {
	position: absolute;
	display: block;
	width: 52px;
	height: 6px;
	right: 18px;
	top: calc(50% - 3px);
	background: url(../img/arrow_white.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}






.static-box {
	margin: 50px 0 0;
}
.static-box p {
	font-size: 14px;
	line-height: 2;
}
.static-box p.intro {
	margin: 0 0 35px;
}
.static-box p.foot {
	margin-top: 20px;
}

.static-box dl {
	font-size: 14px;
	line-height: 2;
}
.static-box dl + dl {
	margin-top: 25px;
}
.static-box dd + dd {
	margin-top: 25px;
}
.static-box dd {
	margin-top: 4px;
}
.static-box dd a {
	text-decoration: underline;
}
.static-box dd a:hover {
	text-decoration: none;
}

.static-box .caption {
}
.static-box table + .caption {
	margin-top: 25px;
}
.static-box .note {
	margin-top: 10px;
}

.static-box table {
	width: 100%;
	margin: 20px 0 0;
	border-collapse: collapse;
}
.static-box table th,
.static-box table td {
	width: 50%;
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
	font-family: "FP-ヒラギノ角ゴ ProN W4", sans-serif;
	border: 1px solid #1e1e1e;
}
.static-box table thead th {
	padding: 8px;
}
.static-box table tbody th {
	padding: 2px 8px;
}
.static-box table td {
	padding: 2px 8px;
}
.static-box table.pad td {
	padding: 25px 8px;
}




.parag-list h3 {
	font-size: 14px;
	font-weight: normal;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}
.parag-list p + p {
	margin-top: 1.5em;
}
.parag-list * + h3 {
	margin-top: 45px;
}
.parag-list h3 + * {
	margin-top: 12px;
}



.static-box.wide {
	max-width: 1200px;
	margin: 30px 0 0;
}
.static-box.wide table.pad {
	max-width: 810px;
}
.static-box table.wide th,
.static-box table.wide td {
	width: auto;
}
.static-box table.wide th {
	padding-top: 5px;
}
.static-box table.wide td {
	padding-top: 5px;
}



.parag-list nav {
	margin: 20px 0 0;
}
.parag-list nav a {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 250px;
	height: 50px;
	padding: 0 28px;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	background: #1e1e1e;
	cursor: pointer;
}
.parag-list nav a em {
	position: absolute;
	display: block;
	width: 27px;
	height: 10px;
	right: 26px;
	top: calc(50% - 5px);
	background: url(../img/icon_pdf.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}












/* ---------- */
/* English */

html:lang(en) .static-box table th,
html:lang(en) .static-box table td {
	font-family: "UniversLTPro-55Roman", sans-serif;
}


html:lang(en) .indent-list .header h3,
html:lang(en) .indent-list dl.large dt.en {
	font-family: "UniversLTPro-65Bold", sans-serif;
}

html:lang(en) .about-section .header h3,
html:lang(en) .about-section .column .text dt {
	font-weight: normal;
	font-family: "UniversLTPro-65Bold", sans-serif;
}



html:lang(en) .static-box table th,
html:lang(en) .static-box table td {
	font-size: 12px;
	font-family: "UniversLTPro-55Roman", sans-serif;
}


html:lang(en) .static-box table thead th {
	padding: 8px 8px;
	line-height: 1.6;
}
html:lang(en) .static-box table tbody th {
	padding: 2px 8px;
	line-height: 1.6;
}
html:lang(en) .static-box table td {
	padding: 2px 8px;
	line-height: 1.6;
}
html:lang(en) .static-box table.pad td {
	padding: 20px 8px;
	line-height: 1.6;
	text-align: center;
}


html:lang(en) .scroller {
	position: relative;
	width: calc(100vw);
	margin: 0 -20px;
	padding-bottom: 12px;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
html:lang(en) .scroller table {
	display: inline-table;
	margin-left: 20px;
}
html:lang(en) .scroller .spacer {
	display: inline-block;
	width: 20px;
	height: 20px;
}





