@charset 'UTF-8';

/*

    Base

*/

/*  color  */
:root {
	--main-color: #0072bc;
	--accent-color: #00ac54;
	--success-color: #99CC00;
	--warning-color: #DC143C;
}

/*  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;}

/*  size color  */
body { font-size: 1.5rem;}
h1 { font-size: 2.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: 50px;
}
header.global {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px #cccccc solid;
	background-color: #ffffff;
	z-index: 999;
}
header.global div.menubutton {
	position: absolute;
	top: 16px;
	right: 15px;
}

/*  sitetop  */
header.global div.sitetop a {
	display: inline-block;
	max-width: 50%;
	padding: 5px;
}
header.global div.sitetop a h1,
header.global div.sitetop a p {
	margin: 0;
	padding: 0;
	font-size: 2.8rem;
	border: none;
}
header.global div.sitetop a img {
	display: block;
	height: 25px;
}
header.global div.sitetop a span {
	display: block;
	margin: 2px 0 3px;
	font-size: 1rem;
	text-indent: 0.25em;
	line-height: 10px;
}
@media screen and (min-width: 768px) {
	header.global div.sitetop a {
		display: flex;
		align-items: flex-end;
		padding: 10px;
	}
	header.global div.sitetop a img {
		height: 30px;
	}
	header.global div.sitetop a span {
		display: inline-block;
		font-size: 1.3rem;
		line-height: 1.25;
	}
}

/*  menubutton  */
header.global div.menubutton a,
header.global div.menubutton a span {
	display: inline-block;
	transition: all 0.3s;
	box-sizing: border-box;
}
header.global div.menubutton a {
	position: relative;
	width: 25px;
	height: 18px;
	cursor: pointer;
}
header.global div.menubutton a:hover {
	opacity: 1;
}
header.global div.menubutton a span {
	position: absolute;
	left: 0;
	width: 25px;
	height: 2px;
	background-color: #666666;
	border-radius: 2px;
}
header.global div.menubutton a span:nth-of-type(1) { top: 0;}
header.global div.menubutton a span:nth-of-type(2) { top: 8px;}
header.global div.menubutton a span:nth-of-type(3) { bottom: 0;}
header.global div.menubutton a.open span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
header.global div.menubutton a.open span:nth-of-type(2) {
	opacity: 0;
}
header.global div.menubutton a.open span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}

/*  menu  */
header.global div.menu {
	position: fixed;
	top: 50px;
	right: -100%;
	width: 280px;
	height: 100%;
	padding: 15px 30px;
	background-color: rgba(90,90,90,0.95);
	color: #ffffff;
	box-sizing: border-box;
	transition: all 0.5s;
	overflow: auto;
}
header.global div.menu ul li {
	margin: 1em 0;
}
header.global div.menu ul li a {
	display: inline-block;
	padding: 0.25em 0;
	color: #ffffff;
	cursor: pointer;
}





/*

    Cart shortcut

*/

/*  layout  */
#cart-shortcut {
	position: fixed;
	right: 70px;
	bottom: 1em;
}
#cart-shortcut a {
	display: block;
	padding: 0.5em 1em;
	background-color: var(--main-color);
	color: #ffffff;
	border-radius: 5px;
}





/*

    Floating banner

*/
#fb {
	position: fixed;
	right: 0;
	bottom: 65px;
	display: block;
	width: 100%;
	max-width: 180px;
	height: auto;
	z-index: 1;
}
#fb img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (min-width: 768px) {
	#fb {
		max-width: 280px;
		bottom: 70px;
	}
}




/*

    Footer

*/

/*  layout  */
footer.global {
	margin-top: 30px;
	background-color: #333333;
	color: #ffffff;
}
footer.global div.container.main {
	padding: 15px 15px 0;
}
@media screen and (min-width: 768px) {
	footer.global {
		margin-top: 60px;
	}
	footer.global div.container.main {
		display: flex;
		justify-content: space-between;
		padding: 45px;
	}
	footer.global div.container.main div.description {
		width: 300px;
	}
	footer.global div.container.main nav.information {
		width: 30em;
	}
}

/*  description  */
footer.global div.container.main div.description p {
	line-height: 2;
}
footer.global div.container.main div.description p span.sitename {
	display: block;
}
footer.global div.container.main div.description p span.sitename a {
	color: #ffffff;
}
footer.global div.container.main div.description p span.sitename a img {
	display: block;
	width: 180px;
	margin: 1em auto 2em;
}
@media screen and (min-width: 768px) {
	footer.global div.container.main div.description p span.sitename a img {
		width: 210px;
		margin: 0 0 1.5em;
	}
}

/*  navigation  */
footer.global div.container.main nav.information {
	margin: 20px 0 0;
	overflow: hidden;
}
footer.global div.container.main nav.information ul {
	display: flex;
	flex-wrap: wrap;
}
footer.global div.container.main nav.information ul li {
	width: 50%;
}
footer.global div.container.main nav.information ul li a {
	display: block;
	padding: 0.5em;
	border-top: none;
	border-left: none;
	color: #ffffff;
}
footer.global div.container.main nav.information ul li a::before {
	content: '- ';
}

/*  license  */
footer.global p.license {
	margin: 0;
	padding: 0 0 15px;
	font-size: 1.2rem;
	color: #cccccc;
	text-align: center;
}
@media screen and (min-width: 768px) {
	footer.global p.license {
		margin-top: -15px;
		padding: 0 0 45px;
		text-align: right;
	}
}

/*  small  */
footer.global small {
	display: block;
	padding: 15px 0;
	background-color: #ffffff;
	color: #666666;
	text-align: center;
	font-size: 1.3rem;
}





/*

    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;
}
@media screen and (min-width: 768px) {
	#message {
		max-width: 1200px;
		margin: 1em auto;
	}
}





/*

    Common modules

*/

/*  h1  */
h1 {
	margin: 1.5em 0;
	padding: 0.125em 1em;
	border-left: 5px var(--main-color) solid;
	font-weight: normal;
}
h1.image {
	padding: 0;
	border: none;
}
h1.application {
	margin: 1.5em 0 1em;
	border: none;
	text-align: center;
}

/*  h2  */
h2 {
	margin: 1.5em 0 1.5em;
	padding: 0.5em 0;
	border-bottom: 1px #cccccc solid;
	font-weight: normal;
}

/*  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;
}

/*  table  */
table {
	width: 100%;
}
table th {
	background-color: var(--main-color);
	color: #ffffff;
}

/*  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.5rem;
	font-weight: normal;
	line-height: 1.5;
	color: #ffffff;
	text-align: center;
	border-radius: 5px;
	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.2rem;
}
a.button.large, input[type=submit].large, button.large {
	min-width: 8em;
	padding: 0.75em 4em;
	font-size: 1.8rem;
}
a.button.xlarge, input[type=submit].xlarge, button.xlarge {
	width: 100%;
	padding: 0.75em 3em;
	font-size: 2.1rem;
	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;
}

/*  p.back  */
p.back {
	margin-top: 3em;
	padding-top: 1.5em;
	border-top: 1px #eeeeee solid;
}

/*  div.em  */
div.em {
	margin: 2em 0;
	padding: 0.5em 2em;
	background-color: #f2f2f2;
}
div.em * {
	line-height: 1.75;
}

/*  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;
}

/*  div.tab  */
div.tab {
	padding: 1em;
}
div.tab ul.nav {
	display: flex;
	margin: 0;
	overflow: auto;
}
div.tab ul.nav li {
	margin: 0 0 0 0.5em;
	list-style: none;
}
div.tab ul.nav li a {
	display: block;
	padding: 0 1em;
	background-color: var(--main-color);
	color: #ffffff;
	cursor: pointer;
	opacity: 0.5;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
div.tab ul.nav li.current a {
	opacity: 1;
}
div.tab div.item select {
	width: 100%;
	margin: 0;
}

/*  dl.information  */
dl.information > dt {
	font-weight: normal;
	color: #777777;
	line-height: 1.5;
}
dl.information > dd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0.25em 0 1em;
	padding-bottom: 1em;
	border-bottom: 1px #eeeeee solid;
	line-height: 1.5;
}
form dl.information dd {
	justify-content: flex-start;
	gap: 0.5em;
}
@media screen and (min-width: 768px) {
	dl.information {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		margin: 2em 0;
		border-bottom: 1px #eeeeee solid;
	}
	dl.information > dt {
		width: 30%;
		margin: 0;
		padding: 0.75em 0;
		border-top: 1px #eeeeee solid;
	}
	dl.information > dd {
		width: 70%;
		margin: 0;
		padding: 0.75em 0 0.75em 1em;
		border-top: 1px #eeeeee solid;
		border-bottom: none;
		box-sizing: border-box;
	}
}

/*  ul.types  */
ul.types {
	display: flex;
	flex-wrap: wrap;
	margin: 1em -5px;
}
ul.types li {
	width: 50%;
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}
ul.types li a {
	display: block;
	width: 100%;
	height: 0;
	padding-top: 66.66%;
	background-size: cover;
}
@media screen and (min-width: 768px) {
	ul.types {
		margin: 1em 0;
	}
	ul.types li {
		padding: 0;
	}
	ul.types li {
		width: 25%;
	}
}

/*  ul.column  */
ul.column {
	margin: 0;
	letter-spacing: -0.4em;
	overflow: auto;
	white-space: nowrap;
}
ul.column li {
	display: inline-block;
	width: 40%;
	margin: 0;
	padding: 0 10px 10px;
	letter-spacing: 0;
	white-space: normal;
	vertical-align: top;
	box-sizing: border-box;
}
ul.column li a {
	display: block;
	color: #333333;
}
ul.column li a div.thumbnail {
	margin-bottom: 0.5em;
	padding-bottom: 66.6%;
	background-size: cover;
	background-position: center center;
}
ul.column li a p.description {
	max-height: 4.5em;
	font-size: 1.1rem;
	line-height: 1.5;
	overflow: hidden;
}
@media screen and (min-width: 768px) {
	ul.column {
		margin: 0 -15px;
		white-space: normal;
	}
	ul.column li {
		width: 25%;
		padding: 10px 25px 0;
	}
	ul.column li a p.description {
		max-height: none;
		font-size: 1.3rem;
	}
}

/*  ul.results  */
ul.result {
	display: flex;
	align-items: flex-start;
	justify-content: left;
	flex-wrap: wrap;
	margin: 1em -10px;
}
ul.result li {
	width: 33.3%;
	margin: 0;
	padding: 10px;
	list-style: none;
	box-sizing: border-box;
}
ul.result li div.thumbnail {
	width: 100%;
	height: 0;
	margin-bottom: 0.5em;
	padding-top: 100%;
	background-color: #eeeeee;
	background-size: cover;
}
ul.result li div.title {
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	ul.result li {
		width: 20%;
	}
}

/*  form.estimation  */
form.estimation {
	border: 1px #cccccc solid;
	border-radius: 5px;
	overflow: hidden;
}
form.estimation h2 {
	border: none;
	margin: 0;
	padding: 0.25em 0.5em;
	background-color: var(--main-color);
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: bold;
}
form.estimation div.submit {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5em 0;
	background-color: rgba(255,255,255,0.8);
	text-align: center;
}

/*  ol.step  */
ol.step {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 1em 0 2em;
	padding: 0;
}
ol.step li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -2.5em 1em 0;
	font-size: 0.6em;
	font-weight: bold;
	color: #ffffff;
}
ol.step li div {
	position: relative;
	width: 7em;
	padding: 1em;
	background-color: #a1cae6;
	box-sizing: border-box;
}
ol.step li.current div {
	background-color: var(--main-color);
}
ol.step li div span {
	display: block;
}
ol.step li:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 2.5em solid transparent;
	border-left: 2.5em solid #a1cae6;
	box-sizing: border-box;
}
ol.step li.current:after {
	border-left: 2.5em solid var(--main-color);
}
@media screen and (min-width: 768px) {
	ol.step li {
		font-size: 1em;
	}
}

/*  nav.application  */
nav.application {
	margin: 3em 0;
	text-align: center;
}

/*  div.application-signin  */
@media screen and (min-width: 768px) {
	div.application-signin {
		display: flex;
	}
	div.application-signin form {
		width: 100%;
		margin: 1em 1.5em;
	}
}

/*  ul.addresses  */
ul.addresses {
	border-top: 1px #eeeeee solid;
}
ul.addresses li {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 1em 0.5em;
	border-bottom: 1px #eeeeee solid;
	list-style: none;
}

/*  form.amount  */
form.amount {
	text-align: center;
}
form.amount div.item {
	margin: 1em 0;
	padding: 1em;
	border: 1px #cccccc solid;
}
form.amount div.item h3 {
	margin: 0;
	padding: 0;
	border: none;
	color: #666666;
}
form.amount div.item p {
	margin: 0 0 1em;
}
form.amount div.item p strong {
	font-size: 2.8rem;
}
form.amount div.item div.em {
	margin: 0;
	text-align: center;
}





/*

    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,
form.entrance h2 {
	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;
}





/*

    Toppage

*/

/*  layout  */
#toppage section {
	padding: 1.5em 10px;
}
@media screen and (min-width: 768px) {
	#toppage section {
		padding: 0 30px;
	}
}

/*  mv  */
#toppage #mv {
	position: relative;
	padding: 0;
}
#toppage #mv div.frame {
	position: relative;
	width: 100%;
	padding-top: 35.7%;
	overflow: hidden;
}
#toppage #mv div.frame ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	white-space: nowrap;
	letter-spacing: -0.4em;
}
#toppage #mv div.frame ul li {
	display: inline-block;
	width: 100%;
	margin: 0;
}
#toppage #mv div.frame ul li a {
	display: block;
	padding-top: 35.7%;
	background-size: cover;
}
#toppage #mv div.nav {
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	text-align: center;
}
#toppage #mv div.nav a {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 7px;
	border: 1px #ffffff solid;
	border-radius: 10px;
	cursor: pointer;
}
#toppage #mv div.nav a.current {
	background-color: #ffffff;
}

/*  banners  */
#toppage #banners {
	margin: 5px;
	padding: 0;
	overflow: hidden;
}
#toppage #banners ul {
	display: flex;
	flex-wrap: wrap;
}
#toppage #banners ul li {
	width: 50%;
	margin: 0;
	padding: 5px;
	list-style: none;
	box-sizing: border-box;
}
#toppage #banners ul li.wide {
	width: 100%;
}
#toppage #banners ul li a {
	display: block;
	padding-top: 31.25%;
	background-position: center center;
	background-size: cover;
}
#toppage #banners ul li.wide a {
	padding-top: 32.33%;
}
@media screen and (min-width: 768px) {
	#toppage #banners {
		max-width: 1200px;
		margin: 0 auto;
	}
	#toppage #banners ul li {
		width: 25%;
		padding: 10px;
	}
	#toppage #banners ul li.wide {
		width: 50%;
	}
}

/*  freearea  */
#toppage #free1,
#toppage #free2 {
	padding: 3em 0;
}

/*  page  */
#toppage #page {
	border-top: 1px #eeeeee solid;
}
#toppage #page ul li {
	margin: 0;
	list-style: none;
}
#toppage #page ul li a {
	color: #333333;
}
#toppage #page ul li a span.icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	background-size: contain;
	vertical-align: middle;
}
@media screen and (min-width: 768px) {
	#toppage #page {
		padding: 3em 0;
	}
	#toppage #page ul {
		display: flex;
		flex-warp: wrap;
	}
	#toppage #page ul li {
		width: 33.3%;
	}
}

/*  description  */
#toppage #description {
	border-top: 1px #eeeeee solid;
	border-bottom: 1px #eeeeee solid;
}
#toppage #description p {
	line-height: 2;
}
#toppage #description p strong {
	display: block;
	margin-bottom: 1em;
	line-height: 1.75;
	font-size: larger;
}
#toppage #description p.sign {
	text-align: right;
}
@media screen and (min-width: 768px) {
	#toppage #description {
		padding: 2em 0;
	}
	#toppage #description div.container {
		max-width: 760px;
	}
}