﻿@charset "utf-8";
/* CSS Document */

body {
    font: 14px/1.6 "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, sans-serif;
    margin: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    /* テキストの中央寄せ */
}

/*---------- 画像の枠に影をつける ----------*/
.shadow_img {
    filter: drop-shadow(3px 3px 3px #aaa);
}

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