﻿.center{
    margin: auto;
}

/* もくじ部分 */
#menu {
    margin: 15px;
    margin-top: 0;
    text-align: center;
    padding-bottom: 1em;
}
#menu a {
    text-decoration: none;
    display: inline-block;
    padding: 8px;
    margin: 5px;
    font-size: 16px;
    color: #2a4073;
    background-color: #bbe2f1;
    border-radius: 20px;
}
#menu a:hover {
    background-color: #89c3eb;
    -webkit-transition:all 0.3s;
    transition: all 0.3s;
}

/* スマホ閲覧用追加css（文字サイズ自動調整機能停止）
body {
    text-size-adjust: 100%;
} */

/* 画像マウスオーバ関連 */
.hover_color{
    display: inline-block;
}
.hover_color img{
    display: block;
    border-radius: 25px;  /* 数値修正 */
}
.hover_color:hover img{
opacity: 0.6;
    transition: 0.2s;
}


figure {
    margin: 0.5rem auto;
    width: 100%;
    /* max-width: 750px; */
    max-width: 500px;
  }

figcaption {
    text-align: center;
    padding-top: 0.5rem;
  }

.totop {
    text-align: right;
    /* padding: 1rem 1rem 0 0; */
    width: 95%;
  }

video {
    margin: auto;
    max-width: 100%;
    aspect-ratio: 16/9;
    /* height: 337.5px; */
  }