@charset "utf-8";

.flowGridBtnWr01 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    display: grid;
}

.flowGridBtnWr01 {
    margin: 20px 0 0 0;
}

.flowGridBtnItemBox {
    width: 100%;
}

.flowGridBtnItemBox p {
    font-size: 16px;
}

/*-----------------------------------------------------------
タブ切り替え
-----------------------------------------------------------*/

.tab-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}

.tab {
    width: 49%;
    position: relative;
}

.tab:before {
    content: "";
    display: none;
    width: 20px;
    height: 15px;
    background: linear-gradient(to bottom left, var(--tertiary) 50%, transparent 53%) top left/ 50% 100% no-repeat,
    linear-gradient(to bottom right, var(--tertiary) 50%, transparent 53%) top right / 50% 100% no-repeat;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

.tab.active:before {
    display: block;
}

.panel {
    display: none;
}

.panel.active {
    display: block;
}

.panel-group {
    margin: 50px auto 0;
}

/*-----------------------------------------------------------
設備一覧
-----------------------------------------------------------*/

.room-img-col > a {
    display: block;
    position: relative;
    height: 0;
    padding: 0 0 75%;
}

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

.room-img-col > a:hover {
    opacity: 0.65;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.flowGridBtnWr01 {
	grid-template-columns: repeat(2, 1fr);
}
  
.flowGridBtnItemBox p {
	font-size: 12px;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
.flowGridBtnItemBox p {
	font-size: 16px;
}
  
.panel-group {
    margin: 100px auto 0;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */