body {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: "游ゴシック", "メイリオ", "MSゴシック";
    font-size: clamp(16px, 2vw, 24px);/* vwの計算方法：ex.幅960pxの時にフォントサイズ16pxで表示させたい場合は、16/960*100=1.7(vw) */
}
h1, h2, h3, h4, p, ul, li, dl, dt, dd, figure, tr, th, td {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%; /* 画像の横幅がウィンドウ幅を超えないようにする措置 */
    height: auto;
    vertical-align: bottom; /* ブラウザによって勝手に画像の上下に余白をつけさせないための措置(おまじない要素) */
    border: none;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
header {
    /* position: fixed; */
    /* z-index: 1000; */
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #E2D3C3;
}
header .title {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    /* font-size: 1.875rem; */
}
header .global_nav {
    position: relative;
}
header .global_nav ul {
    display: flex;
}
header .global_nav li {
    margin-left: 50px;
}
header .global_nav a {
    font-size: 1.3125rem;
    color: #000;
}
header .global_nav a:hover {
    text-decoration: underline;
}
header .global_nav .hamburger {
    display: none;
}
.button {
    display: flex;
    justify-content: center;
}
.button p {
    background-color: #F44D25;
    color: #FFFFFF;
    padding: 7px 0;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 206px;
    display: inline-block;
    border-radius: 9999px;
    text-align: center;
}
.button .small {
    font-size: 1.3125rem;
}
.button a:hover, .button a:focus {
    background-color: #4F4948;
}
footer {
    background-color: #000;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
    text-align: center;
    padding: 40px;
}
/* バナー，フライヤー，ロゴ共通 */
.container {
    display: flex;
    align-items: flex-end;
    max-width: 90vw;
    margin: 5% auto;
    gap: 10%;
}
.frame {
    width: 90%;
    background-color: #F2ECE7;
    border-radius: 65px;
}
figure {
    max-width: 70%;
    max-height: 100%;
    margin: 10% auto;
    object-fit: cover;
    text-align: center;
}
figure .image-container {
    display: inline-block;
    cursor: pointer;
}
figure .image-container img {
    box-shadow: 7px 7px 20px -5px #000;
    transition: transform 0.3s ease-in-out;
}
/* マウスオーバーで画像を拡大 */
figure .image-container img:hover {
    transform: scale(1.5);
}
/* モーダル全体 */
figure .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
/* モーダル内の画像 */
figure .modal img {
    max-width: 80%;
    max-height: 80%;
}
/* 閉じるボタン */
.modal .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
figure figcaption {
    margin-top: 15px;
    font-weight: bold;
}
@media (max-width:1474px) {
    .button p {
        padding: 7px 0;
        font-size: 1.2rem;
        min-width: 150px;
    }
}
@media (max-width:1283px) {
    .button p {
        padding: 5px 0;
        font-size: 1rem;
        min-width: 120px;
    }
}
/* ここからハンバーガーメニュー */
@media (max-width:1076px){
    header .global_nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 41.25px;
        right: 0px;
        background-color: rgba(226, 211, 195, 0.9);
        width: 150px;
        padding: 10px;
    }
    header .global_nav li {
        margin-left: 0px;
        text-align: center;
        padding: 10px;
    }
    header .global_nav .hamburger {
        display: flex;
        width: 30px;
        /* align-items: center; */
        cursor: pointer;
    }
    header .global_nav ul.active {
        display: flex;
    }
    footer p {
        font-size: 0.75rem;
        padding: 20px;
    }
}
@media (max-width:596px) {
    header .global_nav .hamburger {
        width: 20px;
    }
}