@charset "utf-8";
/*
	Site Name: Cattiveria 2026 TAB +
	Description: Basic Setting CSS
	Version: 
	Author: Nagano Syouten Creative
*/

/*
============= CONTENTS ================

	1: YOUTUBE
	2: FONTS
	    2-1: FONT VARIATION
	    2-2: TEXT SHADOW (COMMON)
	    2-3: FONT SIZE
	    2-4: FONT COLOR
	    2-5: TEXT ALIGN
	    2-5: LINE HEIGHT
	    2-6: LETTER SPACING
  

===========================================
/*
==========================================
1: YOUTUBE 2026
==========================================
*/
.youtube {
   width: 100%;
   aspect-ratio: 16 / 9;
   margin-bottom: 60px;
}
.youtube iframe {
   width: 100%;
   height: 100%;
}
/*
==========================================
2: TAB
https://codepen.io/webbingstudio/pen/vEBWdWX
==========================================
*/
/*
----------------------------------------------
共通
----------------------------------------------
*/
.tabs {
  margin-top: 60px;
  margin-bottom: 80px;
  /*background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
}
/*=== Tab Item === */
.tabs .tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  border: 1px solid #FFF;
  background-color: #efefef;
  color: #999;
  font-size: clamp( 11px, 3.5vw, 15px );
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

/*
-----------------------
改善した例
-----------------------
*/
.tabs.tabs--type .tabs__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tabs.tabs--type .tabs__item {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: calc( 100% / 3 );
}

.tabs.tabs--type .tabs__item:hover,
.tabs.tabs--type .tabs__item:has(input:focus) {
   color: #FFF;
  background-color: #000;
}

.tabs.tabs--type input {
  border: 0 !important;
  clip: rect( 0, 0, 0, 0 ) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.tabs.tabs--type .tabs__content {
  	overflow: hidden;
	  opacity: 0;
  	position: absolute;
  	height: 0;

}

.tabs.tabs--type .tabs__list:has(#all > input:checked) ~ #all__content,
.tabs.tabs--type .tabs__list:has(#EN > input:checked) ~ #EN__content,
.tabs.tabs--type .tabs__list:has(#FR > input:checked) ~ #FR__content,
.tabs.tabs--type .tabs__list:has(#CN > input:checked) ~ #CN__content,
.tabs.tabs--type .tabs__list:has(#KR > input:checked) ~ #KR__content
 {
  overflow: visible;
  opacity: 1;
  position: static;
  height: auto;
  /*padding: 2rem;*/
}

.tabs.tabs--type .tabs__item:has(input:checked),
.tabs.tabs--type .tabs__item:has(input:focus:checked) {
  background-color: rgba(0,0,0,1);
  color: #FFF;
}