@charset "utf-8";
/* CSS Document header */
header{
	width:100%;
	overflow:hidden;
}
header img{
	float:left;
}
/*-------------navi---------*/
nav#page_back{
	width: 35%;
	float:right;
	text-align: center;
	margin:5% 2% 0 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
nav#page_back a{
	background: #fff;
	border:#e5e5e5 5px solid;
	display:block;
	padding: 3%;
	color:#0075a9;
	font-size:80%;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
section#shopname{
        background:#539ebd;
        color:#fff;
        padding:3% 0 2%;
        text-align:center;
        margin-top:3%;
        width:100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    section#shopname h1{
        font-size:100%;
        font-weight:bold;
    }
    section#shopname p{
        font-size:70%;
        line-height:1.65em;
    }
    section#photo_scheme{width:100%; padding:2% 0;background:#f8f8f8;}
    section#photo_scheme ul{}
    section#photo_scheme ul li{width: 90%;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        background: #fff;
        padding: 1.5% 3%;
        margin: 0 auto 2%;}
    .list_li{ overflow:hidden; display:block; width:100%;}
    .s_photo{ float:left; margin: 2px 10px 2px 0; position:relative;}
    span.new_face{position:absolute; top:0; left:0; font-size:11px; background:rgba(0,200,0,0.8); color:#ffffff; padding:0 2px; line-height:2.0em;}
    .g_photo img{}
    section#photo_scheme img {border: solid #e6e6e6 1px;}
    section#photo_scheme a{
        display:block;
        background: url(/img/i/search/list_arrow.png) no-repeat right center;
        -webkit-background-size: 15px 19px;
        background-size: 15px 19px;
        background-origin: content-box;
        padding: 5px 0 5px 0;
    }
    h3{
        font-size: 1.0em;
        color: #539EBD;
        line-height:1.8em;
        font-weight:bold;
    }
    .gal_d{
        font-size:0.8em;
        padding-bottom: 0.2em;
        overflow:hidden;
    }
    p.text{font-size: 0.8em; line-height:1.6em;}
    dl.contents dt{background:#f2f2f2; font-size:80%; font-weight: bold; padding:1%; margin-top:2%;box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;border-radius: 2px;-webkit-border-radius: 2px;-moz-border-radius: 2px;}
    dl.contents dd{font-size:85%; padding:3% 1%;box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;}
    dl.contents dd a{color: #333; text-decoration: none;}
    dl.contents dd a:visited{color: #333;}
    dl.contents dd a:hover{color: #333;}
    dl.contents dd a:active{color: #333;}
    .modal .checkbox{
        display: none;
    }

    /* Gray background */
    .modal .modal-overlay{
        opacity: 0;
        transition: all 0.3s ease;
        width: 50%;
        position: absolute;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -100;
        transform: scale(1);
        display: none;
        background-color: rgba(0,0,0,0.7);
    }

    /* Box */
    .modal .modal-wrap{
        background-color: #fff;
        border:2px solid #4ecd00;
        box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
        padding: 40px 0;
        width: 60%;
        margin: 20px auto;
        align-self: flex-start;
        border-radius: 2px;
        transition: all 0.5s ease;

    }
    .modal .modal-wrap.small{
        width: 30%;
    }
    .modal .modal-wrap.full{
        width: 100%;
        height: 100%;
    }

    .modal .modal-wrap.a-center {
        align-self: center;
    }
    .modal .modal-wrap.from-left {
        transform: translateX(-100%);
    }
    .modal .modal-wrap.from-right {
        transform: translateX(100%);
    }
    .modal .modal-wrap.from-top {
        transform: translateY(-100%);
    }
    .modal .modal-wrap.from-bottom {
        transform: translateY(100%);
    }
    /* Close button */
    .modal .modal-overlay .close{
        position: absolute;
        right: 10px;
        top: 1px;
        font-size: 20px;
        width: 20px;
        height: 20px;
        color: #282c34;
    }

    .modal .modal-overlay .close:hover{
        cursor: pointer;
        color: #4b5361;
    }
    .modal .o-close {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: -100;
    }

    .modal input:checked ~ .o-close {
        z-index: 9998;
    }
    .modal input:checked ~ .modal-overlay{
        transform: scale(1);
        opacity:1;
        z-index: 9997;
        overflow: auto;
        display: flex;
        animation-duration: 0.5s;
        animation-name: fade-in;
        -moz-animation-duration: 0.5s;
        -moz-animation-name: fade-in;
        -webkit-animation-duration: 0.5s;
        -webkit-animation-name: fade-in;
    }
    .modal input:checked ~ .modal-overlay .modal-wrap {
        transform: translateY(0);
        z-index: 9999;
    }

    /* Responsive Design */
    /* Tablet size */
    @media (max-width: 800px){
        .modal .modal-wrap {
            width: 80%;
            padding: 25px 15px;
        }
    }

    /* Phone size */
    @media (max-width: 500px){
        .modal .modal-wrap {
            width: 90%;
        }
    }

    /* Fadein from display:none */
    @keyframes fade-in {
        0% {
            display: none;
            opacity: 0;
        }
        1% {
            display: flex;
            opacity: 0;
        }
        100% {
            display: flex;
            opacity: 1;
        }
    }

    @-moz-keyframes fade-in {
        0% {
            display: none;
            opacity: 0;
        }
        1% {
            display: flex;
            opacity: 0;
        }
        100% {
            display: flex;
            opacity: 1;
        }
    }

    @-webkit-keyframes fade-in {
        0% {
            display: none;
            opacity: 0;
        }
        1% {
            display: flex;
            opacity: 0;
        }
        100% {
            display: flex;
            opacity: 1;
        }
    }
    .wrap{
        width: 80%;
        margin: 0px auto;
        text-align: center;
    }
    .wrap h1{
        font-size: 70px;
    }
    .wrap h1 span{
        color: #F42A54;
    }
    .contribute {
        position: fixed;
        right: -20px;
        top: 20px;
        width: 16em;
        height: 10em;
        overflow: hidden;
        transform: rotate(45deg);
    }
    .contribute p {
        padding: 3px;
        background-color: #444444;
    }
    .contribute p a {
        border-top: 1px dashed white;
        border-bottom: 1px dashed white;
        display: block;
        color: white;
        text-decoration: none;
        padding: 2px 0px;
    }

    .open-modal {
        float:left;
        border: 1px solid #e0e0e0;
        list-style: none outside none;
        text-align: center;
        width: 29%;
        height:25px;
        margin:0 1% 0 0;
        padding: 5px 1%;
        background: -webkit-gradient(linear,left top,left bottom,from(#4ecd00),to(#4ecd00));
        background: -moz-linear-gradient(top,#4ecd00,#4ecd00);
        background: linear-gradient(to bottom, #4ecd00, #4ecd00);
        box-shadow: 0 2px 1px -1px rgba(100, 100, 100, 0.1) ;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }

    .open-modal:hover {
        cursor: pointer;
        background-color: #E7E7E7;
        color: #3C3C3C;
        border-top: 1px solid #eEeeee;
        box-shadow: 0.2px 0.2px 2px #15bbd1;
    }

    @media (max-width: 500px){
        .wrap {
            width: 100%;
        }
    }
    div.son{
        color: #ffffff;
        display: block;
        font-weight: bold;
        line-height: 2.1em;
        text-align: center;
        font-size:0.9em;
        text-indent:1.3em;
        background:url(/img/i/common/sns.png) no-repeat left center;
        background-position: 0.4em 0.4em;
        -webkit-background-size: 1.3em 1.3em;
        background-size: 1.3em 1.3em;
    }
    .sns_qr{
        height:35px;
        width:100%;
        font-weight:bold;
        background:url(/img/i/common/sns.png) no-repeat #4ecd00 6px 6px;
        margin-top:2px;
        -webkit-background-size: 20px 20px;
        background-size: 20px 20px;
        float:left;
        box-sizing:border-box;
        color:#fff;
        border:2px solid #4ac200;
        line-height:2.9em;
        text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
        text-align:center;
    }
    .sns_friends{
        float:left;
        line-height:1.8em;
        font-weight:bold;
    }
    .sns{
        overflow:hidden;
        margin: 5% 0 4%;
    }
    .sns a{
        display:block;
    }
    .sns_title{
        background:#e7fdd9;
        padding:1% 2% 1%;
        background: rgba(0, 0, 0, 0) url("/img/i/home/caution.png") repeat scroll 0 0;
        color:#fff;
        text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
    }
    p.left_id{
        width:20%;
        float:left;
        border-top:2px solid #4ecd00;
        border-left:2px solid #4ecd00;
        border-bottom:2px solid #4ecd00;
        background:#fefee3;
        height: 35px;
        box-sizing:border-box;
        padding:4px 1% 0 0.5%;
    }
    p.right_id{
        width:80%;
        float:left;
        border:2px solid #4ecd00;
        background:#fefee3;
        height: 35px;
        box-sizing:border-box;
        padding:4px 1% 0 1%;
    }
    .sns-left{
        float:left;
        width:67%;
        line-height:2.8em;
    }
    .sns-right{
        float:right;
        width:30%;
    }
    textarea{
    width:100%;
    height: 80px;
    margin-top: 4%;
    background: #fefee3;
    line-height: 1.8em;
    padding:10px 10px 5px;
    border: 2px solid #4ecd00;
    color: #582f31;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1.2em;

}
.action_wapper{width:100%; overflow: hidden; }
#js-copybtn{  width:100%; text-align: center; border: 2px solid #4ecd00;background: #fff;color: #4ecd00;border-radius: 4px;padding:10px;font-size: 1.2em; font-weight: bold;}
#js-copyalert{color: #4ecd00; font-size: 18px; text-align: center; font-weight: bold;}
.copy_alert {display: none;}
    .sns-cont{
        overflow:hidden;
        width:100%;
    }
    .button_form{
        width: 97%;
        background:no-repeat #db5842;
        margin-top:3%;
        border-radius:4px;
        -webkit-border-radius:4px;
        text-align:center;
        margin:0 1%;
    }
    p.jump_form{
        margin: 0 auto;
        text-align: center;
        display: block;
        padding: 5% 0;
        width: 92%;
        font-weight:bold;
        background:#db5842;
        color:#fff;
        font-size:100%;
        background: url("/img/i/common/radius_arrow.png") no-repeat scroll right center;
        background-size: 20px 20px;
        -webkit-background-size: 20px 20px;
        border:none;
    }
    a.more_t {
        color: #539EBD;
        font-size: 0.8em;
    }
    div#more_read_t {
        background: #fff none repeat scroll 0 0;
    }
    div#more_read_t p {
        border-bottom: 1px solid #fff;
        border-top: 1px solid #fff;
        font-size: 1.0em;
        margin: 0 auto;
        padding: 1.1em 0;
        text-align: center;
    }
    div.jq-more {border-top: 1px solid #e8e8e8;}
