.tabimori-mypage {
display: flex;
gap: 32px;
max-width: 960px;
margin: 0 auto;
align-items: flex-start;
}
.tabimori-mypage--guest {
display: block;
text-align: center;
}
.tabimori-mypage__nav {
flex: 0 0 220px;
background: #f5f7f4;
border: 1px solid #d9e0d4;
border-radius: 8px;
padding: 8px;
}
.tabimori-mypage__nav ul {
list-style: none;
margin: 0;
padding: 0;
}
.tabimori-mypage__nav li {
margin: 0;
}
.tabimori-mypage__nav a {
display: block;
padding: 12px 14px;
color: #2c3a2c;
text-decoration: none;
border-radius: 6px;
}
.tabimori-mypage__nav a:hover {
background: #e6ede2;
}
.tabimori-mypage__nav li.is-active a {
background: #2f7d3b;
color: #fff;
font-weight: 700;
}
.tabimori-mypage__logout {
border-top: 1px solid #d9e0d4;
margin-top: 8px;
padding-top: 8px;
}
.tabimori-mypage__logout a {
color: #888;
font-size: 14px;
}
.tabimori-mypage__content {
flex: 1 1 auto;
min-width: 0;
}
.tabimori-contact-box {
background: #f5f7f4;
border: 1px solid #d9e0d4;
border-radius: 8px;
padding: 20px;
line-height: 1.9;
}
@media (max-width: 720px) {
.tabimori-mypage {
flex-direction: column;
}
.tabimori-mypage__nav {
flex: 1 1 auto;
width: 100%;
box-sizing: border-box;
}
}