@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%, #f9c 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;	
	}

/* ======== マージン余白設定 =========== */

/* 余白全方位 */
.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;
  }
/* flexbox設定（この中の要素が等幅に配置） */
	.flex-container .item{
	flex:1;
}
}

/* ========== タブ付き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 #cd5c5c;
    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: #cd5c5c;
    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;
	}

/* ====================================
アコーディオン
==================================== */
.accordion_01 {
	margin: 0 auto 2em auto;
	max-width: 90vw;
}
.toggle {
	display: none;
}
.option_01 {
	position: relative;
	margin-bottom: 1em;
}
.title_acco,
.content_acco {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.title_acco {
	border: solid 1px #ccc;
	border-radius: 3px;
	cursor: pointer;
	padding:0.5em 1em;
	display: block;
	color: #333;
	font-weight: bold;
}
.title_acco::after,
.title_acco::before {
	content: "";
	position: absolute;
	right: 1.25em;
	top: 0.75em;
	width: 2px;
	height: 0.75em;
	background-color: #999;
	transition: all 0.3s;
	
}
.title_acco::after {
	transform: rotate(90deg);
}
.content_acco {
	max-height: 0;
	overflow: hidden;
}
.content_acco p {
	margin: 0;
	padding: 0.5em 1em;
	font-size: 1em;
	text-align: justify;
}
.toggle:checked + .title_acco + .content_acco {
	max-height: 500px;
	transition: all 1.5s;
}
.toggle:checked + .title_acco::before {
	transform: rotate(90deg) !important;
}

/* ====================================
アコーディオン2
==================================== */
.details {
  line-height: 2;
  color: #7E4828;
  width: 100%;
  margin: 20px auto;
}
.details input[type=checkbox] {
  display: none;
}
.details__summary {
  position: relative;
  display: block;
  cursor: pointer;
  background: #FFF9F3;
  border: 1px solid #F9D6B2;
  margin: 20px 0 0;
  padding: 5px 40px 5px 16px;
}
.details__summary:first-child {
  margin-top: 0;
}
.details__summary::before {
  display: block;
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: calc(50% - 6px);
  right: 16px;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 6px solid #7E4828;
  transition: all 0.4s ease-out;
  transform-origin: 3px 6px;
  transform: rotate(90deg);
}
input[type=checkbox]:checked + .details__summary::before {
  transform: rotate(-90deg);
}
.details__content {
  overflow: hidden;
  transition: line-height 0.4s ease-out 0s, padding 0.4s ease-out 0s, opacity 0.6s 0.3s;
  line-height: 0;
  border: 1px solid #F9D6B2;
  border-top: none;
  opacity: 0;
  margin: 0;
  padding: 0 16px;
}
input[type=checkbox]:checked + .details__summary + .details__content {
  line-height: 2;
  opacity: 1;
  padding: 16px;
}


/* ====================================
アコーディオン元
==================================== */

#cont .accordion{
	margin:0 0 20px;
	border:1px solid #CDCDCD;
	border-radius:5px;
}
#cont .accordion .switch{
	margin:0;
	cursor: pointer;
	display: block;
}
#cont .accordion .switch p{
	margin: 10px;
}
#cont .accordion .switch .switch2{
	float:right;
	background:url(../images/acc_open.png) no-repeat left center;
	background-size:8px 7px;
	padding-left:15px;
}
#cont .accordion .switch.active .switch2{
	display:none;
}
#cont .accordion .switch.active:after{
	content:'閉じる';
	float:right;
	background:url(../images/acc_close.png) no-repeat left center;
	background-size:8px 7px;
	padding-left:15px;
}
#cont .accordion .contents{
	display:none;
	margin:10px 0 0;
	padding:10px;
	border-top:1px solid #ccc;
}

/* ====================================
タブ切り替え
==================================== */

.tab_container{
  padding-bottom: 1em;
  background-color: #fff;
  border:1px solid #f90;
  margin: 0 auto 20px auto;
 }
.tab_item {
  width: calc(100%/3);
  float: left;
  padding:15px 0;
  border-bottom: 3px solid #f90 ;
  background-color: #ececec;
  text-align: center;
  color: #f90 ;
  display: block;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  cursor: pointer;
  opacity: 0.75;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 1em 1em 0;
  clear: both;
  overflow: hidden;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content{
  display: block;
}
.tab_container input:checked + .tab_item {
  background-color: #f90 ;
  color: #fff;
}
.tab_content_description{
}
.c-txtsp{
}

/* ====================================
カードレイアウト（メディア用）
==================================== */
.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-template-rows: subgrid; 
}

.item {
  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(250px, 1fr));
  grid-template-rows: subgrid;
}

.item_2 {
  text-align: left;
}
.item_2 a{
	color: #333!important;
	text-decoration: none!important;
  	border-radius: 10px;
  	margin: 0;
  	padding: 10px;
	display: inline-block;
	background: #e6e6fa;
}
.item_2 a:hover{
	color: #333!important;
	text-decoration: none!important;
  	border-radius: 10px;
  	margin: 0;
  	padding: 10px;
	display: inline-block;
	background: #f5f5f5;
}
.item_2 img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.item_2 > p {
  margin: 0;
  padding: 0;
}

span.pdf{
	color:#fffafa;
	background: #D82625;
	margin: 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}


/* ====================================
ツールチップ
==================================== */
.tooltip {
  position: relative;
}

/* Tooltip box */
.tooltip:before {
  content: attr(data-tooltip); 
  position: absolute;
  width: 150px;
  background-color: #062B45;
  color: #fff;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  line-height: 1.2;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  font-size: 0.8em;
  visibility: hidden;
}

/* Tooltip arrow */
.tooltip:after {
  content: "";
  position: absolute;
  bottom: 75%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  opacity: 0;
  transition: opacity .6s;
  border-color: #062B45 transparent transparent transparent;
  visibility: hidden;
}

.tooltip:hover:before, .tooltip:hover:after {
  opacity: 0.8;
  visibility: visible;
}

/* ====================================
モーダルウィンドウ
==================================== */
/* ボタン（デザインはお好みで） */
.my_modal_btn{
    display: block;
    width: 150px;
    margin: 0 auto;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

/* チェックボックスを非表示 */
#my_modal1{
    display: none;
}
/* モーダル */
.my_modal_body1{    
    display: none;
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    display: none;
    background-color: #FFF;
    overflow-y: auto;
    /* スマホ用スクロール */
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    /* お好みで */
    width: 90%;
    max-height: 80%;
    max-width: 600px;
}

/* モーダル内ヘッダー */
.my_modal_header{
    padding: 15px 10px;
    background-color: #808080;
    color: #FFF;
    font-weight: bold;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: center;
}

/* クローズアイコン */
.my_modal_close{
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    cursor: pointer;
}
.my_modal_close_icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}
.my_modal_close_icon span::before,
.my_modal_close_icon span::after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84%;
    height: 16%;
    margin: -8% 0 0 -42%;
    background: #FFF;
}
.my_modal_close_icon span::before{
    transform: rotate(-45deg);
}
.my_modal_close_icon span::after{
    transform: rotate(45deg);
}

/* コンテンツ表示 */
.my_modal_content{
    padding: 5px 10px;
}

/* 背景を暗くする */
.my_modal_overlay{
    display: none;
    position: fixed;
    z-index: 90000;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: #111;
    opacity: 0.3;
    cursor: pointer;
}

/* チェック時オーバーレイとコンテンツを表示 */
#my_modal1:checked ~ .my_modal_body1, #my_modal1:checked ~ .my_modal_overlay{
    display: block;
}

/* ====================================
ループスライダー
==================================== */
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slider-container {
  display: flex;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}

.slide {
  width: 400px;
  margin-right: 20px;
}

.slide img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (hover: hover) {
  .slider-container:hover .slider-wrapper {
    animation-play-state: paused;
  }
}

/* ====================================
見守り用タブメニュー
==================================== */

.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;
  width: 100%;
  gap: 10px;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  grid-template-rows: subgrid;
  
}

.item_mi {
  width: 100%;
  text-align: left;
  position: relative;
}
.item_mi a{
	color: #333!important;
	text-decoration: none!important;
  	border-radius: 10px;
  	margin: 0;
  	padding: 10px;
	display: inline-block;
	background: #c7e8fa;
}
.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-number{
	color:#fff;
	font-size: 90%;
	background: #148fcb;
	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;
}

/* ====================================
一覧用リスト（見守り情報用）
==================================== */
p.list-mi-term{
	color: #24140e;
	font-size: 110%;
	font-weight: bold;
	margin: 0 0 10px -10px!important;
}

ul.list-mi{
	list-style: none;
	margin: 0 0 30px 0!important;
	padding: 0;
}
ul.list-mi li{
	line-height: 1.5;
	border-bottom: dashed 1px #ccc;
	padding-bottom: 0!important;
}
ul.list-mi li:first-child{
	border-top: dashed 1px #ccc;
}

ul.list-mi li:nth-child(even) {
    background: #f5f5f5;
}

ul.list-mi li a:link{
	display: block;
	color:#333!important;
	text-decoration: none!important;
	margin: 0;
	text-indent: -5.3em;
	padding: 7px 5px 7px 5.3em;
}
ul.list-mi li a:hover{
	color:#0059b2!important;
	background: #fff5ee;
	text-decoration: none!important;
	}
span.mi-number{
	color:#fff;
	font-size: 90%;
	background: #148fcb;
	margin: 0 10px 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}
span.mi-date{
	color:#666;
	font-size: 85%;
	margin-left: 10px;
}
span.mi-pdf{
	color:#fffafa;
	font-size: 80%;
	background: #eb8686;
	margin: 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}
span.mi-web{
	color:#f0ffff;
	font-size: 80%;
	background: #5f9ea0;
	margin: 0 5px;
	padding: 0 5px;
	border-radius: 3px;
}

/* ====================================
一覧用リスト（国・地方からの情報）
==================================== */
ul.list-ku{
	list-style: none;
	margin: 0 0 30px 0!important;
	padding: 0;
}
ul.list-ku li{
	line-height: 1.5;
	border-bottom: dashed 1px #ccc;
	padding-bottom: 0!important;
}

ul.list-ku li:nth-child(even) {
    background: #f5f5f5;
}

ul.list-ku li a:link{
	display: block;
	color:#333!important;
	text-decoration: none!important;
	margin: 0;
	text-indent: -2em;
	padding: 7px 5px 7px 2em;
}
ul.list-ku li a:hover{
	color:#0059b2!important;
	background: #fff5ee;
	text-decoration: none!important;
	}

ul.list-ku span.ico-ku{
	margin: 0 10px;
	}	
/* ====================================
アニメーションテスト
==================================== */
.grid-ani{
	display: grid; 
	gap:10px;
	grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
}
.grid-ani-left{
	position: relative;
	line-height:1.6;
	margin:0 auto;
	background:url("https://www.kokusen.go.jp/wakamono/g_data/kani_back.png") bottom 10px left 10px no-repeat;
}
p.ani-honbun{
	position: relative;
	z-index: 90;
	background: #fff;
}
p.ani-pic{
	width:100%;
	z-index:10;
}
img.ani-img{
	position: absolute;
	bottom: 20px;
	left:20px;
}
.grid-ani-right{
	width: 343px;
	max-width: 400px;
	margin:auto;
}
.grid-video_title{
	width:100%;
	color:#fff;
	background:#333;
	margin: 0  0 -10px 0;
	padding: 0;
	border-radius: 5px 5px 0 0;
}
.grid-video_title p{
	padding: 5px;
}

.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 4s;
  width: 200px;
}
.keyframe2{
  animation-name: anim_h;
}

@keyframes anim_h {
  0% {
    transform: translate(0px, 0);
    transform: rotate(10deg);
 	animation-duration: 1s;
  }
50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: translate(50px, 0); rotate(10deg);
  }
}


/* ====================================
WKO用画像切り替えアニメーション
==================================== */
.wko-container{
  width: 160px;
  height: 220px;
  position: relative;
  
}

.wko-image {
  width: 150px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  
  animation:image-switch-animation 10s infinite;
}
.src1 {
  background-image: url(https://www.kokusen.go.jp/wko/g_data/wko-202303_16_lf.png);
}
.src2 {
  background-image: url(https://www.kokusen.go.jp/wko/g_data/wko-202303_17_lf.png);
}
@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  40%{ opacity: 0;}
  100%{ opacity: 0;}
  }

.wko-image:nth-of-type(1) {
  animation-delay: 0s;
}
.wko-image:nth-of-type(2) {
  animation-delay: 5s;
}

/* ====================================
啓発アニメキャラ犬用アニメーション
==================================== */

.ani-dog{
  animation-timing-function: ease-out;
  animation-iteration-count: 5;
  animation-direction: normal;
  animation-duration: 5s;

}
.keyframe-ani-dog{
  animation-name: anim_dog;
}

@keyframes anim_dog {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
  70% {
    transform: rotate(-30deg);
  }
  85% {
    transform: translateX(570px);
  }
  100% {
    transform: translateX(570px) ;
  }
}




/* ====================================
サムネ付き書籍紹介テスト用
==================================== */
.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%;
    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;
  }
}

/* ====================================
cssフォーム
==================================== */
/*  セレクトボックス　*/
.c-form-select {
    position: relative;
}

.c-form-select:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(135deg);
    pointer-events: none;
}

.c-form-select select {
    height: 2.4em;
    width: 100%;
    padding: 0 8px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.c-form-select select::-ms-expand {
    display: none;
}

.c-form-select select:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

/* ====================================
日英切り替えリンク
==================================== */
.trans{
	margin: 1em 0 -20px 0;
}
.trans-active{
	font-weight:700;
	background:#dcdcdc;
	border-radius:5px;
	padding:2px 10px;
}
.trans-non-active a{
	color:#333;
	font-weight:700;
	border-bottom: 1px solid #666;
	text-decoration: none!important;
}
.trans-non-active a:hover{
	color: #0059B2;
}

.trans-link a{
	color:#333!important;
	font-weight: 700;
	background: #ccccff;
	padding: 2px 10px;
	border-radius: 25px;
	text-decoration:none!important;
}
.trans-link a:hover{
	color: #0059B2!important;
	background: #ccccff!important;
}
.trans-icon{
	width: 20px;
	background: url(http://10.210.88.32/images/icon_global_16.png) no-repeat 0 0;
}

/* ====================================
アイコン表示用
==================================== */

/* ---------- 丸クエスチョンマーク <span class="dli-question-circle"><span></span></span>　---------------- */
.dli-question-circle {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-question-circle > span {
  position: relative;
  width: 0.1em;
  height: 0.1504em;
  background: currentColor;
  border-radius: 0.05em 0 0.025em 0.025em;
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.dli-question-circle > span::before {
  content: '';
  position: absolute;
  left: 0.05em;
  bottom: calc(100% - 0.1em);
  width: 0.168em;
  height: 0.168em;
  border: 0.1em solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  box-sizing: content-box;
  transform: translateX(-50%) rotate(-45deg);
}

.dli-question-circle > span::after {
  content: '';
  position: absolute;
  top: calc(100% + 0.06667em);
  left: 0;
  width: inherit;
  height: 0.1em;
  background: currentColor;
  border-radius: 50%;
}

/* ---------- 丸インフォマーク <span class="dli-information-circle"><span></span></span>　---------------- */
.dli-information-circle {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-information-circle > span {
  width: 0.15em;
  height: 0.6em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.dli-information-circle > span::before, .dli-information-circle > span::after {
  content: '';
  display: block;
  width: inherit;
  background: currentColor;
}

.dli-information-circle > span::before {
  margin-bottom: 0.1em;
  height: 0.15em;
  border-radius: 50%;
}

.dli-information-circle > span::after {
  height: 0.35em;
  border-radius: 0.025em;
}


/* ---------- 右矢印　<span class="dli-arrow-right"></span> ---------------- */
.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.1em;
  background: currentColor;
}

.dli-arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

/* ---------- 右三角矢印　<span class="dli-caret-right"></span> ---------------- */
.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}

/* ---------- 右丸囲み三角矢印 <span class="dli-caret-circle-fill-right"></span>　---------------- */
.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-caret-circle-fill-right::before {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* ---------- ブラウザ丸アイコン <span class="browser icon"></span>　---------------- */
.browser.icon-b {
  color: #000;
  position: absolute;
  margin-left: 2px;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 1px currentColor;
}

.browser.icon-b:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: 11px;
  height: 11px;
  border-radius: 85% 15%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: solid 1px currentColor;
}

.browser.icon-b:after {
  content: '';
  position: absolute;
  top: 7px;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}

