@charset "UTF-8";

/* ---------------------------------------
  基本情報
-----------------------------------------*/

html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	text-align: left;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.8;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.8;
}
textarea{
	resize: vertical;
}
select::-ms-expand {
	display: none;
}
body a {
	text-decoration: none;
	color: #000;
}
img{
	vertical-align: bottom;
	max-width: 100%;
}
*,*:after,*:before{
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	body{
		min-width: 1175px;
	}
}
@media screen and (max-width: 768px) {
	body.fixed{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	img{
		width: 100%;
	}
	p, dt, dd ,li ,th ,td,
	input, button, textarea, select{
		font-size: 3.4vw;
		line-height: 1.6;
	}
}

/* responsive
--------------------------------*/
@media screen and (min-width: 769px) {
	.sp{
		display: none!important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none!important;
	}
}

/* hover
--------------------------------*/
.fade:hover{
	opacity: .7;
}
.fade{
	outline: 1px solid transparent;
	transition: opacity .3s;
}

/* common
--------------------------------*/
.wrap{
	max-width: 1175px;
	width: 98%;
	margin: 0 auto;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}
.alignright{
	float: right;
}
.alignleft{
	float: left;
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
.tal{
	text-align: left;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.mb00{
	margin-bottom: 0px!important;
}
.mt40{
	margin-top: 40px!important;
}
@media screen and (max-width: 768px) {
	.wrap{
		width: 92%;
	}
	.mt40{
		margin-top: 9%!important;
	}
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
header{
	border-top: 5px solid #006935;
	position: relative;
	z-index: 1;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	min-width: 1175px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: #fff;
}
header .wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .gnav .main{
	display: flex;
	justify-content: flex-end;
}
header .gnav .main li{
	border-left: 2px solid #cccccc;
}
header .gnav .main li:last-child{
	border-right: 2px solid #cccccc;
}
header .gnav .main li a{
	height: 100%;
	padding: 35px 45px 25px;
	display: block;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, rgba(238,238,238,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(238,238,238,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(238,238,238,1) 100%);
	transition: opacity .3s;
}
header .gnav .main li a:hover{
	opacity: .7;
}
header .gnav .main li img{
	display: block;
	margin: 0 auto;
}
header .gnav .main li .txt{
	text-align: center;
	display: block;
	margin-top: 5px;
}
@media screen and (max-width: 768px) {
	header{
		border-top: 5px solid #006935;
		padding: 0;
		height: auto;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: #fff;
		z-index: 100;
		box-shadow: none;
		min-width: 0;
	}
	header .wrap{
		width: 100%;
		display: block;
	}
	header .sp_wrap{
		padding: 0 4% ;
		height: 70px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16);
		position: relative;
		z-index: 1;
	}
	header .logo{
		width: 200px;
	}
	header .menu-trigger{
		margin-top: 4px;
	}
	header .menu-trigger .line{
		position: relative;
		width: 25px;
		height: 25px;
		margin: 0 auto;
	}
	header .menu-trigger .line span{
		position: absolute;
		left: 0;
		width: 100%;
		height: 5px;
		background: #000;
		display: block;
		transition: transform .3s,opacity .3s;
	}
	header .menu-trigger .line span:nth-child(1){
		top: 0;
	}
	header .menu-trigger .line span:nth-child(2){
		top: 50%;
		transform: translateY(-50%);
	}
	header .menu-trigger .line span:nth-child(3){
		bottom: 0;
	}
	header .menu-trigger .txt{
		font-size: 1rem;
		line-height: 1;
		transform: scale(.9);
		text-align: center;
		margin-top: 6px;
		transition: opacity .3s;
	}
	header .menu-trigger .txt::before{
		content: 'CLOSE';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		text-align: center;
		opacity: 0;
		transition: opacity .3s;
	}
	header.menu_open .menu-trigger .line span:nth-child(1){
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}
	header.menu_open .menu-trigger .line span:nth-child(2){
		opacity: 0;
	}
	header.menu_open .menu-trigger .line span:nth-child(3){
		top: 50%;
		bottom: auto;
		transform: translateY(-50%) rotate(-135deg);
	}
	header.menu_open .menu-trigger .txt span{
		opacity: 0;
	}
	header.menu_open .menu-trigger .txt::before{
		opacity: 1;
	}
	header .gnav{
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		max-height: calc(90vh - 70px);
		overflow-y: scroll;
	}
	header .gnav .main{
		border-top: 1px solid #999999;
		border-bottom: 1px solid #999999;
		display: flex;
		justify-content: flex-end;
	}
	header .gnav .main li{
		width: 33.333%;
		border-left: 2px solid #cccccc;
	}
	header .gnav .main li:first-child{
		border-left: 0;
	}
	header .gnav .main li:last-child{
		border-right: 0;
	}
	header .gnav .main li a{
		padding: 14% 3% 10%;
	}
	header .gnav .main li img{
		height: 7vw;
	}
	header .gnav .main li .txt{
		font-size: 2.6vw;
		margin-top: 4.5%;
	}
	header .gnav .sub{
		width: 100%;
		padding: 15% 4%;
		background: #EEEEEE;
	}
}

/* ---------------------------------------------
  main
-----------------------------------------------*/

main{
	display: block;
	padding-top: 120px;
}
@media screen and (max-width: 768px) {
	main{
		padding-top: 70px;
	}
}


/* ttl
--------------------------------*/
.ttl_type1{
	font-size: 1.8rem;
	line-height: 1.6;
	letter-spacing: .1em;
	font-weight: bold;
	background: #EEEEEE;
	padding: 20px;
	border-left: 5px solid #006935;
	margin-bottom: 35px;
}
.ie .ttl_type1{
	padding: 23px 20px 17px;
}
@media screen and (max-width: 768px) {
	.ttl_type1{
		font-size: 4vw;
		padding: 4.5%;
		margin-bottom: 5%;
	}
}

/* btn
--------------------------------*/
.btn_type1{
	color: #fff;
	letter-spacing: .08em;
	text-align: center;
	width: 212px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding-left: 10px;
	border-radius: 25px;
	background: -moz-linear-gradient(top,  rgba(237,169,108,1) 0%, rgba(224,122,32,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(237,169,108,1) 0%,rgba(224,122,32,1) 100%);
	background: linear-gradient(to bottom,  rgba(237,169,108,1) 0%,rgba(224,122,32,1) 100%);
	transition: opacity .3s;
	position: relative;
}
.ie .btn_type1{
	padding-top: 5px;
}
.btn_type1::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url(../img/common/arrow_icon.svg) no-repeat center center /contain;
}
.btn_type1.btn_back{
	padding-left: 0;
	padding-right: 10px;
}
.btn_type1.btn_back::before{
	left: auto;
	right: 20px;
	transform: translateY(-50%) scale(-1, 1);
}
.btn_type1:hover{
	opacity: .7;
}
.btn_type2{
	font-size: 1.4rem;
	color: #fff;
	width: 192px;
	height: 43px;
	padding-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: -moz-linear-gradient(top,  rgba(141,141,141,1) 0%, rgba(102,102,102,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(141,141,141,1) 0%,rgba(102,102,102,1) 100%);
	background: linear-gradient(to bottom,  rgba(141,141,141,1) 0%,rgba(102,102,102,1) 100%);
	border-radius: 5px;
	position: relative;
	transition: opacity .3s;
}
.ie .btn_type2{
	padding-top: 5px;
}
.btn_type2:hover{
	opacity: .7;
}
.btn_type2::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background: url(../img/common/blank_icon.svg) no-repeat center center /contain;
}
@media screen and (max-width: 768px) {
	.btn_type1{
		width: 51vw;
		height: 13vw;
		padding-left: 4vw;
		border-radius: 10vw;
	}
	.btn_type1::before{
		left: 7vw;
		width: 3.5vw;
		height: 3.5vw;
	}
	.btn_type1.btn_back{
		padding-left: 0;
		padding-right: 4vw;
	}
	.btn_type1.btn_back::before{
		left: auto;
		right: 7vw;
	}
	.btn_type2{
		font-size: 3.4vw;
		width: 50vw;
		height: 9.5vw;
		padding-right: 5vw;
		border-radius: 1vw;
	}
	.btn_type2::before{
		right: 5vw;
		width: 3.5vw;
		height: 3.5vw;
	}
}

/* txt_box
--------------------------------*/
.txt_box img{
	display: block;
	margin: 25px auto;
}
.txt_box ul{
	margin: 25px 0;
}
.txt_box p{
	text-indent: 1em;
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
	.txt_box img{
		margin: 6% auto;
	}
	.txt_box ul{
		margin: 6% 0;
	}
}

/* mv
--------------------------------*/
#mv{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px 0;
	height: 150px;
	background: url(../img/common/mv_bg.jpg) no-repeat center center /cover;
}
#mv .wrap{
	margin: 0;
}
#mv .txt{
	text-align: right;
}
@media screen and (max-width: 768px) {
	#mv{
		padding: 3% 0;
		height: 27vw;
	}
	#mv .txt{
		font-size: 3.2vw;
	}
}

/* col2
--------------------------------*/
#col2{
	padding: 30px 0 60px;
}
#col2 .wrap{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: row-reverse;
}
.side_col{
	width: 345px;
	padding: 20px 30px 120px 0;
	margin-right: 30px;
	border-right: 2px solid #999999;
}
.main_col{
	width: calc(100% - 345px - 60px);
	padding-bottom: 60px;
}
.main_col section+section{
	margin-top: 60px;
}
.hr_line{
	margin: 25px 0 0;
	border-top: 1px solid #999999;
}
@media screen and (max-width: 768px) {
	#col2{
		padding: 0;
	}
	#col2 .wrap{
		display: block;
	}
	.side_col{
		width: 100%;
		padding: 15% 4%;
		margin-right: 0;
		border-right: 0;
		background: #EEEEEE;
		width: 108.5%;
		margin-left: -4.25%;
	}
	.main_col{
		padding: 5% 0 15%;
		width: 100%;
	}
	.main_col section+section{
		margin-top: 15%;
	}
	.line{
		margin: 10% 0 4%;
	}
}

/* breadcrumb
--------------------------------*/
.breadcrumb{
	margin-bottom: 30px;
}
.breadcrumb ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.breadcrumb ul li,
.breadcrumb ul li a{
	font-size: 1.4rem;
	font-weight: bold;
}
.breadcrumb ul li a{
	font-weight: normal;
}
.breadcrumb ul li.home a{
	position: relative;
	padding-left: 25px;
	display: inline-block;
}
.breadcrumb ul li.home a::before{
	content: '';
	position: absolute;
	top: 45%;
	left: 0;
	width: 15px;
	height: 18px;
	transform: translateY(-50%);
	background: url(../img/common/home_icon.svg) no-repeat center center /contain;
}
.ie .breadcrumb ul li.home a::before{
	top: 40%;
}
.breadcrumb ul li::after{
	content: '＞';
	font-weight: normal;
	margin: 0 15px;
}
.breadcrumb ul li:last-child::after{
	display: none;
}
.breadcrumb ul li a:hover{
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.breadcrumb{
		margin-bottom: 5%;
	}
	.breadcrumb ul li,
	.breadcrumb ul li a{
		font-size: 3.4vw;
	}
	.breadcrumb ul li.home a{
		padding-left: 5vw;
	}
	.breadcrumb ul li.home a::before{
		width: 3.5vw;
		height: 3.8vw;
	}
	.breadcrumb ul li::after{
		margin: 0 3vw;
	}
}

/* search
--------------------------------*/
.search_box form{
	position: relative;
}
.search_box input[type="text"]{
	padding: 2px 40px 0 15px;
	width: 100%;
	height: 40px;
	background: #eeeeee;
	border-radius: 25px;
}
.search_box button{
	position: absolute;
	top: 2px;
	right: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgb(8,146,78);
	background: -moz-linear-gradient(top,  rgba(8,146,78,1) 0%, rgba(0,105,53,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(8,146,78,1) 0%,rgba(0,105,53,1) 100%);
	background: linear-gradient(to bottom,  rgba(8,146,78,1) 0%,rgba(0,105,53,1) 100%);
	transition: opacity .3s;
	cursor: pointer;
}
.search_box button:hover{
	opacity: .7;
}
@media screen and (max-width: 768px) {
	.search_box input[type="text"]{
		padding: 0 12% 0 4%;
		height: 11vw;
		border-radius: 10vw;
		background: #fff;
	}
	.search_box button{
		top: .7vw;
		right: .7vw;
		padding: 2.5%;
		width: 9.5vw;
		height: 9.5vw;
	}
}

/* list
--------------------------------*/
.list_box{
	margin-top: 25px;
}
.list_box .ttl_list{
	font-size: 1.8rem;
	letter-spacing: .1em;
	font-weight: bold;
	position: relative;
	padding: 15px 0 15px 40px;
	border-bottom: 2px solid #999999;
}
.list_box .ttl_list::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 27px;
	height: 23px;
	background: url(../img/common/book_icon.svg) no-repeat center center /contain;
}
.list_box ul li{
	border-bottom: 1px dotted #999999;
}
.list_box ul li a{
	font-size: 1.4rem;
	line-height: 1.57;
	padding: 20px;
	display: block;
	position: relative;
	transition: color .3s;
}
.ie .list_box ul li a{
	padding: 23px 20px 17px;
}
.list_box ul li a:hover{
	text-decoration: underline;
}
.list_box ul li a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 3px;
	width: 8px;
	height: 8px;
	transform: translateY(-50%) rotate(45deg);
	border-top: 2px solid #20A6E0;
	border-right: 2px solid #20A6E0;
}
@media screen and (max-width: 768px) {
	.list_box{
		margin-top: 3%;
	}
	.list_box .ttl_list{
		font-size: 4vw;
		padding: 4% 0 4% 12%;
	}
	.list_box .ttl_list::before{
		width: 6.5vw;
		height: 6.5vw;
	}
	.list_box ul li a{
		font-size: 3.7vw;
		padding: 5.8% 0 5.8% 3%;
	}
	.list_box ul li a::before{
		right: 1vw;
		width: 2vw;
		height: 2vw;
	}
}

/* topics_list
--------------------------------*/
.topics_list li{
	display: flex;
	justify-content: flex-start;
	padding: 20px 0;
	border-bottom: 1px dotted #999999;
}
.topics_list li .time{
	letter-spacing: .08em;
	width: 160px;
}
.topics_list li .txt{
	letter-spacing: .08em;
	width: calc(100% - 160px);
}
.topics_list li .txt a{
	color: #20A6E0;
	text-decoration: underline;
}
.topics_list li .txt a:hover{
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.topics_list li{
		padding: 5% 0;
		display: block;
	}
	.topics_list li .time{
		width: 100%;
		display: block;
	}
	.topics_list li .txt{
		width: 100%;
		display: block;
	}
}

/* search_list
--------------------------------*/
.search_list li{
	padding: 25px 0;
	border-bottom: 1px dotted #999999;
}
.search_list li .ttl{
	letter-spacing: .08em;
}
.search_list li .ttl a{
	color: #20A6E0;
	text-decoration: underline;
}
.search_list li .ttl a:hover{
	text-decoration: none;
}
.search_list li .txt{
	margin-top: 5px;
}
@media screen and (max-width: 768px) {
	.search_list li{
		padding: 5% 0;
		display: block;
	}
	.search_list li .txt{
		margin-top: 2%;
	}
}

/* num_list
--------------------------------*/
.num_list li{
	padding-left: 2.2em;
	text-indent: -2.2em;
	letter-spacing: .08em;
}
.num_list li+li{
	margin-top: 25px;
}
@media screen and (max-width: 768px) {
	.num_list li+li{
		margin-top: 6%;
	}
}

/* pager
--------------------------------*/
.pager{
	margin-top: 35px;
	display: flex;
	justify-content: center;
}
.pager li{
	margin: 0 5px;
}
.pager li a{
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #666666;
	background: #666666;
	padding-top: 2px;
	border-radius: 50%;
	transition: background .3s,color .3s;
}
.pager li.current a{
	color: #666666;
	background: #fff;
}
.pager li.prev a,
.pager li.next a{
	position: relative;
}
.pager li.prev a::before,
.pager li.next a::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
	width: 14px;
	height: 14px;
	transition: border-color .3s;
}
.pager li.prev a::before{
	margin-left: 3px;
	border-left: 4px solid #fff;
	border-bottom: 4px solid #fff;
}
.pager li.next a::before{
	margin-left: -2px;
	border-right: 4px solid #fff;
	border-top: 4px solid #fff;
}
.pager li:not(.disabled) a:hover{
	color: #666666;
	background: #fff;
}
.pager li.prev:not(.disabled) a:hover::before,
.pager li.next:not(.disabled) a:hover::before{
	border-color: #666666;
}
.pager li.disabled a{
	cursor: default;
	background: #DDDDDD;
	border-color: #DDDDDD;
}
@media screen and (max-width: 768px) {
	.pager{
		margin-top: 10%;
	}
	.pager li{
		margin: 0 1vw;
	}
	.pager li a{
		font-size: 3.4vw;
		width: 8.5vw;
		height: 8.5vw;
		padding-top: .5vw;
	}
	.pager li.prev a::before,
	.pager li.next a::before{
		width: 3vw;
		height: 3vw;
	}
	.pager li.prev a::before{
		margin-left: .5vw;
	}
	.pager li.next a::before{
		margin-left: -.1vw;
	}
}

/* table
--------------------------------*/
.table dt{
	font-size: 1.8rem;
	letter-spacing: .1em;
	color: #006935;
	font-weight: bold;
	border-bottom: 2px solid #999999;
	margin-top: 25px;
	padding-bottom: 5px;
	margin-bottom: 13px;
}
.table dt:first-child{
	margin-top: 0;
}
.table dd{
	font-size: 1.8rem;
	letter-spacing: .1em;
}
.table dd dt{
	color: #000;
	border-bottom: 1px dotted #999999;
}
@media screen and (max-width: 768px) {
	.table dt{
		font-size: 3.7vw;
		margin-top: 5%;
		padding-bottom: 2%;
		margin-bottom: 4%;
	}
	.table dd{
		font-size: 3.4vw;
	}
}


/* ---------------------------------------------
  footer
-----------------------------------------------*/
footer{
	padding: 40px 0;
	background: #DDDDDD;
}
footer .wrap{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
footer .link{
	display: flex;
	justify-content: flex-start;
}
footer .link li+li{
	margin-left: 25px;
}
footer .link li a{
	display: inline-block;
	padding-left: 25px;
	position: relative;
}
.ie footer .link li a{
	padding-top: 5px;
}
footer .link li a:hover{
	text-decoration: underline;
}
footer .link li a::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: #000;
	border-radius: 50%;
}
footer .link li a::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #DDDDDD;
	border-right: 2px solid #DDDDDD;
}
footer .txt{
	margin-top: 30px;
}
footer .btn{
	margin-top: 13px;
}
@media screen and (max-width: 768px) {
	footer{
		padding: 7% 0 8%;
	}
	footer .wrap{
		display: block;
	}
	footer .komenet{
		display: flex;
		justify-content: space-between;
	}
	footer .link{
		display: none;
	}
	footer .txt{
		font-size: 3.2vw;
		margin-top: 6%;
	}
	footer .komenet .logo{
		width: 40%;
	}
	footer .komenet .btn{
		margin-top: 0;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */


.search_list li .ttl a,
.search_list li .txt,
.ttl_type1,
.table dd,
.txt_box p,
.topics_list li .txt a,
#topics .txt_box {
	word-break: break-all;
    word-break: break-word;
}

#topics .txt_box img.alignleft {
	margin-right: 15px;
}

#topics .txt_box img.alignright {
	margin-left: 15px;
}

#topics .txt_box img {
	max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
	#topics .txt_box img,
	#topics .txt_box img.alignleft,
	#topics .txt_box img.alignright,
	#topics .txt_box img.alignnone {
		width: auto;
		float: none;
	    display:block;
	    margin-left:auto;
	    margin-right:auto;
	}
}

#privacy img {
	height: auto;
}