@charset "UTF-8";

body {
    font-size: 14px;
}

.image-container img {
    display: block;
    margin-bottom: 10px;
  }

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

a:link { 
    text-decoration: none;
    color: #0000ee; 
}

a:visited { 
    color: #551a8b;
}

a:hover {
    color: #0000ee;
    text-decoration: underline; 
}

a:active { 
    color: ff0000; 
}

.left{
    text-align: left;
}

.center{
    text-align:center;
}

/** スマホ(デフォルト) **/
#main{
    width: 100%; 
    margin-left: auto;
    margin-right: auto;
}

h1 {
    text-align : right;
    font-size: 12px;
}

/** タブレット **/
@media screen and (min-width: 480px) {

#main{
    width: 768px; 
    margin-left: auto;
    margin-right: auto;
}

h1 {
    text-align : right;
    font-size: 12px;
}

body {
    font-size: 16px;
}

/** パソコン **/
@media screen and (min-width: 1024px) {

#main{
    width: 950px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    text-align : right;
    font-size: 14px;
}

body {
    font-size: 17px;
}