@charset 'UTF-8';

/*

    Base

*/

/*  color  */
:root {
	--main-color: #000000;
	--accent-color: #000000;
	--warning-color: #DC143C;
	--success-color: #333366;
}

/*  webkit  */
body {
	-webkit-text-size-adjust: 100%;
}
a {
	-webkit-tap-highlight-color: rgba(255,255,255,0.4);
}
img {
	-webkit-touch-callout: none;
}
input[type=password], input[type=text], button, textarea {
	max-width: 100%;
	-webkit-appearance: none;
	border-radius: 0;
}

/*  font  */
html { font-size: 8px;}
@media screen and (min-width: 768px) { html { font-size: 10px;}}
body {
	font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #333333;
}
a {
	color: var(--main-color);
	transition: all 0.1s linear;
}
a:hover   { opacity: 0.7;}
p {
	line-height: 2;
	font-feature-settings: "palt";
}
}

/*  size color  */
body { font-size: 1.5rem;}
h1 { font-size: 3.8rem;}
h2 { font-size: 2.4rem;}
h3 { font-size: 2.0rem;}

/*  common  */
.global ul,
.global li,
.global p {
	margin: 0;
	list-style: none;
	line-height: 1;
}
.global a {
	text-decoration: none;
	color: inherit;
}
div.wrapper {
	margin: 0 20px;
}
@media screen and (min-width: 768px) {
	div.wrapper {
		max-width: 1020px;
		margin: 0 auto;
	}
	div.wrapper.narrow {
		max-width: 640px;
	}
}

/*  max width  */
body img,
body iframe {
	max-width: 100%;
}

/*  placeholder  */
::placeholder {
	font-size: 1.4rem;
	color: #999999;
}

/*  material icons  */
.material-icons {
	margin-right: 0.25em;
	font-size: 1.25em;
	vertical-align: middle;
}





/*

    Header

*/

/*  layout  */
body {
	padding-top: 45px;
}
header.global {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45px;
	background-color: #000000;
	color: #ffffff;
	overflow: hidden;
	z-index: 99;
}
header.global a.sitetop {
	flex-shrink: 0;
}
header.global ul.pages {
	flex-glow: 1;
	width: 100%;
}
header.global a.menuopen {
	flex-shrink: 0;
}
@media screen and (min-width: 768px) {
	body {
		padding-top: 55px;
	}
	header.global {
		height: 55px;
	}
}

/*  sitetop  */
header.global a.sitetop {
	display: block;
	float: left;
	height: 35px;
	padding: 5px;
}
header.global a.sitetop h1,
header.global a.sitetop p {
	margin: 0;
	padding: 0;
	border: none;
}
header.global a.sitetop img {
	display: block;
	height: 35px;
}
@media screen and (min-width: 768px) {
	header.global a.sitetop {
		height: 45px;
	}
	header.global a.sitetop img {
		height: 45px;
	}
}

/*  pages  */
header.global ul.pages {
	display: flex;
	justify-content: flex-end;
}
header.global ul.pages li {
	margin-left: 2em;
	font-size: 1.4rem;
}
header.global ul.pages li.account {
	margin-right: 0.5em;
}
header.global ul.pages li a {
	display: block;
	height: 55px;
	line-height: 55px;
}
header.global ul.pages li.account a label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding-left: 35px;
	background-image: url('../images/account.png');
	background-position: left center;
	background-size: 25px auto;
	cursor: pointer;
}
header.global ul.pages li.account a label span.name {
	display: block;
	max-width: 14em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
header.global ul.pages li.account a label span.material-icons {
	flex-shrink: 0;
}
header.global ul.pages li.account input {
	display: none;
}
header.global ul.pages li.account ul {
	display: none;
	position: fixed;
	top: 55px;
	min-width: 10em;
	padding: 0.25em 0;
	background-color: #000000;
}
header.global ul.pages li.account ul li {
	margin: 0;
}
header.global ul.pages li input:checked + ul,
header.global ul.pages li input:checked + ul li {
	display: block;
}
header.global ul.pages li.account ul li span.material-icons {
	color: #cccccc;
}
header.global ul.pages li.account ul li.boundary {
	margin: 0.5em 0 0.25em;
	border-top: 1px #333333 solid;
}
header.global ul.pages li.account ul li a {
	display: block;
	height: auto;
	padding: 0.5em 1em;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	header.global ul.pages li {
		display: none;
	}
	header.global ul.pages li.account {
		display: block;
	}
	header.global ul.pages li a {
		height: 45px;
		line-height: 45px;
	}
	header.global ul.pages li.account a label span.name {
		max-width: 8em;
	}
	header.global ul.pages li.account ul {
		top: 45px;
	}
}
@media screen and (max-width: 374px) {
	header.global ul.pages li.account a label span.name {
		max-width: 4em;
	}
}

/*  menuopen  */
header.global a.menuopen {
	display: block;
	float: right;
	width: 60px;
	height: 45px;
	background-image: url('../images/menuopen.png');
	background-size: contain;
	cursor: pointer;
}
@media screen and (min-width: 768px) {
	header.global a.menuopen {
		padding: 5px;
	}
}





/*

    Navigation

*/

/*  layout  */
nav.global {
	display: none;
	position: fixed;
	left: 0;
	top: 45px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	overflow: scroll;
	z-index: 999;
}
@media screen and (min-width: 768px) {
	nav.global {
		top: 55px;
		overflow: hidden;
	}
	nav.global div.container {
		max-width: 1020px;
		margin: 0 auto;
	}
}

/*  common  */
nav.global a {
	display: block;
	padding: 0.25em 0;
	color: #ffffff;
	font-family: 'Doppio One', sans-serif;
	font-size: 1.8rem;
}
nav.global ul li {
	padding: 0.5em 0;
}
nav.global ul.sub {
	margin-top: 0.75em;
	padding-top: 0.75em;
	border-top: 1px #333333 solid;
}
nav.global a span {
	display: block;
	font-size: 1.0rem;
	color: #999999;
	font-family: sans-serif;
	line-height: 2;
}
nav.global a.menuclose {
	border-top: 1px #333333 solid;
}
@media screen and (min-width: 768px) {
	nav.global div.container {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		padding: 30px 15px;
	}
	nav.global div.container ul {
		margin-right: 4em;
	}
	nav.global div.container ul.sub {
		margin: 0;
		padding: 0 0 0 4em;
		border-top: none;
		border-left: 1px #333333 solid;
	}
	nav.global a {
		font-size: 2.0rem;
	}
	nav.global a span {
		font-size: 1.1rem;
	}
}

/*  menuclose  */
nav.global a.menuclose {
	display: block;
	height: 40px;
	margin-bottom: 45px;
	background-image: url('../images/menuclose.png');
	background-position: center center;
	background-size: contain;
	cursor: pointer;
}





/*

    Floating

*/

/*  layout  */
#floating {
	position: fixed;
	bottom: 100px;
	right: 0;
	z-index: 8;
}
#floating ul {
	margin: 0;
	list-style: none;
}
#floating ul li {
	width: 40px;
}
@media screen and (min-width: 768px) {
	#floating {
		bottom: 250px;
	}
}





/*

    Footer

*/

/*  layout  */
footer.global {
	background-color: #000000;
	color: #ffffff;
	overflow: hidden;
}
@media screen and (min-width: 768px) {
	footer.global {
		padding: 20px;
	}
	footer.global div.about {
		float: left;
		width: 340px;
	}
	footer.global nav.footer {
		float: right;
		max-width: 550px;
	}
}

/*  about  */
footer.global div.about {
	padding: 15px;
}
footer.global div.about img {
	width: 180px;
}
footer.global div.about p {
	padding-left: 10px;
	font-size: 1.2rem;
	line-height: 1.5;
}
@media screen and (min-width: 768px) {
	footer.global div.about img {
		width: auto;
	}
	footer.global div.about p {
		font-size: 1.5rem;
	}
}

/*  signup  */
footer.global nav.footer div.signup {
	padding: 25px 25px;
	border-top: 1px #333333 solid;
}
footer.global nav.footer div.signup p {
	margin-bottom: 1em;
	font-size: larger;
	font-weight: bold;
}
footer.global nav.footer div.signup ul {
	margin: 1em 0 1.5em;
}
footer.global nav.footer div.signup ul li {
	margin-left: 1em;
	margin-bottom: 0.5em;
	list-style: outside;
	line-height: 1.5;
	font-size: 1.3rem;
}
footer.global nav.footer div.signup a {
	display: inline-block;
	padding: 0.25em 3em;
	border: 1px #ffffff solid;
	font-family: 'Doppio One', sans-serif;
	font-size: 2.1rem;
}
@media screen and (min-width: 768px) {
	footer.global nav.footer div.signup {
		padding: 30px 0 40px;
		border: none;
	}
}

/*  pages  */
footer.global nav.footer div.pages ul {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	border-top: 1px #333333 solid;
}
footer.global nav.footer div.pages ul li:before {
	content: '';
	margin: 0 1em;
	border-left: 1px #ffffff solid;
}
footer.global nav.footer div.pages ul li:first-child:before {
	content: none;
}
footer.global nav.footer div.pages ul li a {
	font-size: 1.2rem;
	color: #ffffff;
}
@media screen and (min-width: 768px) {
	footer.global nav.footer div.pages ul {
		justify-content: flex-start;
		padding: 1em 0;
	}
}





/*

    Contents

*/

/*  layout  */
div#contents {
	padding: 0 0 2em;
}
@media screen and (min-width: 768px) {
	div#contents {
		padding: 0 0 4em;
	}
}

/*  container  */
div.container {
	margin: 1em;
}
@media screen and (min-width: 768px) {
	div.container {
		max-width: 1160px;
		margin: 0 auto;
		padding: 0 20px;
	}
}

/*  container.narrow  */
@media screen and (min-width: 768px) {
	div.container.narrow {
		max-width: 960px;
	}
	div.container.thin {
		max-width: 720px;
	}
}

/*  container.form  */
@media screen and (min-width: 768px) {
	div.container.form {
		max-width: 720px;
	}
}

/*  breadcrumbs  */
nav.breadcrumbs {
	margin-top: 0.5em;
}
nav.breadcrumbs ol {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
nav.breadcrumbs ol li {
	display: inline;
	margin: 0;
	color: #999999;
	font-size: 1.3rem;
}
nav.breadcrumbs ol li:before {
	content: '>';
	margin: 0 0.25em;
}
nav.breadcrumbs ol li:first-child:before {
	content: none;
}
nav.breadcrumbs ol li a {
	color: inherit;
}
@media screen and (min-width: 768px) {
	nav.breadcrumbs {
		padding: 0;
	}
}





/*

    Message

*/

/*  layout  */
#message {
	display: flex;
	align-items: center;
	margin: 1em;
	padding: 0.5em 1em;
	color: #ffffff;
	border-radius: 3px;
}
#message.success { background-color: var(--success-color);}
#message.failure { background-color: var(--warning-color);}
#message p {
	margin: 0 0 0 0.75em;
	line-height: 1.5;
}
@media screen and (min-width: 768px) {
	#message {
		max-width: 1200px;
		margin: 1em auto;
	}
}





/*

    Common modules

*/

/*  h1  */
h1 {
	margin: 0.75em 0 0.25em;
	padding: 0.125em 0;
	font-weight: normal;
	font-family: 'Doppio One', sans-serif;
}
h1 span {
	display: block;
	font-size: 1.5rem;
	color: #666666;
}
h1.type2 {
	margin: 2em 0;
	text-align: center;
	font-weight: bold;
}
h1.type2 span {
	color: #000000;
	font-size: 1.8rem;
	font-weight: normal;
}

/*  h2  */
h2 {
	margin: 1.5em 0 1.5em;
	font-family: 'Doppio One', sans-serif;
}

/*  h3  */
h3 {
	margin: 2em 0 1em;
	padding: 0 0.75em;
	border-left: 2px #cccccc solid;
	font-weight: normal;
}

/*  line-height  */
p,
li,
dd,
blockquote {
	line-height: 2;
}

/*  hr  */
hr {
	border-color: #cccccc;
}

/*  notes  */
.notes {
	font-size: 1.3rem;
	color: #666666;
}

/*  *.warning  */
*.warning {
	color: var(--warning-color);
}

/*  buttons  */
a.button, input[type=submit], button {
	display: inline-block;
	min-width: 5em;
	margin: 0.25em 0;
	padding: 0.5em 2em;
	background-color: var(--main-color);
	border: 1px var(--main-color) solid;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.5;
	color: #ffffff;
	font-family: 'Doppio One', sans-serif;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
}
a.button.small, input[type=submit].small, button.small {
	min-width: 4em;
	padding: 0.25em 1em;
}
a.button.xsmall, input[type=submit].xsmall, button.xsmall {
	min-width: 3em;
	padding: 0.125em 0.5em;
	font-size: 1.5rem;
}
a.button.large, input[type=submit].large, button.large {
	min-width: 8em;
	padding: 0.5em 4em;
	font-size: 2.1rem;
}
a.button.xlarge, input[type=submit].xlarge, button.xlarge {
	width: 100%;
	padding: 0.75em 3em;
	font-size: 2.4rem;
	box-sizing: border-box;
}
a.button.light, input[type=submit].light, button.light,
a.button.back, input[type=submit].back, button.back {
	background-color: transparent;
	color: var(--main-color);
}
a.button.back, input[type=submit].back, button.back {
	margin-top: 2em;
	padding: 0.25em 1em;
}

/*  div.em  */
div.em {
	margin: 2em 0;
	padding: 0.5em 2em;
	background-color: #f2f2f2;
}

/*  nav.page  */
nav.page ol {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 3em 0;
}
nav.page ol li {
	margin: 0 0.5em;
	list-style: none;
}
nav.page ol li a {
	display: block;
	padding: 0.5em 1em;
	background-color: #ffffff;
	border: 1px var(--main-color) solid;
	color: var(--main-color);
	border-radius: 3px;
}
nav.page ol li.current a {
	background-color: var(--main-color);
	color: #ffffff;
}

/*  nav.tab  */
nav.tab {
	margin: 0 0 2em;
	border-bottom: 1px #cccccc solid;
}
nav.tab ul {
	display: flex;
	align-items: flex-end;
	margin: 0 0 -1px;
}
nav.tab ul li {
	margin: 0;
	list-style: none;
}
nav.tab ul li a {
	display: block;
	padding: 0.5em 1em;
	padding-bottom: 8px;
	color: #999999;
	border-bottom: 1px #cccccc solid;
	cursor: pointer;
}
nav.tab ul li a.current {
	padding-bottom: 7px;
	border-bottom: 2px var(--main-color) solid;
	color: var(--main-color);
}
div.tab-item {
	padding: 2em 1em;
}
div.tab-item *:first-child {
	margin-top: 0;
}

/*  span.altlink  */
span.altlink {
	display: block;
	margin: 0.5em 0;
	text-align: center;
}
span.altlink a {
	text-decoration: underline;
	cursor: pointer;
}

/*  a.switch  */
a.switch {
	position: relative;
	display: block;
	width: 3em;
	height: 1.5em;
	background-color: #cccccc;
	border: 1px #cccccc solid;
	border-radius: 2em;
}
a.switch.on {
	background-color: var(--main-color);
	border-color: var(--main-color);
}
a.switch:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(1.5em - 4px);
	height: calc(1.5em - 4px);
	background-color: #ffffff;
	border-radius: 1em;
}
a.switch.on:after {
	left: auto;
	right: 2px;
}

/*  iframe.gmap  */
iframe.gmap {
	width: 100%;
	height: 250px;
	margin: 1em 0;
}
@media screen and (min-width: 768px) {
	iframe.gmap {
		height: 350px;
	}
}

/*  ul.courses  */
ul.courses li {
	position: relative;
	margin: 0 0 2em;
	list-style: none;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
ul.courses li a {
	display: block;
}
ul.courses li a span.thumbnail {
	display: block;
	height: 0;
	padding-top: 56%;
	background-size: cover;
	background-position: center center;
}
ul.courses li a span.title {
	display: block;
	padding: 1em 1em 0;
	line-height: 1.5;
}
ul.courses li a span.description {
	display: block;
	padding: 0.5em 1.25em 1em;
	color: #666666;
	line-height: 1.75;
	font-size: smaller;
}
ul.courses li div.expire {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	color: #ffffff;
}
ul.courses li div.expire p {
	font-size: 1.3rem;
	text-align: center;
}
ul.courses li div.expire p strong {
	display: block;
	font-size: 1.5rem;
}
ul.courses li div.expire p a {
	color: #ffffff;
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	ul.courses {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1.66%;
	}
	ul.courses li {
		width: 30%;
		margin: 1.66%;
	}
	ul.courses.small {
		margin: 0 -1%;
	}
	ul.courses.small li {
		width: 18%;
		margin: 1%;
	}
}

/*  ul.products  */
ul.products li {
	position: relative;
	margin: 0 0 2em;
	padding: 1em;
	list-style: none;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
ul.products li a {
	display: block;
	line-height: 1.5;
}
ul.products li a span.thumbnail {
	display: block;
	height: 0;
	margin: -1em -1em 1em;
	padding: 0;
	padding-top: 65%;
	background-size: cover;
	background-position: center center;
}
ul.products li a strong.title {
	display: block;
	font-weight: normal;
}
ul.products li a span.description {
	display: block;
	margin: 0.75em 0 1em;
	font-size: smaller;
	color: #666666;
	line-height: 1.5;
}
ul.products li a div.price {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
ul.products li a div.price span.summary {
	display: inline-block;
	padding: 0.25em 0.5em;
	background-color: #dddddd;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 2px;
}
ul.products li a div.price strong {
	font-weight: normal;
	font-size: 1.8rem;
}
ul.products li a div.price strong span {
	font-size: 1.3rem;
	margin-left: 0.5em;
}
ul.products li div.application-information {
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	color: #ffffff;
}
ul.products li div.application-information p {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 1em;
	border: 1px #ffffff solid;
	text-align: center;
	font-size: 2.1rem;
}
@media screen and (min-width: 768px) {
	ul.products {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1.66%;
	}
	ul.products li {
		width: 30%;
		margin: 1.66%;
		box-sizing: border-box;
	}
	ul.products.small {
		margin: 0 -1%;
	}
	ul.products.small li {
		width: 18%;
		margin: 1%;
	}
}

/*  div.product  */
div.product h1 {
	margin: 0 0 0.25em;
	font-size: 2.2rem;
}
div.product div.information strong.summary {
	display: inline-block;
	padding: 0.25em 0.5em;
	background-color: #dddddd;
	border-radius: 2px;
}
div.product div.information p.description {
	color: #666666;
	line-height: 1.75;
}
div.product div.information p.description a {
	color: #666666;
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	div.product {
		width: 660px;
		padding-top: 3em;
	}
	div.product div.information {
		position: fixed;
		left: 50%;
		top: 80px;
		width: 400px;
		margin-left: 100px;
		padding: 1em 2em 2em;
		background-color: #ffffff;
		box-sizing: border-box;
	}
}

/*  div.product-content  */
@media screen and (min-width: 768px) {
	div.product-content {
		width: 660px;
	}
}

/*  div.purchase  */
div.purchase {
	margin: 1em 0;
	padding: 1em;
	border: 1px #cccccc solid;
	text-align: center;
}
div.purchase span.subtitle {
	display: block;
	margin-bottom: 0.25em;
	color: #666666;
}
div.purchase p.price {
	margin: 0 0 0.75em;
	text-align: left;
}
div.purchase p.price strong {
	font-size: 2.4rem;
	line-height: 1;
}
div.purchase a.button {
	display: block;
	margin-bottom: 0.5em;
	cursor: pointer;
}
div.purchase a.signin {
	text-decoration: underline;
}

/*  table.confirm  */
table.confirm {
	width: 100%;
}
table.confirm th,
table.confirm td {
	background-color: transparent;
	border: none;
	border-bottom: 1px #cccccc solid;
}

/*  ul.attached-licenses  */
ul.attached-licenses li {
	margin: 0 0 0.5em;
	padding: 0.5em;
	background-color: #f2f2f2;
	line-height: 1.5;
	list-style: none;
}

/*  ul.receipts  */
ul.receipts li {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0.75em 0;
	border-bottom: 1px #eeeeee solid;
	list-style: none;
}
ul.receipts li:first-child {
	border-top: 1px #eeeeee solid;
}

/*  ul.subscriptions  */
ul.subscriptions {
	width: 100%;
	margin-top: 0;
}
ul.subscriptions li {
	margin: 0 0 1em;
	padding: 1em;
	background-color: #f2f2f2;
	list-style: none;
}
ul.subscriptions li div.name {
	font-weight: bold;
}
ul.subscriptions li div.name span.price {
	display: block;
}
ul.subscriptions li div.expire {
	margin: 0.75em 0;
	padding: 0.5em;
	border: 1px #cccccc solid;
}
ul.subscriptions li div.expire div.date strong {
	font-weight: normal;
	font-size: 1.8rem;
}
ul.subscriptions li div.expire div.autoupdate {
	display: flex;
	align-items: center;
}
ul.subscriptions li div.expire div.autoupdate a.switch {
	margin-right: 0.5em;
}
ul.subscriptions li div.expire div.autoupdate span {
	font-size: smaller;
	color: #666666;
}
ul.subscriptions li div.expire div.autoupdate span.off {
	color: #cccccc;
}
ul.subscriptions li div.expired strong {
	display: block;
	font-size: 1.8rem;
	color: #cc1e11;
}
ul.subscriptions li div.manual {
	margin-top: 0.5em;
}
ul.subscriptions li div.manual a {
	padding: 0.5em 1em;
	font-size: 1.8rem;
}

/*
ul.autoupdates {
	width: 100%;
}
ul.autoupdates li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0.5em 0;
	list-style: none;
}
ul.autoupdates li div.item {
	display: flex;
	align-items: center;
}
ul.autoupdates li div.item div.name {
	flex-glow: 1;
	margin: 0 0.75em;
}
ul.autoupdates li div.item div.name span.price {
	display: block;
	font-size: smaller;
}
ul.autoupdates li div.expire {
	padding: 0.5em;
	background-color: #f2f2f2;
	font-size: smaller;
	text-align: right;
}
*/

/*  div.online-salon-description  */
div.online-salon-description {
	text-align: center;
}
div.online-salon-description h1 {
	margin: 1em 0;
}
div.online-salon-description img {
	display: block;
}
@media screen and (min-width: 768px) {
	div.online-salon-description {
		padding-bottom: 3em;
	}
	div.online-salon-description h1 {
		margin: 2em 0;
	}
	div.online-salon-description img {
		margin-bottom: 3em;
	}
	div.online-salon-description p {
		max-width: 1020px;
		margin: 1em auto;
	}
}

/*  div.online-salon  */
div.online-salon {
	position: relative;
}
div.online-salon div.lock {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 1em;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.7);
	color: #ffffff;
	text-align: center;
}
div.online-salon div.lock div.application {
	padding: 1em 3em 1.5em;
	border: 1px #ffffff solid;
	text-align: center;
}
div.online-salon div.lock div.application p.title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: bold;
}
div.online-salon div.lock div.application p.price {
	margin: 0.5em 0 1em;
	line-height: 1.5;
}
div.online-salon div.lock div.application p.price strong {
	margin: 0 0.25em;
	font-weight: normal;
	font-size: 2.1rem;
}
div.online-salon div.lock div.application a.button {
	padding: 0.5em 5em;
	background-color: #ffffff;
	border: none;
	color: #333333;
}
div.online-salon div.lock div.application a.signin {
	color: #ffffff;
	text-decoration: underline;
}

/*  div.online-salon-summary  */
div.online-salon-summary {
	margin: 3em 0;
}
div.online-salon-summary h2 {
	margin: 0.5em 0;
	text-align: center;
}
div.online-salon-summary div.text h2 {
	display: none;
}
div.online-salon-summary div.text p {
	margin-bottom: 2em;
	font-size: 1.3rem;
	color: #666666;
	line-height: 1.5;
}
div.online-salon-summary a.button {
	display: block;
}
@media screen and (min-width: 768px) {
	div.online-salon-summary {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin: 5em 0 2em;
	}
	div.online-salon-summary img {
		width: 55%;
	}
	div.online-salon-summary div.text {
		width: 41%;
	}
	div.online-salon-summary h2 {
		display: none;
	}
	div.online-salon-summary div.text h2 {
		display: block;
		margin: 0 0 0.75em;
		text-align: left;
		line-height: 1;
	}
}

/*  div.exerciselibrary-slider  */
div.exerciselibrary-slider {
	margin: 3em 0;
	padding: 2em 1em;
	background-color: rgba(0,0,0,0.1);
}
div.exerciselibrary-slider h2 {
	margin: 0.5em 0;
	text-align: center;
}
div.exerciselibrary-slider div.slider {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
div.exerciselibrary-slider div.slider ul {
	display: flex;
	overflow: hidden;
}
div.exerciselibrary-slider div.slider ul li {
	flex-shrink: 0;
	display: inline-block;
	width: 25%;
	margin: 0;
	box-sizing: border-box;
	font-size: 1.3rem;
}
div.exerciselibrary-slider div.slider ul li a {
	display: block;
	padding: 0 1em;
}
div.exerciselibrary-slider div.slider ul li a span.thumbnail {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-color: #cccccc;
	background-image: url('images/default.png');
	background-size: cover;
	background-position: center center;
}
div.exerciselibrary-slider div.slider ul li a span.title {
	display: flex;
	align-items: center;
	padding: 0.25em 0;
}
div.exerciselibrary-slider div.slider ul li a span.title span.material-icons {
	font-size: 1.2rem;
}
div.exerciselibrary-slider div.slider ul li a span.title strong {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
div.exerciselibrary-slider div.slider a.nav {
	flex-glow: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3em;
	cursor: pointer;
}
div.exerciselibrary-slider div.slider a.nav:before {
	content: '';
	display: block;
	width: 1.5em;
	height: 1.5em;
	transform: rotate(45deg);
}
div.exerciselibrary-slider div.slider a.nav.prev:before {
	border-left: 1px #000000 solid;
	border-bottom: 1px #000000 solid;
}
div.exerciselibrary-slider div.slider a.nav.next:before {
	border-top: 1px #000000 solid;
	border-right: 1px #000000 solid;
}
div.exerciselibrary-slider p {
	text-align: center;
}
@media screen and (min-width: 768px) {
	div.exerciselibrary-slider {
		padding: 2em;
	}
}

/*  div.exerciselibrary-header  */
div.exerciselibrary-header {
	padding: 1em 0 0;
	text-align: center;
}

/*  form.exerciselibrary-seaarch  */
form.exerciselibrary-seaarch div.search {
	display: flex;
	max-width: 800px;
	margin: 3em auto 1em;
}
form.exerciselibrary-seaarch div.search input[type=text] {
	margin: 0;
	padding: 0.25em 0.5em;
	border-radius: 0;
}
form.exerciselibrary-seaarch div.search button {
	flex-shrink: 0;
	min-width: 0;
	max-width: none;
	margin: 0;
	padding: 0 1em;
}
form.exerciselibrary-seaarch p.keywords {
	margin: -1em 0 1em;
	text-align: center;
}
form.exerciselibrary-seaarch p.keywords a {
	font-size: 1.3rem;
	margin: 0 0.5em;
	white-space: nowrap;
	text-decoration: underline;
}
form.exerciselibrary-seaarch p.tags {
	text-align: center;
}

/*  ul.exerciselibrary-list  */
ul.exerciselibrary-list {
	margin: 1em -5px;
	letter-spacing: -1em;
}
ul.exerciselibrary-list li {
	/*display: inline-block;*/
	display: none;
	width: 50%;
	margin: 0;
	padding: 5px;
	letter-spacing: 0;
	vertical-align: top;
	box-sizing: border-box;
}
ul.exerciselibrary-list li a.play {
	display: block;
	font-size: 1.5rem;
	color: #333333;
	cursor: pointer;
	overflow: hidden;
}
ul.exerciselibrary-list li a.play span.thumbnail {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-color: #cccccc;
	background-image: url('images/default.png');
	background-size: cover;
	background-position: center center;
}
ul.exerciselibrary-list li a.play span.title {
	display: flex;
	/* align-items: center; */
	align-items: flex-start;
	padding: 0.25em 0;
}
ul.exerciselibrary-list li a.play span.title span.material-icons {
	font-size: 1.4rem;
	line-height: 1.5;
}
ul.exerciselibrary-list li a.play span.title strong {
	/*
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	*/
	line-height: 1.5;
}
ul.exerciselibrary-list li p.tags {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
ul.exerciselibrary-list li p.tags a {
	margin-right: 1em;
	color: #999999;
	white-space: nowrap;
	line-height: 1.5;
	font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
	ul.exerciselibrary-list {
		margin: 1em -10px;
	}
	ul.exerciselibrary-list li {
		width: 20%;
		padding: 10px;
	}
}

/*  p.exerciselibrary-more  */
p.exerciselibrary-more {
	margin: 4em 0 2em;
	text-align: center;
}

/*  div#exerciselibrary-detail layout  */
#exerciselibrary-detail {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0,0,0,0.9);
	color: #ffffff;
	z-index: 998;
}
#exerciselibrary-detail div.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 45px;
	line-height: 45px;
}
#exerciselibrary-detail div.body {
	position: absolute;
	left: 0;
	top: 45px;
	width: 100%;
	height: calc(100% - 45px);
}
#exerciselibrary-detail div.body div.learn {
	height: 100%;
}
#exerciselibrary-detail div.body div.learn div.video {
	height: 30%;
}
#exerciselibrary-detail div.body div.learn div.description {
	height: 70%;
	overflow: auto;
}
#exerciselibrary-detail div.body div.lock {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 1em;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	#exerciselibrary-detail div.body div.learn {
		position: relative;
	}
	#exerciselibrary-detail div.body div.learn div.video {
		position: absolute;
		left: 0;
		top: 0;
		width: 60%;
		height: 100%;
	}
	#exerciselibrary-detail div.body div.learn div.description {
		position: absolute;
		left: 60%;
		top: 0;
		width: 40%;
		height: 100%;
	}
	#exerciselibrary-detail div.body div.lock {
		max-width: 1020px;
		margin: 0 auto;
	}
}

/*  div#exerciselibrary-detail header  */
#exerciselibrary-detail div.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#exerciselibrary-detail div.header span {
	max-width: 80%;
	padding-left: 0.5em;;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 2.0rem;
}
#exerciselibrary-detail div.header a {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	cursor: pointer;
}
#exerciselibrary-detail div.header a:before,
#exerciselibrary-detail div.header a:after {
	content: '';
	display: block;
	position: absolute;
	right: 5px;
	top: 20px;
	width: 35px;
	height: 2px;
	background-color: #ffffff;
	transform: rotate(45deg);
}
#exerciselibrary-detail div.header a:after {
	transform: rotate(135deg);
}

/*  div#exerciselibrary-player learn  */
#exerciselibrary-player div.body div.learn {
	margin: 1em 0 0;
}

#exerciselibrary-detail div.body div.learn div.video div.player {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
#exerciselibrary-detail div.body div.learn div.video div.player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#exerciselibrary-detail div.body div.learn div.description {
	padding: 1em;
	box-sizing: border-box;
}
#exerciselibrary-player div.body div.learn div.description {
	margin: 1em 0;
	overflow: auto;
}
#exerciselibrary-detail div.body div.learn div.description h3 {
	border: none;
	margin: 0;
	padding: 0;
	line-height: 1.5;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	#exerciselibrary-detail div.body div.learn div.video {
		display: flex;
		align-items: flex-start;
		padding: 1em 1em 0 2em;
		box-sizing: border-box;
	}
}

/*  div#exerciselibrary-player lock  */
#exerciselibrary-detail div.body div.lock div.frame {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center center;
}
#exerciselibrary-detail div.body div.lock div.frame div.message {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 1em;
	background-color: rgba(0,0,0,0.7);
	text-align: center;
	box-sizing: border-box;
}
#exerciselibrary-detail div.body div.lock div.frame div.message div.buy {
	width: 100%;
	padding: 1em;
	border: 1px #ffffff solid;
	box-sizing: border-box;
}
#exerciselibrary-detail div.body div.lock div.frame div.message div.buy p {
	margin: 0;
}
#exerciselibrary-detail div.body div.lock div.frame div.message div.buy p a {
	display: inline-block;
	margin-top: 1em;
	padding: 0.25em 5em;
	background-color: #ffffff;
	font-weight: bold;
	color: #000000;
}
@media screen and (min-width: 768px) {
	#exerciselibrary-detail div.body div.lock div.frame div.message div.buy {
		margin: 0 4em;
		padding: 2em;
	}
}

/*  div.sample-movie  */
div.sample-movies ul li {
	margin: 0 0 2em;
	padding: 0;
	list-style: none;
}
div.sample-movies ul li div.movie {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}
div.sample-movies ul li div.movie iframe {
	width: 100%;
	height: 100%;
}
div.sample-movies ul li div.movie a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
div.sample-movies ul li p {
	color: #666666;
	font-size: 1.2rem;
}
div.sample-movies ul li p strong {
	display: inline-block;
	margin-bottom: 0.5em;
	color: #333333;
	font-size: 1.4rem;
}
div.sample-movies ul li p a {
	display: inline-block;
	margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
	div.sample-movies ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	div.sample-movies ul li {
		width: 50%;
		box-sizing: border-box;
	}
	div.sample-movies ul li:nth-child(odd) {
		padding-right: 30px;
	}
	div.sample-movies ul li:nth-child(even) {
		padding-left: 30px;
	}
}





/*

    Form common

*/

/*  basic elements  */
input[type=text], input[type=password], input[type=email], input[type=date], input[type=datetime-local], input[type=time], textarea {
	width: 100%;
	padding: 0.5em 0.75em;
	border-radius: 3px;
	box-sizing: border-box;
}
select {
	padding: 0.5em 0.75em;
	background-color: #ffffff;
	border-radius: 3px;
	box-sizing: border-box;
}
input[type=datetime-local], input[type=time] {
	width: auto;
}
input[type=file] {
	display: none;
}
label.file {
	display: flex;
	justify-content: space-between;
	min-width: 48%;
	border: 1px #cccccc solid;
	font-size: 1.3rem;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
}
label.file:before,
label.file span {
	display: block;
	padding: 0.5em 0.75em;
	color: #666666;
}
label.file:before {
	content: '\30D5\30A1\30A4\30EB\3092\9078\629E\3057\3066\304F\3060\3055\3044';
}
label.file:after {
	content: '\9078\629E';
	display: flex;
	align-items: center;
	padding: 0.5em 1.25em;;
	background-color: var(--main-color);
	color: #ffffff;
}
label.file.selected:before {
	content: none;
}
label.file.selected:after {
	content: '\53D6\6D88';
}

/*  dl  */
form dl dt {
	font-weight: normal;
	color: #666666;
}
form dl dd {
	margin: 0.5em 0 2em;
}
form dl dd.notes {
	margin-top: -1.75em;
}
form dl dd.error {
	padding: 0.5em;
	border: 1px var(--warning-color) solid;
}
form dl dd.error-message {
	margin-top: -1.75em;
	font-size: smaller;
	color: var(--warning-color);
}
form dl dd div.wide {
	width: 100%;
}
@media screen and (min-width: 768px) {
	form dl dd {
		display: flex;
		gap: 1em;
		align-items: center;
	}
}

/*  dd.address  */
form dl dd.address input {
	margin: 0.25em 0;
}
form dl dd.address input[name*=zip1] {
	width: 6em;
}
form dl dd.address input[name*=zip2] {
	width: 10em;
}
form dl dd.address input[name=pref],
form dl dd.address input[name=city],
form dl dd.address input[name=address] {
	width: 100%;
}
@media screen and (min-width: 768px) {
	form dl dd.address {
		flex-wrap: wrap;
	}
	form dl dd.address input {
		margin: 0;
	}
}

/*  confirm  */
form.confirm dl dt {
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	border-bottom: 1px #cccccc solid;
}




/*

    Entrance Form

*/

/*  layout  */
form.entrance {
	margin: 1.5em;
	padding: 1em 2em 2em;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	border-radius: 5px;
	text-align: center;
}
form.entrance dl {
	text-align: left;
}
@media screen and (min-width: 768px) {
	form.entrance {
		max-width: 530px;
		margin: 3em auto;
		box-sizing: border-box;
	}
}

/*  anchor  */
form.entrance a {
	text-decoration: underline;
}

/*  heading  */
form.entrance h1 {
	margin: 0.75em 0 0;
	padding: 0;
	border: none;
	font-size: 3.2rem;
	font-family: 'Doppio One', sans-serif;
}

/*  description  */
form.entrance p.description {
	color: #666666;
	text-align: center;
}
form.entrance p.description img {
	display: block;
	height: 80px;
	margin: 0 auto;
}

/*  help  */
form.entrance p.help {
	text-align: center;
}

/*  adjust  */
form.entrance dl dt {
	font-size: 1.3rem;
}
form.entrance dl dd {
	margin: 0 0 0.5em;
}
form.entrance button, form.entrance input[type=submit] {
	margin: 0;
}




/*

    Mailform

*/

/*  form  */
div.mailform dl {
	margin: 2em 0;
}
div.mailform dl dt {
	display: flex;
	align-items: center;
}
div.mailform dl dt span,
div.mailform dl dt em {
	display: inline-block;
	margin-right: 0.5em;
	padding: 0.125em 0.5em;
	font-size: 1.1rem;
	font-style: normal;
	color: #ffffff;
}
div.mailform dl dt span { background-color: #999999;}
div.mailform dl dt em { background-color: var(--main-color);}
div.mailform dl dd {
	display: block;
	margin: 0.5em 0 2em;
}
div.mailform dl dd input[type=text],
div.mailform dl dd textarea {
	width: 100%;
}
div.mailform dl dd select {
	width: auto;
	margin-right: 0.5em;
}
div.mailform dl dd.address input[type=text].zip1 {
	width: 5em;
}
div.mailform dl dd.address input[type=text].zip2 {
	width: 8em;
}
div.mailform dl dd.address input[type=text].pref {
	width: 8em;
}
div.mailform form p.submit {
	text-align: center;
}

/*  error  */
div.mailform p.errordetect {
	padding: 0.5em;
	background-color: var(--warning-color);
	color: #ffffff;
}
div.mailform form dl dd.error p.errormessage {
	margin: 0;
	color: var(--warning-color);
	font-size: 1.3rem;
}

/*  confirm  */
div.mailform form.confirm dl {
	padding: 1em;
	background-color: #f2f2f2;
}





/*

    Faq

*/

/*  faq  */
body.faq div.container h2 {
	margin-bottom: 0;
	padding: 0.5em 0;
	border-bottom: 1px #cccccc solid;
	font-size: 2.1rem;
	font-weight: normal;
}





/*

    Toppage

*/

/*  common  */
#toppage h2 {
	font-size: 3.6rem;
}

/*  mv  */
#toppage #mv {
	position: relative;
	height: 0;
	padding: 0 0 56.25%;
	background-color: #000000;
	background-image: url('images/loading.svg');
	background-size: 60px auto;
	background-position: center center;
}
#toppage #mv iframe {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#toppage #mv div.content {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/mv.png');
	background-size: 100% auto;
	background-repeat: repeat;
}
#toppage #mv div.content img.logo {
	position: absolute;
	left: 15px;
	bottom: 15px;
	width: 35%;
}
#toppage #mv div.content img.scroll {
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 25%;
}
@media screen and (min-width: 768px) {
	#toppage #mv div.content img.logo {
		position: absolute;
		left: 55px;
		bottom: 55px;
		width: 25%;
	}
	#toppage #mv div.content img.scroll {
		position: absolute;
		right: 55px;
		bottom: 55px;
		width: 15%;
	}
}

/*  introduction  */
div.introduction {
	margin: 3em 0;
}
div.introduction div.images {
	margin: 3em 0;
}
div.introduction div.images img {
	display: block;
	/*
		width: 70%;
		margin: 2em auto;
	*/
}
@media screen and (min-width: 768px) {
	div.introduction {
		max-width: 1020px;
		margin: 5em auto;
	}
	div.introduction h2 {
		margin-left: auto;
		margin-right: auto;
	}
	div.introduction p {
		margin: 0 auto;
	}
	/*
	div.introduction div.images {
		display: flex;
		justify-content: space-between;
		gap: 60px;
	}
	div.introduction div.images img {
		width: calc(50% - 30px);
	}
	*/
}

/*  products  */
#toppage div.products h2 {
	margin: 2em 0 0;
	text-align: center;
}
#toppage div.products p.description {
	text-align: center;
	color: #666666;
	font-size: 1.4rem;
	line-height: 1.75;
}





/*

    GMO

*/

/*  form  */
form#gmo-card-token {
	max-width: 640px;
	margin: 1em auto;
	padding: 1em;
	border: 1px #eeeeee solid;
}
form#gmo-card-token input[type=text] {
	width: auto;
}
form#gmo-card-token #gmo-card-token-cardno,
form#gmo-card-token #gmo-card-token-holdername {
	width: 100%;
}
form#gmo-card-token #gmo-card-token-button {
	width: 100%;
}