@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/* メインカラースキーム */
:root {
    --main-color: #0ABAB5; /* ティファニーブルー */
    --accent-color: #FFB6C1; /* 薄いピンク */
    --dark-color: #000080; /* 紺色 */
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.header {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-color);
    text-decoration: none;
}

.nav-menu {
    list-style-type: none;
    display: flex;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--main-color);
}

.main-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 20px 0;
}

.section-title {
    font-size: 24px;
    color: var(--dark-color);
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.article {
    margin-bottom: 20px;
}

.article h2 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.article p {
    line-height: 1.8;
}

.sidebar {
    width: 300px;
    background-color: #f5f5f5;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.widget {
    margin-bottom: 20px;
}

.widget-title {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.widget ul {
    list-style-type: none;
    padding-left: 0;
}

.widget li {
    margin-bottom: 5px;
}

.widget a {
    color: var(--dark-color);
    text-decoration: none;
}

.widget a:hover {
    color: var(--main-color);
}

.footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 14px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}
