@charset"UTF-8";
/*PC用の設定。ヘッダー部分*/
header{
    background-color: aqua;
}
/*pageヘッダーのCSS*/
    .page-header{
      align-content: center;
        color:#333;
    }
.header-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-center{
    display: flex;
    flex-direction: column;
    text-align: center;
} 
.header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-logo {
    margin: 0;
}
body{
    text-align: center;
    background-repeat: no-repeat;
    background-position-x: center;
    background-size:cover;
    background-color: beige;
    color: blue;

}
footer{
    background-color: aliceblue;
    max-width: 100%;
}
    /* フッターの地図（iframe）の調整 */
    footer iframe {
        /* 画面幅いっぱいに広げる */
        width: 100%; 
        /* スタイルシートのborder設定を優先 */
        border: none !important; 
        /* 高さは適度なサイズに固定（例：300px） */
        height: 300px; 
    }

#menu-mainmenu{
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around; 
}
#menu-mainmenu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    display:block
}

#text-container{
        background-color: antiquewhite;
        font-size: 1.2rem;
        color: blueviolet;
    }
#resized-image {
    width: auto;
    /* 90pxから適切なサイズ（例: 40px）に修正 */
    height: 40px; 
    /* アイコンとテキストを縦に積むために、display: block と中央寄せも追加推奨 */
    display: block;
    margin: 0 auto 5px;
}
#resized-imagelogo{
        width: auto;
        height: 300px;
    }

.sns-links-container {
    list-style: none;
    text-align: center;
    margin: 20px auto;
}

.sns-list{
    list-style: none;
}
.sns-icon {
    width: auto;
    height: 100px;
    display: block;
}
@media screen and (max-width: 600px) {
    header{
        font-size: 15px;
    }
    .header-inr{
        display: flex;
        flex-direction: row;
    }
    #resized-imagelogo{
        width: 80px;
        height: 80px;
    }
    .page-header{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
    }
    .sns-links-container{
        margin: 10% auto;
    }
    .sns-list{
        display: flex;
        flex-direction:row;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 10px;
    }
    .sns-icon{
        height: 90px;
        width: auto;
        display: block;
        margin: 0 auto;
    }
    #menu-mainmenu {
        flex-direction: column;
        align-items: center; 
        margin-bottom: 20px;
    }   
    #menu-mainmenu a {
        padding: 8px 10px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }
    #menu-mainmenu li {
        width: 90%;
        margin: 4px auto;
    }
    #resized-image {
        width: 80px;
        height: 80px;
    }
    footer h3{
        text-align: center;
        margin: 5px auto;
        font-size: 14px;
    }
    #text-container {
        font-size: 1rem;
        padding: 10px;
        margin: 10px;
        color: #333;
    }
}
