@charset "utf-8";
/*************************************************
 refill design
*************************************************/
@import url('https://fonts.googleapis.com/css?family=ABeeZee|Abril+Fatface|Alfa+Slab+One|Audiowide|Bad+Script|Bangers|Barriecito|Black+Ops+One|Bonbon|Chango|Comfortaa|Coming+Soon|Cormorant+Garamond|Crafty+Girls|Emilys+Candy|Fascinate+Inline|Freckle+Face|Fredoka+One|Fugaz+One|Gloria+Hallelujah|Gochi+Hand|Griffy|Hanalei|Henny+Penny|Hi+Melody|Homemade+Apple|Indie+Flower|Josefin+Sans|Kaushan+Script|Leckerli+One|Libre+Baskerville|Limelight|Liu+Jian+Mao+Cao|Lobster|Lobster+Two|Love+Ya+Like+A+Sister|Luckiest+Guy|M+PLUS+1p|Ma+Shan+Zheng|Mali|Mansalva|Marck+Script|Miltonian|Miniver|Monoton|Montserrat|Mr+Dafoe|Nanum+Gothic|Neucha|Notable|Noto+Sans+JP|Noto+Serif+JP|Noto+Serif+KR|Noto+Serif+SC|Noto+Serif+TC|Pacifico|Permanent+Marker|Press+Start+2P|Rajdhani|Raleway|Ribeye|Ribeye+Marrow|Sacramento|Satisfy|Sawarabi+Mincho|Schoolbell|Snowburst+One|Spirax|Turret+Road|Vibes|Vibur|ZCOOL+KuaiLe|ZCOOL+QingKe+HuangYou|ZCOOL+XiaoWei|Zhi+Mang+Xing&display=swap');

/*
	css 単位
	https://www.webprofessional.jp/a-walkthrough-of-css-length-units-you-can-use-for-font-size/
	https://www.webprofessional.jp/css-viewport-units-quick-start/
	*/

/*
body	タイプ設定(monthly,weeklyなど)
section	.print_area・用紙サイズ
section > div.pages	デフォルトで改ページ設定、各レイアウト
*/

/* -----------------------------------------------
 共通
------------------------------------------------ */

/* プレビュー設定
-------------------------- */
.pages {
	background: #fff;
	position: absolute;
	top: -9999px;
	left: -9999px;
	z-index: -1;
	width: auto;

}
.refill {
	display: block;
	background: #fff;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	position: relative;
}
.print_contents {
	width: 100%;
	height: 100%;
	padding: 5% 10%;
	box-sizing: border-box;
	background: #fff;
}


/* **************************
 用紙ごとの基本設定
************************** */

/* paper_size
--------------- */
.a4 .refill {
 /* 210 : 297 */
 width: 2100px;
 height: 2970px;
 font-size: 50px;
}
.a5 .refill {
 /* 148 : 210 */
 width: 1480px;
 height: 2100px;
 font-size: 40px;
}
.hbxwa5 .refill {
	/* 148 : 170 */
 width: 1480px;
 height: 1700px;
 font-size: 30px;
}
.bible .refill {
	/* 95 : 170 */
 width: 950px;
 height: 1700px;
 font-size: 25px;
}
.mini6 .refill {
	/* 80 : 126 */
 width: 800px;
 height: 1260px;
 font-size: 22px;
}
.micro5 .refill {
	/* 61 : 105 */
 width: 610px;
 height: 1050px;
 font-size: 20px;
}
.origami .refill {
	/* 150 : 150 */
 width: 1500px;
 height: 1500px;
 font-size: 30px;
}

/* paper_size
--------------- */




/* flex
-------------------------- */
/* 横並び x方向→ */
.flex_x {
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	   -ms-flex-direction: row;
	       flex-direction: row;
	-webkit-box-pack: justify;
	   -ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	   -ms-flex-align: stretch;
	      align-items: stretch;
}
.flex_x .flex_item {
}
/* 縦に↓ */
.flex_y {
	display: flex;
	display: -ms-flexbox;
	
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	   -ms-flex-direction: column;
	       flex-direction: column;

	-ms-flex-line-pack: justify;
	     align-content: space-between;
	height: 100%;
}
.flex_y .flex_item {
    flex-grow: 1;
}

/* list */
ul.memo {
	list-style: none;
}
ul.memo li {
	border-bottom: 1px dotted #ccc;
	height: 20px; /* とりあえず */
}



/* --------------------------
 カレンダー系 ベースデザイン
--------------------------- */
.calendar_month {
	font-size: 90%;
	line-height: 120%;
	margin: auto;
}
.micro5 .refill .calendar_month {
	font-size: 80%;
	line-height: 100%;
}
.calendar_month caption {
	font-size: 130%;
	line-height: 150%;
}
.calendar_month th {
}
.calendar_month td {
	text-align: center;
	width: 14%;
  width: -moz-calc(100% / 7);
  width: -webkit-calc(100% / 7);
  width: calc(100% / 7);
}
/* --------------------------
 各種 デフォルト色設定
--------------------------- */
.title_color {}	/* タイトル色 */
.border_color {}	/* 枠線の色*/

.sat { background: #e0f7fa; color: #0000ff; } /* 土曜日の背景色 */
.sun { background: #fae0f7; color: #ff0000; } /* 日曜日の文字色 */
.holiday { background: #faf7e0; color: #ff0000; } /* 祝日の文字色 */

.null { background: #f6f6f6; } /* 余白ブロックの背景色 */

.blank_border {} /* 余白ブロック枠の有無 */

/* dl.memo { background: #f6f6f6; } */	/* 背景色test */
.bg_type_0 {
	background: #fff;
}
.bg_type_1 {
	background-image: url(../img/bg_type_1.png);
   background-repeat: repeat; 
}
.bg_type_2 {
	background-image: url(../img/bg_type_2.png);
   background-repeat: repeat; 
}
.bg_type_3 {
	background-image: url(../img/bg_type_3.png);
   background-repeat: repeat; 
}
.bg_type_4 {
	background-image: url(../img/bg_type_4.png);
   background-repeat: repeat; 
}
.bg_type_5 {
	background-image: url(../img/bg_type_5.png);
   background-repeat: repeat;
}
.bg_type_6 {
	background-image: url(../img/bg_type_6.png);
   background-repeat: repeat;
}
.bg_type_7 {
background-color: #fff;
  background-image: linear-gradient(-45deg, rgba(107,194,172,0.3) 25%, transparent 25%, transparent 50%, rgba(107,194,172,0.3) 50%, rgba(107,194,172,0.3) 75%, transparent 75%, transparent 100%), linear-gradient(45deg, rgba(255,152,163,0.3) 25%, transparent 25%, transparent 50%,  rgba(255,152,163,0.3) 50%, rgba(255,152,163,0.3) 75%, transparent 75%, transparent 100%);
  background-size: 52px 52px;
}
.bg_type_8 {  
  background-color: #fff;
  background-image: linear-gradient(-45deg, rgba(255,152,163,0.3) 25%, transparent 25%, transparent 50%, rgba(255,152,163,0.3) 50%, rgba(255,152,163,0.3) 75%, transparent 75%, transparent 100%), linear-gradient(45deg, rgba(245,204,117,0.3) 25%, transparent 25%, transparent 50%,  rgba(245,204,117,0.3) 50%, rgba(245,204,117,0.3) 75%, transparent 75%, transparent 100%);
  background-size: 52px 52px;
}
.bg_type_9 {  
  background-color: #fff;
  background-image: linear-gradient(-45deg, rgba(245,204,117,0.3) 25%, transparent 25%, transparent 50%, rgba(245,204,117,0.3) 50%, rgba(245,204,117,0.3) 75%, transparent 75%, transparent 100%), linear-gradient(45deg, rgba(107,194,172,0.3) 25%, transparent 25%, transparent 50%,  rgba(107,194,172,0.3) 50%, rgba(107,194,172,0.3) 75%, transparent 75%, transparent 100%);
  background-size: 52px 52px;
}
/* 限定 */
.bg_type_10 {
/*
	background-image: url(../img/bg/dream_shabon.jpg);
	background-image: url(../img/bg/07_hawaiian.jpg);
	background-image: url(../img/bg/10_halloween.jpg);
*/
	background-image: url(../img/bg/11_bungumi.jpg);
	background-size: cover;
	background-position: top;
}




/* -----------------------------------------------
 yearly
------------------------------------------------ */
/* year
--------------------------- */
.calendars {
	width: 100%;
	height: 100%;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
     -ms-flex-align: stretch;
        align-items: stretch;
}
.calendars dt {
	margin-bottom: 0.5em;
	font-size: 150%;
	line-height: 150%;
	border-bottom: 1px solid #ccc;
	display: block;
	width: 100%;
}
.calendars dd {
	width: 100%;
	height: 22%;
	margin: 1% auto;
	display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
  -webkit-box-align: start;
     -ms-flex-align: start;
        align-items: flex-start;
}
.num_6 dd {
	height: 30%;
}
.calendars dd table {
	width: 30%;
	height: 80%;
	margin: 0;
}
.num_6 dd table {
	width: 45%;
}

/* year_table
--------------------------- */
.year_table table {
	font-size: 90%;
}
.year_table colgroup.day {
	max-width: 5%;
}



/* furuer_log
--------------------------- */
/*
.future_log .print_contents {
	width: 88%;
	height: 94%;
	padding: 3% 2%;
	background: #fff;
}

.pages li.refill:nth-child(even) .print_contents {
	left: 2%;
}*/
.future_log .calendar_month {
	font-size: 90%;
	line-height: 130%;
}
.future_log .print .calendar_month {
	font-size: 15px;
}
.future_log dt {
	font-size: 100%;
	line-height: 150%;
}

/* 縦型 */
.future_log .flex_x .compartment {
	border-left: 1px solid #ccc;
	padding: 0.5em;
}
.future_log .flex_x .compartment:first-child {
	border: none;
}
.future_log .flex_x dt {
	text-align: center;
}
.future_log .flex_x .compartment dd.calendar {
	border-top: 2px dotted #ccc;
	padding-top: 0.5em;
}
.future_log .flex_x .compartment {
	width: 16%;
	height: 100%;
}
.future_log .num_p_2 .flex_x .compartment {
	width: 48%;
}
.future_log .num_p_3 .flex_x .compartment {
	width: 31.5%;
}
.future_log .num_p_4 .flex_x .compartment {
	width: 24%;
}
.future_log .flex_x dt {
	text-align: center;
}

/* 横型 */
.future_log .flex_y .compartment {
	border-top: 1px solid #ccc;
	height: 16%;
	padding: 1em 0.3em;
	margin: 0 3%;
	box-sizing: border-box;
}
.future_log .num_p_2 .flex_y .compartment {
	height: 48%;
}
.future_log .num_p_3 .flex_y .compartment {
	height: 33%;
}
.future_log .num_p_4 .flex_y .compartment {
	height: 24%;
}
.future_log .flex_y .calendar_month {
	width: 10em;
	margin: 0;
}

/* 年月表示 */
.future_log caption {
	display: none;
}


/* gantt_chart
--------------------------- */
.gantt_chart .main_area {
	width: 100%;
	height: 100%;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
     -ms-flex-align: stretch;
        align-items: stretch;
}
.gantt_chart .main_area table {
	margin: 5% 0;
	height: 40%;
	font-size: 100%;
	border: 0px;
}
/*
.gantt_chart .mini6 .main_area table {
 font-size: 20px;
}
.gantt_chart .micro5 .main_area table {
 font-size: 18px;
}
*/
.gantt_chart .num_p1 .main_area table {
	height: 90%;
}
.gantt_chart .num_p3 .main_area table {
	height: 23%;
}
.gantt_chart .main_area caption {
	font-size: 130%;
	line-height: 100%;
	text-align: left;
	padding: 0 0 0 .2em;
	border: 0px;
}
.gantt_chart .main_area caption div {
	font-weight: bold;
	display: inline-block;
	margin: 0 0.5em 0 0;
}
.gantt_chart .main_area caption.right_page {
	text-align: right;
	font-size: 100%;
	line-height: 130%;
}
.gantt_chart .main_area td {
	width: 5.88%;
  width: -moz-calc(100% / 17);
  width: -webkit-calc(100% / 17);
  width: calc(100% / 17);
}
.gantt_chart .main_area .title {
	width: 17.68%;
}
.gantt_chart .main_area tbody td {
	font-size: 1px;
	line-height: 1px;
}

/* -----------------------------------------------
 monthly
------------------------------------------------ */

/* block
--------------------------- */
/* 年月表示タイトル */
.monthly .print_area .title {
	padding: 8% 5% 0 0;
	height: 5%;
}
.monthly .print_area h1 {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 250%;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
}
.monthly .print_area h2 {
	display: inline-block;
	margin: 0 0 0 0.5em;
	padding: 0;
	font-size: 150%;
	line-height: 100%;
	text-align: left;
	vertical-align: middle;
	background: none;
	font-weight: normal;
}
.monthly .main_area {
	font-size: 100%;
	height: 80%;
	width: 100%;
	padding: 1px 0;
}
.monthly .layout_3 .refill:nth-child(odd) .main_area {
	width: 75%;
	float: right;
}
.monthly .layout_4 .refill:nth-child(even) .main_area {
	width: 75%;
}
.monthly .layout_5 .refill:nth-child(even) .main_area {
	width: 40%;
}

.monthly table {
	width: 100%;
	height: 100%;
	font-size: 110%;
	background: rgba(255,255,255,0.7);
}
.monthly .bg_type_10 table {
	background: rgba(255,255,255,0.6);
}
.monthly th {
	height: 15%;
	padding: 2%;
	box-sizing: border-box;
}
.monthly .layout_0 th {
	width: 14%;
  width: -moz-calc(100% / 7);
  width: -webkit-calc(100% / 7);
  width: calc(100% / 7);
}
.monthly .layout_3 th {
	width: 25%;
}
.monthly .layout_4 th {
	width: 25%;
}
.monthly .layout_5 th {
	width: 20%;
}

.monthly table td {
  vertical-align: top;
  height: 16%;
	padding: 1% 2%;
	box-sizing: border-box;
}
.monthly table td.blank {
	border: none;
}
.monthly .holiday_name {
	font-size: 75%;
	margin: 5% 0;
	line-height: 100%;
}
.monthly .layout_0 .holiday_name {
	font-size: 50%;
}

/* month_table
--------------------------- */
#month_table table {
	font-size: 90%;
}
#month_table caption {
	text-align: left;
	border: 0px;
	padding: 0 0 0 .5em;
	font-size: 100%;
	line-height: 100%;
}
#month_table caption div {
	font-size: 150%;
	font-weight: bold;
	display: inline-block;
	margin: 0 5px 0 0;
}
#month_table th.day {
	width: 3em;
}
#month_table th.week_text {
	width: 3em;
	white-space: nowrap;
}

/* -----------------------------------------------
 weekly
------------------------------------------------ */

/* vertical
--------------------------- */
.vertical .main_area {
	background: #fff;
	display: flex;
	-ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	height: 100%;
	margin: 0;
}
.vertical .main_area dl {
	font-size: 100%;
	line-height: 100%;
	width: 22%;
	margin: 0 2% 0 1%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	border-bottom: 2px solid #ddd;
	box-sizing: border-box;
}
.vertical .main_area dl.memo {
	border-bottom: none;
}
.vertical .layout_5 .main_area dl {
	width: 18%;
}
.vertical .layout_5 .main_area dl.memo {
	width: 58%;
	  -webkit-box-flex: 3;
 -ms-flex-positive: 3;
         flex-grow: 3;
}

.vertical .main_area dl dt{
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
	text-align: center;
	height: 10%;
	padding: 5% 0;
	box-sizing: border-box;
	font-size: 100%;
	line-height: 150%;
}
.vertical .main_area dl dt:after{
	content: '';
	width: 100%;
	height: 100%;
}

.vertical .main_area dl dt .wd_name{
	display: inline-block;
	margin: 0 5px;
}
.vertical .main_area dl dt .holiday_name {
	font-size: 80%;
	line-height: 100%;
}
.vertical .main_area dl dd{
	font-size: 80%;
	line-height: 100%;
	height: 90%;
	box-sizing: border-box;
/*	background: #fff; */
}

ol.vertical_layout {
	padding: 0;
	margin: 0;
	height: 100%;
	display: flex;
	  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
}
ol.vertical_layout li {
	position: relative;
	padding: 0;
	margin: 0;
	border-top: 1px solid #ddd;
	flex-grow: 1;
}
ol.vertical_layout li .time{
	position: absolute;
	top: -0.5em;
	left: -0.8em;
	z-index: 3;
}

/* 日の出日の入りグラデ */
ol.gradation .sunset_h {
	background: -moz-linear-gradient(top, transparent 0%, transparent 50%, #d5d8eb 50%, #d5d8eb 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, transparent 0%, transparent 50%, #d5d8eb 50%, #d5d8eb 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #ffffff 0%, #fffff 50%, #ffddc9 50%, #ffddc9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
ol.gradation .before_sunrise,
ol.gradation .after_sunset{
	background: #d6d8eb;
}

ol.gradation .sunrise,
ol.gradation .sunset {
	height: 200%;
	width: 100%;
	display: block;
	position: absolute;
	z-index: 1;
	/* opacity: 0.3; */
	background: #fdf9d6; /* Old browsers */
	background: -moz-linear-gradient(top, #d5d8eb 0%, #d5d8eb 25%, #fdf9d6 80%, transparent 100%);
	background: -webkit-linear-gradient(top, #d5d8eb 0%, #d5d8eb 25%, #fdf9d6 80%, transparent 100%);
	background: linear-gradient(to bottom, #d5d8eb 0%, #d5d8eb 50%, #fdf9d6 80%, transparent 100%);


}
ol.gradation .sunset {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, transparent 0%, transparent 45%, #ffddc9 70%, #d5d8eb 85%, #d5d8eb 100%);
	background: -webkit-linear-gradient(top, transparent 0%, transparent 45%, #ffddc9 70%, #d5d8eb 85%, #d5d8eb 100%);
	background: linear-gradient(to bottom, transparent 0%, transparent 45%, #ffddc9 70%, #d5d8eb 85%, #d5d8eb 100%);
}

/* 15,30分ライン */
ol.vertical_layout hr {
	margin: 0;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
}
ol.vertical_layout hr.min_15 {
	top: 25%;
}
ol.vertical_layout hr.min_30 {
	top: 50%;
}
ol.vertical_layout hr.min_45 {
	top: 75%;
}


/* horizontal
--------------------------- */
.horizontal h1 {
	font-size: 150%;
	line-height: 100%;
	text-align: right;
}
.horizontal .main_area {
	height: 95%;
}
.horizontal .main_area dl{
	border-bottom: 1px solid #ccc;
	height: 13%;
	font-size: 150%;
	line-height: 150%;
}
.horizontal .main_area dl:first-child{
	border-top: 1px solid #ccc;
}
.horizontal .layout_3 dl,
.horizontal .layout_4 dl{
	height: 22.5%;
}
.horizontal .layout_5 dl.memo {
	height: 54.5%;
}
.horizontal .main_area dt{
	position: relative;
	padding: 0.3em;
	box-sizing: border-box;
}
.horizontal .holiday_name {
	position: absolute;
	right: 0.3em;
	top: 0.3em;
	font-size: 80%;
}

/* --------------------------
 date_sheet
--------------------------- */
.date_sheet .print_contents {
	padding: 50px;
}
.date_sheet ul.sheets {
	width: 100%;
/*	height: 100%; */
/*	background: #fff; */
	display: flex;
	flex-wrap: wrap;
  -webkit-box-align: start;
     -ms-flex-align: start;
        align-items: flex-start;
}
.date_sheet ul.sheets li {
	border: 2px solid #ccc;
	box-sizing: border-box;
	text-align: center;
	font-size: 100%;
	line-height: 100%;
	width: 200px;
	height: 200px;
	margin: 15px;
    display: flex;
    flex-wrap: wrap;
  -ms-flex-line-pack: center;
       align-content: center;
}
/* レイアウトごとの大きさ、fontサイズ設定 */
.date_sheet .layout_1-1 ul.sheets li {
	width: 100px;
	height: 100px;
	font-size: 70%;
	line-height: 100%;
}
.date_sheet .layout_2-2 ul.sheets li {
	width: 200px;
	height: 200px;
}
.date_sheet .layout_hobonichi ul.sheets li {
	width: 200px;
	height: 200px;
	font-size: 100%;
	line-height: 100%;
}
.date_sheet .layout_hobonichi_cousin ul.sheets li {
	width: 200px;
	height: 200px;
	font-size: 100%;
	line-height: 100%;
}
.date_sheet .layout_hobonichi_weeks ul.sheets li {
	width: 200px;
	height: 200px;
	font-size: 100%;
	line-height: 100%;
}
.date_sheet .layout_franklin ul.sheets li {
	width: 200px;
	height: 200px;
	font-size: 100%;
	line-height: 100%;
}
.date_sheet .layout_citta ul.sheets li {
	width: 200px;
	height: 200px;
	font-size: 100%;
	line-height: 100%;
}
/* margin設定 */
.date_sheet .margin_0 ul.sheets li {
	margin: 0px;
}
/* border設定 */
.date_sheet .border_0 ul.sheets li {
	border: none;
}
.date_sheet .border_1 ul.sheets li {
}
.date_sheet .border_2 ul.sheets li {
	border: 2px solid #ccc;
	border-radius: 30px;
}
.date_sheet .border_3 ul.sheets li {
	position: relative;
	border: 2px solid #ccc;
	margin-right: 10px;
	margin-bottom: 10px;
}
.date_sheet .border_3 ul.sheets li:after {
	content: '';
	position: absolute;
	width: 95%;
	height: 95%;
	right: -12px;
	bottom: -12px;
	border-right: 10px solid #ddd;
	border-bottom: 10px solid #ddd;
}
.date_sheet .border_4 ul.sheets li {
	border: 2px solid #ccc;
	border-radius: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.date_sheet .border_4 ul.sheets li:after {
	content: '';
	position: absolute;
	width: 90%;
	height: 90%;
	right: -12px;
	bottom: -12px;
	border-right: 10px solid #ddd;
	border-bottom: 10px solid #ddd;
	border-radius: 0px 10px 40px 10px;
}

.date_sheet .month_name {
	line-height: 100%;
	width: 100%;
}
.date_sheet .date {
	width: 100%;
	font-size: 250%;
	line-height: 100%;
	font-weight: bold;
}
.date_sheet .weekday {
	line-height: 100%;
	width: 100%;
}

.date_sheet ul.sheets li.ym {
	border: none;
	width: 420px;
}
.date_sheet ul.sheets li.ym:after {
	content: none;
}
.date_sheet li.ym .year {
}
.date_sheet li.ym .month_name {
	font-size: 250%;
	line-height: 100%;
	font-weight: bold;
}

/* -----------------------------------------------
 note
------------------------------------------------ */

/* 方眼・罫線ノート
---------------------------- */




/* なんでもlist
---------------------------- */
/* タイトル */
.list .print_area .title {
	padding: 2% 0 5% 0;
	height: 4%;
}
.list .print_area h1 {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 200%;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
}
.list .print_area h2 {
	font-size: 90%;
	margin: 5% 0 0;
	text-align: right;
}

/* リスト部分 */
.list .main_area {
	font-size: 100%;
	height: 90%;
	width: 100%;
	padding: 1px 0;
	background: rgba(255,255,255,0.6);
	border-radius: 15px;
}

.list table {
	width: 95%;
	height: 95%;
	margin: 2.5%;
	font-size: 100%;
}
/* font個別調整 */
.list .font_16 table {
	font-size: 90%;
}
.list .micro5 .font_16 table {
	font-size: 85%;
}
.list .font_17 table {
	font-size: 90%;
}
.list th {
	text-align: center;
	width: 1em;
	padding: 0 0 0 0.5em;
	border-bottom: solid 1px #ccc;
	position: relative;
}
.list th.check {
	padding: 0 0 0 2em;
}
.list th.check:after {
	content: '';
	height: 0.8em;
	width: 0.8em;
	margin: -0.5em 0 0 0.5em;
	display: inline-block;
	border: 2px solid #ccc;
	position: absolute;
	left: 0;
	top: 50%;
}
.list table td {
	border-bottom: solid 1px #ccc;
	position: relative;
}






/* --------------------------
 イラスト
--------------------------- */
.a5 ul.illust li:before,
.hbxwa5 ul.illust li:before,
.bible ul.illust li:before,
.mini6 ul.illust li:before,
.micro5 ul.illust li:before {
  content: '';
  display: block;
	position: absolute;
	width: 100%;
  height: 100%;
	background-color: rgba(0,0,0,0);
  background-size: contain;
	background-repeat: no-repeat;
}

/* a5
----------------- */
#monthly .a5 ul.illust_1_1 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_1.png);
}
#monthly .a5 ul.illust_1_2 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_2.png);
}
#monthly .a5 ul.illust_1_3 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_3.png);
}
#monthly .a5 ul.illust_1_4 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_4.png);
}
#monthly .a5 ul.illust_1_5 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_5.png);
}
#monthly .a5 ul.illust_1_6 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_6.png);
}
#monthly .a5 ul.illust_1_7 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_7.png);
}
#monthly .a5 ul.illust_1_8 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_8.png);
}
#monthly .a5 ul.illust_1_9 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_9.png);
}
#monthly .a5 ul.illust_1_10 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_10.png);
}
#monthly .a5 ul.illust_1_11 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_11.png);
}
#monthly .a5 ul.illust_1_12 li:before {
  background-image: url(../img/illust/monthly/illust_a5_1_12.png);
}

/* a5 右 */
#monthly .a5 ul.illust_1_1 li:nth-child(even):before {
  background-image: none;
}
#monthly .a5 ul.illust_1_2 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_2b.png);
}
#monthly .a5 ul.illust_1_3 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_3b.png);
}
#monthly .a5 ul.illust_1_4 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_4b.png);
}
#monthly .a5 ul.illust_1_5 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_5b.png);
}
#monthly .a5 ul.illust_1_6 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_6b.png);
}
#monthly .a5 ul.illust_1_7 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_7b.png);
}
#monthly .a5 ul.illust_1_8 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_8b.png);
}
#monthly .a5 ul.illust_1_9 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_9b.png);
}
#monthly .a5 ul.illust_1_10 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_10b.png);
}
#monthly .a5 ul.illust_1_11 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_11b.png);
}
#monthly .a5 ul.illust_1_12 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_a5_1_12b.png);
}


/* hbxwa5
----------------- */
#monthly .hbxwa5 ul.illust_1_1 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_1.png);
}
#monthly .hbxwa5 ul.illust_1_2 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_2.png);
}
#monthly .hbxwa5 ul.illust_1_3 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_3.png);
}
#monthly .hbxwa5 ul.illust_1_4 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_4.png);
}
#monthly .hbxwa5 ul.illust_1_5 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_5.png);
}
#monthly .hbxwa5 ul.illust_1_6 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_6.png);
}
#monthly .hbxwa5 ul.illust_1_7 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_7.png);
}
#monthly .hbxwa5 ul.illust_1_8 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_8.png);
}
#monthly .hbxwa5 ul.illust_1_9 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_9.png);
}
#monthly .hbxwa5 ul.illust_1_10 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_10.png);
}
#monthly .hbxwa5 ul.illust_1_11 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_11.png);
}
#monthly .hbxwa5 ul.illust_1_12 li:before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_12.png);
}

/* hbxwa5 右 */
#monthly .hbxwa5 ul.illust_1_1 li:nth-child(even):before {
  background-image: none;
}
#monthly .hbxwa5 ul.illust_1_2 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_2b.png);
}
#monthly .hbxwa5 ul.illust_1_3 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_3b.png);
}
#monthly .hbxwa5 ul.illust_1_4 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_4b.png);
}
#monthly .hbxwa5 ul.illust_1_5 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_5b.png);
}
#monthly .hbxwa5 ul.illust_1_6 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_6b.png);
}
#monthly .hbxwa5 ul.illust_1_7 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_7b.png);
}
#monthly .hbxwa5 ul.illust_1_8 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_8b.png);
}
#monthly .hbxwa5 ul.illust_1_9 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_9b.png);
}
#monthly .hbxwa5 ul.illust_1_10 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_10b.png);
}
#monthly .hbxwa5 ul.illust_1_11 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_11b.png);
}
#monthly .hbxwa5 ul.illust_1_12 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_hbxwa5_1_12b.png);
}


/* bible
----------------- */
#monthly .bible ul.illust_1_1 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_1.png);
}
#monthly .bible ul.illust_1_2 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_2.png);
}
#monthly .bible ul.illust_1_3 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_3.png);
}
#monthly .bible ul.illust_1_4 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_4.png);
}
#monthly .bible ul.illust_1_5 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_5.png);
}
#monthly .bible ul.illust_1_6 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_6.png);
}
#monthly .bible ul.illust_1_7 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_7.png);
}
#monthly .bible ul.illust_1_8 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_8.png);
}
#monthly .bible ul.illust_1_9 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_9.png);
}
#monthly .bible ul.illust_1_10 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_10.png);
}
#monthly .bible ul.illust_1_11 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_11.png);
}
#monthly .bible ul.illust_1_12 li:before {
  background-image: url(../img/illust/monthly/illust_bible_1_12.png);
}

/* bible 右 */
#monthly .bible ul.illust_1_1 li:nth-child(even):before {
  background-image: none;
}
#monthly .bible ul.illust_1_2 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_2b.png);
}
#monthly .bible ul.illust_1_3 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_3b.png);
}
#monthly .bible ul.illust_1_4 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_4b.png);
}
#monthly .bible ul.illust_1_5 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_5b.png);
}
#monthly .bible ul.illust_1_6 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_6b.png);
}
#monthly .bible ul.illust_1_7 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_7b.png);
}
#monthly .bible ul.illust_1_8 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_8b.png);
}
#monthly .bible ul.illust_1_9 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_9b.png);
}
#monthly .bible ul.illust_1_10 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_10b.png);
}
#monthly .bible ul.illust_1_11 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_11b.png);
}
#monthly .bible ul.illust_1_12 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_bible_1_12b.png);
}

/* mini6 
----------------- */
#monthly .mini6 ul.illust_1_1 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_1.png);
}
#monthly .mini6 ul.illust_1_2 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_2.png);
}
#monthly .mini6 ul.illust_1_3 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_3.png);
}
#monthly .mini6 ul.illust_1_4 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_4.png);
}
#monthly .mini6 ul.illust_1_5 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_5.png);
}
#monthly .mini6 ul.illust_1_6 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_6.png);
}
#monthly .mini6 ul.illust_1_7 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_7.png);
}
#monthly .mini6 ul.illust_1_8 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_8.png);
}
#monthly .mini6 ul.illust_1_9 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_9.png);
}
#monthly .mini6 ul.illust_1_10 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_10.png);
}
#monthly .mini6 ul.illust_1_11 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_11.png);
}
#monthly .mini6 ul.illust_1_12 li:before {
  background-image: url(../img/illust/monthly/illust_mini6_1_12.png);
}

/* mini6 右 */
#monthly .mini6 ul.illust_1_1 li:nth-child(even):before {
  background-image: none;
}
#monthly .mini6 ul.illust_1_2 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_2b.png);
}
#monthly .mini6 ul.illust_1_3 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_3b.png);
}
#monthly .mini6 ul.illust_1_4 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_4b.png);
}
#monthly .mini6 ul.illust_1_5 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_5b.png);
}
#monthly .mini6 ul.illust_1_6 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_6b.png);
}
#monthly .mini6 ul.illust_1_7 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_7b.png);
}
#monthly .mini6 ul.illust_1_8 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_8b.png);
}
#monthly .mini6 ul.illust_1_9 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_9b.png);
}
#monthly .mini6 ul.illust_1_10 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_10b.png);
}
#monthly .mini6 ul.illust_1_11 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_11b.png);
}
#monthly .mini6 ul.illust_1_12 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_mini6_1_12b.png);
}

/* micro5 
----------------- */
#monthly .micro5 ul.illust_1_1 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_1.png);
}
#monthly .micro5 ul.illust_1_2 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_2.png);
}
#monthly .micro5 ul.illust_1_3 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_3.png);
}
#monthly .micro5 ul.illust_1_4 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_4.png);
}
#monthly .micro5 ul.illust_1_5 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_5.png);
}
#monthly .micro5 ul.illust_1_6 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_6.png);
}
#monthly .micro5 ul.illust_1_7 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_7.png);
}
#monthly .micro5 ul.illust_1_8 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_8.png);
}
#monthly .micro5 ul.illust_1_9 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_9.png);
}
#monthly .micro5 ul.illust_1_10 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_10.png);
}
#monthly .micro5 ul.illust_1_11 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_11.png);
}
#monthly .micro5 ul.illust_1_12 li:before {
  background-image: url(../img/illust/monthly/illust_micro5_1_12.png);
}

/* micro5 右 */
#monthly .micro5 ul.illust_1_1 li:nth-child(even):before {
  background-image: none;
}
#monthly .micro5 ul.illust_1_2 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_2b.png);
}
#monthly .micro5 ul.illust_1_3 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_3b.png);
}
#monthly .micro5 ul.illust_1_4 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_4b.png);
}
#monthly .micro5 ul.illust_1_5 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_5b.png);
}
#monthly .micro5 ul.illust_1_6 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_6b.png);
}
#monthly .micro5 ul.illust_1_7 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_7b.png);
}
#monthly .micro5 ul.illust_1_8 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_8b.png);
}
#monthly .micro5 ul.illust_1_9 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_9b.png);
}
#monthly .micro5 ul.illust_1_10 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_10b.png);
}
#monthly .micro5 ul.illust_1_11 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_11b.png);
}
#monthly .micro5 ul.illust_1_12 li:nth-child(even):before {
  background-image: url(../img/illust/monthly/illust_micro5_1_12b.png);
}


/**/
#monthly td.bd_chi-ba {
	position: relative;
}
#monthly td.bd_chi-ba:before {
  content: '';
  display: block;
	position: absolute;
	width: 120%;
  min-height: 110%;
	background-color: rgba(0,0,0,0);
	background-image: url(../img/illust/bd_chi-ba.png);
  background-size: contain;
	background-repeat: no-repeat;
}
#monthly .layout_0 td.bd_chi-ba:before {
	max-width: 150%;
	height: 150%;
	left: -10%;
	top: 20%;
}
.about_chi-ba {
	margin: .5em 0 0;
	text-align: right;
	font-size: 70%;
	line-height: 130%;
}


/* --------------------------
 font設定
--------------------------- */
.font_1{	font-family: 'Comfortaa', cursive;	}
.font_2{	font-family: 'Libre Baskerville', serif;	}
.font_3{	font-family: 'ZCOOL QingKe HuangYou', cursive;	}/* 皐 */
.font_4{	font-family: 'ZCOOL XiaoWei', serif;	}/* 皐 無 葉 長 師 */
.font_5{	font-family: 'Ma Shan Zheng', cursive;	}/* 皐 無 葉 長 師 */
.font_6{	font-family: 'Liu Jian Mao Cao', cursive;	}/* 皐 無 葉 長 師 */
.font_7{	font-family: 'ZCOOL KuaiLe', cursive;	}/* 皐 無 葉 長 師 */
.font_8{	font-family: 'Griffy', cursive;	}/* 8～20日本語フォント無し */
.font_9{	font-family: 'Henny Penny', cursive;	}
.font_10{	font-family: 'Ribeye', cursive;	}
.font_11{	font-family: 'Ribeye Marrow', cursive;	}
.font_12{	font-family: 'Hanalei', cursive;	}
.font_13{	font-family: 'Lobster', cursive;	}
.font_14{	font-family: 'Leckerli One', cursive;	}
.font_15{	font-family: 'Sacramento', cursive;	}
.font_16{	font-family: 'Bad Script', cursive;	}
.font_17{	font-family: 'Vibes', cursive;	}
.font_18{	font-family: 'Mali', cursive;	}
.font_19{	font-family: 'Fascinate Inline', cursive;	}
.font_20{	font-family: 'Monoton', cursive;	}

/*
.font_20{	font-family: 'Bonbon', cursive;	}
.font_17{	font-family: 'Miltonian', cursive;	}
.font_23{	font-family: 'Bad Script', cursive;	}
*/
