@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Noto+Color+Emoji&family=Noto+Sans+JP:wght@100..900&display=swap');

/* 背景等の調整 */
body {
    font-family: "Google Sans Flex", "Noto Sans JP", "Noto Color Emoji", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    min-height: 95vh;
    /* ページ全体の高さ */
    background-color: #d8d8d8;
    /* 背景色 */
}

div.paper {
    background-image: url(paper.jpg);
    /* 背景画像 */
    /* background-color: #fff; */
    /* 背景色 */
    padding: 30px;
    border-radius: 10px;
    /* 角丸 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* 影 */
    max-width: 800px;
    /* 最大幅 */
    width: 90%;
    /* 幅 */
}

/* スマホ表示時の調整 */
@media screen and (max-width: 768px) {
    div.paper {
        padding: 20px;
        font-size: 16px;
    }
}

/* 右上に発行者と発行日を載せる */
p.date {
    text-align: right;
    font-size: 80%;
    user-select: none;
}

/* リンクの調整 */
/* リンクの前にあるロゴアイコンの調整 */
svg,
img.logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    user-select: none;
    pointer-events: none;
}

/* ロゴアイコン付きリンクの調整 */
a.pages {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
}

a.pages:hover {
    text-decoration: underline;
}

/* ロゴアイコンなしリンクの調整 */
a.textlink {
    color: black;
    text-decoration: none;
}

a.textlink:hover {
    text-decoration: underline;
}

/* Google Map等のiframeの調整 */
iframe {
    max-width: 90%;
    margin: 0 auto;
    display: block;
    text-align: center;
    user-select: none;
}

/* 画像の調整 */
img.image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    user-select: none;
    pointer-events: none;
    box-shadow: 0px 5px 5px #88888888;
}

/* 画像を並べて表示させる */
div.imgbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

img.imgborder {
    margin: 10px;
}

/* 画像の下に書くテキストの調整 */
a.img_text {
    display: block;
    text-align: center;
    text-decoration: none;
}
