@charset "utf-8";

/* Google Fontsの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap');

/* リセットCSSと全体設定 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body {
    color: #545555;
}

/* HTMLチートシート用の背景 */
body.html-sheet {
    background-color: #eef4fb;
}

/* CSSチートシート用の背景 */
body.css-sheet {
    background-color: #fceceb;
}

/* 共通レイアウト */
div#container {
    width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 7px rgba(83,78,61,0.3); 
}

/* ヘッダーとナビゲーション */
header {
    margin-bottom: 40px;
    border-bottom: 2px solid #a2ad78;
    padding-bottom: 20px;
}

header h1 {
	font-family: 'Mochiy Pop One', sans-serif;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

nav ul li {
    margin-right: 20px;
    margin-bottom: 10px;
}

nav ul li a {
    color: #545555;
    font-weight: bold;
}

nav ul li a:hover {
    color: #a2ad78;
    text-decoration: underline 3px solid #a2ad78;
}

/* コンテンツ（チートシート本文） */
article {
    margin-bottom: 60px;
}

h2 {
    font-size: 24px;
    color: #ffffff;
    background-color: #a2ad78; 
    padding: 10px 20px;
    margin-bottom: 15px;
    border-left: 10px solid #606c30; 
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0 10px;
}

dl {
    padding: 0 10px;
}

dl dt {
    font-size: 18px;
    font-weight: bold;
    color: #606c30;
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 5px;
    margin-top: 25px;
    margin-bottom: 10px;
}

dl dd {
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 15px;
}

/* フッター */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #a2ad78;
}

p.copyright {
    background-color: #545555;
    color: #fff; 
    height: 100px;
    margin-top: 30px;
    text-align: center;
	line-height: 100px;
	margin-bottom: 0;
}