@charset "euc-jp";

/* ====================================
基本設定開始
==================================== */
/* ========= フォント  ========= */
/* 太字 */
.fwb{
	font-weight: bold;
	}
/* ========= テキスト  ========= */		
/* アンダーライン（線） */
.text-underline{
	text-decoration: underline;
	}
.text-underline-double{
	text-decoration-line: underline;
	text-decoration-style: double;
	}
.text-underline-dotted{
	text-decoration-line: underline;
	text-decoration-style: dotted;
	text-decoration-thickness: 3px;
	}
.text-underline-dashed{
	text-decoration-line: underline;
	text-decoration-style: dashed;
	}
.text-underline-wavy{
	text-decoration-line: underline;
	text-decoration-style: wavy;
	}
	
	
/* 蛍光ペン（黄色） */
span.highlight-yellow{
	background:linear-gradient(transparent 60%, #ff6 60%);
	}
span.highlight-blue{
	background:linear-gradient(transparent 60%, #6ff 60%);
	}
span.highlight-pink{
	background:linear-gradient(transparent 60%, #ffd9df 60%);
	}

/* ======= 行 ========= */
/* 2行目以降1字下げ */
.ind-01{ 
	text-indent: -1em;
	padding-left: 1em;
	}
/* 2行目以降１.5字挙げ下げ */
.ind-015{ 
	text-indent: -1.5em;
	padding-left: 1.5em;
	}
/* 2行目以降2字下げ */
.ind-02{ 
	text-indent: -2em;
	padding-left: 2em;
	}
/* 2行目以降2.5字下げ */
.ind-025{ 
	text-indent: -2.5em;
	padding-left: 2.5em;
	}
/* 2行目以降3字下げ */
.ind-03{ 
	text-indent: -3em;
	padding-left: 3em;
	}

/* 両端揃え */
.txtJ{
	text-align: justify;
	}

/* 行間設定（デフォルトは1.3） */
.l-h-10{
	line-height: 1.0;
	}
.l-h-14{
	line-height: 1.4;
	}
.l-h-15{
	line-height: 1.5;
	}
.l-h-18{
	line-height: 1.8;
	}
.l-h-20{
	line-height: 2.0;
	}

/* ======= 段落設定 ========= */

/* div.honbun内p行頭1文字下げ両端揃え */
div.honbun > p{
	text-indent: 1em;
	text-align: justify;
	line-break: strict;	
	}
/* div.honbun内p行頭1文字下げ両端揃えマージンなし */
div.honbun-2{
	margin-bottom: 1em;
}
div.honbun-2 > p{
	text-indent: 1em;
	text-align: justify;
	line-break: strict;
	margin: 0!important;
	}


/* ======== マージン余白設定 =========== */

/* 余白全方位 */
.m-0{
	margin: 0;
	}
.m-05{
	margin: 5px;
	}
.m-10{
	margin: 10px;
	}
.m-15{
	margin: 15px;
	}
.m-20{
	margin: 20px;
	}
.m-25{
	margin: 25px;
	}
.m-30{
	margin: 30px;
	}
/* 横軸中央寄せ */
.m-c{
	margin: 0 auto;
}
/* 余白上方位 */		
.m-t-0{
	margin-top: 0;
	}
.m-t-05{
	margin-top: 5px;
	}
.m-t-10{
	margin-top: 10px;
	}
.m-t-15{
	margin-top: 15px;
	}
.m-t-20{
	margin-top: 20px;
	}
.m-t-25{
	margin-top: 25px;
	}
.m-t-30{
	margin-top: 30px;
	}
.m-t-35{
	margin-top: 35px;
	}
.m-t-40{
	margin-top: 40px;
	}
.m-t-45{
	margin-top: 45px;
	}
.m-t-50{
	margin-top: 50px;
	}


/* 余白右方位 */		
.m-r-0{
	margin-right: 0;
	}
.m-r-05{
	margin-right: 5px;
	}
.m-r-10{
	margin-right: 10px;
	}
.m-r-15{
	margin-right: 15px;
	}
.m-r-20{
	margin-right: 20px;
	}
.m-r-25{
	margin-right: 25px;
	}
.m-r-30{
	margin-right: 30px;
	}
.m-r-35{
	margin-right: 35px;
	}
.m-r-40{
	margin-right: 40px;
	}
.m-r-45{
	margin-right: 45px;
	}
.m-r-50{
	margin-right: 50px;
	}

/* 余白下方位 */		
.m-b-0{
	margin-bottom: 0;
	}
.m-b-05{
	margin-bottom: 5px;
	}
.m-b-10{
	margin-bottom: 10px;
	}
.m-b-15{
	margin-bottom: 15px;
	}
.m-b-20{
	margin-bottom: 20px;
	}
.m-b-25{
	margin-bottom: 25px;
	}
.m-b-30{
	margin-bottom: 30px;
	}
.m-b-35{
	margin-bottom: 35px;
	}
.m-b-40{
	margin-bottom: 40px;
	}
.m-b-45{
	margin-bottom: 45px;
	}
.m-b-50{
	margin-bottom: 50px;
	}
/* 余白左方位 */		
.m-l-0{
	margin-left: 0;
	}
.m-l-05{
	margin-left: 5px;
	}
.m-l-10{
	margin-left: 10px;
	}
.m-l-15{
	margin-left: 15px;
	}
.m-l-20{
	margin-left: 20px;
	}
.m-l-25{
	margin-left: 25px;
	}
.m-l-30{
	margin-left: 30px;
	}
.m-l-35{
	margin-left: 35px;
	}
.m-l-40{
	margin-left: 40px;
	}
.m-l-45{
	margin-left: 45px;
	}
.m-l-50{
	margin-left: 50px;
	}


/* ======== パディング余白設定 =========== */

/* 余白全方位 */
.p-0{
	padding: 0;
	}
.p-05{
	padding: 5px;
	}
.p-10{
	padding: 10px;
	}
.p-15{
	padding: 15px;
	}
.p-20{
	padding: 20px;
	}
.p-25{
	padding: 25px;
	}
.p-30{
	padding: 30px;
	}
/* 余白上方位 */		
.p-t-0{
	padding-top: 0;
	}
.p-t-05{
	padding-top: 5px;
	}
.p-t-10{
	padding-top: 10px;
	}
.p-t-15{
	padding-top: 15px;
	}
.p-t-20{
	padding-top: 20px;
	}
.p-t-25{
	padding-top: 25px;
	}
.p-t-30{
	padding-top: 30px;
	}
/* 余白右方位 */		
.p-r-0{
	padding-right: 0;
	}
.p-r-05{
	padding-right: 5px;
	}
.p-r-10{
	padding-right: 10px;
	}
.p-r-15{
	padding-right: 15px;
	}
.p-r-20{
	padding-right: 20px;
	}
.p-r-25{
	padding-right: 25px;
	}
.p-r-30{
	padding-right: 30px;
	}
/* 余白下方位 */		
.p-b-0{
	padding-bottom: 0;
	}
.p-b-05{
	padding-bottom: 5px;
	}
.p-b-10{
	padding-bottom: 10px;
	}
.p-b-15{
	padding-bottom: 15px;
	}
.p-b-20{
	padding-bottom: 20px;
	}
.p-b-25{
	padding-bottom: 25px;
	}
.p-b-30{
	padding-bottom: 30px;
	}
/* 余白左方位 */		
.p-l-0{
	padding-left: 0;
	}
.p-l-05{
	padding-left: 5px;
	}
.p-l-10{
	padding-left: 10px;
	}
.p-l-15{
	padding-left: 15px;
	}
.p-l-20{
	padding-left: 20px;
	}
.p-l-25{
	padding-left: 25px;
	}
.p-l-30{
	padding-left: 30px;
	}

/* ================ BOX設定 ================== */

/* 角丸枠、幅はw100で100%表示として数値を変更、マージンとパディングはm-xx p-xxで設定*/
div.waku-01_ra5{
	border: 2px solid #ccc;
	border-radius: 5px;
	text-align: justify;
	line-break: strict;
}
/* 背景色*/
.bg-red{
	background: #fff0f5;
}
.bg-orange{
	background: #fffaf0;
}
.bg-yellow{
	background: #ffffe0;
}
.bg-green{
	background: #f0fff0;
}
.bg-blue{
	background: #f0ffff;
}
.bg-gray{
	background: #f5f5f5;
	}
.bg-white{
	background: #ffffff;
}

/* ================ Box内のアイテムを横並びにする設定 ================== */

/* flexbox設定（この中の要素が横並びになる） */
@media ( min-width: 600px) {
  .flex-container {
    display: flex;
    justify-content:space-between;
  }
  }
/* flexbox設定（この中の要素が等幅に配置） */
	.flex-container .item{
	margin: 5px;
}

/* ================ 吹き出し左向き ================== */

/* 吹き出し本体 */
.balloon1{
  position: relative;
  padding: 30px 20px;
  border-radius: 10px;
  color: #333;
  background-color: #ffe4c4;
  margin-left: 110px;          /* 左に余白を設ける */
}
/* 画像 - 絶対配置で左上に配置 */
.balloon1 .icon{
  position: absolute;
  left: -110px;
  top: 0;
}
/* 三角アイコン */
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #ffe4c4;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
/* ================ 吹き出し右向き ================== */
.balloon2{
  position: relative;
  padding: 30px 20px;
  border-radius: 10px;
  color: #333;
  background-color: #ffe4c4;
  margin-right: 170px;          /* 右に余白を設ける */
}
/* 画像 - 絶対配置で右上に配置 */
.balloon2 .icon{
  position: absolute;
  right: -170px;
  top: 0;
}
/* 三角アイコン */
.balloon2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 20px;
  border-left: 15px solid #ffe4c4;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* ========== タブ付きBOX =========== */

/* ----- グレイ枠 --- */
.box-waku-title-gray {
    position: relative;
    margin: 3em auto;
    padding: 1em 1em 0.5em 1em;
    border: solid 3px #cccccc;
    border-radius: 0 5px 5px 5px;
}
.box-waku-title-gray .box-title-gray {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #cccccc;
    color: #333333;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box-waku-title-gray p {
    margin: 0; 
    padding: 0;
}

/* ----- 赤枠 --- */
.box-waku-title-red {
    position: relative;
    margin: 3em auto;
    padding: 1em 1em 0.5em 1em;
    border: solid 3px #f5b2ac;
    border-radius: 0 5px 5px 5px;
}
.box-waku-title-red .box-title-red {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #f5b2ac;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box-waku-title-red p {
    margin: 0; 
    padding: 0;
}

/* ======== タブメニュー =========== */

ul.tab-wrap {
  display: inline-flex;
  justify-content :space-between;
}
ul.tab-wrap li{
	text-align: center;
	flex-grow: 1;
}
	
	
	
/* ======== リスト設定 =========== */
/* リスト黒丸（親のみ指定可） */
ul.li_disc{
	list-style: disc;
	}
/* リスト白丸（親のみ指定可）  */
ul.li_circle{
	list-style-type: circle;
	}
/* リスト四角（親のみ指定可）  */
ul.li_square{
	list-style-type: square;
	}
/* リスト数字（親のみ指定可）  */
ul.li_decimal{
	list-style-type: decimal;
	}
	
/* リスト2行目以降1字下げ */
ul.li_ind-01 li{
	list-style-type: none;
	text-indent: -1em;
	padding-left: 1em;
	}
	
/* リスト2行目以降1.5字下げ */
ul.li_ind-015 li{
	list-style-type: none;
	text-indent: -1.5em;
	padding-left: 1.5em;
	}

/* リスト2行目以降2字下げ */
ul.li_ind-02 li{
	list-style-type: none;
	text-indent: -2em;
	padding-left: 2em;
	}
/* リスト2行目以降2.5字下げ */
ul.li_ind-025 li{
	list-style-type: none;
	text-indent: -2.5em;
	padding-left: 2.5em;
	}

/* リスト2行目以降3字下げ */
ul.li_ind-03 li{
	list-style-type: none;
	text-indent: -3em;
	padding-left: 3em;
	}

/* ====================================
カードレイアウト（メディア用）
==================================== */
.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.item-book {
  text-align: left;
}
.item a{
	color: #333!important;
	text-decoration: none!important;
  	border-radius: 10px;
  	margin: 0;
  	padding: 10px;
	display: block;
	background: #e6e6fa;
}
.item a:hover{
	color: #333!important;
	text-decoration: none!important;
  	border-radius: 10px;
  	margin: 0;
  	padding: 10px;
	display: block;
 /* opacity: .7; */
	background: #f5f5f5;
}
.item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.item > p {
  margin: 0;
  padding: 0;
}
.item > p.date {
  align-self: end;
  justify-self: end;
}
span.youtube{
	color:#fffafa;
	background: #D82625;
	margin-left: 5px;
	padding: 0 5px;
	border-radius: 3px;
}

/* ====================================
カードレイアウト（画像付き縦型用）
==================================== */
.grid_2 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
  grid-template-rows: subgrid;
}

.item_2 {
	color: #333!important;
	border: 2px solid #e6d0a8;
  	border-radius: 10px;
  	margin: 0!important;
  	padding: 0!important;
}
.item_2 div.room-type{
	font-weight:700;
	margin: 0;
	padding: 5px 10px;
	background: #e6d0a8;
	border-radius: 5px 5px 0 0;
}
.item_2 img{
  width: 100%;
  height: auto;
  margin: 0;
}

ul.room-cap{
  list-style: none;
  margin: 10px!important;
  padding: 0!important;
}
ul.room-cap li{
  line-height: 1.5;
  border-bottom: 1px dashed #f5deb3;
  margin: 0;
}
ul.room-cap li:last-child{
  border-bottom: none;
}
ul.room-cap li span{
	font-size:95%;
	font-weight: bold;
	text-align: center;
	background: #f5deb3;
	border-radius: 3px;
	margin: 0 1em 0 0;
	padding: 2px 10px;
}

.add-info{
	border-top:1px dashed #f5deb3;
	padding-top: 10px;
}

/*---  角丸背景付き項目用 ---*/
ul.room-cap li.ico-t-03{
  text-indent: -5.1em;
  padding: 5px 5px 5px 5.1em!important;
  }
 ul.room-cap li.ico-t-04{
  text-indent: -6em;
  padding: 5px 5px 5px 6em!important;
  }

/* ====================================
見守り用タブメニュー
==================================== */

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #f90;
  display: block;
  order: -1;
}
.tab-label {
  color: #24140e;
  background: #ececec;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  color: #24140e;
  background: #f90;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  border: 2px solid #f90;
  border-radius: 0 0 10px 10px;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/* ====================================
カードレイアウト（見守り情報用）
==================================== */
.grid_mi {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  grid-template-rows: subgrid;  
}

.item_mi{
	margin: 0;
	padding: 10px;
	background: #c7e8fa;
	border-radius: 10px;	
	text-align: left;
	position: relative;
	transition:all .2s;
}
.bg-kowaka{
	background: #c5e7c5!important;
}
.item_mi a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	color: #333!important;
	text-decoration: none!important;
	display: inline-block;
}
.item_mi a:hover{
	opacity: 0.7;
	text-decoration: none!important;
}

.item_mi img {
  width: 100px;
  height: 142px;
  float: left;
  margin-right: 10px;
}
.item_mi p {
  margin: 0;
  padding: 0;
}

span.ico-new-right{
	position:absolute;
	display:inline-block;
	top:0;
	right: 0;
	padding: 0 5px;
	height: 20px;
	line-height:20px; 
	font-size:13px;
	background: #D82625;
	color:#ffffff;
	border-radius: 0 5px 0 5px;
	font-weight:bold;
}	

span.ico-number{
	color:#fff;
	font-size: 90%;
	background: #0073A8;
	padding: 0 5px;
	border-radius: 3px;
}
span.ico-number-2{
	color:#fff;
	font-size: 100%;
	background: #008080;
	padding: 0 5px;
	border-radius: 3px;
}

span.ico-pdf{
	color:#fffafa;
	font-size: 85%;
	background: #D82625;
	margin: 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}
/*  要素をカード右下に置く　*/
.item_mi .ico-dir{
  position: absolute;
  right: 10px;
  bottom: 0;
 }
 
/*  カードタイトルが短い場合のスペース稼ぎ用
キャプション最後にspanで追加　*/
span.ico-sp{
	margin-right: 6em;
}
span.ico-sp_02{
	margin-right: 12em;
}

/*  縮刷ページへのリンクボタン　*/
.b_shukusatsu,
.b_shukusatsu-kowaka{
	width: 100%;
	font-size: 120%;
	font-weight: bold;
	text-align: center;
	margin: 30px 0 40px 0;
}
.btn_shukusatsu a:link,
.btn_shukusatsu a:visited{
	color: #333!important;
	text-decoration: none!important;
	background: #c7e8fa;
	border: 3px solid #0073A8;
	border-radius: 10px;
	padding: 10px 20px;
}
.btn_shukusatsu-kowaka a:link,
.btn_shukusatsu-kowaka a:visited{
	color: #333!important;
	text-decoration: none!important;
	background: #c5e7c5;
	border: 3px solid #008080;
	border-radius: 10px;
	padding: 10px 20px;
}

.btn_shukusatsu a:hover,
.btn_shukusatsu-kowaka a:hover{
	opacity: 0.7;
	text-decoration: none!important;
}

/* ====================================
カードレイアウト（見守り書庫用）
==================================== */

.item_shoko {
	margin: 0;
	background: #c7e8fa;
	border-radius: 10px;
	text-align: left;
	position: relative;
	transition:all .2s;
}
.item_shoko .mi_title{
	margin: 0 0 10px;
	padding: 10px 0;
	height: 20px;
	border-radius: 10px 10px 0 0;
}
.item_shoko .mi_title p{
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	text-align: center;
}
.item_shoko .bg-mi-title{
	background: #0073A8;
}
.item_shoko .bg-kowaka-title{
	background: #008080;
}

.item_shoko img{
  width: 100px;
  height: 142px;
  float: left;
  margin: 0 10px 10px 10px;
}
.fortop{
  margin: 0 10px!important;
}

.item_shoko p{
  margin: 10px;
  padding: 0 5px 5px;
}
.item_shoko .ico-dir{
	position: absolute;
	right: 10px;
	bottom: 0;
 }
 .item_shoko span.ico-download{
 	font-size: 110%;
	color:#fff;
	background: #c82c55;
}
 .item_shoko span.ico-download a{
	color:#fff!important;
	text-decoration: none!important;
	background: #c82c55;
	margin: 0;
	padding: 3px 8px;
	border-radius: 5px;
}
 .item_shoko span.ico-download a:hover{
	color:#fff!important;
	background: #c82c55!important;
	text-decoration: none!important;
	margin: 0;
	padding: 3px 8px;
}

/*  見守りトップ　リンクボタン用  */
.btn-sticky {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #fff;
  border-left: solid 6px #ff7c5c;/*左線*/
  color: #333!important;/*文字色*/
  text-decoration: none!important;
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:hover {
  background: #fff!important;
  color: #333!important;/*文字色*/
  text-decoration: none!important;
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

/*  見守りトップカード上向き吹き出し用  */

.balloon-top-mi {
  position: relative;
  display: inline-block;
  margin: 15px 0 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #333;
  background: #64c5fa;
  border-radius: 0 0 10px 10px;
}

.balloon-top-mi:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50px;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #64c5fa;
}
.balloon-top-kowaka {
  position: relative;
  display: inline-block;
  margin: 15px 0 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #333;
  background: #66cdaa;
  border-radius: 0 0 10px 10px;
}

.balloon-top-kowaka:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50px;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #66cdaa;
}


.balloon-top-mi p,
.balloon-top-kowaka p{
  margin: 0;
  padding: 0;
}


/*　見守り書庫横長リスト用　*/

p.item-shoko-term{
	color: #333;
	font-size: 110%;
	font-weight: 700;
	background:#f5b2ac;
	border-radius: 5px;
	margin: 10px 0 0!important;
	padding: 10px;
}

.book-flexbox-mi{
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
	position: relative;
}
.book-flexbox_thum-mi{
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #ccc;
} 

.book-flexbox-mi .ico-dir-mi{
	text-align: right;
	right: 0;
	bottom: 0;
 }
 .book-flexbox_cap-mi{
	width: 100%;
	max-height: 150px;
}
.book-flexbox-mi span.ico-download-mi{
	color:#fff;
	background: #c82c55;
}
.book-flexbox-mi span.ico-download-mi a{
	color:#fff!important;
	text-decoration: none!important;
	background: #c82c55;
	margin: 0 auto;
	padding: 5px 10px;
	border-radius: 5px;
}
.book-flexbox-mi span.ico-download-mi a:hover{
	background: #c82c55!important;
	text-decoration: none!important;
}
@media (min-width:640px ){
	.book-flexbox-mi {
    width: 100%;
    line-height: 1.5;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
	}
  .book-flexbox_thum-mi{
    margin: 0 0 10px;
    padding: 0 20px 0 0;
	border-right: 2px dotted #ccc;
	border-bottom: none;
  }
  .book-flexbox_cap-mi{
    margin: 0 10px 0 20px;
    padding: 0;
  }
  .book-flexbox-mi .ico-dir-mi{
	position: absolute;
	right: 10px;
	bottom: 0;
 }
	.book-flexbox_cap-mi span.ico-download-mi{
	}
	.book-flexbox_cap-mi span.ico-download-mi a{
	color:#fff!important;
	text-decoration: none!important;
	background: #c82c55;
	margin: 0;
	padding: 5px 10px;
	border-radius: 5px;
}
	.book-flexbox-mi span.ico-download-mi a:hover{
	background: #c82c55!important;
	text-decoration: none!important;
}
}


/* ====================================
一覧用リスト（見守り情報用）
==================================== */
ul.list-mi{
	list-style: none;
	margin: 0 0 30px 
	!important;
	padding: 0;
}
ul.list-mi li{
	color:#333!important;
	line-height: 1.5;
	border-bottom: dashed 1px #ccc;
	padding-bottom: 0!important;
}

ul.list-mi li:nth-child(even) {
    background: #f5f5f5;
}
ul.list-mi li a:link{
	display: block;
	color:#000!important;
	text-decoration: none!important;
	text-indent: -5.3em;
	margin: 0;
	padding: 7px 5px 7px 5.3em;
}
ul.list-mi li a:visited{
	color:#800080!important;
	text-decoration: none!important;
}
ul.list-mi li a:hover{
	color:#0059b2!important;
	background: #e6f3ff!important;
	text-decoration: none!important;
	}

ul.dot-orange{
	list-style: none;
	margin: 1.5em 1em!important;
	padding: 0;
}
ul.dot-orange li{
	text-indent: 1.5em;
	margin: 0;
	padding: 0;
	background: url(../../images/list3.png) no-repeat 5px 5px;
	background-size:6px 6px;
}

span.mi-number{
	color:#fff;
	font-size: 90%;
	background: #0073A8;
	margin: 0 10px 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}
span.mi-number-2{
	color:#fff;
	font-size: 100%;
	background: #008080;
	margin: 0 10px 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}
span.mi-date{
	color:#333;
	font-size: 85%;
	margin-left: 10px;
}
span.mi-pdf{
	color:#fff;
	font-size: 80%;
	background: #C82C55;
	margin: 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}
span.mi-new{
	color:#D82625;
	font-size: 85%;
	font-weight: 700;
	margin: 0 5px;
}


/* ============================================
一覧用リストのアコーディオン設定（見守り情報用）
=============================================== */
/*ベース*/
.toggle-list {
	display: none;
}
.Label {		/*タイトル*/
	display: block;
	color: #333;
	font-size: 110%;
	font-weight: 700;
	cursor: pointer;
	background:#f5b2ac;
	border-radius: 5px;
	margin: 0;
	padding: 10px 10px 10px 15px;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 8px;
	height: 8px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 40% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content-list {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content-list {		/*本文*/
	height: 0;
	margin:0;
	padding:0;
	overflow: hidden;
}
.toggle-list:checked + .Label + .content-list {	/*開閉時*/
	height: auto;
	padding:0 ;
	transition: all .3s;
}
.toggle-list:checked + .Label::before {
	transform: rotate(-45deg) !important;
}


/* CSSのみ */
.accordion-001 {
    max-width: auto;
    background-color: #fff;
}

.accordion-001:not([open]) {
    margin-bottom: 20px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: #f5b2ac;
    color: #333;
    font-size:1.2em;
    font-weight: 600;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
    color: #333;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    content: '';
    transition: transform .3s;
}

.accordion-001[open] summary::after {
    transform: rotate(225deg);
}

.accordion-001 div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] div {
    transform: none;
    opacity: 1;
}

/* CSSのみ2 */


/* ====================================
絞り込み検索（見守り情報用）
==================================== */
.search-box_label {
    font-weight: bold;
}
.is-hide {
    display: none;
}
.list {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.list_item {
    width: 250px;
    margin-bottom: 1em;
    margin-right: 1em;
    padding: 15px;
    background: #ddd;
}
.search-box__wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.search-box, .search-box2 {
    margin: 30px 1em 0 0;
}
.search-box input[type="checkbox"], .search-box input[type="radio"], .search-box2 input[type="checkbox"], .search-box2 input[type="radio"] {
    display: none;
}
.search-box input[type="checkbox"]:checked + label, .search-box input[type="radio"]:checked + label, .search-box2 input[type="checkbox"]:checked + label, .search-box2 input[type="radio"]:checked + label {
    background: #111;
    color: #fff;
}
.search-box label, .search-box2 label {
    padding: 8px 10px;
    background: #fff;
    border: 2px solid #111;
    border-radius: 100px;
    transition: all .2s;
}
.search-box label:hover, .search-box2 label:hover {
    background: #dfdfdf;
    cursor: pointer;
}

/* ====================================
サムネ付き書籍紹介テスト用
==================================== */
.book-flexbox{
    width: 100%;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.book-flexbox_thum{
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #ccc;
} 
.book-flexbox_cap{
}
@media (min-width : 600px ){
	.book-flexbox {
    width: 100%;
    line-height: 1.5;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
	}
  .book-flexbox_thum{
    margin: 0 20px 0 0;
    padding: 0 20px 0 0;
	border-right: 2px dotted #ccc;
	border-bottom: none;
  }
  .book-flexbox_cap_mi{
    margin: 0 20px 0 0;
    padding: 0 20px 0 0;
	border-right: 2px dotted #ccc;
	border-bottom: none;
  }
}



