@charset "utf-8";

/* CSS Document */

body {
    height: 100% !important;
    width: 100%;
    min-width: 1200px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    background-color: #000;
    color: #fff;
    z-index: -1;
    font-family: "kepler-std", "kozuka-mincho-pro" !important;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

ul {
    list-style: none;
}

#cycle-loader {
    height: 120px;
    left: 50%;
    margin: -60px 0 0 -60px;
    position: absolute;
    top: 50%;
    width: 120px;
    z-index: 999;
}

/*I want to avoid jumpiness as the JS loads, so I initially hide my cycle*/
#maximage {
    display: none;/* Only use this if you fade it in again after the images load */
    position: fixed !important;
    z-index: 1;
}

/*PCでの表示*/
.pc {
    display: block !important;
}

/*SPでの表示*/
.sp {
    display: none !important;
}

/*Set my logo in bottom left*/
#logo {
    height: 100%;
    width: auto;
    z-index: 1000;
}

#logo img {
    width: auto;
    height: 100%;
}

div.arrow {
    position: fixed;
    padding: 0 2%;
    display: block;
    z-index: 15000;
    width: 96%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

div.arrow ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

div.arrow ul li:nth-child(1) {
    float: left;
    margin-left: 20px;
}

div.arrow ul li:nth-child(2) {
    float: right;
    margin-left: 20px;
}

a {
    color: #666;
    text-decoration: none;
}

a img {
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.position_y_center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    display: block;
}

.position_y_center_x_right {
    position: relative;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    display: block;
}

.position_x_center_bottom {
    position: absolute;
    display: block;
    margin: -185px auto 0;
    top: 50%;
    left: 0;
}

.position_xy_center {
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto 0;
}

.position_x_right_y_center {
    position: absolute;
    display: block;
    top: 45%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.position_x_left_y_center {
    position: absolute;
    display: block;
    top: 45%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.position_xy_center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.in-slide-content {
    right: 0;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Show above .gradient */
}

.item_detail {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: rgba(0,0,0,.6);
    padding: 20px;
 }

.item_detail h2 {
	margin:0 0 10px 0;
	font-size: 30px;
}

.item_detail h2 span {
	display: block;
	color: #999;
	font-size: 14px;
}

.item_detail p {
	margin:0;
	font-size: 20px;
}

.item_detail p span{
	font-size: 14px;
}

.concept_wrap, .item_info_wrap, .custom_order_wrap {
    width: 1100px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10000 !important;
}

.custom_order_wrap img.txt_img {
    margin: 0 auto 5%;
    display: block;
}

.custom_order_detail {
    width: 100%;
}

.custom_order_wrap p.detail {
    text-align: center;
    font-size: 14px;
}

img.title {
    height: 100%;
    width: auto;
    padding-bottom: 45px;
}

.item_name_right {
    margin-left: 275px !important;
}

.item_name_left {
    margin-left: -275px !important;
}

/* ~~ floatのクリア ~~ */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

/* Hides from IE Mac */
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* lアイテムトグルメニュー */


.sp_item_list {
    position: absolute;
    bottom: 44px;
    width: 100%;
    z-index: 16000;
    text-align: right;
}

label {
    color: #000;
    background: rgba(255,255,255,1.0);
    font-family: impact;
    padding: 10px 20px;
    display: inline-block;
    margin: 20px 40px 20px;
    font-size: 18px;
    -webkit-animation: blink 3.4s ease-in-out infinite alternate;
    -moz-animation: blink 1.7s ease-in-out infinite alternate;
    animation: blink 1.7s ease-in-out infinite alternate;
}
 @-webkit-keyframes blink {
 0% {
opacity:0;
}
 100% {
opacity:1;
}
}
@-moz-keyframes blink {
 0% {
opacity:0;
}
 100% {
opacity:1;
}
}
@keyframes blink {
 0% {
opacity:0;
}
 100% {
opacity:1;
}
}

.menu {
    width: 100%;
}

input[type="checkbox"].on-off {
    display: none;
}

.menu ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0 auto;
    padding: 0 10% 0;
    list-style: none;
    width: 80%;
    font-size: 12px;
    background: rgba(0,0,0,0.7);
}

.menu li {
    width: 25%;
    margin: 20px 0 10px;
    float: left;
}

.menu li a {
    text-decoration: none;
}

.menu li img {
    width: 10%;
    min-width: 38px;
    height: auto;
    margin-left: 10px;
    float: left;
}

.menu li div.item_name_price {
    width: 70%;
    padding: 0 70px 0 5px;
    font-size: 12px;
    background-image: url(../../images/cart.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 50px;
    text-align: left;
}

.menu li div.item_name_price span.item_name {
    font-size: 12px;
    height: 20px;
    color: #FFF;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis; /* Safari */
    -o-text-overflow: ellipsis; /* Opera */
    text-align: left;
}

.menu li div.item_name_price span.item_price {
    font-size: 12px;
    color: #FFF;
    display: block;
    overflow: hidden;
    text-align: left;
}

.menu li span {
    padding: 0 0 0 10px;
    display: block;
    overflow: hidden;
}

.vl_menu li div.item_name_price {
    background-image: none !important;
}

input[type="checkbox"].on-off + ul {
    height: 0;
    overflow: hidden;
}

input[type="checkbox"].on-off:checked + ul {
    height: 230px;
}

/* ~~ SHOP リスト ~~ */

.pc_shoplist {
    width: 1000px;
    margin: -45px auto 0;
    color: #FFF;
}

.pc_shoplist h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 auto 40px;
    font-family: impact;
    font-weight: normal;
}

.pc_shoplist h2 span {
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
    display: inline-block;
}

.pc_shoplist table {
    width: 100%;
}

.pc_shoplist table td {
    width: 33%;
    padding-bottom: 25px;
    text-align: center;
}

.pc_shoplist table span {
    display: block;
    width: 100%;
}

.pc_shoplist table span.shop_name {
    font-size: 16px;
    font-weight: bold;
}

.pc_shoplist table span.shop_tel {
    font-size: 12px;
}

.pc_shoplist table span.shop_link a {
    font-size: 12px;
    color: #fff;
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
}

.pc_shoplist table span.shop_link a:hover {
    opacity: 0.8;
}

.pc_shoplist table span.shop_attentiion {
    font-size: 12px;
    font-weight: bold;
    color: #900;
    padding-top: 20px;
}

footer {
    position: fixed;
    bottom: 0;
    display: block;
    width: 100%;
    min-width: 1200px;
    z-index: 20000;
    background: transparent;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #fff;
    height: 40px;
    font-size: 12px;
}

div.f_inner {
    position: relative;
}

div.f_inner .sns {
    position: absolute;
    top: 0;
    left: 0;
}

div.f_inner .sns ul {
    margin: 0;
    padding: 0;
}

div.f_inner .sns ul li {
    float: left;
    margin: 0 10px;
}

div.f_inner .sns ul li:first-child {
    margin: 0 10px 0 0;
}

div.f_inner .sns ul li a {
    color: #fff;
}

div.f_inner .copyright {
    position: absolute;
    top: 0;
    right: 0;
}
