
@charset "utf-8";
/* CSS Document */

/*******
色見本
メニュー背景、ヘッダーライン
#0F2A47

グレー
#d5d6d8

ボタン
#52C9AE
hover #4ab59d
白抜きhover #eaf9f5

グレーボタン
#c0c1c2
hover #aaabad
白抜きhover #eaebec

文字赤
#ff0000

テーブル背景
#f3f8fe

*******/


/****リセット****/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/****共通設定****/
body {
	font-size: 14px;
	color: #333;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.5;
    background-color: #fff;
}

header{width: 98%;
    height: 35px;
    background: #FFFFFF;
    padding: 5px 1%;
    border-bottom: 2px solid #0F2A47;
}

.wrapper{display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main{width: 100%;
    min-width: 900px;
    margin: 0 auto;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:nowrap;
}

/****ログイン****/
.login{width:500px;
background: #F9F9F9;
margin: 8em auto;
padding: 2em;
    text-align: center;
    border-radius: 10px;
}

.login h2{font-size: 18px !important;
font-weight: bold;
    margin-bottom: 1em;
	border: none;
}

.login h2:after{border: none;
}

.login_label{background:#fff;
padding: 1em;
border-radius: 5px;
display: block;
border: 1px solid #52C9AE;
    width: 20em;
    margin: 0 auto 1em auto;
    text-align: left;
}

.login_label:hover{background:#eaf9f5;
color: #52C9AE;
border: 1px solid #52C9AE;}


.login input[type="text"]{
border: 1px solid #c5cacc !important;
    padding:1em !important;
    border-radius: 5px !important;
    width: 22em !important;
    margin-bottom: 1em !important;
}


.login input[type="password"]{
    border: 1px solid #c5cacc;
     padding: 1em !important;
    border-radius: 5px !important;
    width: 22em !important;
    margin-bottom: 1em !important;
}

.login input[type="tel"]{
    border: 1px solid #c5cacc;
     padding: 1em !important;
    border-radius: 5px !important;
    width: 22em !important;
    margin-bottom: 1em !important;
}

.login_p{font-size: 10px;
text-align: left;
text-indent: -1em;
color: #FF0000;
margin: 0 5em;}

.login_p2{font-size: 12px;
text-align: left;
margin: 0 3em 1em 3em;}


.login_button {
  margin: 2em auto;
  width: 23em;
}

.login_button .button {
  background: #52C9AE;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
    font-size: 18px;
}

.login_button .button:hover {
  background: #4ab59d;
}

.flash_msg {
    width: 100%;
    position: absolute;
    margin: 30px auto;
    text-align: center;
}

.icon{font-size: 1.5em;
	display: inline-block;
	padding: 0.5em;
	vertical-align: middle;
}

/**左メニュー**/
.main_left{width: 17%;
    min-width: 250px;
    max-width: 300px;
   display: inline-block;
    vertical-align: top;
    background:#0F2A47;
	    padding:0;
    	min-height:100vh;
	box-sizing: border-box;
}


/**内容**/
.main_right{display: inline-block;
    width: 81.5%;
    vertical-align: top;
    margin-left: 1%;
    margin-bottom: 2em;
}

/**パンくずリスト**/
.breadcrumb{
    padding: 0.2em 0.5em;
    background: #FFFFFF;
    font-size: 12px;
    border-bottom: 1px solid #d5d6d8;
}

.right_box{
    padding: 0em 0.5em;
    background: #FFFFFF;
}

.main_box{
    margin-top: 1em;
    padding: 2% 1%;
    background: #FFFFFF;
}

footer{width: 98%;
    padding: 8px 1%;
    bottom: 0;
    background-color: #d5d6d8;
    color: #00293c;
    font-size: 12px;
    margin-top: auto;
    text-align: center;
}

/**文字**/
a {
	color:#52C9AE;
	text-decoration:underline;
}
a:hover {
	color:#4ab59d;
}

.red{color: #ff0000;
}

.grey{color: #c0c1c2;
}

.bold{font-weight: bold;}

.required{color: #FF0000;
font-size: 12px;
display: inline-block;
margin-left: 0.3em;
}


/**ヘッダー**/
.header_left{width: 20%;
    margin: 0;
    padding: 0;
    float: left;
}

.header_right{width: 80%;
text-align: right;
       margin: 0.6em 0 0 0;
    padding: 0;
    float: right;
    font-size: 12px;
}


/**見出し**/
h1{margin: 0;
   padding: 0;
}

h1 img{height: 35px;
}

h2{border-bottom: 3px solid #d5d6d8;
position: relative;
font-size: 22px;
font-weight: bold;
margin: 0.5em 0;
}

h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #348CED;
  bottom: -3px;
  width: 10%;
}

h3{border-left: 5px solid #348CED;
padding-left: 0.3em;
font-size: 18px;
font-weight: bold;
margin: 0.5em 0;
}

h4{background: #c0c1c2;
padding: 0.2em 0.5em;
margin: 0.5em 0;
font-size: 16px;
}

h5{font-size: 14px;
    color: #000;
    font-weight: bold;
}

.attention{font-size: 11px;
    color: #ff0000;
    display: inline;
}

/**右側にボタンを配置する**/
.h3_left{display: inline-block;
width: 50%;
}


/**ボタン大**/
.btn1{display: inline-block;
    text-decoration: none;
    background: #52c9ae;
    color: #fff;
    border-radius: 25px;
    padding: 0.5em 2em;
    border: 1px solid #52c9ae;
    margin: 0.2em;
    text-align: center;
}

.btn1:hover{background:#4ab59d;
color: #fff;}

.btn2{display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #52c9ae;
    border-radius: 25px;
    padding: 0.5em 2em;
    border: 1px solid #52c9ae;
    margin: 0.2em;
    text-align: center;
}

.btn2:hover{background:#eaf9f5;
color: #52c9ae;}

.btn3{display: inline-block;
    text-decoration: none;
    background: #c0c1c2;
    color: #fff;
    border-radius: 25px;
    padding: 0.5em 2em;
    border: 1px solid #c0c1c2;
    margin: 0.2em;
    text-align: center;
}

.btn3:hover{background:#aaabad;
color: #fff;}

.btn4{display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #c0c1c2;
    border-radius: 25px;
    padding: 0.5em 2em;
    border: 1px solid #c0c1c2;
    margin: 0.2em;
    text-align: center;
}

.btn4:hover{background:#eaebec;
color: #c0c1c2;}

/**ボタン小**/
.btns1{display: inline-block;
    text-decoration: none;
    background: #52C9AE;
    color: #fff;
    border-radius: 25px;
    padding: 0.1em 1em;
    border: 1px solid #52C9AE;
    margin: 0.1em;
    text-align: center;
}

.btns1:hover{background:#4ab59d;
color: #fff;}

.btns1 img{width: 17px;
vertical-align: text-top;
}

.btns2{display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #52C9AE;
    border-radius: 25px;
   padding: 0.1em 1em;
    border: 1px solid #52C9AE;
    margin: 0.1em;
    text-align: center;
}

.btns2:hover{background:#eaf9f5;
 color: #52C9AE;}


.btns3{display: inline-block;
    text-decoration: none;
    background: #c0c1c2;
    color: #fff;
    border-radius: 25px;
    padding: 0.1em 1em;
    border: 1px solid #c0c1c2;
    margin: 0.1em;
    text-align: center;
}

.btns3:hover{background:#979a9c;
color: #fff;}


.btns4{display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #c0c1c2;
    border-radius: 25px;
    padding: 0.1em 1em;
    border: 1px solid #c0c1c2;
    margin: 0.1em;
    text-align: center;
}

.btns4:hover{background:#eaebec;
color: #c0c1c2;}

/**見出し横並び**/
.btn_right{display: inline-block;
text-align: right;
width: 48%;}

/**幅**/
.em1{width: 1em;}
.em2{width: 2em;}
.em3{width: 3em;}
.em4{width: 4em;}
.em5{width: 5em;}
.em6{width: 6em;}
.em7{width: 7em;}
.em8{width: 8em;}
.em9{width: 9em;}
.em10{width: 10em;}
.em11{width: 11em;}
.em12{width: 12em;}
.em13{width: 13em;}
.em14{width: 14em;}
.em15{width: 15em;}
.em16{width: 16em;}

.w5{width: 5%;}
.w10{width: 10%;}
.w12{width: 12%;}
.w15{width: 15%;}
.w20{width: 20%;}
.w25{width: 25%;}
.w30{width: 30%;}
.w35{width: 35%;}
.w40{width: 40%;}
.w50{width: 50%;}
.w60{width: 60%;}
.w70{width: 70%;}
.w80{width: 80%;}
.w90{width: 90%;}
.w100{width: 100%;}



/**フォーム**/
input[type="text"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
}

input[type="tel"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
}

input[type="number"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
}

input[type="email"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
}

input[type="password"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
}

input[type="date"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
     font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

input[type="month"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
     font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

input[type="time"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
     font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

input[type="url"]{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  margin:0.2em;
     font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}


select{ padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin:0.2em;
}

textarea{padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5em;
  border: 0;
  border: solid 1px #adb0b2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin:0.2em;
    font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
display: block;
}

input[type=radio]{margin: 0;
    padding: 0;
   accent-color:#52C9AE;
}

input[type=checkbox]{margin: 0;
    padding: 0;
   accent-color:#52C9AE;
}

.input_label{background:#fff;
padding: 0.3em 0.8em;
border-radius: 5px;
margin: 0.2em;
display: inline-block;
border: 1px solid #52C9AE;
}

.input_label:hover{background:#eaf9f5;
color: #52C9AE;
border: 1px solid #52C9AE;}

.checked{background:#eaf9f5;
color: #52C9AE;
border: 1px solid #52C9AE;}

/**テーブル**/
table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #ddd;
	background:#fff;
}

th {
	padding:0.3em;
	text-align:center;
	vertical-align:middle;
	border:1px solid #ddd;
	background:#eee;
}

td {
text-align: center;
    vertical-align:middle;
	padding:0.3em;
	border:1px solid #ddd;
}

.td_bg{background: #f3f8fe;
}

.bg_gray{background: #aaabad;}

/**文字寄せ**/
.left_middle{text-align: left;
vertical-align: middle;
}

.left_top{text-align: left;
vertical-align: top;
}

.center_middle{text-align: center;
vertical-align: middle;
}

.center_top{text-align: center;
vertical-align: top;
}

.right_middle{text-align: right;
vertical-align: middle;
}

/**モーダル**/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}

.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}

/**メニュー**/
.menu {
	max-width: 300px;
	margin: 0 auto;
	padding: 0;
    height: 100%;
    min-height:100vh;
	background-color:#0F2A47;
	box-sizing: border-box;
    font-size: 12px;
}

.menu a {
	display: block;
	padding: 8px;
	text-decoration: none;
	color: #fff;
	line-height: 1;
}

.menu label {
	display: block;
    position: relative;
	margin: 0;
	padding: 12px;
	line-height: 1;
	color: #ffffff;
	background: #0F2A47;
    border-bottom: 1px solid #0b1d32;
	/*cursor: pointer;*/
}

/*.menu label::before {
	position: absolute;
	content:url("../images/expand_more.png");
	color: #ffffff;
	right: 0.5em;
	top: 15%;
}*/

.menu input {
	display: none;
}

.menu ul {
	margin: 0;
	padding: 0;
	background: #0b1d32;
	list-style: none;
}

.menu li {
	/*overflow-y: hidden;
	max-height: 0;
	transition: all 0.5s;*/
    padding-left: 1em;
}

.menu_1{
	display: block;
	margin: 0 0 2px 0;
	padding: 12px;
	line-height: 1;
	color: #ffffff;
	background: #0F2A47;
    text-decoration: none;
}

/*.menu label:hover{background: #273f59;
    font-weight: bold;
}*/

.menu_1:hover{background: #273f59;
    font-weight: bold;
}

.menu li:hover{font-weight: bold;
    background: #3f556c;
}

.menu .on{font-weight:bold;
    background: #3f556c;
}

.menu_img{width: 17px;
vertical-align: text-top;
}

.menu_img_child{
    vertical-align:-8px;
}

.main_left .cp_sidebar_2ndnav {
    display:none;
}

.main_left div.control .cp_sidebar_2ndnav {
    display:block;
}

.main_left div.control .open_submenu {
    background-color: #3f556c;
}

.main_left div.control .cp_sidebar_2ndnav {
    background-color: #0b1d32;
}

.main_left div .open_submenu:hover {
    background-color: #3f556c;
}

/*リストが増えたらULごとに追加してください*/
#menu_bar1:checked ~ #link1 li,
#menu_bar2:checked ~ #link2 li,
#menu_bar3:checked ~ #link3 li,
#menu_bar4:checked ~ #link4 li,
#menu_bar5:checked ~ #link5 li,
#menu_bar6:checked ~ #link6 li{
	max-height: 40px;
	opacity: 1;
}

.top_a {
	display: block;
	padding: 0px !important;
	text-decoration: none;
	color: #fff ;
	line-height: 0 !important;
}

.top_label:hover{background: #3f556c;
}


/**summary**/
summary {
  cursor: pointer;
    list-style-type: none;
    text-align: center;
    padding: 0.5%;
    border: 1px solid #52C9AE;
    border-radius: 5px;
    color: #52C9AE;
}

summary:hover{ background: #eaf9f5;
}

details[open] > summary:first-of-type {
    list-style-type: disclosure-open !important;
}

details > summary:first-of-type {
    display: list-item;
    counter-increment: list-item 0;
    list-style: inside disclosure-closed !important;
}

details{margin-bottom: 1.5em;
}

.details_inner{
    margin-top: 0.5em;
}


/**ページャー**/

.pager{margin-top: 2em;
}

.pager .pagination {
  text-align: center;
}

.pager .pagination li {
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#52C9AE;
  width: 40px;
  height:40px;
  text-align: center;
  position: relative;
  border-radius: 10px;
}

.pager .pagination li.pre,
.pager .pagination li.next{
  display: inline-block;
  width: 80px;
  height: 40px;
  text-align: center;
}

/***ページャー（新）***/
.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover{
  color: #fff;
  background: #4ab59d;
  border-radius: 10px;
}

.pager .pagination li a.active{
  color: #52C9AE;
  background: #eaf9f5;
  border-radius: 10px;
border: 1px solid #52C9AE;
}

/***ページャー（旧）***/
nav.cp_navi *, nav.cp_navi *:after, nav.cp_navi *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

nav.cp_navi a {
	text-decoration: none;
}

nav.cp_navi {
	margin: 1.5em 0;
	text-align: center;
}

.cp_navi .cp_pagination {
	display: inline-block;
	margin-top: 2em;
	padding: 0 0.5em;
}

.cp_navi .cp_pagenum {
	font-size: 1em;
	line-height: 40px;
	display: block;
	float: left;
	transition: 400ms ease;
	letter-spacing: 0.1em;
	color: #0078ba;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: auto .5em;
}

.cp_navi .cp_pagenum:hover,
.cp_navi .cp_pagenum.current {
	font-weight: bold;
	color: #ffffff;
	background-color: #0078ba;
	border-radius: 50%;
}

.cp_navi .cp_pagenum.prev:hover,
.cp_navi .cp_pagenum.next:hover {
	color: #0078ba;
	background-color: transparent;
	border-radius: 50%;
}

.cp_navi .cp_pagenum2 {
	font-size: 18px;
	line-height: 40px;
	display: block;
	float: left;
	transition: 400ms ease;
	letter-spacing: 0.1em;
	color:#0078ba;
	margin: auto .5em;
}

/**画面説明**/
.info_icon{width:20px;
    vertical-align: text-top;
    padding-right: 0.2em;
}

/**トップサマリ(3カラム)**/
.threeCol {
	overflow:hidden;
	margin-bottom:2em;
}
.threeColInner {
	overflow:hidden;
	margin-right:-3%;
}
.threeColInnerbox {
	width:29%;
	float:left;
	margin-right:2%;
    color: #fff;
    padding: 1%;
}
.threeColInnerbox:nth-child(3n+1) {
	clear:both;
}

.box1{background: #348CED;
    background-image: url("../images/graph.png");
    background-repeat: no-repeat;
    background-position:top 0.3em right 1em;
    background-size: 50px;
}

.box2{background: #52C9AE;
    background-image: url("../images/person2.png");
    background-repeat: no-repeat;
    background-position:top 0.3em right 1em;
    background-size: 50px;
}

.box3{background: #f16272;
    background-image: url("../images/send.png");
    background-repeat: no-repeat;
    background-position:top 0.3em right 1em;
    background-size: 50px;
}

.top_summarytitle{
    padding-left: 1%;
    padding-top: 2%;
    font-size: 16px;
}

.top_summarytext{padding-left: 1%;
    padding-top: 3%;
font-size: 30px;
}

.top_summaryhr{
border-bottom: 1px solid #FFF;
padding: 10px 0;
}

.top_summary_a{
    margin: 0 auto;
    padding-top: 1em;
    text-align: center;
}

.top_summary_a a{color:#FFF;
    display: inline-block;
}

/**タブ**/

.tab{display: flex;
    flex-wrap: wrap;}

.tab_label {
    flex: 1 1;
    order: -1;
    min-width: 85px;
    padding: .7em 1em .5em;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background-color: #e9f0f6;
    color: #535353;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

.tab_label:hover {
    opacity: .8;
}


.tab > div {
    display: none;
    width: 100%;
    padding: 0.5em 0em;
}

.tab_label:has(:checked) {
    background-color: #fff;
    border-color: #348CED #f0f0f0 #fff;
    border-style: solid;
    border-width: 4px 1px 1px;
    border-radius: 5px 5px 0 0;
}

.tab_label:has(:checked) + div {
    display: block;
}

/**別窓用**/
.main_2{width:80%;
margin: 0 auto;
}

/**サブメニュー**/
.sub_navi {
	background-color: #fff;
	border: 1px solid #0b1d32;
	border-radius: 5px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	color: #0b1d32;
	display: block;
	margin: 0.5em auto 1em auto;
	overflow: hidden;
	width: 100%;
    font-size: 12px;
}

.sub_navi ul {
	margin: 0;
	padding: 0;
}

.sub_navi ul li {
	display: table-cell;
	list-style-type: none;
	margin:0 !important;
	-webkit-transition: all 0.2s;
	        transition: all 0.2s;
}
.sub_navi > ul > li > a > .caret {
	border-top: 4px solid #aaaaaa;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: '';
	display: inline-block;
	height: 0;
	width: 0;
	vertical-align: middle;
	-webkit-transition: color 0.1s linear;
	        transition: color 0.1s linear;
}
.sub_navi > ul > li > a {
	color: #0b1d32;
	display: block;
	line-height: 30px;
	padding: 0 15px;
	text-decoration: none;
	border-right:1px solid #0b1d32;
	margin:0 !important;
}
.sub_navi > ul > li:hover {
	background-color: #3f556c;
}
.sub_navi > ul > li:hover > a {
	color: #FFFFFF;
}
.sub_navi > ul > li:hover > a > .caret {
	border-top-color: rgb( 255, 255, 255 );
}
.sub_navi > ul > li > div {
	background-color: #0F2A47;
	opacity:0.8;
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 165px;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	       transition: opacity 0.2s;
}
.sub_navi > ul > li:hover > div {
	display: block;
	opacity: 1;
	visibility: visible;
}
.sub_navi > ul > li > div ul > li {
	display: block;
}
.sub_navi > ul > li > div ul > li > a {
	color: #ffffff;
	display: block;
	padding: 12px 24px;
	text-decoration: none;
}
.sub_navi > ul > li > div ul > li:hover > a {
	opacity:0.6;
}

.now{background:#3f556c;
color:#FFF !important;
}

/**並び替えリスト**/
.sort{
padding: 0.3em 0.8em;
margin: 0.2em;
display: inline-block;
border-left: 3px solid #52C9AE;
background: #f0f0f0;
cursor: grab;
width: 8em;
}

.sort:hover{cursor: grabbing;}

.sort2{
padding: 0.3em 0.8em;
margin: 0.2em;
display: inline-block;
border-left: 3px solid #d5d6d8;
background: #f0f0f0;
cursor: grab;
width: 8em;
}

.sort2:hover{cursor: grabbing;}

/**カレンダー**/
.calendar td{height: 40px;
}

.cal{width: calc(100% / 7);
}

.blue{color: #0000FF;
}

.bg_red{background: #ffe6ed;
}

.bg_blue{background: #B3D7F8;
}

.opacity{opacity: 0.4;
}

.access{text-align: right;
    border-top: 1px dotted #ddd;
    margin-top: 0.2em;
}

/**選択で表示**/
.indent{display:none;
    margin-top: 0.3em;
}

/**通報**/
.notice{display:inline-block;
    padding: 0.2em;
    font-weight: bold;
}

.notice2{display:inline-block;
    padding: 0.5em 2em;
    font-weight: bold;
    font-size: 16px;
}

.notice3{display:inline-block;
     padding: 0.5em 2em;
    font-weight: bold;
    font-size: 16px;
}

/**ステップ**/
.cp_stepflow07 {
	font-size: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 1em 0;
	padding: 0;
    font-size: 12px;
}
.cp_stepflow07 > li {
	position: relative;
	display: block;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	text-overflow: ellipsis;
	color: #b0bec5;
	 -ms-flex: 1;
	-moz-flex: 1;
	-webkit-box-flex: 1;
	     flex: 1;
}
.cp_stepflow07 > li .bubble::after,
.cp_stepflow07 > li .bubble::before {
	position: absolute;
	top: 0px;
	right: 50%;
	left: 50%;
	display: block;
	width: 90%;
	height: 8px;
	content: '';
	transform: translateX(-50%);
	background-color: #b0bec5;
}
.cp_stepflow07 > li .bubble + span {
	display: block;
	margin-top: 1em;
}
.cp_stepflow07 > li.completed,
.cp_stepflow07 > li.completed .bubble {
	color: #999;
}
.cp_stepflow07 > li.completed .bubble,
.cp_stepflow07 > li.completed .bubble::after,
.cp_stepflow07 > li.completed .bubble::before {
	background-color: #999;
}
.cp_stepflow07 > li.active,
.cp_stepflow07 > li.active .bubble {
	font-weight: bold;
	color: #348CED;
}
.cp_stepflow07 > li.active .bubble,
.cp_stepflow07 > li.active .bubble::after,
.cp_stepflow07 > li.active .bubble::before {
	background-color: #348CED;
}

/**エラー画面**/

.error{width:500px;
background:#fff;
margin: 8em auto;
padding: 2em;
    text-align: center;
}

.error h2{font-size: 18px !important;
font-weight: bold;
    margin-bottom: 1em;
	border: none;
    color: #FF0000;
}

.error h2:after{border: none;
}


.error_p{font-size: 12px;
margin: 0 0em 3em 0em;
    color: #FF0000;
}

/* .flash-error {
	color: red;
}
.validation-error {
	color: red;
} */

.inline-form {
    display: inline;
}

.inline-form a {
    display: inline-block;
    margin-left: 10px;
    /* 必要に応じて調整 */
}

.flash {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    display: block;
}

.flash-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.flash-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.validation-error {
    position: relative;
    color: #ff0000;
    display: block;
}

.validation-error-input {
    border-color: #dc3545;
    background-color: #f8d7da;
}

/*** アクセス推移 ***/

nav.access_graph *,
nav.access_graph *:after,
nav.access_graph *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

nav.access_graph {
	margin: 1.5em 0;
	text-align: center;
}

.access_graph .cp_pagination {
	display: inline-block;
	margin-top: 2em;
	padding: 0 0.5em;
}

.access_graph .page {
	font-size: 1em;
	letter-spacing: 0.1em;
	margin: auto .5em;
}

.access_graph td.title span {
	font-size: 18px;
	letter-spacing: 0.1em;
	color: #3C9;
}

.access_graph a {
	padding: 3px 5px;
	color: #fff;
	font-weight: bold;
	border: 2px solid #3ebf96;
	border-radius: 5px;
	text-decoration: none;
	background: #3ebf96;
}

.access_graph a.prev {
	float: left;
}

.access_graph a.next {
	float: right;
}

.access_graph a.newest {
	float: right;
}

.access_graph table {
	margin-bottom: 0px;
	border: none;
}

.access_graph td {
	border: none;
}

.access_graph td.prev {
	width: 160px;
}

.access_graph td.next {
	width: 150px;
}

.access_table table {
	width: 1200px;
}

input[type="button"],
input[type="submit"] {
	padding: 3px 10px;
	background: #3ebf96;
	color: #FFFFFF;
	border: none;
	border-radius: 5px;
	font-size: 12px;
	letter-spacing: 0.1em;
	cursor: pointer;
	margin: 2px 5px;
}

input[type="submit"]:hover,
input[type="button"]:hover {
	opacity: 0.8;
}

/******** サムネイル ********/
img.contents_thumbnail {
	width: 200px;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position: fixed;
	bottom: 15px;
	right: 15px;
}

.totop a {
	display: block;
	text-decoration: none;
}

.totop img {
	background: #666;
}

.totop img:hover {
	background: #555;
}

div.error {
    width: 500px;
    background: #fff;
    margin: 8em auto;
    padding: 2em;
    text-align: center;
}

.error > img {
    width: 50px;
}

.error > h2 {
    font-size: 18px !important;
    font-weight: bold;
    margin-bottom: 1em;
    border: none;
    color: #FF0000;
    text-align: center;
}
.error > h2::after { content: none; }

div.error_p {
    font-size: 12px;
    margin: 0 0em 3em 0em;
    color: #FF0000;
}