@charset "UTF-8";

body{
    background-color: var(--beige);
    font-family: "Zen Kaku Gothic New";
}    

.tab-button.active {
    background: var(--emeraldgreen);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;  
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.tab-button{
    cursor: pointer;
    width:calc(100% / 5);
    height:50px;
    background-color: #e6e6e6;
    border:none;
    font-size: 16px; 
    color:var(--black);   
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    border-right: 2px solid var(--navy);
    font-family: 'Zen Kaku Gothic New';
}
.tab-button:first-child{
    border-left:2px solid var(--navy);
}
.tabwrap{
    display:flex;
}
.kamoku_ichiran_tab{
    width: auto;
    height: 54px;
}

.kamoku_content{
    width:90%;
    margin: 0 auto;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid var(--emeraldgreen);
    text-align: justify;
    text-align-last: left;
    background-color: var(--white);
    font-size: 14px;
}
.small-tab {
    width:200px;
    height:40px;
    color: #3e3a39;
    border-bottom: 2px dashed var(--skyblue);
    border-top: 2px dashed var(--skyblue);
    display: flex;  
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 15px;
    background-color: var(--white);
    scroll-margin-top: 87px;
}


h1::after{
    width:80%;
    left:10%;
}
.index {
  width: 40%; 
  height: 40px; 
  border: 1px solid var(--skyblue);
  display: flex; 
  align-items: center;
  justify-content: center;
  background-color: var(--white); 
  cursor: pointer;
  list-style: none; 
  position: relative;
  transition: opacity 0.2s ease;
  color: #3e3a39;
  margin-top: 25px;
  text-decoration: none;
}
.index:active{
    transform: translateY(2px) scale(0.98);
}
.index:hover {
    background: #f3f3dc;
}


.index span {
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(135deg);
    right: 10%;
    top: 47%;
    transition: 0.2s;
}
.index:last-child{
    margin-top:10px;
}
.kamoku_ichiran{
    width:100%;
    display:flex;
    flex-wrap: wrap;
    gap:10px;
    justify-content: center;
}
.back-btn {
    font-size: 17px;
    font-weight: 500;
    color: #3e3a39;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--skyblue);
    width: 180px;
    height: 45px;
    margin: 0 auto;
    margin-bottom: 50px;
    box-shadow: 4px 4px var(--emeraldgreen);
    margin-top: 50px;
    border-radius: 30px;
    position: relative;
}
.none{
    height:0px;
}
 