@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* =Basic HTML
-------------------------------------------------------------- */

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 16px;
	line-height: 30px;
}


a:link,
a:visited {
	text-decoration: none;
}
a:hover {
	color: red;
	text-decoration: none;
	transition: .3s;
}
a:active {
	text-decoration: none;
}
hr {
	background: #ccc;
	border: none;
	height: 1px;
}
b, dt, strong {
	font-weight: bold;
}
blockquote, dl, ol, p, pre, table, ul  {
	margin: 30px 0;
}
P{
	padding: 0 20px;
	box-sizing: border-box;
}
blockquote {
	font-size: 1.1em;
	margin-left: 40px;
}
dd {
	margin-left: 35px;
}
ol, ul {
	margin-left: 30px;
}
ul {
    list-style-type: disc;

}
ol {
	list-style-type: decimal;
}
mark {
	background-color: #ff9;
}
del {
	text-decoration: line-through;
}
abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
q:before,
q:after {
	content: '"';
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	border: 0px solid #888;
}

img{
	vertical-align: bottom;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  transition: all .3s;
}

.clear{
	clear: both;
}
.sp{
	display: none;
}

#main table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #000;
}
#main td,
#main th {
	border: 1px solid #000;
	padding: 15px;
	box-sizing: border-box;
	text-align: left;
	vertical-align: middle;
}
#main th {
	background: #cae9ff;
	color: #000;
	font-weight: 700;
}
/* =scroll_up
-------------------------------------------------------------- */

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}


/* =Headings
-------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

h1 {
	font-size: 35px;
	line-height: 40px;
	color: #000;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;

}
h2 {
	font-size: 28px;
	line-height: 35px;
	color: #000;
	border-top:3px solid #3892d7;
	border-bottom: 3px solid #3892d7;
	padding: 15px;
	font-weight: bold;
	box-sizing: border-box;
}
h3 {
	font-size: 26px;
	line-height: 60px;
	font-weight: bold;
	color: #fff;
	padding: 0 30px;
	box-sizing: border-box;
	background-size: auto auto;
	background-color: rgba(22, 108, 196, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(41, 120, 201, 1) 3px, rgba(41, 120, 201, 1) 6px );
        margin: 40px 0 20px 0;
}
h4 {
	font-size: 22px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: solid 5px #ececec;
	position: relative;
}

h4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 5px #009cd9;
  bottom: -5px;
  width: 20%;
}

h5 {
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
	color: #032e6e;
	padding-left: 10px;
	border-left: 5px solid #2054a1;
}

h6 {
	font-size: 1.1em;
}


/* ヘッダー */

header{
	width: 100%;
	margin: 0 auto;
}
#head_left{
	width: 33%;
	max-width: 460px;
	float: left;
	padding: 0px 0 0 0;
}
#head_left .logo{
	padding: 0 0 0 30px;
}
#head_left .logo img{
	width: 270px;
	height: auto;
}
#head_right{
	width: 67%;
	max-width: 790px;
	float: right;
}

.menu_btn {
	display: block;
	width: 100%;
	height: 85px;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}
a.menu_btn,
a:link.menu_btn{
	color: #fff;
	
}
.menu_btn img{
	width: auto;
	height: 32px;
	padding: 10px 0 0 0;
}
.menu_btn::before,
.menu_btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.menu_btn,
.menu_btn::before,
.menu_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.head_bottom{
	width: 100%;
	height: 115px;
}


/* メニュー */
nav ul{
	margin:0;
	padding:0px 0 0 0;
}
nav ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
nav ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: center;
	width: 20%;
	height: 115px;
	box-sizing: border-box;
	padding:0;
	margin:0;
	font-size: 16px;
}


nav ul li a {
	display: block;
	width: 100%;
}

nav ul li a,
nav ul li a:link,
nav ul li a:hover,
nav ul li a:active{
	color: #000;
}
nav ul li a:hover img {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  transition: all .3s;
}
nav ul li img{
	display: block;
	margin: 0 auto;
	width: 40px;
	height: 40px;

}
.n_btn {
	display: block;
	width: 100%;
	height: 115px;
	margin:0 auto 0 auto;
	text-decoration: none;
	outline: none;
	position: relative;

}
.n_btn .text{
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	padding-bottom: 10px;
}

.n_btn img{
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0px;
	right: 0;
	margin: auto;
	top:20px;
}
.n_btn img:last-of-type {
    opacity: 0;
    transition: opacity .2s;
}
.n_btn:hover img {
    opacity: 1;
}
a.n_btn{
	color: #000;
	height: 110px;
}
a.n_btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
a.n_btn::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 5px;
  background: #0050a2;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
a.n_btn:hover::after {
  bottom: -5px;
  opacity: 1;
  visibility: visible;
}
.hamburger-menu{
	display: none;
		
}
.p_btn {
	display: block;
	width: 100%;
	height: 115px;
	margin:0 auto 0 auto;
	text-align: center;
	text-decoration: none;
	outline: none;
	background:#0050a2;
	position: relative;
}
.p_btn img {
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0px;
	right: 0;
	margin: auto;
	top:20px;
}
.p_btn img:last-of-type {
    opacity: 0;
    transition: opacity .2s;
}
.p_btn:hover img {
    opacity: 1;
}
.p_btn .text{
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	padding-bottom: 10px;
}

a.p_btn,
a:link.p_btn{
	color:#fff;
}
.p_btn:hover {
	color:#0050a2;
	background:#e0f5ff;
	text-decoration: none;

}
.p_btn::before,
.p_btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.p_btn,
.p_btn::before,
.p_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}


/* フッター */

footer{
	background: #f2f2f2;
	width: 100%;
}
#footer_box{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 35px 0 45px 0;
}

#footer_box ul{
	margin:0;
	padding:0;
}
#footer_box ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
#footer_box ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: left;
	width: 31%;
	line-height:25px;
	box-sizing: border-box;
	padding:20px;
	margin:0 2% 0 0;
	border-radius: 10px;
	background: #fff;
}
#footer_box ul li:last-child{
		margin:0 0 0 0;	
}
#footer_box ul li h6{
	padding: 0;
	margin-bottom: 20px;
	font-size: 21px;
}
#footer_logo{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 40px 0;
	background: url("/img/veterinary/sd_back.gif");
	background-repeat: repeat-x;

}
#footer_logo img{
	width: auto;
	height: 80px;
}

footer a,
footer a:link{
	color: #fff;
}
footer .copy{
	font-size: 12px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	background: #457d8b;
}
.footer_btn {
	display: block;
	width: 180px;
	height: 35px;
	margin: 10px 0 0 0;
	text-align: center;
	text-decoration: none;
	line-height: 35px;
	outline: none;
	background-color: #0050a2;
	color: #fff;
	vertical-align:middle;
	font-size: 16px;
	border: 1px solid #0050a2;
	position: relative;
}
.footer_btn img{
	width: 25px;
	height: 25px;
	line-height: 35px;
	vertical-align:top;
	padding-top: 5px;
	position: absolute;
	left: 20px;
}
.footer_btn img:last-of-type {
    opacity: 0;
    transition: opacity .2s;
}
.footer_btn:hover img {
    opacity: 1;
}
a.footer_btn,
a:link.footer_btn{
	color: #fff;
}
.footer_btn:hover,
a.footer_btn:hover{
	color: #000;
	background-color: #fff;
}
.footer_btn::before,
.footer_btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.footer_btn,
.footer_btn::before,
.footer_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}


/* コンテンツ */
.main_content{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#main{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 10%;
}
/* カラーバー */

.col_border{
	width: 100%;
	background: url("/img/veterinary/bar.png");
	height: 18px;
}
/* トップに戻る */

#page_top {
  position: fixed;
}
#page_top img{
	width: 70px;
	height:auto;
}
#page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
}
#page_top a:hover {
}
#page_top.upmove {
  animation: UpAnime 0.5s forwards;
  display:block;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page_top.downmove {
  animation: DownAnime 0.5s forwards;
  display:block;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(250px);
  }
}

@media (min-width: 1000px) {
  #page_top {
    right: 15px; 
    bottom: 0;
  }
  #page_top a {
    width: 60px;
    height: 175px;
  }
}

@media (max-width: 999px) {
  #page_top {
    right: 12px;
    bottom: 0;
  }
  #page_top a {
    width: 60px;
    height: 175px;
    font-size: 0.6rem;
  }
.detail_free img {
    width: 100% !important;
    height: auto !important;
}
}

/* =トップページ
-------------------------------------------------------------- */
/* スライダー部分 */


#top_img{
	width: 100%;
	height: 600px;
	margin:0 auto;
}
#top_img .left{
	width: 38%;
	height: 600px;
	float: left;
	position: relative;
}
#top_img .left img.pc{
	width: 100%;
	max-width: 420px;
	height: auto;
	position: absolute;
	top:  0;
    bottom:  0;
    right:  0;
    margin:  auto;  

}
#top_img .left img.sp{
	display: none;

}
#top_img .right{
	width: 62%;
	float: right;
}
#top_img .right ul,
#top_img .right ul li{
	margin: 0;
	padding: 0;
}
#top_img .right ul.bxslider img{
	width: 100%;
	max-height: 600px;
	 object-fit: cover;
}

/* slickスライダー部分 */

.slider{
  width:100%;
  margin:0 auto;
  padding: 0;
}

.slider .slid img{
	width:100%;
}

.slick-next{
	right:20px!important;
}
.slick-prev{
	left:20px!important;
}
.slick-arrow{
	z-index:2!important;
    width:60px!important;
    height:60px!important;
}

.slick-arrow:before{
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
  }

.slick-next:before{
    background: url("/img/veterinary/controls-next-in.png")!important;
    background-size: contain!important;
}

  .slick-prev:before{
    background: url("/img/veterinary/controls-prev-in.png")!important;
    background-size: contain!important;
  }
/* slickスライダー部分end */


.navi{
	width: 95%;
	top: 50%;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	padding:0;
	z-index: 30;
	position: absolute;
}
.navi ul{
	margin:0;
	padding:0;
}
.navi ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
.navi ul li {
	display: block;
	float: left;
	list-style-type: none;
	width: 50%;
	box-sizing: border-box;
	padding:0;
	margin:0;
}
.navi ul li.left{
	text-align: left;

}
.navi ul li.right{
	text-align: right;

}
/* お知らせ */
#news {
	width: 90%;
	max-width: 1200px;
	margin: 80px auto 0 auto;
}

#news .titel {
	width: 20%;
	float: left;
	list-style-type: none;
}
#news .titel img{
	width: 100%;
	max-width: 145px;
	height: auto;
}
#news .text {
	width: 80%;
	height: 200px;
	float: right;
	overflow:auto;
	/* overflow-y:scroll; */
	overflow-x:hidden;
}

#news .text dl{
	width: 100%;
	margin: 0;
}

#news .text dt{
	text-align: center;
	font-weight: 400;
	padding: 0 0 10px 0 ;
	box-sizing: border-box;
	width: 200px;
	float: left;
}

#news .text dd{
	width: auto;
	margin-left: 200px;
	box-sizing: border-box;
	padding: 0 0 10px 0 ;
}

.news_all{
	text-align: right;
	padding: 30px 0 50px 0;
}
.news_all .btnnew{
  position: relative;
  background:#0050a2;
    padding: 5px 60px 5px 30px;
    display: inline-block;
    text-align: center;
    transition: all .2s linear;
  color:#fff;
    text-decoration: none;
  border:transparent 2px solid;
    outline: none;
}

.news_all .btnnew:hover{
  background:#fff;
  color:#000;
  border-color:#0050a2;
}


.news_all .btnnew:before{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
  top:50%;
  right:20px;
    /*線の形状*/
  width:20px;
  height:1px;
  background:#fff;
}

.news_all .btnnew::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 40%;
    right: 12px;
    /*矢印の形状*/
    border: 4px solid transparent;
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-color: #fff;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

/*hoverした際の矢印の形状*/
.news_all .btnnew:hover::before{
  background:#000;
  right:25px;
}

.news_all .btnnew:hover::after{
    border-left-color: #000;
    right: 20px;
}
/* ここから始まる、あなたの未来 */
#mirai{
	width: 100%;
	background: url("/img/veterinary/mirai_back.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 85px 0;
}
#mirai .mirai_titel{
	width: 100%;
	max-width: 850px;
	height: 120px;
	margin: 0 auto;
	background: url("/img/veterinary/bekotarou_3.png");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 110px;
	text-align: center;
}
#mirai .mirai_titel img{
	width: 100%;
	max-width: 640px;
	height: auto;
}
#mirai .iframe_box{
	background: #fff;
	padding: 20px 20px 0 20px;
	box-sizing: border-box;
	width: 90%;
	max-width: 960px;
	margin: 0px auto 0 auto;

}
#mirai .iframe_box .box{
	box-sizing: border-box;
	width: 100%;
	height: 320px;
	font-size: 20px;
	line-height: 40px;
	font-weight: bold;
	overflow:auto;
	/* overflow-y:scroll; */
	overflow-x:hidden;
}
#mirai .col_border{
	width: 90%;
	max-width: 960px;
	background: url("/img/veterinary/bar.png") #fff;
	background-repeat: repeat-x;
	height: 25px;
	margin: 0 auto;
}
#mirai .iframe_box .box h2{
	margin-bottom: 30px;
}
#mirai .btnarrow{
	width: 90%;
	max-width: 370px;
	border: 2px solid #0050a2;
	margin: 50px auto;
	padding-left: 30px;
	
}

#mirai .beko_news {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}
#mirai .beko_news ul{
	margin:0;
	padding:0;
	
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-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:wrap;
}
#mirai .beko_news ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
#mirai .beko_news ul li {
	display: block;
	float: left;
	list-style-type: none;
	width: 46%;
	box-sizing: border-box;
	padding:0;
	margin:0 2%;
}

#mirai .beko_news ul li img{
	width: 100%;
	height: auto;
}

/* 福島県の未来を共につないでいくお仕事です。 */
#tiji{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
#tiji ul{
	margin:50px 0 0 0;
	padding:0;
}
#tiji ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
#tiji ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: left;
	box-sizing: border-box;
	padding:0;
	margin:0;
}

#tiji ul li.tiji_photo{
	border: 0px;
	padding: 0;
	width: 25%;

}
#tiji ul li.tiji_photo img{
	width: 100%;
	height: auto;
}

#tiji ul li.midashi{
	box-sizing: border-box;
	width: 75%;
}
#tiji ul li.midashi img{
	width:100%;
	height: auto;
	padding: 0 0 20px 0;
}
#tiji ul li ul{
	margin: 0;
}
#tiji ul li.ilnd{
	box-sizing: border-box;
	width: 25%;
}
#tiji ul li.tijilink img{
	width:100%;
	height: auto;
}

#tiji ul li.tijilink{
	width: 75%;
	box-sizing: border-box;
	padding: 0 0 0 30px;
}
#tiji ul li.tijilink .btnarrow{
	width: 80%;
	border: 3px solid #0050a2;
	margin: 20px auto 0 auto;
	padding-left: 1em;
}


/* 4つリンク */
#link{
	background: #cde7ef;
	padding: 120px 0;
	
}
#link ul{
	margin:0 auto;
	padding:0;
	width: 100%;
	max-width: 1200px;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-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:wrap;
}
#link ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
#link ul li {
	display: block;
	position: relative;
	float: left;
	list-style-type: none;
	text-align: center;
	width: 25%;
	box-sizing: border-box;
	padding:0;
	margin:0;
	height: 510px;
	border-right: 1px solid #fff;
}
#link ul li.img01{
	background: url("/img/veterinary/link_back_img_01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
#link ul li.img02{
	background: url("/img/veterinary/link_back_img_02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
#link ul li.img03{
	background: url("/img/veterinary/link_back_img_03.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
#link ul li.img04{
	background: url("/img/veterinary/link_back_img_04.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
#link ul li:last-child {
	border-right: 0px solid #fff;
}
#link ul li img{
	width: 40px;
	height: 40px;
}
/* 私の働き方、ご紹介します */
#hatarakikata{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 140px 0;
}
#hatarakikata ul{
	margin:0;
	padding:0;
}
#hatarakikata ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
#hatarakikata ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: left;
	box-sizing: border-box;
	padding:0;
	margin:0;
}

#hatarakikata ul li.left{
	width: 50%;
}
#hatarakikata ul li.left .text{
	padding: 40px 0;
	font-size: 18px;
	line-height: 35px;
}
#hatarakikata ul li.left .titel img{
	width: 100%;
	max-width: 100%;
	height: auto;
}

#hatarakikata ul li.left .image{
	width: 145px;
	float: left;
}
#hatarakikata ul li.left .image img{
	width: 105px;
	height: auto;
}
#hatarakikata ul li.left .butan{
	width: 340px;
	margin-right: 0px;
	float: right;
}
#hatarakikata ul li.right{
	width: 50%;
	text-align: right;
}
#hatarakikata ul li.right img{
	width: 90%;
	height: auto;
	border-radius: 10px;
}




/* 魅力いっぱい、福島県！ */
#miryoku{
	width: 100%;
	background: #f6e089;
	padding: 0 0;
}
#miryoku .image_back{
	width: 100%;
	background: url("/img/veterinary/fukushima_image.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	height: 900px;
}
#miryoku .image{
	width: 100%;
	max-width: 485px;
	margin: 0 auto 0 auto;
	padding-top: 400px;
}
#miryoku .image img{
	width: 100%;
	height: auto;
}
#miryoku .text{
	width: 100%;
	max-width: 500px;
	margin: 40px auto;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
}
#miryoku .beko{
	
	text-align: center;

}
#miryoku .beko img{
	
	width: auto;
	height: 225px;

}
/* バナー */
#banner{
	width: 100%;
	background: #f6e089;
	padding: 100px 0;
}

#banner ul{
	margin:0 auto;
	padding:0;
	width: 700px;
}
#banner ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
#banner ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: left;
	width: 33%;
	box-sizing: border-box;
	padding: 10px;
	margin:0;
}
#banner ul li img{
	width: 100%;
	max-width: 210px;
	height: auto;
}

.btn {
	display: table;
	width: 100%;
	position: absolute;
	text-align: center;
	text-decoration: none;
	outline: none;
	background-color:rgba(0,8,112,0.80);
	font-size: 24px;
	line-height: 35px;
	font-weight: bold;
	height: 175px;
	bottom: 0;
}
.btn .inner{
  display: table-cell;
  vertical-align: middle;
}
a.btn,
a:link.btn{
	color:#fff;
}
a.btn:hover,
.btn:hover {
	color:yellow;
	background-color:rgba(0,65,139,0.80);
	text-decoration: none;

}
.btn::before,
.btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.btn,
.btn::before,
.btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}



.btnarrow{
  position: relative;
  background:#0050a2;
	font-size: 26px;
	font-weight: bold;
	border-radius: 10px;
	display: block;
    text-align: left;
    transition: all .2s linear;
  color:#fff;
    text-decoration: none;
  border:transparent 2px solid;
 	line-height: 135px;
   outline: none;
	box-sizing: border-box;
	padding-left: 20px;
}

.btnarrow:hover{
  background:#fff;
  color:#000;
	border: 2px solid #0050a2;
}


.btnarrow:before{
  content:"";
  position: absolute;
  top:50%;
  right:20px;
  width:40px;
  height:1px;
  background:#fff;
}

.btnarrow::after {
    content: '';
    position: absolute;
    top: 45%;
    right: 10px;
    border: 8px solid transparent;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-color: #fff;
    transition: all .2s linear;
}

.btnarrow:hover::before{
  background:#333;
  right:30px;
}

.btnarrow:hover::after{
    border-left-color: #333;
    right: 20px;
}
/* =ページ
-------------------------------------------------------------- */
/* h1タイトル */

#page_titel{
	background: #cce7ee;
	width: 100%;
}

#page_titel .page_back{
	background: url("/img/veterinary/h1_back.png");
	background-repeat: no-repeat;
	background-position: right top;
	width: 100%;
	margin: 0 auto;
}

/* お問い合わせ */

/* 大分類 */

.b_menu ul{
	margin:0;
	padding:0;
}
.b_menu ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
.b_menu ul li {
	display: block;
	list-style-type: none;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
	margin:20px 0;
}
.b_menu_btn {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-decoration: none;
	outline: none;
	color: #fff;
	vertical-align:middle;
	font-size: 28px;
	line-height: 35px;
	font-weight: bold;
	margin: 0;
	padding: 20px 30px 20px 30px;
	box-sizing: border-box;
	background: #1169c3;
	border-bottom: #004aab solid 5px;
}
a.b_menu_btn,
a:link.b_menu_btn{
	color: #fff;
}
a.b_menu_btn:hover,
.b_menu_btn:hover {
	background: #e0f5ff;
	color: #000;
	border-bottom: 5px solid #00ace0;
}

.b_menu_btn,
.b_menu_btn::before,
.b_menu_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* アイコンのスタイル */

.b_menu_btn::before {
	content: url(/img/veterinary/yajirusi_yoko.png);

	position: absolute;
	top: -10px;
	right: 20px;
	bottom: 0;
	width: 40px;
	margin: 0 auto;
	transform: scale(0.25);
}
.b_menu_btn:hover::before {
  content: url(/img/veterinary/yajirusi_yoko_on.png);
  position: absolute;
  top: -10px;
	right: 20px;
  bottom: 0;
  width: 40px;
  margin: 0 auto;
  transform: scale(0.25);
}


/* 中分類 */
.t_menu{
	padding: 50px 0;
}
.t_menu ul{
	margin:0;
	padding:0;
}
.t_menu ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
.t_menu ul li {
	display: block;
	list-style-type: none;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
	padding:0;
	margin:0;
}


.t_menu_btn {
	display: block;
	width: 100%;
	text-align: left;
	text-decoration: none;
	outline: none;
	color: #000;
	font-size: 25px;
	line-height: 40px;
	font-weight: bold;
	margin:  0;
	box-sizing: border-box;
	padding: 10px 20px;
	border: 2px solid #00b3e0;
	background: #e0f5ff;
    position: relative;
}
.t_menu_btn span{
	font-size: 16px;
	padding-right: 20px;

}
a.t_menu_btn,
a:link.t_menu_btn{
	color: #000;
}
a.t_menu_btn:hover,
.t_menu_btn:hover {
	color: #000;
	background: #fffcd1;
	border: 2px solid #ffba00;
}
.t_menu_btn,
.t_menu_btn::before,
.t_menu_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.t_menu_btn::after {
    position: absolute;
    right: 10px;
	bottom: 10px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #1169c3 transparent;
}
.t_menu_btn:hover {
    border: 2px solid #3388dd;
    background-color: #3388dd;
    color: #fff;
}
.t_menu_btn:hover::after {

    border-color: transparent transparent #ffba00 transparent;
}



@media (max-width: 1024px) {

.pc{
	display: none;
}
.sp{
	display: block;
}
/* =Headings
-------------------------------------------------------------- */



h1 {
	font-size: 25px;
	line-height: 35px;
	color: #000;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0;

}
h2 {
	font-size: 24px;
	line-height: 35px;
	color: #000;
	border-top:3px solid #3892d7;
	border-bottom: 3px solid #3892d7;
	padding: 15px;
	font-weight: bold;
	box-sizing: border-box;
}
h3 {
	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
	color: #fff;
	padding: 10px 30px;
	box-sizing: border-box;
	background-size: auto auto;
	background-color: rgba(22, 108, 196, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(41, 120, 201, 1) 3px, rgba(41, 120, 201, 1) 6px );
}
h4 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: solid 5px #ececec;
	position: relative;
}

h4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 5px #009cd9;
  bottom: -5px;
  width: 20%;
}

h5 {
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
	color: #032e6e;
	padding-left: 10px;
	border-left: 5px solid #2054a1;
}

/* ヘッダー */
header{
	width : 100% ;
	width : -webkit-calc(100% - 70px) ;
	width : calc(100% - 70px) ;
	margin: 0;
	padding: 0;
	height: 90px;
}
#head_left{
	width: initial;
	max-width: initial;
	float: left;
	padding: 0px;
}
#head_left .logo{
	padding: 0;
}
#head_left .logo img{
	width: auto;
	height: 80px;
	padding-top: 5px;
}
#head_right{
	width: auto;
	max-width: auto;
	float: right;
}


/* メニュー */

nav{
	width: 80%;
}
nav ul{
	margin:0;
	padding:0px 0 0 0;
}
nav ul li.sp_no {
	display: none;
}
nav ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: center;
	width: 100px;
	height: 90px;
	box-sizing: border-box;
	padding:0;
	margin:0;
	font-size: 12px;
}
.p_btn {
	display: block;
	width: 100%;
	height: 90px;
	margin:0 auto 0 auto;
	text-align: center;
	text-decoration: none;
	outline: none;
	background:#0050a2;
}
.p_btn img {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0px;
	right: 0;
	margin: auto;
	top:10px;

}
	
	
.hamburger-menu{
	display: block;
		
}
.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 99999;
	background: #fff;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background-color: #000;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 9999;
    background-color: #fff;
    transition: all 0.5s;
	
}

.menu-content .menu {
	width: 100%;
	margin: 0 auto;
	padding-top: 30px;
}
.menu-content .menu img{
	width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.menu-content .menu ul {
	margin: 0;
    padding:0;
}
.menu-content .menu ul li {
    list-style: none;
	
}
.menu-content .menu ul li a.h_menu_btn {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-decoration: none;
	outline: none;
	color: #000;
	vertical-align:middle;
	font-size: 18px;
	line-height: 35px;
	font-weight: normal;
	margin: 0;
	padding: 10px 20px 10px 20px;
	box-sizing: border-box;
	background: #fff;
	border-bottom: #004aab solid 1px;
}
.menu-content .menu ul li a.h_menu_btn,
.menu-content .menu ul li a:link.h_menu_btn{
	color: #000;
}
.menu-content .menu ul li a.h_menu_btn:hover,
.menu-content .menu ul li a.h_menu_btn:hover {
	background: #e0f5ff;
	color: #000;
	border-bottom: 1px solid #00ace0;
}

.menu-content .menu ul li a.h_menu_btn,
.menu-content .menu ul li a.h_menu_btn::before,
.menu-content .menu ul li a.h_menu_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
/* アイコンのスタイル */

.menu-content .menu ul li a.h_menu_btn::before {
	content: url(/img/veterinary/yajirusi_yoko2.png);

	position: absolute;
	top: -10px;
	right: 20px;
	bottom: 0;
	width: 40px;
	margin: 0 auto;
	transform: scale(0.25);
}
.menu-content .menu ul li a.h_menu_btn:hover::before {
  content: url(/img/veterinary/yajirusi_yoko_on.png);
  position: absolute;
  top: -10px;
	right: 20px;
  bottom: 0;
  width: 40px;
  margin: 0 auto;
  transform: scale(0.25);
}

.head_bottom{
	width: 100%;
	height: 90px;
}


/* フッター */

#footer_box{
	width: 90%;
	margin: 0 auto;
	padding: 20px 0 45px 0;
}


#footer_box ul li {
	display: block;
	float: none;
	list-style-type: none;
	text-align: left;
	width: 100%;
	line-height:25px;
	box-sizing: border-box;
	padding:20px;
	margin:2% 0;
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
}

#footer_box ul li span{
	padding: 0;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
	display: block;
}
#footer_logo{
	width: 100%;
	padding: 30px 0;

}
#footer_logo img{
	width: 90%;
	max-width: 360px;
	height: auto;
}

footer .copy{
	font-size: 12px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	background: #457d8b;
}
.footer_btn {
	display: block;
	width: 180px;
	height: 35px;
	margin: 10px 0 0 0;
	text-align: center;
	text-decoration: none;
	line-height: 35px;
	outline: none;
	background-color: #0050a2;
	color: #fff;
	vertical-align:middle;
	font-size: 16px;
	border: 1px solid #0050a2;
	position: relative;
}

.footer_btn img{
	width: 25px;
	height: 25px;
	line-height: 35px;
	vertical-align:top;
	padding-top: 5px;
	position: absolute;
	left: 20px;
}
.footer_btn img:last-of-type {
    opacity: 0;
    transition: opacity .2s;
}
.footer_btn:hover img {
    opacity: 1;
}
a.footer_btn,
a:link.footer_btn{
	color: #fff;
}
.footer_btn:hover,
a.footer_btn:hover{
	color: #000;
	background-color: #fff;
}
.footer_btn::before,
.footer_btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.footer_btn,
.footer_btn::before,
.footer_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* コンテンツ */
.main_content{
	width: 90%;
	max-width: initial;
	margin: 0 auto;
}

#main{
	width: 90%;
	margin: 0 auto 10%;
}


/* =トップページ
-------------------------------------------------------------- */
/* スライダー部分 */


#top_img{
	width: 100%;
	height: auto;
	margin:0 auto;
	position: relative;
}
#top_img .left{
	width: 70%;
	max-width: 400px;
	height: 100px;
	float: none;
	position: absolute;
	left:  0;
    bottom:  -40px;
	z-index: 10;
	padding: 10px;
	box-sizing: border-box;
	background: #fff;
}
#top_img .left img.pc{
	display: none;

}
#top_img .left img.sp{
	display: block;
	width: 100%;
	height: auto;

}
#top_img .right{
	width: 100%;
	float: none;
}
#top_img .right ul,
#top_img .right ul li{
	margin: 0;
	padding: 0;
}
#top_img .right ul.bxslider img{
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}

	
/* お知らせ */
#news {
	width: 90%;
	margin: 0 auto 0 auto;
	padding: 50px 0;
}

#news .titel {
	width: 100%;
	float: none;
	padding:50px 0 30px 0;
}
#news .titel img{
	width: auto;
	max-width: initial;
	height: 30px;
}
#news .text {
	width: 100%;
	float: none;
}

#news .text dl{
	width: 100%;
	margin: 0;
}

#news .text dt{
	text-align: left;
	font-weight: 400;
	padding: 10px 0 0 0 ;
	box-sizing: border-box;
	width: 100%;
	float: none;
}

#news .text dd{
	width: auto;
	margin-left: 0;
	box-sizing: border-box;
	padding: 0 0 10px 0 ;
	border-bottom: 1px solid #ddd;
}

.news_all{
	text-align: center;
	padding: 30px 0 50px 0;
}
/* ここから始まる、あなたの未来 */
#mirai{
	width: 100%;
	background: url("/img/veterinary/mirai_back.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 50px 0;
}
#mirai .mirai_titel{
	width: 100%;
	max-width: initial;
	height: auto;
	margin: 0 auto;
	background: initial;
	background-repeat: initial;
	background-position: initial;
	background-size: initial;
	text-align: center;
}
#mirai .mirai_titel img.pc{
	display: none;
	
}
#mirai .mirai_titel img.sp{
	width: 80%;
	max-width: 470px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding-bottom: 40px;
	
}
#mirai .iframe_box .box h2{
	font-size: 20px;
	padding: 10px;
	box-sizing: border-box;
}
#mirai .iframe_box .box{
	font-size: 18px;
	line-height: 35px;
}
	
#mirai .btnarrow{
	width: 90%;
	max-width: 370px;
	margin: 50px auto;
	padding-left: 30px;
	
}
#mirai .beko_news {
	max-width: 350px;
	
}
#mirai .beko_news ul li {
	float: none;
	width: 100%;
	padding:0;
	margin:2% 0;
}

/* 福島県の未来を共につないでいくお仕事です。 */
#tiji{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	height: auto;
	background:initial;
	background-repeat: initial;
	background-position: initial;
	background-size: initial;
}
#tiji .midashi_sp{
	width: 90%;
	margin:50px auto 0 auto;
}
#tiji .midashi_sp img{
	width: 100%;
	height: auto;
	}
#tiji ul{
	margin:0;
	padding:0;
}

#tiji ul li.tiji_photo{
	border: 0px;
	padding: 0;
	width: 30%;
}
#tiji ul li.midashi{
	width: 60%;
	box-sizing: border-box;
}
#tiji ul li.midashi img{
	width: 100%;
	height: auto;
	padding-top: 20px;
	padding-right: 20px;
}
#tiji ul li ul{
		display: none;
}

#tiji ul li .sp{
	display: block;
}
#tiji .tijilink_b .btnarrow{
	width: 90%;
	max-width: 400px;
	border: 2px solid #0050a2;
	padding-left: 1em;
	margin: 15px auto 30px auto;
	
}


/* 4つリンク */
#link{
	background: #cde7ef;
	padding: 50px 0;
	
}
#link ul{

}
#link ul li {
	display: block;
	position: initial;
	float: none;
	list-style-type: none;
	text-align: center;
	box-sizing: border-box;
	padding:0;
	margin:0;
	height: initial;
	border-right: 0px solid #fff;
	border-bottom: 2px solid #fff;
	background: #0a439a;
}
#link ul li.photo{
	width: 30%;
	}
#link ul li.photo img{
	width: 100%;
	height: auto;
	}
#link ul li.text{
	width: 70%;
	position: relative;
	}
#link ul li:last-child {
	border-bottom: 2px solid #fff;
}
#link ul li.text .btnarrow{
	font-size: 16px;
	line-height: 25px;
	border-radius: 0;
}
#link ul li.text .box{
	position: absolute;
	width: 100%;
	top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#link ul li.text .box .b_menu_btn {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-decoration: none;
	outline: none;
	color: #fff;
	vertical-align:middle;
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: #0a439a;
	border-bottom: #004aab solid 0px;
}
#link ul li.text .box a.b_menu_btn,
#link ul li.text .box a:link.b_menu_btn{
	color: #fff;
}
#link ul li.text .box a.b_menu_btn:hover,
#link ul li.text .box .b_menu_btn:hover {
	color:yellow;
	background: #0a439a;
	border-bottom: 0px solid #00ace0;
}

#link ul li.text .box .b_menu_btn,
#link ul li.text .box .b_menu_btn::before,
#link ul li.text .box .b_menu_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* アイコンのスタイル */

#link ul li.text .box .b_menu_btn::before {
	content: url(/img/veterinary/yajirusi_yoko.png);
	position: absolute;
	top: -10px;
	right: 30px;
	bottom: 0;
	width: 20px;
	margin: 0 auto;
	transform: scale(0.25);
}

/* 私の働き方、ご紹介します */
#hatarakikata{
	width: 90%;
	padding: 50px 0;
}
#hatarakikata ul li{
	float: none;
}
#hatarakikata ul li.left{
	width: 100%;
}
	
#hatarakikata ul li.left .text{
	padding: 40px 0;
	font-size: 18px;
	line-height: 35px;
}
#hatarakikata ul li.left .titel img{
	width: 90%;
	max-width: 435px;
	height: auto;
	border-radius: 10px;
}
#hatarakikata ul li.left .sp img{
	width: 100%;
	height: auto;
	border-radius: 10px;
	padding-top: 20px;
}
#hatarakikata ul li.left .image{
	width: 20%;
	float: left;
}
#hatarakikata ul li.left .image img{
	width: 90%;
	height: auto;
}
#hatarakikata ul li.left .butan{
	width: 80%;
	margin-right: 0px;
	float: right;

}
#hatarakikata ul li.left .butan .btnarrow{
 padding-left: 1em;	
}
#hatarakikata ul li.right{
	width: 100%;
	max-width: 670px;
	float: none;
	padding-top: 40px;

}
#hatarakikata ul li.right img{
	display: none;
}

/* 魅力いっぱい、福島県！ */
#miryoku{
	width: 100%;
	background: #f6e089;
	padding: 0 0;
}
#miryoku .sp_image img{
	width: 100%;
	height: auto;
}
#miryoku .image_back{
	width: 100%;
	background: url("/img/veterinary/sp_fukushima_image02.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 95%;
	height: auto;
}
#miryoku .image{
	width: 80%;
	max-width: initial;
	margin: 0 auto 0 auto;
	padding-top: 0;
}
#miryoku .image img{
	width: 100%;
	height: auto;
}
#miryoku .text{
	width: 80%;
	max-width: 500px;
	margin: 40px auto;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
}
#miryoku .beko{
	
	text-align: center;

}
#miryoku .beko img{
	
	width: auto;
	height: 150px;

}
/* バナー */
#banner{
	width: 100%;
	background: #f6e089;
	padding: 50px 0;
}

#banner ul{
	margin:0 auto;
	padding:0;
	width: 80%;
}

#banner ul li {
	display: block;
	float: left;
	list-style-type: none;
	text-align: left;
	width: 50%;
	box-sizing: border-box;
	padding: 10px;
	margin:0;
}
#banner ul li img{
	width: 100%;
	max-width: 210px;
	height: auto;
}
	
	

.btnarrow{
	font-size: 20px;
 	line-height: 85px;
	padding-left: 10px;
}

.btnarrow::after {
    top: 40%;
}

.btn {
	display: table;
	width: 100%;
	position: initial;
	text-align: center;
	text-decoration: none;
	outline: none;
	background-color:rgba(0,8,112,0.80);
	font-size: 24px;
	line-height: 35px;
	font-weight: bold;
	height: 175px;
	bottom: 0;
}
/* =ページ
-------------------------------------------------------------- */
/* h1タイトル */

#page_titel{
	background: #cce7ee;
	width: 100%;
}

#page_titel .page_back{
	background: url("/img/veterinary/h1_back.png");
	background-repeat: no-repeat;
	background-position: right top;
	width: 100%;
	margin: 0 auto;
	padding:0 0 0 20px;
	box-sizing: border-box;
}




/* 大分類 */


.b_menu_btn {

	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
	margin: 0;
	padding: 15px 50px 15px 20px;
	box-sizing: border-box;
	background: #1169c3;
	border-bottom: #004aab solid 5px;
}

/* アイコンのスタイル */

.b_menu_btn::before {

	top: -10px;
	right: 30px;
	bottom: 0;
	width: 20px;
}
.b_menu_btn:hover::before {

  top: -10px;
	right: 30px;
  bottom: 0;
  width: 20px;
}


/* 中分類 */
.t_menu{
	padding: 50px 0;
}
.t_menu ul{
	margin:0;
	padding:0;
}
.t_menu ul:after {
	  content: "";
	  clear: both;
	  display: block;
	}
.t_menu ul li {
	display: block;
	list-style-type: none;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
	padding:0;
	margin:0;
}


.t_menu_btn {
	display: block;
	width: 100%;
	text-align: left;
	text-decoration: none;
	outline: none;
	color: #000;
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	margin:  0;
	box-sizing: border-box;
	padding: 10px 40px 10px 20px;
	border: 2px solid #00b3e0;
	background: #e0f5ff;
    position: relative;
}
.t_menu_btn span{
	font-size: 14px;
	padding-right: 0px;
	display: block;

}
a.t_menu_btn,
a:link.t_menu_btn{
	color: #000;
}
a.t_menu_btn:hover,
.t_menu_btn:hover {
	color: #000;
	background: #fffcd1;
	border: 2px solid #ffba00;
}
.t_menu_btn,
.t_menu_btn::before,
.t_menu_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.t_menu_btn::after {
    position: absolute;
    top: initial;
    right: 10px;
	bottom: 10px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #1169c3 transparent;
}
.t_menu_btn:hover {
    border: 2px solid #3388dd;
    background-color: #3388dd;
    color: #fff;
}
.t_menu_btn:hover::after {

    border-color: transparent transparent #ffba00 transparent;
}


}


/* INF追加分 */
.bxslider p{
    padding: 0;
    margin: 0;
}




.hide {
    position: absolute;
    left: -100em;
    top: -100em;
}


.veterinary-list-2 .b_menu_btn {
    padding: 0;
}

.veterinary-list-2 .b_menu_btn a{
    color: #FFF;
    padding: 20px 30px 20px 30px;
    display: block;
}

.veterinary-list-2 .b_menu_btn:hover a{
    color: #000;
}

.veterinary-list-2 .b_menu_btn::before {
    display:none;
}

.veterinary-list-2 .b_menu_btn a::before {
	content: url(/img/veterinary/yajirusi_yoko.png);
	position: absolute;
	top: -10px;
	right: 20px;
	bottom: 0;
	width: 40px;
	margin: 0 auto;
	transform: scale(0.25);
}

.veterinary-list-2 .b_menu_btn:hover::before {
    display:none;
}

.veterinary-list-2 .b_menu_btn:hover a::before {
  content: url(/img/veterinary/yajirusi_yoko_on.png);
  position: absolute;
  top: -10px;
  right: 20px;
  bottom: 0;
  width: 40px;
  margin: 0 auto;
  transform: scale(0.25);
}


.veterinary-list1 .t_menu{
	padding: 0;
}

.veterinary-list1 .t_menu ul li{
    margin: 20px 0;
}

.veterinary-list1 .newsDate{
    float: left;
    padding: 10px 0 0 15px;
}

.veterinary-list1 .newsTitle{
    font-size: 26px;
    color: #000;
    display:block;
    padding:0;
}


.veterinary-list1 .t_menu_btn a{
    display: block;
    position: relative;
    padding: 50px 30px 10px 15px;
    color:#000;
}

.veterinary-list1 .t_menu_btn::after {
    display:none;
}

.veterinary-list1 .t_menu_btn a::after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #1169c3 transparent;
    transition: all .3s;
}

.veterinary-list1 .t_menu_btn:hover{
    color: #000;
    background: #fffcd1;
    border: 2px solid #ffba00;
}

.veterinary-list1 .t_menu_btn:hover::after {
    display:none;
}

.veterinary-list1 .t_menu_btn:hover a::after {
    border-color: transparent transparent #ffba00 transparent;
}


#pan {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
  padding: 20px 0;
}

@media (max-width: 1024px) {
  #pan {
    width: 90%;
    max-width: auto;
    margin: 0 auto;
    font-size: 14px;
    padding: 10px 0;
  }
}

#printpage {
  margin: 1em;
  text-align: end;
}

#footer_box span{
    margin-bottom: 20px;
    font-size: 21px;
    display: block;
    font-weight: bold;
}

#banner p{
    padding: 0;
    margin: 0;
}

#page_top{
    display:none;
}