@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap&subset=japanese');

/*------------------- reset ---------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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;
}


/*--------------- form ------------------*/

button{
transition: 0.3s ease;
}

button, input, select, textarea {
font-family : inherit;
font-size : 100%;
	font-size: 1.6rem;
}
/*

input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}*/

label {
  position: relative;
  display: block;
  word-break: break-all;
}/*
label input[type="checkbox"] + span,
label input[type="radio"] + span {
  position: relative;
  padding-left: 15px;
}
label input[type="radio"] + span {
	padding-right: 15px;
	padding-left: 0;
}
*/
/*--- checkbox --*/
/*
label input[type="checkbox"] + span::before {
  border-color: #6A3906;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #6A3906;
}
label span {
  display: inline-block;
}
label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type="checkbox"] + span::before,
label input[type="checkbox"] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}
label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #fff;
}
label input[type="checkbox"]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}*/

/*--- radio ----*/
/*
label input[type="radio"] + span::before {
  border-color: #6A3906;
}
label span {
  display: inline-block;
}
label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
	border: 1px solid #668dd4;
	border-radius: 50%;
}
label input[type="radio"] + span::before {
	z-index: 0;
	top: 5px;
	right: 0;
	background-color: transparent;
	width: 14px;
	height: 14px;

}*/
/*label input[type="radio"]:checked + span::before {
  border: 4px solid #668dd4;
}*//*
label input[type="radio"]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
	background-color:  #668dd4;
	border-radius: 50%;

	z-index: 0;
	top: 7px;
	right: 2px;
	width: 10px;
	height: 10px;	
}*/

/*-------- text email tel ---------*/

input[type="text"],
input[type="email"],
input[type="tel"] ,
textarea,select,
input[type=button],
input[type=submit],
button[type=submit],
input[type=reset]{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding:5px;
	background-color: #fff;
	border: 1px solid #dbd6d0;
	border-radius: 0;

}

/*-------- select ------------*/

select {
	width: 200px;
	background-image: url(../images/contact_select_arr.png);
	background-repeat: no-repeat;
	background-position: 92% center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: bold;
}
select::-ms-expand {
    display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] ,
textarea{
	width: 100%;
	max-width: 100%;

}

textarea{
	resize: vertical;
    overflow: auto;
    height: 160px;
}


input[type=button],
input[type=submit]{
    padding: 10px 40px;
    font-size: 1.8rem;
    background-color: #003366;
    color: #fff;
    border-style: none;
	transition: 0.3s ease;
	cursor: pointer;
	
}
input[type=button]:hover,
input[type=submit]:hover{
	opacity: 0.7;

}
.contact-form label span{
	color: red !important;
}

@media screen and (max-width:768px){

	input[type="text"],
	input[type="email"],
	input[type="tel"] ,
	textarea{
		width: 100%;
		font-size: 1.6rem !important;
	}
}

::placeholder {
	color: #999999;
}

/*----------------------------------------------*/
/*--------------- common -----------------------*/



body {
	font-size: 100%;
	background-color: #fff;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-weight:normal;
	margin: 0;
	padding: 0;
}



.clearfix::after {
    content:" ";
    display:block;
    clear:both;
}

.clr {	clear:both; }

.fr{ float:right;}

.fl{ float:left;}

img{
	display: block;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html,body{
	width: 100%;
	min-width: 1024px;
	overflow-x: hidden;
}
html{ font-size:62.5%;}

body {
	font-size: 1.0rem;
	line-height: 1.75;
	position: relative;
}


.mincho{
	font-family: 'Noto Serif JP', serif;
}
.en{

}
.tab,
.sp,
.ip{
	display:none;
}

.wrap{
	width: 1080px;
	max-width: 100%;
	margin: auto;
}
.under #main .wrap{
/*	width: 960px;*/
}
.wrap.inn{
	width: 1000px;
}


.wrap img{
	display: block;
	max-width: 100%;
	margin: auto;
}



a{
	text-decoration: none;
	outline:none;
	transition: 0.3s ease;
/*	color: #3E3A39;*/
}

a:hover{
	text-decoration:none;
}
a:hover img{
	opacity: 0.7;
}
a:hover{
	opacity: 0.7;
}

.switch{
	display: none;
}
.flex{
	display: flex;
}


/*------------------ general----------------*/


.mt0   { margin-top:  0px !important ; }
.mt5   { margin-top:  5px !important ; }
.mt10  { margin-top: 10px !important ; }
.mt15  { margin-top: 15px !important ; }
.mt20  { margin-top: 20px !important ; }
.mt25  { margin-top: 25px !important ; }
.mt30  { margin-top: 30px !important ; }
.mt35  { margin-top: 35px !important ; }
.mt40  { margin-top: 40px !important ; }
.mt45  { margin-top: 45px !important ; }
.mt50  { margin-top: 50px !important ; }

.mb0   { margin-bottom:  0px !important ; }
.mb10  { margin-bottom: 10px !important ; }
.mb15  { margin-bottom: 15px !important ; }
.mb20  { margin-bottom: 20px !important ; }
.mb25  { margin-bottom: 25px !important ; }
.mb30  { margin-bottom: 30px !important ; }
.mb35  { margin-bottom: 35px !important ; }
.mb50  { margin-bottom: 50px !important ; }
.mb60  { margin-bottom: 60px !important ; }

.mr0 { margin-right: 0px !important;}
.mr10 { margin-right: 10px !important;}
.mr20 { margin-right: 20px !important;}
.mr30 { margin-right: 30px !important;}
.mr40 { margin-right: 40px !important;}

.pl0{ padding-left: 0px !important;}
.pl10{ padding-left: 10px !important;}
.pl20{ padding-left: 20px !important;}
.pl30{ padding-left: 30px !important;}
.pl40{ padding-left: 40px !important;}
.pl50{ padding-left: 50px !important;}

.pb0{ padding-bottom: 0px !important;}
.pb10{ padding-bottom: 10px !important;}
.pb20{ padding-bottom: 20px !important;}
.pb30{ padding-bottom: 30px !important;}
.pb40{ padding-bottom: 40px !important;}


.pr0{padding-right: 0px !important;}
.pr10{padding-right: 10px !important;}
.pr15{padding-right: 15px !important;}
.pr20{padding-right: 20px !important;}
.pr30{padding-right: 30px !important;}
.pr40{padding-right: 40px !important;}

.pt0{ padding-top: 0 !important;}
.pt10{ padding-top: 10px !important;}
.pt20{ padding-top: 20px !important;}
.pt30{ padding-top: 30px !important;}
.pt40{ padding-top: 40px !important;}


/*----------------- tab --------------*/
@media screen and (max-width:1024px){
	
	.wrap{
		width: 960px;
	}
}

	
/*---------------- sp-------------------*/

@media screen and (max-width:768px){
	
	html,body{
		width: 100%;
		min-width: inherit;
	}
	
	
	.sp{
		display: block;
	}
	.pc {
		display: none;
	}

	.wrap{
		width: 100%;
		padding: 0 4%;
	}
	
}

/*--------------- parts ---------------*/

.ggmap{
position: relative;
padding-bottom: 54.18%;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
#aaa{
	margin-top: 25px;
}
/*------------------ safari -------------------*/
_::-webkit-full-page-media, _:future, :root 
#aaa{
    width: 106px;
}


/*---------------------- main -----------------------*/

.under02 #main{
	padding-top: 80px;
}



/*------------------------- footer --------------------*/

#footer{
	background-color: #003366;
	color: #fff;
	padding: 30px 0 30px;
}
#footer a{
	color: #fff;
}

#footer .f_info{
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	width: 200px;
}
.f_logo_before{
	line-height: 1.4;
}
#footer .f_logo{
	width: 140px;
	margin-top: 10px;
}
#footer .f_logo img{
	margin: 0;
}
.f_img{
	width: 240px;
}
#footer .f_add{
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 1.58;
}
.f_add_box{
	margin-left: 40px;
	width: 200px;
}
.gmap_link{
	margin-top: 10px;
}
.gmap_link a{
	display: block;
	font-size: 1.2rem;
	background-color: #ff6666;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	width: 150px;
	height: 35px;
}
.f_open{
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	width: 250px;
	margin-left: 40px;
}
.f_open dd{
	padding-left: 1em;
}
#footer .f_sns{
	display: flex;
	align-items: flex-end;
}
#footer .f_sns li{
	width: 40px;
}
#footer .f_sns li + li{
	margin-left: 10px;
}
#footer .cpy{
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	margin-top: 87px;
	text-align: right;
}

#footer .f_policy{
	margin-top: 3em;
}

/*------------------------------- sp ----------------------------*/



@media screen and (max-width: 768px) {
	
	#main{
		margin-top: 70px;
	}
	body.under02 #main{
		padding-top: 0;
	}
	#footer {
		padding: 20px 0 50px;
	}
	#footer .flex{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#footer .f_logo img{
		margin: auto;
	}
	#footer .f_info{
		width: 80px;
	}
	#footer .f_logo{
		width: 100%;
		margin: 0;
	}
	.f_logo_before{
		display: none;
	}
	#footer .f_add_box{
		margin: 10px 0 0;
		width:100%;
		padding-left: 100px;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#footer .f_add{
		margin: 0;
		font-size: 1rem;
	}
	#footer .gmap_link a{
		width: 80px;
		font-size: 1rem;
	}
	#footer .f_open{
		font-size: 1rem;
		width:calc( 100% - 80px);
		padding-left: 20px;
		margin: 0;
	}
	#footer .f_policy{
		width: 100%;
		display: flex;
		margin-top: 2em;
	}
	#footer .f_policy br{
		display: none;
	}
	#footer .f_policy a{

	}
	#footer .f_policy a:last-of-type{
		margin-left: 1em;
	}
	
	#footer .f_sns{
		display: none;
		justify-content: center;
		width: 100%;
		margin-top: 20px;
	}
	#footer .f_sns li{
		width: 30px;
	}
	#footer .cpy {
		font-size: 1.0rem;
		letter-spacing: 0;
		text-align: center;
		margin-top: 25px;
	}
	.f_img{
		display: none;
	}


}
@media screen and (max-width: 425px) {
	
	#footer .f_sitemap .parent{
		width: 50%;
	}
	


}
@media screen and (max-width: 360px) {
	

}


/*-------------------------------　under ------------------------------------*/



.under #mv{
	height: 480px;
	position:relative;
	background-size:100%;
	position: relative;
	background-repeat: no-repeat;
/*	background-position: center center;*/
	background-attachment: fixed;
}
.under #mv::before{
/*	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:480px;
	background-position:center center;
	background-repeat: no-repeat;
	background-size:cover;*/
}
.under #mv > .wrap{
	color: #fff;
	padding: 182px 0 0;
}
.under #mv .mv_icon{
	margin: auto;
	margin-bottom: 16px;
}
.under #mv .page_ttl{
	font-weight: bold;
	font-size: 3rem;
	letter-spacing: 0.2em;
	text-align: center;
}
.under #mv .page_ttl .en{
	font-weight: 500;
	font-size: 1.4rem;
	display: block;
	letter-spacing: 0.1em;
}
.bg_gry{
	background-image: url("../images/bg_gry.png");
	background-repeat: repeat-x;
	background-position: center center;
}

#pankz{
	padding: 10px 0;
	background-color: #fff;
}
#pankz + section{
	padding-top: 60px;
}

#pankz ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
#pankz ul li{
	font-size: 1.2rem;
	color: #666666;
}
#pankz ul li a{
	color: #666666;
	text-decoration: none !important;
}
#pankz ul li + li{
	margin-left: 13px;
}
#pankz ul li + li::before{
	content: "＞";
	display: inline-block;
	margin-right: 12px;
}


/*------------------------------- sp ----------------------------*/


@media screen and (max-width: 768px) {
#pankz + section{
	padding-top: 30px;
}
	
	.under #mv > .wrap{
		padding: 5vh 0 0;
	}
	
	.under #mv{
		height: 20vh;
		background-image: none;
	}
	.under #mv::before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		height:480px;
		background-position:center center;
		background-repeat: no-repeat;
		background-size:cover;
	}
	.under #mv::before{
		height: 20vh;
		top: 70px;
	}
	.under #mv .mv_icon{
		margin-bottom: 5px;
	}
	.under #mv .page_ttl{
		font-size: 1.8rem;
	}
	.under #mv .page_ttl .en{
		font-size: 1.0rem;
	}
	#pankz{
		background-color: #fff;
	}

}
@media screen and (max-width: 768px) and (orientation: landscape) {
	
	.under #mv{
		height: 240px;
	}
	.under #mv::before{
		height: 240px;
	}
	.under #mv > .wrap{
		padding: 85px 0 0;
	}
}

/*-------------------------- sec_ttl ----------------------*/

.sec_ttl{
	font-size: 2.8rem;
	letter-spacing: 0.2em;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	
	.sec_ttl{
		font-size: 1.8rem;
	}
}

/*-------------------- pagenation -----------------------------*/


.pagenation ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagenation ul li{
	width: 6px;
	height: 6px;
	font-size: 0;
}
.pagenation ul li + li{
	margin-left: 14px;
}
.pagenation ul li.prev + li{
	margin-left: 25px;
}
.pagenation ul li.next{
	margin-left: 25px;
}
.pagenation ul li.prev,
.pagenation ul li.next{
	width: 30px;
	height: 30px;
	font-size: 0;
}
.pagenation ul li a,
.pagenation ul li span{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #c4c4c4;
	border-radius: 50%;
}

.pagenation ul .current span{
	background-color: #6c9bd2;
}
.pagenation ul li.prev a,
.pagenation ul li.next a,
.pagenation ul li.prev span,
.pagenation ul li.next span{
	background-size: contain;
}
.pagenation ul li.prev a,
.pagenation ul li.prev span{
	background-image: url( "../images/company/prev.png");
}
.pagenation ul li.next a,
.pagenation ul li.next span{
	background-image: url( "../images/company/next.png");
}
.pagenation ul li.prev span,
.pagenation ul li.next span{
	opacity: 0.5;
}


/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
.under02 #pankz{
	margin-top: 80px;
}



.cmn{
	padding: 60px 0;
}

.cmn ul{
	display: flex;
	flex-wrap: wrap;
}
.cmn ul li{
	width: calc( 100% / 4);
	height: 250px;
}
.cmn ul li.bai{
	width: calc( (100% / 4)*2);
}
.cmn ul li a{
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center center;
	text-decoration: none !important;
}
.cmn ul li.menu a{
	background-image: url("../images/cmn_menu.jpg");
}
.cmn ul li.yoyaku a{
	background-image: url("../images/cmn_yoyaku.jpg");
}
.cmn ul li.shop a{
	background-image: url("../images/cmn_shop.jpg");
}
.cmn ul li.reito a{
	background-image: url("../images/cmn_ham.jpg");
}
.cmn ul li.deli a{
	background-image: url("../images/cmn_deli.jpg");
}
.cmn ul li.blog a{
	background-image: url("../images/cmn_blog.jpg");
}
.cmn ul li a::before{
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.3s ease;
}
.cmn ul li a:hover{
	opacity: 1;
}
.cmn ul li a:hover::before{
	background-color: rgba(0,0,0,.4);
}
.cmn ul li a span{
	position: relative;
	color: #fff;
	display: inline-block;
	border: 1px solid #fff;
	font-size: 1.8rem;
	text-align: center;
	padding: 10px 15px;
}


.cmn_yoyaku{
	padding: 0 0 60px;
}

.cmn_yoyaku dl{
	border: 4px solid #ff0066;
	display: flex;
	padding: 15px;
}
.cmn_yoyaku dt{
	width: 95px;
}
.cmn_yoyaku dd{
	width: calc( 100% - 95px);
	padding-left: 30px;
}
#main .cmn_yoyaku dd .txt01{
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	margin-bottom: 10px;
}
#main .cmn_yoyaku dd .txt02{
	font-size: 1.6rem;
	letter-spacing: 0.10em;
}



@media screen and (max-width: 768px) {
	
	.cmn{
		padding: 35px 0;
	}
	.cmn .wrap{
		padding: 0;
	}
	
	.cmn ul li{
		width: 50%;
		height: 30vw;
	}
	.cmn ul li.bai{
		width: 100%;
	}
	.cmn ul li a span{
		font-size: 1.4rem;
		padding: 5px 10px;
	}
	.cmn_yoyaku{
		padding: 0 0 35px;
	}
	.cmn_yoyaku dt{
		width: 45px;
	}
	.cmn_yoyaku dd{
		width: calc( 100% - 45px);
		padding-left: 15px;
	}
	#main .cmn_yoyaku dd .txt01{
		font-size: 1.5rem;
		margin-bottom: 5px;
	}
	#main .cmn_yoyaku dd .txt02{
		font-size: 1.2rem;
	}
}

.btn{
	display: flex;
	justify-content: center;
}
.btn a{
	background-color: #003366;
	display:flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	border-radius: 20px;
	height: 40px;
	width: 250px;
	text-decoration: none !important;
}
@media screen and (max-width: 768px) {
	
	.btn a{
		font-size: 1.2rem;
	}
}
.sharedaddy{
	display: none !important;
}
.page_ttl{
	height: 350px;
	padding-top: 108px;
	background-size: cover;
	background-position: center center;
	background-image: url("../images/page_ttl_base.jpg");
}
.page_ttl .wrap{
	display: flex;
	align-items: center;
	height: 100%;
}
.page_ttl h1{
	font-size: 3rem;
	color: #fff;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
	
	.page_ttl{
		height: 100px;
		padding-top: 0;
	}
	.page_ttl h1{
		font-size: 2rem;
		line-height: 1.2;
	}
}

.under #main h2{
	font-size: 2.8rem;
	font-weight: 500;
	border: 1px solid #003366;
	padding: 10px 15px;
	letter-spacing: 0.1em;
	margin-bottom: 25px;
	color: #003366;
}
.under #main h3{
	font-size: 2.2rem;
	margin: 20px 0 10px;
	border-bottom: 1px solid #003366;
	padding-bottom: 5px;
}
.under #main h4{
	font-size: 1.8rem;
	font-weight: bold;
	margin: 2em 0 1.5em;
	display: flex;
	align-items: center;
}
.under #main h4::before{
	content: "";
	width: 10px;
	height: 10px;
	background-color: #003366;
	margin-right: 7px;
}
.under #main h5{
	font-size: 1.7rem;
	font-weight: bold;
	margin: 2em 0 1.5em;
	
}
.under #main * + h2{
	margin-top: 50px;
}
.under #main p,
.under #main li{
	font-size: 1.6rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
}
.under #main p + p{
	margin-top: 1.5em;
}
.under #main a{
	color: #000;
	text-decoration: underline;
}
.under #main a:hover{
	text-decoration: blink;
}

@media screen and (max-width: 768px) {
	.under #main h2{
		font-size: 2rem;
		line-height: 1.2;
	}

	.under #main h3{
		font-size: 1.8rem;
	}
	.under #main h4{
		font-size: 1.4rem;
	}
	.under #main p,.under #main li	{
		font-size: 1.4rem;
	}
}



.under table{
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.4;
}
.under table th{
	background-color: aliceblue;
	text-align: left;
	border: 1px solid #ccc;
	padding: 10px;
}
.under table td{
	text-align: left;
	border: 1px solid #ccc;
	padding: 10px;
}
@media screen and (max-width: 768px) {
	
	.under table{
		border-bottom: 1px solid #ccc;
	}
	.under table th,
	.under table td{
		display: block;
		width: 100%;
		border-bottom: none;
	}
	
}

#jp-relatedposts{
	display: none !important;
}