@charset "utf-8";

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

.tabGroup {
    max-width: 630px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 40px auto 0;
}

.tab {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #140E0B;
    transition: .3s;
  	border: 1px solid;
  	border-radius: 100vmax;
    cursor: pointer;
}

.tab:hover, .tab.active {
    color: #fff;
    background: #140E0B;
}

.panelGroup {
    margin: 20px auto 0;
}

.panel {
    display: none;
}

.panel.show {
    display: block;
}

/*-----------------------------------------------------------
管理画面調整用
-----------------------------------------------------------*/

.gjs-dashed .panel {
    display: block;
  	margin:30px auto 0;
}

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

.tab {
    font-size: 16px;
}
	
}
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

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

.tabGroup {
    gap: 30px;
}

.tab {
    padding: 15px;
}

.panelGroup {
    margin: 40px auto 0;
}

}
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */