@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Londrina+Outline|Julius+Sans+One ');
@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans');

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    font-size: 100%;
    text-decoration: none;
    font-weight: normal;
}

*:focus {
    outline: none;
}

html {
    overflow-y: scroll;
}

body {
    color: #6d6464;
    font-size: 15px;
    font-family: '游ゴシック','Yu Gothic','游ゴシック体','YuGothic','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    line-height: 1.6em;
    letter-spacing: 0.01em;
    text-align: left;
    margin: 0;
    background: #e4e9ec;
}

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

a:hover {
    color: #CFC3C1;
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a img {
    border: 0;
}

header{
    text-align: left;
    margin: 40px 0 40px -9px;
}

nav ul {
    font-size:0;
}

nav ul li {
    margin: 0 15px;
    font-size:21px;
    font-family: 'Julius Sans One', 'メイリオ', sans-serif;
    color: #8b91a7;
    letter-spacing: 0.15em;
    display: inline-block;
}

nav ul li a {
    display: block;
    text-decoration: none;
    border-bottom:1px dashed #bfbba1;
    font-family:"Alegreya Sans","メイリオ", sans-serif;
    font-size:15px;
    color: #a89367;
    letter-spacing: 0.1em;
    margin-right: -5px;
}

nav ul li a:hover {
    opacity: 0.5;
}

.container {
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
}

main {}

article {
    margin-bottom: 35px;
}

article img {
    width: 102px;
    height: auto;
    border: 1px solid #dde0e4;
    border-radius: 5px;
}

.space {
    border: 0px;
}

article ul {
    display:table;
}

article li {
    display:table-cell;
    padding:4px;
}

/*------------画面サイズ500px以下------------*/

@media screen and (max-width: 500px) {

body {
    font-size: 14px;
}

header{
    margin: 35px 0 31px 0;
}

nav ul li {
    margin: 0 15px;
    font-size:21px;
}

nav ul li a {
    margin-right: -5px; 
    font-size:15px;
}

article img{
    height: auto;
    width: auto;
    border-radius: 3px;
}
}