/*
Theme Name: hscc
Theme URI: https://hs-contest.org/
Author: Masaki Ikeda
Author URI: https://hs-contest.org/
Description: for HS-Contest.org
Version: 1.0
License: Private
Text Domain: hscc
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

body {
	margin: 0;
	background-color: #e0ffe0;
}

h1 {
	color: red;
	text-align: center;
	background-color: #ffc;
	line-height: 200%;
}

h2 {
	color: blue;
}

/* メニュー部分の初期スタイル */
#site-navigation {
	width: 100%;
	z-index: 100;
	/* 他の要素より手前に表示するため */
}

/* スクロール時にメニューに適用するスタイル */
.sticky-nav {
	position: fixed;
	/* 画面に固定 */
	top: 0;
	/* 画面上部に配置 */
	left: 0;
}

/* ログイン時（管理バーが表示されている時）のスタイル */
.admin-bar .sticky-nav {
	top: var(--wp-admin--admin-bar--height);
	/* 管理バーの高さ分だけ下にずらす */
}

.hscc-logo {
	max-width: 100%;
}

.header-nav {
	display: flex;
	justify-content: flex-begin;
	/* 左寄せにする */
	list-style: none;
	/* リストの点（・）を消す */
	margin: 0;
	padding: 0;
	background-color: #070;
}

.header-nav li a {
	display: block;
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
}

main {
	display: flex;
	justify-content: center;
	margin: 8px;
}

.main-container {
	width: 800px;
}

.wide-main-container {
	width: 1000px;
}

address {
	margin: 8px;
}

.limited-width-table {
	display: table;
	margin: 0;
}

.noborder-table {
	border: 0;
	border-style: none;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

pre {
	color: #000;
	background-color: #e0fae0;
	border-style: solid;
	border-width: 1px 1px 1px 6px;
	border-color: #aaccaa;
	padding: 10px;
	margin-left: 2em;
}

ul {
	list-style-type: none;
}

main ul li {
	list-style-image: url('images/pin-blue.png');
}

main ul ul li {
	list-style-image: url('images/pin-skyblue.png');
}

main ul ul ul li {
	list-style-image: url('images/pin-green.png');
}

li.red {
	list-style-image: url('images/pin-red.png');
}

.text-red {
	color: red;
}

.ed {
	color: #006000;
}

p.warn {
	color: red;
	font-size: large;
	font-weight: bold;
	margin-left: 5%;
	margin-right: 5%;
}

span.warn {
	color: red;
}

span.code {
	font-family: "Courier New";
	font-weight: bolder;
}

span.note {
	padding-left: 50px;
	color: #803000;
}

.prize {
	text-align: center;
	color: red;
	font-weight: bold;
}

.breadcrumb {
	padding: 5px 15px;
	margin: 0;
	list-style: none;
	display: flex;
	font-size: 14px;
}

.breadcrumb li {
	margin-right: 5px;
}

.breadcrumb li:not(:last-child):after {
	content: " > ";
	margin-left: 5px;
}

.breadcrumb li a {
	text-decoration: none;
	color: #070;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}

.footin {
	margin-left: 100px;
}

.footin a {
	color: #e0ffe0;
	text-decoration: none;
}