UnisonNest guide

の一覧|UnisonNest Kids

広告・PR
当サイトは一部プロモーションを含みます。

.ad-notice-bar {
background-color: #ffffff; /* 薄いグレーで控えめに */
color: #888; /* 文字色も少し薄くして目立ちすぎないように */
text-align: center;
font-size: 11px; /* 小さめの文字サイズ */
padding: 6px 10px;
border-bottom: 1px solid #eee;
}
.ad-notice-bar{
background: #fff;
border-bottom: 1px solid #eee;
padding: 6px 12px;
}

.ad-notice-text{
max-width: 1100px;
margin: 0 auto;
font-size: 11px;
line-height: 1.45;
color: #666;
text-align: left;
}

.ad-label{
display: inline-block;
margin-right: 6px;
margin-bottom: 2px;
padding: 1px 7px;
border-radius: 999px;
background: #f3f4f6;
color: #444;
font-size: 10px;
font-weight: 700;
vertical-align: middle;
}

.ad-main-text{
display: inline;
}

.ad-amazon-text{
display: block;
margin-top: 2px;
font-size: 10px;
line-height: 1.4;
color: #888;
}

@media (min-width: 769px){
.ad-notice-text{
text-align: center;
font-size: 12px;
}

.ad-amazon-text{
display: inline;
margin-top: 0;
margin-left: 8px;
font-size: 11px;
}
}
@media screen and (min-width: 390px) and (max-width: 395px) and (orientation: portrait) {
.ad-notice-bar{
padding: 6px 10px;
}

.ad-notice-text{
width: 100%;
max-width: none;
font-size: 10px;
}

.ad-amazon-text{
display: block;
white-space: nowrap;
font-size: 8.8px;
line-height: 1.15;
letter-spacing: -0.025em;
}
}

ホーム
>
記事一覧
>
一覧

一覧

該当する記事はありません。

< 記事一覧に戻る

カテゴリから探す

欲しいアイテムのジャンルが決まっている方はこちら。

カテゴリ一覧

記事から探す

新着記事や特集記事をザッピングしたい方はこちら。

記事一覧

人気記事ランキング(累計)

1
ベビーフード比較|食いつきが良いのはどれ?メーカー別特徴

2
1歳・2歳・3歳|年齢別・絶対に喜ばれる誕生日プレゼント

人気記事ランキング(昨日)

1すぐサイズアウトする子供服、どこで買う?おすすめ5選2ファーストシューズの選び方と計測方法|いつから?おすすめブランド4選3ベビーベッドは必要?レンタル派vs購入派|ライフスタイル別選び方

Follow Us

Industry News

2026.02.05使い捨てで衛生的・コンパクトで持ち運び簡単「SmartAngel使い捨ておむつ替えシート」販売のご案内2026.02.04ロイヤル系ベビー服ブランドAmber mimi 】ご好評につき初の関西出店!大丸神戸でPOPUP STOREを3/4(水)から開催!2026.02.02ファミリアの軽量ランドセル「air ran.」 過去最高の全528通りのバリエーションで自分好みのランドセルを選べるフルカスタムモデルが登場 「familiar」ロゴ入りの内生地も新登場
プレスリリース情報をもっと見る

UnisonNestは、ベビー用品から雑貨、インテリアまで暮らしに役立つ幅広いジャンルを徹底比較。全世代の「失敗しないモノ選び」をサポートする情報メディアです。

運営者情報
お問い合わせ
免責事項

利用規約
プライバシーポリシー
商標について

© 2026 UnisonNest.

(function() {
var loaded = false;
function loadGtag() {
if (loaded) return;
loaded = true;

// スクリプトタグを動的に生成
var script = document.createElement('script');
script.async = true;
script.src="https://www.googletagmanager.com/gtag/js?id=G-2ZX098522Q";
document.head.appendChild(script);

window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2ZX098522Q');

console.log('Google Analytics Loaded!'); // 確認用(後で消してOK)
}

// ユーザーの操作を検知したら読み込む
window.addEventListener('scroll', loadGtag, {once: true});
window.addEventListener('mousemove', loadGtag, {once: true});
window.addEventListener('touchstart', loadGtag, {once: true});

// 操作がなくても5秒後には念のため読み込む
setTimeout(loadGtag, 5000);
})();

document.addEventListener('DOMContentLoaded', () => {
initSidebarMenu();
initBackToTop();
});

function initSidebarMenu() {
const toggleBtn = document.getElementById('sidebar-toggle');
const sidebar = document.getElementById('sidebar-panel');
const overlay = document.getElementById('sidebar-overlay');
const body = document.body;

if (!toggleBtn || !sidebar || !overlay) return;

const isMobile = () => window.innerWidth <= 899;

const closeMenu = () => {
sidebar.classList.remove('is-open');
overlay.classList.remove('is-active');
body.classList.remove('menu-open');
};

const openMenu = () => {
if (!isMobile()) return;
sidebar.classList.add('is-open');
overlay.classList.add('is-active');
body.classList.add('menu-open');
};

if (!sidebar.querySelector('.sidebar-close-btn')) {
const closeBtn = document.createElement('button');
closeBtn.type = 'button';
closeBtn.className = 'sidebar-close-btn';
closeBtn.setAttribute('aria-label', 'メニューを閉じる');
closeBtn.innerHTML = '<i class="fa-solid fa-times">';
sidebar.prepend(closeBtn);
closeBtn.addEventListener('click', closeMenu);
}

toggleBtn.addEventListener('click', (e) => {
e.preventDefault();
if (!isMobile()) return;

if (sidebar.classList.contains('is-open')) {
closeMenu();
} else {
openMenu();
}
});

overlay.addEventListener('click', closeMenu);

document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') closeMenu();
});

window.addEventListener('resize', () => {
if (!isMobile()) closeMenu();
});

closeMenu();
}

function initBackToTop() {
const btn = document.getElementById('back-to-top');
if (!btn) return;

window.addEventListener('scroll', () => {
btn.classList.toggle('show', window.scrollY > 400);
});

btn.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
}