/*
Theme Name: aimlog
Description: aimlog
Theme URI: aimlog.org
Author: aim
Version: 1.1.0
License: ライセンス
License URI: https://aimlog.org
*/

@charset "UTF-8";
/**
 * Clear fix
 */

.cf:before, .cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
 	*zoom: 1;
}

body {
	color: #444;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
	font-size: 16px;
	font-weight: 600;
	background: #f9f9f9!important;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

img[width="1"] {
	display: none;
}

img[width="0"] {
	display: none;
}

a {
	text-decoration: none;
	color: #444;
	cursor: pointer;
	transition: .3s;
}

a:hover {
	transition: .3s;
}

.article-wrap a {
    color: #0066c0;
}

* {
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,div,p {
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}

p:empty {
	display: none;
}

/*header.php*/
.header-wrap {
	width: 100%;
	background: #fff;
}

.logo {
	width: 150px;
	padding: 1em 0;
	margin: 0 auto;
}

/*footer.php*/
.footer-bottom {
	background: #fff;
	padding: 40px 0;
}

.footer-bottom a {
	text-align: center;
	display: block;
	margin: 0 auto;
	max-width: 300px;
	background: #fff195;
	color: #545454;
	padding: 10px;
	font-size: 16px;
	font-weight: 700;
}

/* page-textbookエリア */
.main-area {
	max-width: 900px;
	margin: 0 auto 40px;
}

.notice-area {
	width: 90%;
	margin: 0 auto 40px;
	padding: 30px;
	font-size: 14px;
	background: #f9f9f9;
	border-radius: 20px;
	box-shadow: 9px 9px 18px #e6e6e6, -9px -9px 18px #ffffff;
	box-shadow: 5px 5px 10px #e6e6e6,;
}

.notice-title {
	display: block;
	text-align: center;
	margin-bottom: 10px;
	border-bottom: 1px solid #aaa;
}

.notice-list {
	border-bottom: 3px dotted #ddd;
	margin-bottom: 10px;
}

.notice-area a {
	padding: 0 5px;
	color: #0066c0!important;
}

.notice-area a::before {
	content: '\f08e';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 0 7px 0 0;
}

.article-area {
	max-width: 900px;
	margin: 0 auto;
}

.chapter {
	background: #f9f9f9;
	text-align: center;
	width: 90%;
	margin: 0 auto 30px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 20px;
	box-shadow: 9px 9px 18px #e6e6e6, -9px -9px 18px #ffffff;
	box-shadow: 5px 5px 10px #e6e6e6, -5px -5px 10px #ffffff;
}

.chapter img {
	margin: 10px 0 0;
	border-radius: 20px;
}

.chapter a {
	padding: 10px;
	background: #fff195;
	border-radius: 50px;
	font-size: 14px;
	display: block;
}

/* single-textbook.php */
.article-wrap {
	max-width: 600px;
	margin: 30px auto;
	font-size: 14px;
}

.post-content p {
	margin-bottom: 40px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}

.textbook-title {
	font-size: 23px;
	padding: 20px 5px 5px;
	margin-bottom: 20px;
	border-bottom: 2px solid #eee;
}

.outline {
	display: none;
}

.post-content h2 {
	border-bottom: 2px solid #666;
	padding: 10px;
	font-size: 20px;
	margin-bottom: 20px;
}

.post-content h3 {
	border-left: 5px solid #666;
	padding: 10px 15px;
	font-size: 18px;
	margin-bottom: 40px;
}

strong {
	font-weight: 600;
}

.borderBox {
	background: #f5f5f5;
	padding: 2em 2em;
	margin-bottom: 40px;
	border-radius: 20px;
}

.list-circle {
	background: #f5f5f5;
	padding: 2em 1em 2em 2.7em;
	margin-bottom: 40px;
	border-radius: 20px;
}

.list-circle li {
	position: relative;
	line-height: 1.5;
	padding: 0.5em 0;
}

.list-circle li:before {
	content: '・';
	position: absolute;
	left: -18px;
}

.ollist {
	background: #f5f5f5;
	counter-reset: my_counter;
	list-style: none;
	padding: 2em 1em 2em 4em;
	margin-bottom: 40px;
	border-radius: 20px;
}

.ollist li {
	position: relative;
	padding-bottom: 1em;
}

.ollist li:before {
	position: absolute;
	top: 0;
	content: counter(my_counter);
	counter-increment: my_counter;
	width: 20px;
	height: 20px;
	padding: 2px 2px 5px 3px;
	margin-left: -35px;
	text-align: center;
	font-size: 14px;
	border-radius: 5px;
	color: #fff;
	background: #666;
}

.ollist li:last-child {
	padding-bottom: 0;
}

.marker {
	background: linear-gradient(transparent 50%, #fff0b2 50%);
	font-weight: 700;
}

.checkpoint {
	font-size: 16px;
	margin-bottom: 10px;
}

.checkpoint:before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 0 7px 0 0;
}

.returnBtn , .nextBtn {
	text-align: center;
	display: block;
	width: 48%;
	background: #BFDAE1;
}

.returnBtn a , .nextBtn a {
	padding: 10px;
	font-weight: 700;
	font-size: 12px;
	display: block;
	color: #fff!important;
}

.imgborder {
	border: 1px solid #aaa;
	margin-bottom: 40px;
}

.imgshadow {
	box-shadow: 0 2px 10px 0px #eee;
	margin-bottom: 40px;
}

/* パスワード入力画面 */
form.post-password-form {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px;
    background: #fff;
}

form.post-password-form label {
    width: 100%;
    display: block;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
}

input#pwbox-965 {
    width: 80%;
    padding: 5px;
    font-size: 18px;
}

input[type="submit"] {
    width: 80%;
    margin: 0 auto;
    display: block;
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    background: #BFDAE1;
	color: #fff;
    border: 0;
	cursor: pointer;
}

/*--- 画面の幅が768px以上になったら ---*/
@media screen and (min-width:760px) {
	.box {
		padding: 90px 0;
	}

	.post-password-form p > input {
		width: 50%;
	}

	/* page-textbookエリア */
	.notice-area {
		max-width: 800px;
		font-size: 14px;
	}

	.chapter {
		width: 30%;
	}

	.list-circle {
		padding: 2em 1em 2em 3em;
	}

	.ollist li:before {
		padding: 2px 1px 6px 4px;
	}
}

/*--- 画面の幅が960px以上になったら ---*/
@media screen and (min-width:960px) {
	.article-wrap {
		max-width: 600px;
		margin: 30px 5% 30px auto;
		font-size: 14px;
	}
}

/*--- 画面の幅が960px以上になったら ---*/
@media screen and (min-width:1100px) {
	.article-wrap {
		margin: 30px 15% 30px auto;
	}
}

/*--- 画面の幅が960px以上になったら ---*/
@media screen and (min-width:1250px) {
	.article-wrap {
		max-width: 600px;
		margin: 30px auto;
		font-size: 14px;
	}
}