ふゆじたく
import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');
:root {
--jade: #6bc1a3; /* 翡翠色 */
--white: #ffffff;
--gray: #f5f5f5;
--text: #333333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Noto Sans JP', sans-serif;
color: var(--text);
background: var(--white);
text-align: center;
line-height: 1.8;
letter-spacing: 0.02em;
}
/* ヘッダー */
header {
padding: 2rem 1rem 1rem;
}
.site-title {
font-size: 2rem;
font-weight: 300;
color: var(--jade);
letter-spacing: 0.15em;
margin-bottom: 0.5rem;
}
.nav {
margin-bottom: 1rem;
}
.nav a {
text-decoration: none;
color: var(--text);
margin: 0 0.8rem;
font-weight: 300;
transition: 0.2s;
}
.nav a.active,
.nav a:hover {
color: var(--jade);
border-bottom: 1px solid var(--jade);
}
/* バナー */
.banner img {
max-width: 90%;
height: auto;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
margin-top: 0.5rem;
}
/* 更新履歴 */
.update {
background: rgba(107,193,163,0.07);
margin: 2rem auto;
padding: 1rem 0.5rem;
width: min(90%, 600px);
border-radius: 16px;
box-shadow: 0 0 10px rgba(107,193,163,0.1);
}
.update h2 {
font-weight: 400;
color: var(--jade);
margin-bottom: 1rem;
}
.update ul {
list-style: none;
}
.update li {
margin-bottom: 0.4rem;
}
.update span {
color: var(--jade);
margin-right: 0.3rem;
font-weight: 400;
}
/* 自己紹介 */
.intro {
margin: 3rem auto 4rem;
width: min(90%, 500px);
color: #555;
font-size: 0.95rem;
}
/* フッター */
footer {
font-size: 0.8rem;
color: #888;
padding: 1rem;
border-top: 1px solid #eee;
}
[メールボックス]