a {
	text-decoration: none;
}

body {
	margin: 0;
	padding: 0;
	height: auto;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

input[type="radio"], #menu-toggle{
    display: none;
}

header {
    background-color: #ec7aac;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 5px;
}

.menu-button {
    background: #7d99cd;
    border: none;
    padding:10px;
    border-radius: 5px;
    cursor: pointer;
}

/*メニュー(オーバーレイ）*/
/*チェックボックスを使った開閉の仕組み*/
#menu-toggle {
    display: none;
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 90vh;
    overflow-y: auto;
    background-color: rgba(255,255,255, 0.95);
    z-index: 90;
    box-sizing: border-box;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    display: none;
    transition: opacity 0.3s ease;
}

/*チェックが入った時（メニューボタンが押されたときに表示）*/
#menu-toggle:checked ~ .nav-menu{
    display: block;
}

/*アコーディオンのスタイル*/
details {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

summary {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#444;
}

summary::after{
    content:'▼';
    font-size: 0.8rem;
    transision: transform 0.3s;
}

details[open]
summary::after{
    transform: rotate(180deg);
}

.issue-list {
    list-style: none;
    padding:0;
    margin:0;
    border-top: 1px splid #eee;
}

.issue-list li label{
    border-bottom: 1px solid #eee;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #444;
    cursor: pointer;
    box-sizing: border-box;
}

.issue-list li label:hover{
    background-color: #f0f0f0;
}

.new-budge{
    background: #e74c3c;
    color:#fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
}

.main-container {
	width:100%;
	height: 100vh;
	overflow: auto;
	display: flex;
}

input[type="radio"] {
	display: none;
}

.content-area {
	flex: 1;
	overflow: auto;
	padding: 20px;
}

.content {
	display: none;
}

#tab2501:checked ~ .content-area #content2501,
#tab2502:checked ~ .content-area #content2502,
#tab2503:checked ~ .content-area #content2503,
#tab2601:checked ~ .content-area #content2601 {
	display: block;
}

.content-area li {
	list-style: none;
}

.tab {
	margin-right: 40px;
}

/*メディアクエリ*/
@media(max-width:760px){
    header {
        background-color: #ec7aac;
        color: white;
        padding: 10px 15px;
        display: block;
        align-items: center;
        border-bottom: 1px solid #ddd;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .logo {
        font-weight: bold;
        font-size: 24px;
        letter-spacing: 4px;
        display: inline-block;
    }
    
    .back {
        font-size: 14px;
    }

    .menu-button {
        float: right;
        padding: 5px 10px;
        font-size: 14px;
    }
    
    ul{
        padding: 0
    }

    .tab {
        display:block;
    }
}