/**
 *  Common
 *******************/
.hidden {
    display: none;
}
.bg-active {
    background-color: #efefef;
}
.message {
	position: absolute !important;
	left: 0;
	right: 0;
	top: 5%;
	width: 350px;
	margin: auto;
	z-index: 9999;
	box-shadow: 2px 2px 5px #ccc2;
}
a.btn,
button.btn {
	box-shadow: 3px 3px 1px rgba(0,0,0,.2);
	margin-right: 5px;
	transition: .2s all linear;
	margin-bottom: 5px;
}
a.btn:hover,
button.btn:hover {
	box-shadow: 3px 3px 0 rgba(0,0,0,.3);
	transition: .2s all linear;
}
a.btn:focus,
button.btn:focus {
	box-shadow: 0px 0px 1px rgba(0,0,0,.2);
	transition: .2s all linear;
}
.input-group a.btn,
.input-group button.btn {
	box-shadow: none;
}
/* debug */
pre {
	position: relative;
    z-index: 9999999999;
    background-color: #fefefe;
    width: 100%;
    display: block;
    padding: 15px;
}
.cake-error {
	display: block;
    padding: 15px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
/* checkbox */
input[type="checkbox"].form-control {
    display: none;
}
.label-button {
    padding: 2px 10px;
    border: 1px solid #e4e7ea;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 0;
}
input.form-control[type="checkbox"]:checked+.label-button {
    border-color: #20a8d8;
    background-color: #20a8d8;
    color: white;
}
.top-info {
    position: absolute;
    top: 0;
    width: 100%;
    padding-right: 30px;
}
/* jquery ui */
.ui-state-highlight::after {
    background-color: #eee;
    border: 1px dotted;
    height: 100%;
    width: 100%;
    display: block;
    content: "";
}
/* image */
.img-wrap {
    position: relative;
}
.img-wrap:hover img {
    opacity: 0.3;
}
.img-wrap.active .img-thumbnail {
    background-color: #f0f8ff !important;
    border: 1px solid #00008e !important;
}
.img-wrap:hover .img-container {
    opacity: 1;
}
.img-wrap img {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}
.img-container {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}
.img-container div {
    color: white;
    font-size: 16px;
}
/* Media Query
================================================ */

/* 大ディスプレイ */
@media screen 
	and (min-width: 1200px) {
	
}
/* 小ディスプレイ */
@media screen 
	and (max-width: 1024px) {
	
}
/* タブレット（Landscape） */
@media screen 
	and (min-width:769px) 
	and (max-width:1024px) {

}
/* タブレット（Portrait） */
@media screen 
	and (min-width:736px)
	and (max-width:768px) {
	
}
/* タブレット（Portrait） + スマートフォン */
@media screen 
	and (max-width:768px) {
	
}
/* スマートフォン */
@media screen 
	and (max-width:736px) {
	
}
/* スマートフォン */
@media screen
	and (max-width:320px) {
	
}