/***********************************************************
** SaggioBase Common Style
** Last Updated 2019.11.20
***********************************************************/


/***********************************************************
** Reset
***********************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {
	line-height:1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
	display:block;
}
ul, ol {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration:line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
	display:block;
	height:1px;
	border:0;	 
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}


/***********************************************************
** Display
***********************************************************/
.limo-block {
	display:block;
}
.limo-inline {
	display:inline;
}
.limo-inlineblock {
	display:inline-block;
}
.limo-hide {
	display:none;
}


/***********************************************************
** Float & ClearFix
***********************************************************/
.limo-floatl {
	float:left;
}
.limo-floatr {
	float:right;
}
.limo-cf:before,
.limo-cf:after {
		content:" ";
		display:table;
}
.limo-cf:after {
		clear:both;
}
.limo-cf {
		*zoom:1;
}


/***********************************************************
** Link
***********************************************************/
a {
	text-decoration:none;
	outline:0;
	color:#b16642;
}
a.limo-underline:hover {
	text-decoration:underline;
}


/***********************************************************
** Sentence
***********************************************************/
p {
	font-size:100%;
	line-height:1.6;
}


/***********************************************************
** Structure
***********************************************************/
html{
	overflow-y:scroll;
}
.limo-body {
	width:100%;
	font-family:"Noto Sans JP";
	background-color:#fff;
}

@media screen and (min-width:1140px) {
}


/***********************************************************
** Header
***********************************************************/
.limo-head {
	position:fixed;
	top:0;
	left:0;
	z-index:9998;
	width:100%;
	height:60px;
	background-color:#f86900;
}
.limo-head-wrap {
	position:relative;
}
.limo-head-title {
	margin-left:10px;
	color:#fff;
	font-size:105%;
	line-height:60px;
}
.limo-head-menu {
	position:absolute;
	top:10px;
	right:10px;
}
.limo-head-menu-btn {
	display:block;
	width:40px;
	color:#555;
	font-size:120%;
	line-height:40px;
	text-align:center;
	border-radius:20px;
	background-color:#fff;
}
.limo-head-user-btn {
	display:none;
}
.limo-head-user-toggle {
	display:none;
}

@media screen and (min-width:640px) {
	.limo-head-title {
		margin-left:20px;
	}
	.limo-head-menu {
		right:20px;
	}
}

@media screen and (min-width:768px) {
	.limo-head {
		height:70px;
	}
	.limo-head-title {
		font-size:110%;
		line-height:70px;
	}
	.limo-head-menu {
		top:10px;
		right:20px;
	}
}

@media screen and (min-width:1000px) {
	.limo-head-menu-btn {
		display:none;
	}
	.limo-head-user-btn {
		display:block;
		position:relative;
		padding-right:10px;
		width:40px;
		color:#fff;
		font-size:160%;
		line-height:50px;
		text-align:center;
	}
	.limo-head-user-btn::after {
		content:"\25BC";
		position:absolute;
		top:0;
		right:0;
		color:#fff;
		font-size:35%;
		line-height:50px;
	}
	.limo-head-user-btn-rotation {
		display:inline-block;
		transition:.5s;
		transform:rotateZ(0deg) ;
	}
	.limo-head-user-btn:hover .limo-head-user-btn-rotation {
		transform:rotateZ(180deg) ;
	}
	.limo-head-user-toggle {
		position:fixed;
		top:70px;
		right:0;
		width:auto;
		background-color:#fff;
	}
	.limo-user-toggle {
		width:200px;
	}
	.limo-user-toggle li {
		border-left:1px solid #bbb;
		border-bottom:1px solid #bbb;
	}
	.limo-user-toggle li a {
		display:block;
		position:relative;
		padding-left:10px;
		color:#555;
		line-height:50px;
	}
	.limo-user-toggle li a::before {
		content:"";
		display:block;
		z-index:-1;
		position:absolute;
		top:0;
		left:0;
		width:0;
		height:100%;
		background-color:#ffe8d7;
		transition:width .5s;
	}
	.limo-user-toggle li a:hover::before {
		width:100%;
	}
	.limo-user-toggle li a i {
		display:inline-block;
		width:30px;
		text-align:center;
	}
}


/***********************************************************
** Content - Global
***********************************************************/
.limo-main-wrap {
	position:relative;
	padding-top:60px;
	height:auto;
	min-height:calc(100vh - 60px);
	background-color:#fff;
}
.limo-main-contents {
	min-height:calc(100vh - 80px);
	background-color:#ffe8d7;
}
.limo-main-contents-wrap {
	padding:10px;
	min-height:calc(100vh - 120px);
}
.limo-main-contents-block {
	margin-bottom:30px;
}
.limo-main-contents-block:last-child {
	margin-bottom:0;
}
.limo-main-contents-block-title {
	font-size:120%;
	line-height:40px;
	text-align:center;
	border-bottom:2px dashed #dadada;
	background-color:#fff;
}
.limo-main-contents-block-wrap {
	padding:10px;
	background-color:#f5f5f5;
}
.limo-search-block {
	margin-bottom:40px;
}
.limo-search-bottom-block {
	margin-top:40px;
}
.limo-search-title {
	position:relative;
	margin-bottom:20px;
	padding:0 0 10px 30px;
	font-size:110%;
	border-bottom:2px dotted #bbb;
}
.limo-search-title::before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:1em;
	height:1em;
	background-color:#f86900;
}
.limo-contents-btn-list {
	margin-bottom:20px;
	letter-spacing:-.5em;
	text-align:right;
}
.limo-contents-btn-list li {
	display:inline-block;
	margin-left:5px;
	letter-spacing:normal;
}
.limo-contents-btns-list li:first-child {
	margin-left:0;
}
.limo-sp-inline-block {
	display:inline-block !important;
}
.limo-pc-inline-block {
	display:none !important;
}
.limo-sentense {
	margin-bottom:1em;
}
.limo-sentense:last-child {
	margin-bottom:0;
}

.limo-timepicki-wrap {
	margin-left:30px;
	display:inline-block;
	width:300px;
}

.limo-timepicki-wrap .time_pick {
	display:inline-block;
	width:auto;
}

@media screen and (min-width:480px) {
	.limo-main-contents {
		min-height:calc(100vh - 90px);
	}
	.limo-main-contents-wrap {
		padding:15px;
		min-height:calc(100vh - 130px);
	}
	.limo-main-contents-block-wrap {
		padding:15px;
	}
}

@media screen and (min-width:768px) {
	.limo-main-wrap {
		min-height:calc(100vh - 70px);
	}
	.limo-main-contents {
		min-height:calc(100vh - 100px);
	}
	.limo-main-contents-wrap {
		padding:20px;
		min-height:calc(100vh - 150px);
	}
	.limo-main-contents-block-wrap {
		padding:20px;
	}
	.limo-main-contents-block {
		margin-bottom:40px;
	}
}

@media screen and (min-width:1000px) {
	.limo-main-contents {
		position:relative;
		margin-left:220px;
		min-height:calc(100vh - 110px);
	}
	.limo-main-contents::before {
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:1px;
		height:100%;
		background-color:#ffb47d;
	}
	.limo-main-contents-wrap {
		padding:25px;
		min-height:calc(100vh - 160px);
	}
	.limo-main-contents-block-title {
		padding-left:1.2em;
		font-size:140%;
		line-height:50px;
		text-align:left;
	}
	.limo-main-contents-block-wrap {
		padding:25px;
	}
	.limo-main-contents-block {
		margin-bottom:50px;
	}
	.limo-sp-inline-block {
		display:none !important;
	}
	.limo-pc-inline-block {
		display:inline-block !important;
	}
}


/***********************************************************
** Content - Navigation
***********************************************************/
.limo-main-menu {
	display:none;
	position:fixed;
	top:60px;
	left:0;
	z-index:2;
	width:100%;
	height:auto;
	background-color:#fff;
}
.limo-main-menu-title {
	padding-left:2em;
	color:#000;
	font-size:110%;
	line-height:45px;
	border-bottom:1px solid #ffb47d;
	background-color:#fff;
}
.limo-main-menu-list {
	font-size:100%;
	line-height:45px;
	letter-spacing:-.5em;
}
.limo-main-menu-list li {
	letter-spacing:normal;
	border-bottom:1px solid #ffb47d;
}
.limo-main-menu-list li a {
	display:block;
	position:relative;
	padding-left:2em;
	color:#000;
	background-color:rgba(248, 105, 0, 0);
	transition:all 0.2s linear;
}
.limo-main-menu-list li a:hover {
	padding-left:2.5em;
	color:#f84c00;
	font-weight:bold;
	background-color:rgba(248, 105, 0, 0.3);
}
.limo-main-menu-list li a.limo-main-menu-selected {
	font-weight:bold;
}
.limo-main-menu-list li a.limo-main-menu-selected::before {
	content:"\25B8";
	position:absolute;
	top:0;
	left:0.5em;
}

@media screen and (min-width:480px) {
	.limo-main-menu-list li {
		display:inline-block;
		position:relative;
		width:50%;
	}
	.limo-main-menu-list li:nth-child(2n + 1)::before {
		content:"";
		position:absolute;
		top:0;
		right:0;
		width:1px;
		height:100%;
		background-color:#ffb47d;
	}
}

@media screen and (min-width:768px) {
	.limo-main-wrap {
		padding-top:70px;
	}
}

@media screen and (min-width:1000px) {
	.limo-main-menu-title {
		line-height:60px;
	}
	.limo-main-menu {
		display:block;
		position:fixed;
		top:70px;
		left:0;
		width:220px;
		background-color:transparent;
	}
	.limo-main-menu-list {
		line-height:60px;
	}
	.limo-main-menu-list li {
		display:block;
		width:100%;
	}
	.limo-main-menu-list li:nth-child(2n + 1)::before {
		content:"";
		width:0;
		height:0;
	}
}


/***********************************************************
** Content - Alert
***********************************************************/
.limo-main-contents-alert {
	margin-bottom:0.8em;
	padding:0.4em 1em;
	font-weight:bold;
	line-height:1.4;
	border-radius:3px;
}
.limo-main-contents-alert:last-child {
	margin-bottom:0;
}
.limo-main-contents-alert-general {
	color:#61a06f;
	border:1px solid #c1dea9;
	background-color:#eaf4e2;
}
.limo-main-contents-alert-warning {
	color:#b68b53;
	border:1px solid #ecdcb6;
	background-color:#fffaef;
}
.limo-main-contents-alert-error {
	color:#b55351;
	border:1px solid #ecbeb6;
	background-color:#f7e7e4;
}


/***********************************************************
** Content - Table
***********************************************************/
.limo-table-list {
	margin-bottom:20px;
	width:100%;
	font-size:90%;
	border-collapse:collapse;
}
.limo-table-list:last-child {
	margin-bottom:0;
}
.limo-table-list thead tr {
	display:none;
}
.limo-table-list tbody tr {
	background-color:#fff;
}
.limo-table-list tbody tr:nth-child(2n) {
	background-color:#f0f0f0;
}
.limo-table-list th,
.limo-table-list td {
	display:block;
	padding:10px;
	padding-top:0;
	line-height:1.6;
	border:1px solid #bbb;
	border-top:0;
	border-bottom:0;
}
.limo-table-list th:first-child,
.limo-table-list td:first-child {
	padding-top:10px;
	border-top:1px solid #bbb;
}
.limo-table-list tr:last-child th:last-child,
.limo-table-list tr:last-child td:last-child {
	border-bottom:1px solid #bbb;
}
.limo-td-inner-toggle {
	display:none;
}
.limo-td-inner-toggle-btn::before {
	content:"\25BC\0020\5185\5BB9\3092\898B\308B";
}
.limo-td-inner-toggle-btn.limo-td-inner-toggle-active::before {
	content:"\25B2\0020\9589\3058\308B";
}

@media screen and (min-width:1000px) {
	.limo-table-list {
		font-size:100%;
	}
	.limo-table-list thead tr {
		display:table-row;
		color:#fff;
		background-color:#555;
	}
	.limo-table-list th,
	.limo-table-list td {
		display:table-cell;
		padding-top:10px;
		border-top:1px solid #bbb;
		border-bottom:1px solid #bbb;
	}
	.limo-td-inner-toggle {
		display:block;
	}
	.limo-td-inner-toggle-btn::before {
		display:none;
	}
	.limo-table-list .cell-5p {
		width:5%;
	}
	.limo-table-list .cell-10p {
		width:10%;
	}
	.limo-table-list .cell-15p {
		width:15%;
	}
	.limo-table-list .cell-20p {
		width:20%;
	}
	.limo-table-list .cell-25p {
		width:25%;
	}
	.limo-table-list .cell-30p {
		width:30%;
	}
	.limo-table-list .cell-35p {
		width:35%;
	}
	.limo-table-list .cell-40p {
		width:40%;
	}
	.limo-table-list .cell-45p {
		width:45%;
	}
	.limo-table-list .cell-50p {
		width:50%;
	}
	.limo-table-list .cell-55p {
		width:55%;
	}
	.limo-table-list .cell-60p {
		width:60%;
	}
	.limo-table-list .cell-65p {
		width:65%;
	}
	.limo-table-list .cell-70p {
		width:70%;
	}
	.limo-table-list .cell-75p {
		width:75%;
	}
	.limo-table-list .cell-80p {
		width:80%;
	}
	.limo-table-list .cell-85p {
		width:85%;
	}
	.limo-table-list .cell-90p {
		width:90%;
	}
	.limo-table-list .cell-95p {
		width:95%;
	}
}


.limo-table-detail {
	margin-bottom:20px;
	width:100%;
	font-size:90%;
	border-collapse:collapse;
}
.limo-table-detail:last-child {
	margin-bottom:0;
}
.limo-table-detail th,
.limo-table-detail td {
	display:block;
	padding:10px;
	line-height:1.6;
	text-align:left;
	vertical-align:middle;
	background-color:#fff;
	border:1px solid #bbb;
	border-top:0;
	border-bottom:0;
}
.limo-table-detail th:first-child,
.limo-table-detail td:first-child {
	border-top:1px solid #bbb;
}
.limo-table-detail tr:last-child th:last-child,
.limo-table-detail tr:last-child td:last-child {
	border-bottom:1px solid #bbb;
}
.limo-table-detail tr:last-child th:last-child th,
.limo-table-detail tr:last-child td:last-child td {
	border-bottom:0;
}
.limo-table-detail th {
	color:#fff;
	background-color:#555;
}
.limo-table-detail .limo-table-td-require::after {
	content:"\002A";
	padding-left:.2em;
	color:#f00;
}
.limo-table-upload-image {
	display:block;
	width:100%;
	max-width:500px;
	height:auto;
}

@media screen and (min-width:1000px) {
	.limo-table-detail {
		font-size:100%;
	}
	.limo-table-detail th,
	.limo-table-detail td {
		display:table-cell;
		border:1px solid #bbb;
	}
	.limo-table-detail th {
		width:150px;
	}
	.limo-table-detail td {
		width:calc(100% - 150px);
	}
}


.limo-table-inner {
	margin-top:20px;
	margin-bottom:20px;
	width:100%;
	font-size:90%;
	border-collapse:collapse;
}
.limo-table-inner:first-child {
	margin-top:0;
}
.limo-table-inner:last-child {
	margin-bottom:0;
}
.limo-table-inner tr {
	border-bottom:1px solid #000;
}
.limo-table-inner th,
.limo-table-inner td {
	display:block;
	padding:0;
	font-weight:normal;
	line-height:1.6;
	vertical-align:middle;
	border:0;
	background-color:transparent;
}
.limo-table-inner th:first-child,
.limo-table-inner td:first-child {
	border-top:0;
}
.limo-table-inner tr:last-child th:last-child,
.limo-table-inner tr:last-child td:last-child {
	border-bottom:0;
}
.limo-table-inner th {
	padding:10px 0 0;
	color:#000;
	background:#ddd;
	vertical-align:top;
}
.limo-table-inner td {
	padding:0 0 5px 25px;
}
.limo-table-inner td:last-child {
	padding:0 0 0 25px;
}

@media screen and (min-width:1000px) {
	.limo-table-inner {
		font-size:100%;
	}
	.limo-table-inner th,
	.limo-table-inner td {
		display:table-cell;
		border:0;
	}
	.limo-table-inner th {
		width:auto;
	}
	.limo-table-inner td {
		width:auto;
	}
	.limo-table-inner-cell-1 th,
	.limo-table-inner-cell-1 td {
		width:100%;
	}
	.limo-table-inner-cell-2 th,
	.limo-table-inner-cell-2 td {
		width:50%;
	}
	.limo-table-inner-cell-3 th,
	.limo-table-inner-cell-3 td {
		width:calc(100% / 3);
	}
	.limo-table-inner-cell-4 th,
	.limo-table-inner-cell-4 td {
		width:25%;
	}
	.limo-table-inner-cell-4 td[colspan="3"] {
		width:75%;
	}
	.limo-table-inner-cell-5 th,
	.limo-table-inner-cell-5 td {
		width:20%;
	}
}


/***********************************************************
** List
***********************************************************/
ul, ol {
	line-height:1.4;
}
.disc li {
	list-style-type:disc;
}
.circle li {
	list-style-type:circle;
}
.square li {
	list-style-type:square;
}
.lower_roman li {
	list-style-type:lower-roman;
}
.upper_roman li {
	list-style-type:upper-roman;
}
.decimal li {
	list-style-type:decimal;
}
.decimal_leading_zero li {
	list-style-type:decimal-leading-zero;
}
.lower_alpha li {
	list-style-type:lower-alpha;
}
.upper_alpha li {
	list-style-type:upper-alpha;
}
.cjk_ideographic li {
	list-style-type:cjk-ideographic;
}
.katakana_iroha li {
	list-style-type:katakana-iroha;
}

.limo-list-inline {
	letter-spacing:-.5em;
}
.limo-list-inline li {
	display:inline-block;
	margin-bottom:5px;
	width:100%;
	letter-spacing:normal;
	vertical-align:top;
}
.limo-list-inline li:last-child {
	margin-bottom:0;
}

@media screen and (min-width:768px) {
	.limo-list-inline li.limo-list-inline-20p {
		width:20%;
	}
	.limo-list-inline li.limo-list-inline-25p {
		width:25%;
	}
	.limo-list-inline li.limo-list-inline-33p {
		width:calc(100% / 3);
	}
}

.limo-dl-inner-table {
	margin-top:15px;
}
.limo-dl-inner-table:first-child {
	margin-top:0;
}
.limo-dl-inner-table-ml-20 {
	margin-left:20px;
}
.limo-dl-inner-table dt {
	margin-bottom:5px;
}
.limo-dl-inner-table dd {
	margin-bottom:10px;
}
.limo-dl-inner-table dd:last-child {
	margin-bottom:0;
}

@media screen and (min-width:768px) {
	.limo-dl-inner-table dt {
		float:left;
		clear:both;
		width:100px;
		margin-bottom:0;
	}
	.limo-dl-inner-table-dt-200 dt {
		width:200px;
	}
	.limo-dl-inner-table dd {
		padding-left:100px;
	}
	.limo-dl-inner-table-dt-200 dd {
		padding-left:200px;
	}
}


/***********************************************************
** Form
***********************************************************/
.limo-form-text,
.limo-form-textarea {
	margin-bottom:10px;
	padding:5px;
	width:calc(100% - 14px);
	font-family:"Noto Sans JP";
	border:2px solid #ccc;
	border-radius:4px;
	box-shadow:inset 0 1px 3px rgba(0,0,0,.1);
}
.limo-form-text.limo-form-text-100p {
	width:calc(100% - 14px);
}
.limo-form-textarea {
	height:150px;
}
.limo-form-text:last-child,
.limo-form-textarea:last-child {
	margin-bottom:0;
}

@media screen and (min-width:768px) {
	.limo-form-text,
	.limo-form-textarea {
		margin-bottom:0;
	}
	.limo-form-text {
		width:40%;
		max-width:300px;
	}
	.limo-form-text-small {
		width:30%;
		max-width:200px;
	}
	.time_pick .limo-form-text-small {
		width:200px;
	}
	.limo-form-text-middle {
		width:50%;
		max-width:400px;
	}
	.limo-form-text-large {
		width:60%;
		max-width:500px;
	}
	.limo-form-text-xlarge {
		width:70%;
		max-width:600px;
	}
	.limo-form-text-xxlarge {
		width:80%;
		max-width:700px;
	}
	.limo-form-textarea {
		width:80%;
		max-width:800px;
		height:200px;
	}
	.limo-form-textarea-small {
		height:150px;
	}
	.limo-form-textarea-midium {
		height:250px;
	}
	.limo-form-textarea-large {
		height:300px;
	}
}

.limo-form-select {
	margin-bottom:10px;
	padding:5px;
	width:calc(100% - 14px);
	font-family:"Noto Sans JP";
	border:2px solid #ccc;
	border-radius:4px;
	box-shadow:inset 0 1px 3px rgba(0,0,0,.1);
}
.limo-form-select:last-child {
	margin-bottom:0;
}

@media screen and (min-width:768px) {
	.limo-form-select {
		margin-bottom:0;
		margin-right:20px;
		width:auto;
		min-width:200px;
	}
}

.limo-form-radio {
	position:absolute;
	opacity:0;
}
.limo-form-radio + .limo-radio-label::before {
	content:'';
	background-color:#dadada;
	border-radius:100%;
	border:1px solid #aaa;
	display:inline-block;
	width:1.2em;
	height:1.2em;
	position:relative;
	top:0.1em;
	margin-right:0.5em;
	vertical-align:top;
	cursor:pointer;
	text-align:center;
	transition:all 250ms ease;
}
.limo-form-radio:checked + .limo-radio-label::before {
	border-color:#3197EE;
	background-color:#3197EE;
	box-shadow:inset 0 0 0 4px #f4f4f4;
}
.limo-form-radio:focus + .limo-radio-label::before {
	outline:none;
	border-color:#3197EE;
}
.limo-form-radio:disabled + .limo-radio-label::before {
	box-shadow:inset 0 0 0 4px #dadada;
	background-color:#aaa;
}
.limo-form-radio + .limo-radio-label:empty::before {
	margin-right:0;
}

.limo-form-radio-tab {
	position:absolute;
	opacity:0;
}
.limo-form-radio-tab + .limo-radio-label {
	display:block;
	margin:0 auto 10px;
	width:80%;
	max-width:200px;
	color:#999;
	font-size:120%;
	font-weight:bold;
	line-height:2.8;
	text-align:center;
	border-radius:10px;
	background-color:#eaeaea;
}
.limo-form-radio-tab:checked + .limo-radio-label {
	color:#fff;
	background-color:#f86900;
}

@media screen and (min-width:768px) {
	.limo-form-radio-tab + .limo-radio-label {
		margin:0 0 10px;
	}
}

.limo-form-checkbox:not(:checked),
.limo-form-checkbox:checked {
	position:absolute;
	left:-9999px;
}
.limo-form-checkbox:not(:checked) + .limo-checkbox-label,
.limo-form-checkbox:checked + .limo-checkbox-label {
	position:relative;
	padding-left:1.95em;
	cursor:pointer;
}

.limo-form-checkbox:not(:checked) + .limo-checkbox-label:before,
.limo-form-checkbox:checked + .limo-checkbox-label:before {
	content:'';
	position:absolute;
	left:0; top:0;
	width:1.25em; height:1.25em;
	border:2px solid #ccc;
	background:#fff;
	border-radius:4px;
	box-shadow:inset 0 1px 3px rgba(0,0,0,.1);
}
.limo-form-checkbox:not(:checked) + .limo-checkbox-label:after,
.limo-form-checkbox:checked + .limo-checkbox-label:after {
	content:'\2713\0020';
	position:absolute;
	top:.15em; left:.22em;
	font-size:1.3em;
	line-height:0.8;
	color:#09ad7e;
	transition:all .2s;
	font-family:'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
.limo-form-checkbox:not(:checked) + .limo-checkbox-label:after {
	opacity:0;
	transform:scale(0);
}
.limo-form-checkbox:checked + .limo-checkbox-label:after {
	opacity:1;
	transform:scale(1);
}
.limo-form-checkbox:disabled:not(:checked) + .limo-checkbox-label:before,
.limo-form-checkbox:disabled:checked + .limo-checkbox-label:before {
	box-shadow:none;
	border-color:#bbb;
	background-color:#ddd;
}
.limo-form-checkbox:disabled:checked + .limo-checkbox-label:after {
	color:#999;
}
.limo-form-checkbox:disabled + .limo-checkbox-label {
	color:#aaa;
}


/***********************************************************
** Btn & Submit
***********************************************************/
.limo-contents-head-btn {
	display:block;
	padding:5px 20px;
	width:auto;
	color:#fff;
	border:1px solid #f86900;
	border-radius:5px;
	background-color:#f86900;
	transition:all 0.2s linear;
}
.limo-contents-head-btn:hover {
	color:#f86900;
	background-color:#fff;
}

.limo-submit-block {
	margin-bottom:40px;
	text-align:center;
}
.limo-submit-block:last-child {
	margin-bottom:0;
}
.limo-submit-block .limo-submit-inline {
	display:inline-block;
	margin:0 10px;
}
.limo-form-submit {
	display:inline-block;
	padding:5px 20px;
	width:auto;
	color:#fff;
	font-size:110%;
	font-weight:bold;
	border:1px solid #f86900;
	border-radius:5px;
	background-color:#f86900;
	transition:all 0.2s linear;
}
.limo-form-submit:hover {
	cursor:pointer;
	color:#f86900;
	background-color:#fff;
}
input[type="submit"] {
	display:none;
}
input[type="submit"].limo-form-submit-complete,
input[type="submit"].limo-form-submit-return {
	display:inline-block;
}

.limo-default-btn {
	display:inline-block;
	position:relative;
	margin:10px 0;
	padding:3px 10px;
	width:auto;
	color:#fff;
	font-size:100%;
	font-weight:bold;
	border:1px solid #f86900;
	border-radius:5px;
	background-color:#f86900;
	transition:all 0.2s linear;
}
.limo-default-btn:hover {
	cursor:pointer;
	color:#f86900;
	text-decoration:none;
	background-color:#fff;
}


/***********************************************************
** Content - Paging
***********************************************************/
.limo-paging {
	display:table;
	margin:0 auto;
	text-align:center;
}
.limo-paging li {
	display:table-cell;
}
.limo-paging li.limo-paging-first {
	padding-right:20px;
}
.limo-paging li.limo-paging-last {
	padding-left:20px;
}
.limo-paging li .limo-paging-cell {
	display:block;
	width:30px;
	color:#000;
	line-height:30px;
	border:1px solid #999;
	border-right:0;
	background-color:#fff;
}
.limo-paging li a.limo-paging-cell {
	transition:all 0.2s linear;
}
.limo-paging li a.limo-paging-cell:hover {
	background-color:#ffeeee;
}
.limo-paging li.limo-paging-default .limo-paging-cell,
.limo-paging li.limo-paging-current .limo-paging-cell {
	margin-right:-1px;
	border-right:1px solid #999;
}
.limo-paging li.limo-paging-current .limo-paging-cell {
	color:#555;
	background-color:#eee;
}
.limo-paging li.limo-paging-first .limo-paging-cell {
	border-right:1px solid #999;
	border-radius:5px 0 0 5px;
}
.limo-paging li.limo-paging-last .limo-paging-cell {
	border-right:1px solid #999;
	border-radius:0 5px 5px 0;
}

@media screen and (min-width:768px) {
	.limo-paging li .limo-paging-cell {
		width:40px;
		line-height:40px;
	}
}


/***********************************************************
** Footer
***********************************************************/
.limo-footer {
	padding:10px;
	background-color:#555;
}
.limo-footer-copy {
	color:#fff;
	font-size:85%;
	line-height:20px;
	text-align:center;
}


/***********************************************************
** Iframe
***********************************************************/
.limo-iframe {
	width:100%;
	border:1px inset #bababa;
}


/***********************************************************
** Login
***********************************************************/
.limo-login-wrap {
	display:table;
	width:100%;
	height:100vh;
	background-color:#ffe8d7;
}
.limo-login-block {
	display:table-cell;
	width:100%;
	height:100vh;
	vertical-align: middle;
}
.limo-login-form-box {
	margin:0 auto;
	width:100%;
	max-width:300px;
	border-radius:5px;
	background-color:#fff;
}
.limo-login-title {
	padding:0.6em 1em;
	color:#fff;
	font-size:140%;
	text-align:center;
	border-radius:5px 5px 0 0;
	background-color:#f86900;
}
.limo-login-main {
	padding:20px;
	border-radius:0 0 5px 5px;
	background-color:#fff;
}
.limo-login_text {
	margin-bottom:1em;
	font-size:90%;
	line-height:1.6;
}


/***********************************************************
** Loading
***********************************************************/
.limo-loading-wrap {
	display:table-cell;
	z-index:9999;
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	text-align:center;
	vertical-align:middle;
	background-color:#fff;
}
.limo-loading {
	position:relative;
	width:125px;
	height:125px;
	margin:0 auto;
	margin-top:calc(calc(100vh - 125px) / 2);
	transform:scale(0.6);
		-o-transform:scale(0.6);
		-ms-transform:scale(0.6);
		-webkit-transform:scale(0.6);
		-moz-transform:scale(0.6);
}
.limo-loading-circle {
	position:absolute;
	background-color:rgb(255,255,255);
	height:22px;
	width:22px;
	border-radius:12px;
		-o-border-radius:12px;
		-ms-border-radius:12px;
		-webkit-border-radius:12px;
		-moz-border-radius:12px;
	animation-name:f_fadeG;
		-o-animation-name:f_fadeG;
		-ms-animation-name:f_fadeG;
		-webkit-animation-name:f_fadeG;
		-moz-animation-name:f_fadeG;
	animation-duration:1.2s;
		-o-animation-duration:1.2s;
		-ms-animation-duration:1.2s;
		-webkit-animation-duration:1.2s;
		-moz-animation-duration:1.2s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
}
.limo-loading-circle-01{
	left:0;
	top:51px;
	animation-delay:0.45s;
		-o-animation-delay:0.45s;
		-ms-animation-delay:0.45s;
		-webkit-animation-delay:0.45s;
		-moz-animation-delay:0.45s;
}
.limo-loading-circle-02{
	left:15px;
	top:15px;
	animation-delay:0.6s;
		-o-animation-delay:0.6s;
		-ms-animation-delay:0.6s;
		-webkit-animation-delay:0.6s;
		-moz-animation-delay:0.6s;
}
.limo-loading-circle-03{
	left:51px;
	top:0;
	animation-delay:0.75s;
		-o-animation-delay:0.75s;
		-ms-animation-delay:0.75s;
		-webkit-animation-delay:0.75s;
		-moz-animation-delay:0.75s;
}
.limo-loading-circle-04{
	right:15px;
	top:15px;
	animation-delay:0.9s;
		-o-animation-delay:0.9s;
		-ms-animation-delay:0.9s;
		-webkit-animation-delay:0.9s;
		-moz-animation-delay:0.9s;
}
.limo-loading-circle-05{
	right:0;
	top:51px;
	animation-delay:1.05s;
		-o-animation-delay:1.05s;
		-ms-animation-delay:1.05s;
		-webkit-animation-delay:1.05s;
		-moz-animation-delay:1.05s;
}
.limo-loading-circle-06{
	right:15px;
	bottom:15px;
	animation-delay:1.2s;
		-o-animation-delay:1.2s;
		-ms-animation-delay:1.2s;
		-webkit-animation-delay:1.2s;
		-moz-animation-delay:1.2s;
}
.limo-loading-circle-07{
	left:51px;
	bottom:0;
	animation-delay:1.35s;
		-o-animation-delay:1.35s;
		-ms-animation-delay:1.35s;
		-webkit-animation-delay:1.35s;
		-moz-animation-delay:1.35s;
}
.limo-loading-circle-08{
	left:15px;
	bottom:15px;
	animation-delay:1.5s;
		-o-animation-delay:1.5s;
		-ms-animation-delay:1.5s;
		-webkit-animation-delay:1.5s;
		-moz-animation-delay:1.5s;
}
@keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}
	100%{
		background-color:rgb(255,255,255);
	}
}
@-o-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}
	100%{
		background-color:rgb(255,255,255);
	}
}
@-ms-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}
	100%{
		background-color:rgb(255,255,255);
	}
}
@-webkit-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}
	100%{
		background-color:rgb(255,255,255);
	}
}
@-moz-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}
	100%{
		background-color:rgb(255,255,255);
	}
}


/***********************************************************
** Dialog
***********************************************************/
.limo-dialog {
	display:none;
}
