﻿@charset "utf-8";

/*
スマホ: 320px - 480px
タブレット: 480px - 768px
パソコン: 768px以上
*/

/*　共通の設定　*/

body
{
    font-family: メイリオ, Meiryo, Osaka, “ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “ＭＳ Ｐゴシック”, “MS PGothic”, sans-serif;
    width: 100%;
    margin: 0 auto;
    background-color: #f5f3ef;
    font-size: 16px;
}


header
{
    background: white;
    margin-bottom: 15px;
    padding: 0 5px;
}


footer
{
    background: white;
    font-size: 16px;
    text-align: center;
    
}

div#container
{

}

div#main
{
    background: white;
    margin-bottom: 15px;
    padding: 0 5px;
}

aside
{
    background: white;
    margin-bottom: 15px;
    text-align: center;
}

nav#footerNavLink
{
    float: right;
}

nav#headerNav ul
{
    list-style: none;
    overflow: hidden;
}

nav#headerNav li
{
    float: left;
    width: 20%;
    text-align: center;
}

header p
{
    margin-left: 5px;
    text-align: left;
}

img
{
    max-width: 100%;
}

h2, h3
{
    font-weight: bold;
}

h2
{
    font-size: 16px;
    padding: 3px 0 3px 10px;
    margin-bottom: 10px;
    text-align: center;
}

h3
{
    border-bottom: 1px solid #ccc;
    padding: 3px 0;
    margin-bottom: 10px;
}    
    
p 
{
    width : 100% ;
    font-size : 100% ;
    margin : 0 0 1.8em 0 ;
    line-height : 2.5 ; 
    text-align: center;
}

ul.products 
{
    margin-bottom: 15px;
}

ul.products>li 
{
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
     
}

ul.products>li:last-child
{
    border: none;
}
  
ul.products>li>img 
{
    float: left;
    width: 60px;
}

ul.products>li>p 
{
    margin-left: 70px;
    font-size: 0.8em;
    text-align: left;
    
}

div#main h2 
{
    font-size: 24px;
    font-weight: bold;
    color: Red;
}

aside h2
{
    font-size: 16px;
    padding: 3px 0 3px 10px;
    margin-bottom: 10px;
    text-align: center;
}

 section {
	border:1px solid #ccc;
	margin:0px 0px 5px;
	padding:20px;
}

div#order
{
    width: 320px;
    margin: 0 auto;
}

section h1
{
    font-size: 24px;
    font-weight: bold;
    color: Red;
    text-align: center;
}

section#sale .sale
{
    font-size: 24px;
    font-weight: bold;
    color: Red;
    text-align: center;
}

ul#list-menu
{
    padding-left: 20px;
}

ul#list-menu li
{
    list-style-type: disc;
    margin-bottom: 1.2em;
}


.list-menu2 {

    list-style: none;

    overflow: hidden;

    width: 100%;

    padding: 0;

    margin: 10px auto 10px;

}

.list-menu2 li {

    list-style: none;

    overflow: hidden;

    width: 100%;

    margin: 0;

    padding: 0;

    border-bottom: 1px solid #879c18;

}

.list-menu2 li:last-child {

    border-bottom: 0px;

}

.list-menu2 li a {

    display: block;

    position: relative;

    z-index: 10;

    height: 40px;

    margin: 0;

    padding: 0px 10px 0px 30px;

    background: #a1b91d;

    color: #fff;

    font-size: 14px;

    line-height: 40px;

    font-weight: bold;

    text-decoration: none;

}

.list-menu2 li a:hover {

    background: #879c18;

}

#list-menu2 li a 
{
    padding: 0px 10px 0px 30px;
}

#list-menu2 li a:before {

    display: block;

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 8px;

    height: 40px;

    background: #879c18;

    transition: .3s;

    z-index: -1;
}

#list-menu2 li a:hover {

    background: #a1b91d;

}

#list-menu2 li a:hover:before {

    width: 100%;

}

/*　スマホのスタイル　*/


nav#headerNav
{
    display: none;
}

/*　タブレットのスタイル　*/

@media all and (min-width: 480px)
{
    nav#footerNavLink
    {
        display: none;
    }
    nav#headerNav
    {
        display: block;
    }    
    nav#footerNav
    {
        display: none;
    }
}   
    

/*　パソコンのスタイル　*/

/*
all: 980px
aside: 200px
margin: 15px
main: 765px
*/

@media all and (min-width: 768px)
{
    div#container
    {
        overflow: hidden;
    }
    div#main
    {
        float: left;
        width: 78.0612245%;
    }
    aside
    {
        float: right;
        width: 20.4081633%; /* 200px / 980px * 100*/
    }
}