@charset "utf-8";


.container{
	width:100%;
    max-width: 400px;
    margin: auto;
}


.tabContainer {
    overflow-x: auto;
}
/*
.tabContainer::-webkit-scrollbar {
    height: 5px;
}
.tabContainer::-webkit-scrollbar-track {
    background: #000;
}
.tabContainer::-webkit-scrollbar-thumb {
    background: #000;
}
*/
.tab{
    display: flex;
	align-items:stretch;
    margin-top: 20px;
    
}
 
.tab__button{
    position: relative;
/*    background-color: #ececec;*/
    vertical-align: middle;
    flex: 0 0 80px;
/*	margin-right: 4px;
	border-radius: 4px 4px 0 0;
*/
}
.tab__button.active::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 60px;
    height: 2px;
    background: #ff0000;
}

.tab__button.active{
/*    border-bottom: none;*/
}

.tab__button a{
/*    display: block;*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    color: #6b6b6b;
    text-decoration: none;
    font-size: 12px;
	box-sizing: border-box;
/*	border-radius: 4px 4px 0 0;*/
	height: 50px;
	width 80px;
}
 
.contents__content{
    text-align: center;
}
 
.contents__content h2{
	margin: 7px 0 5px;
}

.contents__content p{
	margin: 5px 15px;
	font-size: .8rem;
}

.contents__content div a{
    display: block;
    width: 100%;
    background: #ffffff;
    padding: 10px;
    border-bottom:1px solid #dedede;
    color:#222222;
    text-align: left;
    line-height: 1.5em;
    font-size: 14px;
}

.contents__content p + div a{
    border-top:1px solid #a1a1a1;
}

.contents__content div a span{
}