/*
Theme Name: blank
Author: Nakazo
Version: 0.1
*/

@charset "utf-8";

/* =========================================================
   Base & Typography
   ========================================================= */
:root {
    --primary-color: #d13d4b; /* 赤系のアクセント */
    --bg-pink: #fdf5f6;       /* 背景の淡いピンク */
    --text-color: #333333;
    --bubble-pink: #faeaea;
}

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .site-brand-text {
    font-family: 'Klee One', cursive;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #a02834;
    text-decoration: none;
}

.text-danger {
    color: var(--primary-color) !important;
}

.bg-light-pink {
    background-color: var(--bg-pink) !important;
}

/* =========================================================
   Header & Navigation
   ========================================================= */
.site-brand {
    display: flex;
    align-items: center;
}

.site-brand > a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

img.site-icon {
    height: 4.5rem;
    width: auto;
    margin-right: 1rem;
}

h1.title-main {
    margin: 0;
}

h1.title-main a {
    font-size: 2.2rem;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

.title-desc {
    font-size: 0.9rem;
    color: #666;
}

ul.nav-ul {
    margin-bottom: 0;
}

ul.nav-ul li {
    margin-left: 1.5rem;
    position: relative;
}

ul.nav-ul a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Klee One', cursive;
    font-size: 1.1rem;
}

ul.nav-ul a:hover {
    color: var(--primary-color);
}

/* カレントメニューの下にアイコンを表示する演出（擬似要素） */
li.current-menu-item > a {
    color: var(--primary-color);
}
li.current-menu-item::after {
    content: "🌸"; /* 仮のアイコン、のちにSVG等に変更可能 */
    font-size: 0.8rem;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================================
   Sections (Front Page)
   ========================================================= */
.section-title {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

/* ふきだしメッセージ */
.message-bubble {
    background-color: var(--bubble-pink);
    border-radius: 60px;
    max-width: 700px;
}
.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--bubble-pink) transparent transparent transparent;
}

/* インフォメーション */
.info-item h3 {
    font-size: 1.1rem;
}

/* ブログカード */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card .card-title {
    font-size: 1rem;
}

/* =========================================================
   Footer
   ========================================================= */
footer {
    background-color: var(--bg-pink);
    padding: 3rem 0;
    position: relative;
}

.footer-nav ul {
    list-style: none;
    padding-left: 0;
}
.footer-nav ul li {
    margin-bottom: 0.5rem;
}
.footer-nav ul a {
    color: #555;
    text-decoration: none;
    font-family: 'Klee One', cursive;
}
.footer-nav ul a:hover {
    color: var(--primary-color);
}

.footer-logo img {
    height: 4.5rem;
    margin-right: 0.5rem;
}

/* TOPへ戻るボタン */
.btn-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.btn-top:hover {
    transform: scale(1.1);
}
.btn-top img {
    width: 60px;
    height: auto;
}

/* =========================================================
   Responsive
   ========================================================= */
@media screen and (max-width: 768px) {
    .message-bubble {
        border-radius: 30px;
        padding: 2rem !important;
    }
    h1.title-main a {
        font-size: 1.5rem;
    }
    img.site-icon {
        height: 3rem;
    }
    ul.nav-ul li {
        margin-left: 0.8rem;
    }
}