*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
–pink: #F5A7B8;
–pink-lt: #FDE8EE;
–pink-dk: #D4547A;
–mint: #A3D9C4;
–mint-lt: #E3F5EF;
–mint-dk: #4DA88A;
–cream: #FFF8F3;
–cream2: #FFF0E8;
–peach: #FBBFA0;
–text: #3A2D2A;
–text-md: #6E5555;
–text-lt: #A08888;
–white: #FFFFFF;
}
body {
font-family: ‘M PLUS Rounded 1c’, sans-serif;
background: var(–cream);
color: var(–text);
line-height: 1.7;
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
/* ===== HEADER ===== */
header {
background: var(–white);
border-bottom: 1.5px solid var(–pink-lt);
position: sticky;
top: 0;
z-index: 100;
}
.header-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-family: ‘Quicksand’, sans-serif;
font-size: 26px;
font-weight: 700;
color: var(–pink-dk);
letter-spacing: 0.04em;
display: flex;
align-items: center;
gap: 8px;
}
.logo span { color: var(–mint-dk); font-style: italic; }
nav { display: flex; gap: 28px; align-items: center; }
nav a {
font-size: 13px;
font-weight: 600;
color: var(–text-md);
letter-spacing: 0.06em;
transition: color 0.2s;
}
nav a:hover { color: var(–pink-dk); }
.nav-btn {
background: var(–pink-dk);
color: var(–white) !important;
padding: 7px 18px;
border-radius: 20px;
font-size: 12px !important;
font-weight: 700 !important;
letter-spacing: 0.06em;
transition: background 0.2s, transform 0.1s !important;
}
.nav-btn:hover { background: #C0426A !important; transform: translateY(-1px); }
/* ===== HERO ===== */
.hero {
background: linear-gradient(135deg, #FDE8EE 0%, #FFF0E8 40%, #E3F5EF 100%);
padding: 72px 24px 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: ”;
position: absolute;
top: -60px; right: -60px;
width: 280px; height: 280px;
background: radial-gradient(circle, rgba(245,167,184,0.3) 0%, transparent 70%);
border-radius: 50%;
}
.hero::after {
content: ”;
position: absolute;
bottom: -40px; left: -40px;
width: 220px; height: 220px;
background: radial-gradient(circle, rgba(163,217,196,0.4) 0%, transparent 70%);
border-radius: 50%;
}
.hero-badge {
display: inline-block;
background: var(–pink-dk);
color: var(–white);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
padding: 5px 16px;
border-radius: 20px;
margin-bottom: 20px;
}
.hero h1 {
font-family: ‘Quicksand’, ‘M PLUS Rounded 1c’, sans-serif;
font-size: clamp(32px, 6vw, 60px);
font-weight: 700;
line-height: 1.3;
color: var(–text);
margin-bottom: 8px;
}
.section-title {
font-family: ‘Quicksand’, ‘M PLUS Rounded 1c’, sans-serif;
font-size: 24px;
font-weight: 700;
color: var(–text);
display: flex;
align-items: center;
gap: 12px;
}
.card-big-title {
font-family: ‘M PLUS Rounded 1c’, sans-serif;
font-size: 19px;
font-weight: 700;
color: var(–text);
line-height: 1.5;
margin-bottom: 10px;
}
.about-logo {
font-family: ‘Quicksand’, sans-serif;
font-size: 36px;
color: var(–pink-dk);
font-weight: 700;
margin-bottom: 16px;
}
.footer-logo {
font-family: ‘Quicksand’, sans-serif;
font-size: 28px;
color: var(–white);
font-weight: 700;
margin-bottom: 10px;
}
.stat-num {
font-family: ‘Quicksand’, sans-serif;
font-size: 32px;
font-weight: 700;
color: var(–pink-dk);
}
.rank-num {
font-family: ‘Quicksand’, sans-serif;
font-size: 28px;
font-weight: 700;
min-width: 36px;
text-align: center;
color: var(–pink-lt);
}
.banner-text h2 {
font-family: ‘M PLUS Rounded 1c’, sans-serif;
font-size: 24px;
color: var(–white);
font-weight: 700;
margin-bottom: 8px;
}
.hero h1 em {
color: var(–pink-dk);
font-style: italic;
}
.hero-sub {
font-size: 15px;
color: var(–text-md);
margin-bottom: 36px;
font-weight: 300;
letter-spacing: 0.04em;
}
.hero-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 36px;
}
.hero-dots span {
width: 8px; height: 8px;
border-radius: 50%;
background: var(–pink);
animation: bounce 1.4s ease-in-out infinite;
}
.hero-dots span:nth-child(2) { background: var(–peach); animation-delay: 0.2s; }
.hero-dots span:nth-child(3) { background: var(–mint); animation-delay: 0.4s; }
@keyframes bounce {
0%, 80%, 100% { transform: scale(1); }
40% { transform: scale(1.4); }
}
.hero-tags {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
}
.hero-tag {
background: var(–white);
border: 1.5px solid var(–pink-lt);
border-radius: 24px;
padding: 7px 18px;
font-size: 13px;
font-weight: 600;
color: var(–text-md);
transition: border-color 0.2s, color 0.2s;
cursor: pointer;
}
.hero-tag:hover { border-color: var(–pink-dk); color: var(–pink-dk); }
/* ===== CATEGORY STRIP ===== */
.cat-strip {
background: var(–white);
border-bottom: 1.5px solid var(–pink-lt);
padding: 0 24px;
}
.cat-strip-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
gap: 0;
overflow-x: auto;
scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-item {
flex-shrink: 0;
padding: 16px 24px;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.06em;
color: var(–text-lt);
cursor: pointer;
border-bottom: 3px solid transparent;
transition: color 0.2s, border-color 0.2s;
}
.cat-item:hover { color: var(–pink-dk); }
.cat-item.active { color: var(–pink-dk); border-bottom-color: var(–pink-dk); }
/* ===== SECTION COMMON ===== */
section { padding: 56px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head {
display: flex;
align-items: baseline;
justify-content: space-between;
margin-bottom: 32px;
}
.section-title {
font-family: ‘Playfair Display’, serif;
font-size: 28px;
font-weight: 600;
color: var(–text);
display: flex;
align-items: center;
gap: 12px;
}
.section-title .dot {
width: 10px; height: 10px;
border-radius: 50%;
background: var(–pink-dk);
display: inline-block;
}
.section-more {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.1em;
color: var(–pink-dk);
text-transform: uppercase;
display: flex;
align-items: center;
gap: 4px;
}
.section-more::after { content: ‘→’; }
/* ===== ARTICLE CARDS ===== */
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 24px;
}
.card {
background: var(–white);
border-radius: 18px;
overflow: hidden;
border: 1.5px solid var(–pink-lt);
transition: transform 0.22s, box-shadow 0.22s;
cursor: pointer;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(212,84,122,0.13);
}
.card-img {
width: 100%;
aspect-ratio: 16/9;
object-fit: cover;
display: block;
background: var(–pink-lt);
position: relative;
overflow: hidden;
}
.card-img-placeholder {
width: 100%;
aspect-ratio: 16/9;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
letter-spacing: 4px;
}
.card-body { padding: 18px 20px 20px; }
.card-cat {
display: inline-block;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 3px 10px;
border-radius: 12px;
margin-bottom: 10px;
}
.cat-beauty { background: var(–pink-lt); color: var(–pink-dk); }
.cat-wellness { background: var(–mint-lt); color: var(–mint-dk); }
.cat-fashion { background: #FFF0DC; color: #C07B2A; }
.cat-food { background: #EDEEFF; color: #5A5DBF; }
.cat-life { background: #FDE8EE; color: var(–pink-dk); }
.card-title {
font-size: 15px;
font-weight: 700;
color: var(–text);
line-height: 1.5;
margin-bottom: 8px;
}
.card-desc {
font-size: 13px;
color: var(–text-md);
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-foot {
padding: 10px 20px 14px;
border-top: 1px solid var(–pink-lt);
display: flex;
align-items: center;
justify-content: space-between;
font-size: 11px;
color: var(–text-lt);
font-weight: 600;
}
.card-date::before { content: ‘📅 ‘; font-size: 11px; }
/* ===== FEATURED (big card) ===== */
.featured-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
align-items: start;
}
@media (max-width: 700px) { .featured-grid { grid-template-columns: 1fr; } }
.card-big {
background: var(–white);
border-radius: 18px;
overflow: hidden;
border: 1.5px solid var(–pink-lt);
transition: transform 0.22s, box-shadow 0.22s;
cursor: pointer;
}
.card-big:hover {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(212,84,122,0.13);
}
.card-big-img {
width: 100%;
aspect-ratio: 4/3;
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
}
.card-big-body { padding: 22px 24px 24px; }
.card-big-title {
font-family: ‘Playfair Display’, serif;
font-size: 21px;
font-weight: 600;
color: var(–text);
line-height: 1.45;
margin-bottom: 10px;
}
.card-small-list { display: flex; flex-direction: column; gap: 14px; }
.card-sm {
background: var(–white);
border-radius: 14px;
overflow: hidden;
border: 1.5px solid var(–pink-lt);
display: flex;
gap: 0;
transition: transform 0.18s;
cursor: pointer;
}
.card-sm:hover { transform: translateX(4px); }
.card-sm-img {
width: 88px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
}
.card-sm-body {
padding: 12px 14px;
flex: 1;
}
.card-sm-title {
font-size: 13px;
font-weight: 700;
color: var(–text);
line-height: 1.4;
margin-bottom: 4px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* ===== BANNER ===== */
.banner-section { padding: 0 24px 40px; }
.banner {
max-width: 1100px;
margin: 0 auto;
background: linear-gradient(120deg, var(–pink-dk) 0%, #E87DA8 100%);
border-radius: 22px;
padding: 40px 48px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
position: relative;
overflow: hidden;
}
.banner::after {
content: ‘🌸’;
position: absolute;
right: 48px;
top: 50%;
transform: translateY(-50%);
font-size: 100px;
opacity: 0.15;
}
.banner-text h2 {
font-family: ‘Playfair Display’, serif;
font-size: 26px;
color: var(–white);
font-weight: 600;
margin-bottom: 8px;
}
.banner-text p { font-size: 14px; color: rgba(255,255,255,0.85); }
.banner-btn {
flex-shrink: 0;
background: var(–white);
color: var(–pink-dk);
font-size: 13px;
font-weight: 700;
padding: 12px 28px;
border-radius: 24px;
letter-spacing: 0.04em;
transition: transform 0.15s, box-shadow 0.15s;
z-index: 1;
}
.banner-btn:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
/* ===== RANKING ===== */
.ranking-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item {
background: var(–white);
border-radius: 14px;
border: 1.5px solid var(–pink-lt);
display: flex;
align-items: center;
gap: 16px;
padding: 14px 18px;
cursor: pointer;
transition: transform 0.18s;
}
.rank-item:hover { transform: translateX(4px); }
.rank-num {
font-family: ‘Playfair Display’, serif;
font-size: 28px;
font-weight: 600;
min-width: 36px;
text-align: center;
color: var(–pink-lt);
}
.rank-item:nth-child(1) .rank-num { color: #E8B84B; }
.rank-item:nth-child(2) .rank-num { color: #B0BEC5; }
.rank-item:nth-child(3) .rank-num { color: #C9956C; }
.rank-title {
flex: 1;
font-size: 14px;
font-weight: 700;
color: var(–text);
line-height: 1.45;
}
.rank-icon { font-size: 28px; }
/* ===== ABOUT ===== */
.about-section {
background: var(–cream2);
border-top: 1.5px solid var(–pink-lt);
border-bottom: 1.5px solid var(–pink-lt);
}
.about-inner {
max-width: 700px;
margin: 0 auto;
text-align: center;
}
.about-logo {
font-family: ‘Playfair Display’, serif;
font-size: 36px;
color: var(–pink-dk);
font-weight: 600;
font-style: italic;
margin-bottom: 16px;
}
.about-text {
font-size: 14px;
color: var(–text-md);
line-height: 2;
margin-bottom: 24px;
}
.about-stats {
display: flex;
justify-content: center;
gap: 48px;
}
.stat-num {
font-family: ‘Playfair Display’, serif;
font-size: 32px;
font-weight: 600;
color: var(–pink-dk);
}
.stat-label {
font-size: 11px;
color: var(–text-lt);
font-weight: 700;
letter-spacing: 0.08em;
}
/* ===== FOOTER ===== */
footer {
background: #2D1F1F;
color: rgba(255,255,255,0.7);
padding: 48px 24px 24px;
}
.footer-inner {
max-width: 1100px;
margin: 0 auto;
}
.footer-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.footer-logo {
font-family: ‘Playfair Display’, serif;
font-size: 28px;
color: var(–white);
font-weight: 600;
margin-bottom: 10px;
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(–white);
margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
font-size: 13px;
color: rgba(255,255,255,0.55);
transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(–pink); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-policy { display: flex; gap: 20px; }
.footer-policy a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-policy a:hover { color: var(–pink); }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
nav { gap: 14px; }
.nav-btn { display: none; }
.cards-grid { grid-template-columns: 1fr 1fr; }
.banner { padding: 28px 24px; flex-direction: column; text-align: center; }
.banner::after { display: none; }
.about-stats { gap: 28px; }
.footer-top { flex-direction: column; }
}
@media (max-width: 500px) {
.cards-grid { grid-template-columns: 1fr; }
nav a:not(.nav-btn):not(:last-child) { display: none; }
}
/* ===== ANIMATION ===== */
.fade-up {
opacity: 0;
transform: translateY(24px);
animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
好きなもので、
毎日うめてく。
コスメ・ファッション・ウェルネス・フード。
気になるもの、全部ここにある。
4 min read
6 min read
8 min read
5 min read
5 min read
7 min read
好きなコスメ、着たい服、なんとなく気になるアレコレ。
Haru Noteは、そういう「好き」を全部肯定するライフスタイルメディアです。
美容・ファッション・ウェルネス・フード、気になるもの全部ここにある。
@media (max-width: 900px) {
.responsive-featured {
grid-template-columns: 1fr !important;
}
}