@charset "utf-8";

/* CSS Document */
#corner_contents {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#corner_contents #breadcrumb {
	padding: 5px;
	margin: 0;
	background: rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid #ccc;
}

/* SNSの領域設定 */
.corner_sns {
    list-style: none;
    display: flex;
}
.corner_sns li {
    width: 33.33%;
}
.corner_sns li a{
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.corner_sns li.twitter a{background: #55acee;}
.corner_sns li.facebook a{background: #3B5998;}
.corner_sns li.line a{background: #1dcd00;}

.corner_sns li.twitter a::before,
.corner_sns li.facebook a::before,
.corner_sns li.line a::before{
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    margin-right:5px;
}
.corner_sns li.twitter a::before {content: "\f099";}
.corner_sns li.facebook a::before {content: "\f39e";}
.corner_sns li.line a::before {content: "\f3c0";}
.corner_sns li a::after{
    font-size: 12px;
    content:attr(title);
}

/* nav */
#corner_nav {
    width: 100%;
    margin-bottom: 30px;
}
#corner_nav li a{
    display: block;
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    background: #eaeaea;
    margin-bottom: 1px;
}

/* section */
#corner_main_text {
    margin:0;
    padding: 0;
}
h2 {
    margin: 10px 0;
    padding: 7px 5px 5px 10px;
    font-size:1.5em;
    background: #efefef;
}
h3.corner_h3 {
    margin: 10px 0;
    padding: 5px;
    font-size:1.2em;
    border-bottom: 2px solid #999;
}

div.text {
    width: 96%;
    margin: 0 auto 30px;
}
div.text a{
    border-bottom: 1px solid #333;
}
div.text p{
    margin-bottom: 10px;
}

/* copyright */
.copyright {
    margin-bottom: 20px;
    text-align: center;
}
.copyright small{
    font-size: 0.87em;
}


/*- PC ---------------------------------------------------*/
@media screen and (min-width: 641px) {
    .contents_wrap {
        position: relative;
    }
    #breadcrumb {
        padding: 10px 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.6);
        border-bottom: 1px solid #ccc;
    }

    /* SNSの領域設定 */
    #sns {
        position: absolute;
        top: 5px;
        right: 0;
    }
    .corner_sns li a{
        width: 100px;
    }

    /* section */
    #corner_main_text {
        margin:0;
        padding: 0;
    }
    div.text a:hover{
        text-decoration: none;
    }
    
    .corner_products {
        margin: 0 15px;
    }
    
    /* 商品 */
    .item_list ul {
        display: flex;
        flex-wrap: wrap;
    }
    .item_list li {
        display:flex;
        width: 240px;
    }
    .item_list li a {
        width: 100%;
        padding: 40px 30px 10px 31px;
        border: 1px solid #ccc;
        background: #fff;
    }
    .item_list_class p{
        width: 180px;
        top: 10px;
        left: 30px;
    }
}