@charset "utf-8";
/* --------------------------------------------------
	見出し
-------------------------------------------------- */
/*ページタイトル*/
.col_page_midashi {
		font-size: 2em;
		font-weight: normal;
		color: #fff;
		margin-top: -1em;
}
/* 大見出し */
.col_danraku_midashi {
	margin-bottom: 2em;
		text-align: center;
		font-size: 2.5em;
		font-weight: normal;
		font-family: 'Shippori Mincho', serif;
		background: url("/~microbid/image/common/bg-oomidashi.png") no-repeat;
		background-position: center center;
}
.col_danraku_midashi span {
		display: block;
		font-size: .5em;
		line-height: .8;
}
/*  本文中 中見出し */
.col_internal_chuumidashi {
		font-size: 1.7em;
		font-weight: normal;
		line-height: 1.6;
		margin: 2em 0 1em 0;
		font-family: 'Shippori Mincho', serif;
		background: url("/~microbid/image/common/bg-chumidashi.png") no-repeat;
		background-position: center left;
		padding-left: .8em;
}

/*  本文中　小見出し */
.col_internal_komidashi {
		font-size: 1.3em;
		font-weight: normal;
		margin: 1.5em 0 0.5em 0;
		background: url("/~microbid/image/common/bg-komidashi.png") no-repeat;
		background-position: center left;
		padding-left: 1.8em;
}
/*  本文中　画像左寄せ */
.col_textarea_full img.f_l {
		padding: 2px 10px 5px 10px;
		float: left;
}
/*  本文中　画像右寄せ */
.col_textarea_full img.f_r {
		padding: 2px 0px 5px 15px;
		float: right;
}
@media (max-width:960px) {
	.col_danraku_midashi {
		margin-bottom: 1em;
	}
}
/* --------------------------------------------------
	本文領域
-------------------------------------------------- */
/*  本文領域 */
.col_textarea_full {
		padding: 0;
		margin: 0 auto;
		max-width: 800px;
		font-family: 'Noto Sans JP', sans-serif;
}
.col_textarea_full::after {
		content: "";
		clear: both;
		display: block;
}
.textarea_op_kiji {
		padding: 0% 10%;
		width: auto;
}
.textarea_op_kiji > img { /* 古いタイプの記事のために＞で残してあります */
		width: 80%;
		margin-left: 10%;
		margin-top: 10px;
		margin-bottom: 10px;
}
.textarea_op_kiji .in_imgwrap {
		width: 80%;
		margin-left: 10%;
		margin-top: 10px;
		margin-bottom: 30px;
		text-align: center;
}
.textarea_op_kiji .in_imgwrap > img {
		width: 100%;
		margin-bottom: 0px;
}
.textarea_op_kiji .in_caption {
		width: 100%;
		margin-top: 0px;
		margin-bottom: 10px;
		text-align: center;
		background-color: #DEEBF3;
}
@media (max-width:960px) {
		.col_textarea_full {
				margin-bottom: 20px;
		}
		.textarea_op_kiji {
				padding: 0;
				width: auto;
		}
		.textarea_op_kiji > img {
				width: 90%;
				margin-left: 5%;
		}
		.textarea_op_kiji .in_imgwrap {
				width: 90%;
				margin-left: 5%;
		}
}
/*マーカーが引かれる*/
.c-marker {
		background: -webkit-linear-gradient(left, rgb(255, 225, 150, .5) 50%, transparent 50%);
		background: -moz-linear-gradient(left, rgb(255, 225, 150, .5) 50%, transparent 50%);
		background: linear-gradient(left, rgb(255, 225, 150, .5) 50%, transparent 50%);
		background-repeat: no-repeat;
		background-size: 200% .8em;
		background-position: 100% .5em;
		transition: 2s;
}
.c-marker.is-active {
		background-position: 0% .5em;
}
/*じわっと出現*/
.blur {
		animation-name: blurAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
}
@keyframes blurAnime {
		from {
				filter: blur(10px);
				transform: scale(1.02);
				opacity: 0;
		}
		to {
				filter: blur(0);
				transform: scale(1);
				opacity: 1;
		}
}
.blurTrigger {
		opacity: 0;
}
/*==================================================
スクロールで要素をパタッと表示させる
===================================*/
/* 下へ */
.flipDown {
		animation-name: flipDownAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		opacity: 0;
}
@keyframes flipDownAnime {
		from {
				transform: perspective(2500px) rotateX(100deg);
				opacity: 0;
		}
		to {
				transform: perspective(2500px) rotateX(0);
				opacity: 1;
		}
}
/* 左へ */
.flipLeft {
		animation-name: flipLeftAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		perspective-origin: left center;
		opacity: 0;
}
@keyframes flipLeftAnime {
		from {
				transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
				opacity: 0;
		}
		to {
				transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
				opacity: 1;
		}
}
/* 左上へ */
.flipLeftTop {
		animation-name: flipLeftTopAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		opacity: 0;
}
@keyframes flipLeftTopAnime {
		from {
				transform: translate(-20px, 80px) rotate(-15deg);
				opacity: 0;
		}
		to {
				transform: translate(0, 0) rotate(0deg);
				opacity: 1;
		}
}
/* 右へ */
.flipRight {
		animation-name: flipRightAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		perspective-origin: right center;
		opacity: 0;
}
@keyframes flipRightAnime {
		from {
				transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
				opacity: 0;
		}
		to {
				transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
				opacity: 1;
		}
}
/* 右上へ */
.flipRightTop {
		animation-name: flipRightTopAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		opacity: 0;
}
@keyframes flipRightTopAnime {
		from {
				transform: translate(-20px, 80px) rotate(25deg);
				opacity: 0;
		}
		to {
				transform: translate(0, 1) rotate(0deg);
				opacity: 1;
		}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger, .flipLeftTrigger, .flipLeftTopTrigger, .flipRightTrigger, .flipRightTopTrigger {
		opacity: 0;
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
		animation-delay: 0.5s;
}
.delay-time1 {
		animation-delay: 1s;
}
.delay-time15 {
		animation-delay: 1.5s;
}
.delay-time2 {
		animation-delay: 2s;
}
.delay-time25 {
		animation-delay: 2.5s;
}
.delay-time3 {
		animation-delay: 3s;
}
.delay-time35 {
		animation-delay: 3.5s;
}
.delay-time4 {
		animation-delay: 4s;
}
/*----------------------------------------------------
	テーブル１（2セル用）　http://www.will-hp.com/wpblog/web/184/
----------------------------------------------------*/
/*<normal>をclassに変更*/
.col_table_normal {
		width: 97.3%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
		border-collapse: collapse;
}
.col_table_normal th, .col_table_normal td {
		padding: 10px;
		border: 1px solid #ddd;
}
.col_table_normal th {
		background: #f4f4f4;
}
.col_table_normal th {
		width: 20%;
		text-align: left;
}
@media (max-width:960px) {
		.col_table_normal {
				margin: 0 0 30px 0;
		}
		.col_table_normal th {
				text-align: center;
				width: 99%;
				display: block;
				border-top: none;
		}
		.col_table_normal td {
				width: 99%;
				display: block;
				border-top: none;
		}
		.col_table_normal tr:first-child th {
				border-top: 1px solid #ddd;
		}
}
/* --------------------------------------------------
	左固定テーブル(レスポンシブ用にflexに変更した版)
-------------------------------------------------- */
.col_fixing {
		margin-top: 15px;
		padding: 20px 25px;
		border: 2px solid #E7E5E5;
		margin-bottom: 30px;
}
.col_fixing_title {
		border-left: #E0C651 5px solid;
		padding: 5px 0 2px 15px;
		font-size: 1.2em;
		font-weight: 500;
		margin-bottom: 10px;
		color: #464646;
}
.col_fixing_title a {
		color: #2D287F;
}
.col_fixing_title a:hover {
		color: #2D287F;
}
.col_fixing_wrapper {
		border-bottom: 1px #CCCCCC dotted;
		padding: 9px 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
}
.col_fixing_contents_wrapper {
		width: 100%;
}
.col_fixing_contents {}
.col_fixing_subtitle {
		width: 125px;
		font-weight: 500;
		color: #666;
}
@media (max-width: 520px) {
		.col_fixing_contents_wrapper {
				width: 100%;
				margin-left: 0px;
		}
		.col_fixing_contents {
				margin-left: 0px; /* width:100%; */
		}
		.col_fixing_subtitle {
				width: 100%;
				margin: 0px auto;
				text-align: center;
		}
		.col_fixing_wrapper {
				display: block;
		}
}
/* fixingbox 簡易リスト版 */
.col_fixing_list {
		width: 100%;
		padding: 0 .5em;
}
.col_fixing_list dt {
		float: left;
		font-weight: 500;
		border-bottom: dotted 1px #C1C1C1;
		margin-bottom: .5em;
		padding: 0;
		width: 100px;
		text-align: center;
		font-size: .95em;
}
.col_fixing_list dd {
		margin-left: 128px;
		border-bottom: dotted 1px #C1C1C1;
		margin-bottom: .5em;
}
@media (max-width: 520px) {
		.col_fixing_list dt {
				padding: 0;
				margin: 0;
				float: none;
				text-align: center;
				border-bottom: none;
				width: 100%;
				background: #F5F5F5;
		}
		.col_fixing_list dd {
				margin-left: 0;
				border-bottom: none;
		}
}
/* --------------------------------------------------
	左固定テーブル２
-------------------------------------------------- */
.col_l_fixing2 {
		margin-top: 15px;
		padding: 20px 25px 20px 25px;
		border: 4px solid #e6e6e6;
		margin-bottom: 30px;
}
.col_l_fixing_title2 {
		background-image: url('../image/common/icon-boder.png');
		background-position: left center;
		padding: 3px 0 0 13px;
		background-repeat: no-repeat;
		font-size: 1.2em;
		font-weight: 500;
		margin-bottom: 10px;
		color: #464646;
}
.col_l_fixing_title2 a {
		color: #993C72;
}
.col_l_fixing_title2 a:hover {
		color: #BE5487 !important;
}
.col_l_fixing_wrapper2 {
		border-bottom: 1px #CCCCCC dotted;
		padding: 9px 0;
}
.col_l_fixing_contents_wrapper2 {
		float: right;
		width: 100%;
}
.col_l_fixing_contents2 {
		margin-left: 3em;
}
.col_l_fixing_subtitle2 {
		float: left;
		width: 6em;
		font-weight: 500;
}
@media (max-width:960px) {
		.col_l_fixing_contents_wrapper2 {
				float: none;
				width: 100%;
				margin-left: -6em;
				text-align: left;
		}
		.col_l_fixing_contents2 {
				float: none;
				margin-left: 0;
		}
		.col_l_fixing_subtitle2 {
				float: none;
				width: 100%;
				margin: 0 auto;
				text-align: left;
		}
}

/* --------------------------------------------------
	飾り文字
-------------------------------------------------- */
/*　マーカー　*/
.col_marker_red {
		background: linear-gradient(transparent 60%, #F7DBCD 60%);
}
.col_marker_yellow {
		background: linear-gradient(transparent 60%, #FFF8A0 60%);
}
.col_marker_purple {
		background: linear-gradient(transparent 60%, rgb(239, 224, 255) 60%);
}
.col_appealmessage {
		margin-bottom: 10px;
		line-height: 1.2em;
		font-size: 2em;
		font-weight: bolder;
		letter-spacing: 0.1em;
		color: #414141;
}

/* --------------------------------------------------
	テキストシート（文字の背景）
-------------------------------------------------- */
/*　テキストシート　*/
.col_txtsheet {
		width: auto;
		margin: 15px 7px;
		padding: 20px 15px 15px 25px;
		background-color: #f5f5f5; /*　色　*/
		border-radius: 5px;
}
/*　テキストシート（逸品目次用）　*/
.col_txtsheet_ippinindex {
		width: 40%;
		float: left;
		margin: 1%;
		padding: 1%;
		background-color: #f5f5f5; /*　色　*/
		border-radius: 5px;
}
@media (max-width: 520px) {
		.col_txtsheet_ippinindex {
				width: auto;
				float: none;
		}
		/*　テキストシート　*/
		.col_txtsheet {
				margin: 0;
				padding: 10px 5px 5px 10px;
		}
}
/* --------------------------------------------------
	ふんわりボタン
-------------------------------------------------- */
.col_fuwa {
		transition: 0.2s;
		backface-visibility: hidden;
}
.col_fuwa:hover {
		opacity: 0.6;
		transition: 0.2s;
}
/* --------------------------------------------------
	リストマーク
-------------------------------------------------- */
/*  2列 */
.col_mark_2col {
		margin: 0 0 10px 0px;
}
.col_mark_2col li {
		float: none !important;
		display: inline-block;
		background-image: url('../image/common/icon-hover.png');
		background-position: left center;
		background-repeat: no-repeat;
		position: relative;
		margin-bottom: 3px;
		width: 43%;
		/*	float:left;*/
		padding-left: 20px;
}
/*　スマホ用 / 2列から1列に　*/
@media (max-width:960px) {
		.col_mark_2col li {
				width: 95%;
				padding-left: 0px;
				padding-left: 20px;
		}
}
/*  3列 */
.col_mark_3col {
		margin: 0 0 10px 0px;
}
.col_mark_3col li {
		background-image: url('../image/common/icon-hover.png');
		background-position: left center;
		background-repeat: no-repeat;
		position: relative;
		margin-bottom: 3px;
		width: 29%;
		float: left;
		padding-left: 20px;
		margin-right: 10px;
}
/*　スマホ用 / 3列から2列に　*/
@media (max-width:960px){
		.col_mark_3col {}
		.col_mark_3col li {
				margin-bottom: 3px;
				width: 42.5%;
				float: left;
				padding-left: 20px;
		}
}
/*  リストの上下を均等にあける */
.col_mark_number, .col_mark_circle, .col_mark_number_square, .col_mark_check, .col_mark_triangle, .col_mark_kome {
		margin: 10px 0;
		text-align: left;
}
/* 三角矢印 */
.col_mark_triangle {
		margin: 0 0 15px 5px;
		list-style-type: none;
}
.col_mark_triangle li {
		position: relative;
		padding: 0em 0.3em 0.3em 1.3em;
}
.col_mark_triangle li:before {
		position: absolute;
		content: '';
		top: 0.5em;
		left: 0.2em;
		height: 0;
		width: 0;
		border-style: solid;
		border-width: 6px 0 6px 9px;
		border-color: transparent transparent transparent #9C98B8;
}
/*三角マーク下に円マークをいれる時の対策*/
.col_mark_triangle li > .col_mark_circle li:before {
		border-width: 5px 5px 5px 5px !important;
}
/*  数字マーク */
.col_mark_number {
		margin: 0 0 10px 33px;
}
.col_mark_number li {
		position: relative;
		margin-bottom: 10px;
		list-style-type: decimal;
}
/*  数字マーク　２階層目*/
.col_mark_number li > .col_mark_number li {
		list-style-type: lower-alpha;
}
/*  円マーク */
.col_mark_circle {
		margin: 0 0 15px 25px;
}
.col_mark_circle li {
		position: relative;
		margin: .5em 0;
		line-height: 1.7;
		text-align: justify;
}
.col_mark_circle li::after {
		display: block;
		content: '';
		position: absolute;
		top: .6em;
		left: -1em;
		width: 6px;
		height: 6px;
		background-color: #9C98B8; /*　色　*/
		border-radius: 100%;
}
/*  （）付き数字 */
.col_mark_number02 {
		margin-left: 2em;
}
.col_mark_number02 li {
		list-style-type: none;
		counter-increment: cnt;
		position: relative;
}
.col_mark_number02 li:before {
		content: "("counter(cnt) ")";
		display: inline-block;
		margin-left: -2em;
		width: 2em;
		position: absolute;
		top: 0;
		left: 0;
}
.col_mark_number02 li ul li:before {
		display: none;
}
/* 数字マーク・四角で囲う版 */
.col_mark_number_square {
		counter-reset: number; /*数字をリセット*/
		list-style-type: none !important; /*数字を一旦消す*/
		padding: 0;
		margin-bottom: 20px;
}
.col_mark_number_square li {
		position: relative;
		padding: 0.5em;
		line-height: 1.5em;
		background: #F4F4F4;
		border-left: solid 35px #EBCBB6;
		margin-bottom: 5px;
}
.col_mark_number_square li:before {
		/* 以下数字をつける */
		position: absolute;
		counter-increment: number;
		content: counter(number);
		/*数字のデザイン変える*/
		display: inline-block;
		color: white;
		font-size: 15px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: -35px;
		width: 35px;
		height: 1em;
		line-height: 1;
		text-align: center;
}
/*  チェックマーク */
.col_mark_check {
		margin: 0 0 15px 25px;
}
.col_mark_check li {
		position: relative;
		margin-bottom: 10px;
}
.col_mark_check li::after {
		display: block;
		content: '';
		position: absolute;
		top: .5em;
		left: -1.2em;
		width: 8px;
		height: 3px;
		border-left: 2px solid #9C98B8; /*　色　*/
		border-bottom: 2px solid #9C98B8; /*　色　*/
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
}
/*  丸数字 */
.maru li:before {
		margin-right: 10px;
		float: left;
		background: #9C98B8;
		width: 1.5em;
		height: 1.5em;
		border-radius: 50%;
		color: #fff;
		text-align: center;
		line-height: 1.6;
		font-weight: bold;
}
.maru_02 li:before {
		margin-right: 10px;
		float: left;
		background: #9C98B8;
		width: 1.5em;
		height: 1.5em;
		border-radius: 50%;
		color: #fff;
		text-align: center;
		line-height: 1.6;
		font-weight: bold;
}
/* ※印 */
.col_mark_kome li {
		margin: 0 0 5px 20px;
		list-style-type: none;
		text-indent: -1em;
}
/*記号なし角丸リスト*/
.col_list_round li{
	background: rgba(236,236,236,.4);
	border-radius: 100px;
	padding: .8em 2.5em;
	margin-bottom: 1em;
	font-size: .9em;
}
.col_mark_kome li:before {
		margin-right: 5px;
		display: inline;
		content: "※";
}
ol {
		counter-reset: number; /* 名前を付けたカウンターをリセット */
		list-style: none; /* olが数字を付けることをキャンセル */
		margin: 0;
		padding: 0;
}
ol li {
		/* リスト部分は好きに装飾！ */
		margin: 0;
		padding: 0;
}
ol li:before {
		/* カウンタ（数字になる部分） */
		counter-increment: number; /* 任意の名前を付けて！ */
		content: counter(number); /* 名前を付けたカウンターを呼び出し */ /* 色を変えたり、背景画像を敷いたり！自由自在！ */
}
/*  ページ内ショートカット用マーク */
.col_mark_shortcut {
		margin: 0 0 5px -20px;
}
.col_mark_shortcut li {
		background-image: url('../image/common/icon-under.png');
		background-position: left 7px center;
		background-repeat: no-repeat;
		padding-left: 25px;
		margin-left: 13px;
		display: -moz-inline-box;
		display: inline-block;
		*display: inline;
		*zoom: 1;
}
/* アンケートのコメント一覧などに */
.col_list_comment {
		width: 90%;
		border: 1px solid #B1B1B1;
		padding: 20px 10px;
		border-radius: 2px;
		margin: 0 auto;
		margin-bottom: 50px;
}
.col_list_comment li {
		padding: 7px 40px;
		border-bottom: 1px dotted #D4CAD9;
		position: relative;
}
.col_list_comment li::after {
		display: block;
		content: '';
		position: absolute;
		top: 1em;
		left: 1.2em;
		width: 6px;
		height: 6px;
		background-color: #729CBB; /*　色　*/
		border-radius: 100%;
}
/*　スマホ用 　*/
@media (max-width:960px) {
		.col_list_comment {
				width: 100%;
				border: none;
				padding: 10px;
				border-radius: none;
				margin: 0 auto;
				margin-bottom: 50px;
		}
		.col_list_comment li {
				padding: 15px;
				border-bottom: 1px dotted #D4CAD9;
				position: relative;
		}
		.col_list_comment li::after {
				display: block;
				content: '';
				position: absolute;
				top: 1.5em;
				left: .2em;
				width: 6px;
				height: 6px;
				background-color: #729CBB; /*　色　*/
				border-radius: 100%;
		}
}
/*　リストふきだしアイコン */
.col_mark_fukidashi li {
		padding-left: 25px;
		line-height: 1.6em;
		background: url('../image/common/icon-fukidashi.png') left 0px top 3px no-repeat;
		background-size: 22px auto;
}
/*  ページ内ショートカット用マーク */
.col_mark_shortcut {
		margin: 0 0 5px -20px;
}
.col_mark_shortcut li {
		background-image: url('../image/common/icon-under.png');
		background-position: left 7px center;
		background-repeat: no-repeat;
		padding-left: 25px;
		margin-left: 13px;
		display: -moz-inline-box;
		display: inline-block;
		*display: inline;
		*zoom: 1;
}
/* --------------------------------------------------
	見出し付きボックス
-------------------------------------------------- */
.col_boder-box {
		padding: 15px 25px 20px 25px;
		border: 4px solid #e6e6e6;
		margin-bottom: 30px;
}
.col_boder-box_title {
		background-image: url('../image/common/icon-boder.png');
		background-position: left center;
		padding: 10px 0 10px 13px;
		background-repeat: no-repeat;
		border-bottom: 1px #C0C0C0 dotted;
		font-size: 1.3em;
		font-weight: 500;
		margin-bottom: 15px;
		color: #464646;
}
.col_boder-box_txt {
		margin-left: 23px;
}
/*----------------------------------------------------
	テーブル１（2セル用）
----------------------------------------------------*/
normal table {
		width: 97.3%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
		border-collapse: collapse;
}
normal th {
		padding: 10px;
		border: 1px solid #ddd;
		border-bottom-color: #9C98B8;
}
normal td {
		padding: 10px;
		border: 1px solid #ddd;
		border-bottom-color: #eaeaea;
}
normal tr {
		background-color: #f9f9f9;
}
normal tr:nth-child(even) {
		background-color: #eaeaea;
}
normal th {
		background: #9C98B8; /*紺*/
		color: white;
		font-weight: normal;
}
.demo01 th {
		width: 20%;
		text-align: left;
}
@media (max-width:960px){
		.demo01 {
				margin: 0 0 30px 0;
		}
		.demo01 th {
				text-align: center;
				width: 97.5%;
				display: block;
				border-top: none;
		}
		.demo01 td {
				width: 97.5%;
				display: block;
				border-top: none;
				background-color: white;
		}
		.demo01 tr:first-child th {
				border-top: 1px solid #ddd;
		}
}
.demo01a th {
		width: 40%;
		text-align: left;
}
@media (max-width:960px){
		.demo01a {
				margin: 0 0 30px 0;
		}
		.demo01a th {
				text-align: center;
				width: 97.5%;
				display: block;
				border-top: none;
		}
		.demo01a td {
				width: 97.5%;
				display: block;
				border-top: none;
				background-color: white;
		}
		.demo01a tr:first-child th {
				border-top: 1px solid #ddd;
		}
}
/* --------------------------------------------------
	テーブル２
-------------------------------------------------- */
.col_tablearea {
		margin: 0 10px 10px;
}
.col_table_responsive {
		width: 100%;
		margin: 0 auto 10px;
		padding: 0;
		background-color: #F5F5F5;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		border: 1px #ddd solid;
		border-spacing: 0;
}
.col_table_responsive thead {
		background-color: #A39B96;
		color: #fff;
}
.col_table_responsive th {
		margin-bottom: 9px;
		padding: 9px 15px;
		border-left: 1px rgb(201, 201, 201) solid; /*薄グレー*/
		font-weight: normal;
}
.col_table_responsive th:first-child {
		border-left-width: 0;
}
.col_table_responsive tbody {
		vertical-align: top;
}
.col_table_responsive tbody td {
		border-left: 1px #ddd solid;
}
.col_table_responsive tbody td:first-child {
		border-left-width: 0;
}
/* モバイル用 */
@media (max-width:960px){
		.col_table_responsive {
				width: 100%;
		}
		.col_table_responsive tbody tr {
				display: block;
				padding-bottom: 12px;
		}
		.col_table_responsive tbody td {
				display: block;
				padding: 3px 0;
				width: 100%;
				border-left-width: 0;
		}
		.col_table_responsive tbody td:before {
				display: inline-block;
				vertical-align: middle;
				*vertical-align: auto;
				*zoom: 1;
				*display: inline;
				margin-right: 5px;
				color: #888;
				font-weight: normal;
		}
		.col_table_responsive tbody td:nth-of-type(2):before {
				content: "日程:";
		}
		.col_table_responsive tbody td:nth-of-type(3):before {
				content: "時間:";
		}
		.col_table_responsive tbody td:nth-of-type(4):before {
				content: "場所:";
		}
		.col_table_responsive tbody td:nth-of-type(5):before {
				content: "内容:";
		}
		.col_table_responsive tbody .title {
				margin: 0 -15px;
				padding-right: 15px;
				padding-left: 15px;
				margin-bottom: 9px;
				background-color: #9C98B8;
				color: #fff;
				text-align: center;
		}
		.col_tablearea01 th {
				display: none;
		}
		.col_tablearea01 tr {
				padding: 0 15px;
		}
		/* IE8対応 */
		.col_tablearea02 .col_table_responsive_pc {
				display: none;
		}
		.col_tablearea02 .col_table_responsive tr {
				display: block;
		}
		.col_tablearea02 .col_table_responsive thead {
				display: none;
		}
		.col_tablearea02 .col_table_responsive tbody tr {
				overflow: hidden;
		}
		.col_tablearea02 .col_table_responsive tbody tr:after {
				*zoom: 1;
		}
		.col_tablearea02 .col_table_responsive tbody tr:after:after {
				content: "\0020";
				display: block;
				height: 0;
				clear: both;
				overflow: hidden;
				visibility: hidden;
		}
		.col_tablearea02 .col_table_responsive tbody td {
				float: left;
		}
		.col_tablearea02 .col_table_responsive tbody td:before {
				display: inline-block;
				vertical-align: middle;
				*vertical-align: auto;
				*zoom: 1;
				*display: inline;
				content: attr(data-th) ":";
		}
		.col_tablearea02 .col_table_responsive tbody .col_table_responsive_inner {
				padding: 0 15px;
		}
		.col_tablearea02 .col_table_responsive tbody .title {
				margin: 0\9;
				padding-right: 0\9;
				padding-left: 0\9;
		}
		.col_tablearea02 .col_table_responsive tbody .title:before {
				content: none;
		}
}
/* PC用 */
@media (max-width:960px){
		.col_table_responsive_mobile {
				display: none;
		}
		.col_table_responsive th, .col_table_responsive td {
				display: table-cell;
		}
		.col_table_responsive td:before {
				display: none;
		}
		.col_table_responsive tr:nth-child(even) {
				background-color: #eaeaea;
		}
		.col_table_responsive th {
				padding: 7px 7px;
		}
		.col_table_responsive td {
				padding: 7px 7px;
		}
		.col_table_responsive td:before {
				display: none;
		}
		.col_table_responsive .date {
				width: 8em;
		}
		.col_table_responsive .contents {
				width: 150px;
		}
}
/*# sourceMappingURL=mogmog.css.map */
/* ==================================
           簡易的なテーブル
====================================*/
.col_table_simple *, .col_table_simple *:before, .col_table_simple *:after {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
}
.col_table_simple {
		width: 100%;
		border-collapse: collapse;
}
.col_table_simple th, .col_table_simple td {
		padding: 10px;
		border: 1px solid #dddddd;
}
.col_table_simple th {
		background: #f4f4f4;
		width: 17%;
		text-align: left;
}
.col_table_simple td {
		width: 40%;
		text-align: left;
}
.col_table_simple td:nth-child(odd) {
		width: 5%;
}
@media (max-width: 520px) {
		.col_table_simple {
				margin: 0;
		}
		.col_table_simple tr {
				display: block;
		}
		.col_table_simple th {
				display: block;
				width: 100%;
		}
		.col_table_simple td {
				display: list-item;
				list-style: none;
				width: 100%;
				margin-left: 1em;
				border: none;
				position: relative;
		}
}

/*----------------------------------------------------
  .department_table
----------------------------------------------------*/
section table {
		width: 100%;
}
section th, section td {
		padding: 10px;
}
section th {
		background: #9C98B8;
}
.department_table {
		width: 100%;
		border-collapse: collapse;
		border: 1px solid #ddd;
}
.department_table th {
		width: 13%;
		padding: 5px;
}
.department_table tbody td {
		border-left: 1px #C9C9C9 solid;
}
.department_table td {
		text-align: center;
		padding: 5px 0;
}
.department_table td:first-child {
		text-align: center;
}
/* 曜日の部分 */
.department_table th {
		width: 15%;
		color: white;
		background: #A39B96;
}
/* 色違いの部分 */
.department_table th.th02 {
		background: #A39B96;
}
/* 初診・再診・対象の部分 */
.department_table tr td.td_title {
		color: white;
		background: #A39B96;
}
/* 色違いの部分 */
.department_table tr td.td_title02 {
		color: white;
		background: #C1B9B4;
}
.department_table tr td.name {
		background: #EDEDED;
}
@media only screen and (max-width: 240px) {
		.department_table {
				width: auto;
				margin: 0;
		}
		.department_table thead {
				display: initial;
				float: left;
		}
		.department_table tbody {
				display: block;
				width: auto;
				overflow-x: scroll;
				white-space: nowrap;
				padding: 5px;
		}
		.department_table th {
				display: block;
				width: auto;
		}
		.department_table tbody tr {
				display: inline-block;
				margin: 0 -3px;
		}
		.department_table td {
				display: block;
				width: 100%;
				padding: 5px 10px;
				padding-left: -10px;
		}
}
@media (max-width:960px){
		.department_table {
				font-size: 0.8em;
		}
}
/*----------------------------------------------------
  .department_table02
----------------------------------------------------*/
table.department_table02 {
		width: 100%;
		border-collapse: collapse;
		border-spacing: 0;
		border: 1px solid #ddd;
		background: #fff;
}
table.department_table02 th, table.department_table02 td {
		padding: 10px;
		text-align: center;
		border: 1px solid #ddd;
}
table.department_table02 th {
		background: #F8F8F8;
}
table.department_table02 td.text {
		text-align: left;
		padding: 10px;
}
table.department_table02 tr:nth-child(odd) > th {
		background-color: #F3F3F3;
}
table.department_table02 tr:nth-child(odd) {
		background-color: #F8F8F8;
}
/* モバイル用 */
@media (max-width:960px) {
		table.department_table02 {
				width: 100%;
		}
}