﻿@charset "utf-8";

/* メニューの部分 */

.photo-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.photo-menu a {
    width: 27%;
    background-color: #cceeff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
    margin: 20px 0;
}


/* 写真ギャラリーの部分 */

.photo {
    width: 30%;
    background-color: #eef3f3;
    margin: 20px 0;
}

.photo p {
    padding: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* ギャラリーの並び方を変更 */

.outer-box {
    justify-content: space-around;
}

