/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

.tabs {
    display: flex;
    gap: 5px;
	
}
.tab-button {
    padding: 10px;
	font-size:18px;
/* 	font-weight:bold; */
    border: none;
    cursor: pointer;
	background:orange;
	color:white;
}
.tab-content {
    display: none; /* 初期状態では非表示 */
	background:#F1F1F1;
	padding:10px;
}
.tab-content.active {
    display: block; /* activeクラスがついたものだけ表示 */
}
.tab-button.selected {
    background-color: #F1F1F1; /* 選択されたタブの見た目を変更 */
    color: black;
}

.wheel_num{
  position: sticky;
  top: 20px;
  right:20px;
}

.site-header{
	position:relative;
}
.site-header .global-nav{
		position:absolute;
}

@media (min-width: 992px) {
	body:not(.header_scrolled) .global-nav--layout--float-right {
		position:absolute;
		top:0;
		right:50px;
	}
    .header_scrolled .site-header .global-nav {
	  margin-right: 0;
	  right:50px;
	}
	
}