@charset "utf-8";

/*-----------------------------------------------------------
ギャラリー
-----------------------------------------------------------*/

.gallery-list {
    margin: 60px auto 0;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

/*-----------------------------------------------------------
共通
-----------------------------------------------------------*/

.gallery-item {
    background: var(--secondary);
}

.gallery-item > a {
    display: block;
    aspect-ratio: 1216/827;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item > a > img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.gallery-item > a:hover {
	filter: brightness(1.15);
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table {
	width: 100%;
	background: #fff;
	color: #2D2422;
	border: solid 1px #CCC9C8;
}

.base-table-tr:not(:last-child) {
	border-bottom: solid 1px #CCC9C8;
}

.base-table-th, .base-table-td {
	padding: 15px 15px;
}

.base-table-th {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-weight: bold;
	background: #2D2422;
	color: #fff;
}

.base-table-th + .base-table-th {
	border-left: solid 1px #CCC9C8;
}

.base-table-td + .base-table-td {
	border-left: solid 1px #CCC9C8;
}

.staffMsgBox {
    font-size: 16px;
    font-weight: 900;
    line-height: 2.5em;
}

.staffMsgBox p br {
    display: none;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {

    /*-----------------------------------------------------------
    ギャラリー
    -----------------------------------------------------------*/

    .gallery-list {
        grid-template-columns: repeat(3,1fr);
    }

    .staffMsgBox p br {
        display: block;
    }
 
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {

    /*-----------------------------------------------------------
    ギャラリー
    -----------------------------------------------------------*/

    .gallery-list {
        margin: 120px auto 0;
    }

    .gallery-list {
        grid-template-columns: repeat(4,1fr);
        gap: 20px;
    }

    .staffMsgBox {
        font-size: 18px;
    }
    
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1700px) {

    .staffMsgBox {
        font-size: 22px;
    }
  
}/* min-width: 1700px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */