@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 75%;
    font-family: 'メイリオ' ,Meiryo, 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro' , 'ＭＳ Ｐゴシック' , 'Osaka' ,sans-serif;
    background-color: #ffffff;
    color: #000000; /* 標準文字色 */
    max-width: 900px;
    margin: 0 auto;
}

header{
    background-color: #ffffff;
    padding: 5px 0;
    border-bottom: 1px solid #00AFB7;
}

header h1 {
    text-align: left;
    font-size: 200%;
    color: #717171;
    line-height: 1.0;
}

footer {
    background-color: #ffffff;
    border-top: 1px solid #AF1414;
    border-bottom: none;
}

footer p {
    text-align: left;
    font-size: 110%;
    color: #717171;
    line-height: 0.8;
}

footter p1{
    text-align: right;
    font-size: 90%;
    color: #717171;
}

#logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 9999;
}

#logo img {
    max-width: 100%;
    height: auto;
}

#content {
    display: none;
    padding: 20px;
    opacity: 0;
    transition: opacity 1s;
}
.photolocation-top{
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    width: 100%; 
}

.photo-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #ECE8DD;
}

.photo-container img {
    width: 220px;
    margin: 10px;
}
h3{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
    padding-top: 3px;
    padding-left: 1px;
    font-size: 150%;
    color: #00acb6;
}
h4{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
    padding-top: 3px;
    padding-left: 1px;
    font-size: 140%;
    color: #000000; 
}


/* =======================================================
  スマホサイズ設定
======================================================= */
@media (max-width: 568px) {
           
    .photo-container {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        padding-left: 20px;
    }

    fotter p{
        padding-left: 20px;
    }
        

    
 }