@charset "utf-8";


/*　　トップページ　/ メインイメージ
-------------------------------------------------------*/
/*　メインイメージがスライダーの場合 */
.main-img {
    position: relative;
    height: 90%;
    max-height: 960px;
    margin-left: 26.5%;
}
#video-area {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 26.5%;
		height: 100%;
    max-height: 960px;
		border-radius: 0 0 0 50px;
    overflow: hidden;
}
#video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
.main-tit-box {
		position: absolute;
    left: -212px;
    top: calc(53% - 91px);
    width: 404px;
    height: 184px;
		z-index: 200;
}
.main-img-slideshow {
	background-color: #fff;
}
.main-img-slideshow,
.main-img-slideshow:after {
    position: absolute;
    width: 100%;
		height: 100%;
		margin: 0 auto;
    top: 0;
    left: 0;
    z-index: 100;
    border-radius: 0 0 0 50px;
		overflow: hidden;
}
.main-img-slideshow:after {
    content: '';
}
.main-img-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 100;
    -webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 18s linear infinite 0s;
    animation: imageAnimation 18s linear infinite 0s; 
}
.main-img-slideshow li:nth-child(1) span {
    background-image: url("../images/pages/main_img01.jpg");
}
.main-img-slideshow li:nth-child(2) span {
    background-image: url("../images/pages/main_img02.jpg");
	-webkit-animation-delay: 6s;
    animation-delay: 6s;
}
.main-img-slideshow li:nth-child(3) span {
    background-image: url("../images/pages/main_img03.jpg");
	-webkit-animation-delay: 12s;
    animation-delay: 12s;
}

@media screen and (min-width: 1024px) and (max-width: 1150px){
.main-img {
	height: 600px;
  margin-left: 25%;
}
#video-area {
		position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 25%;
		max-height: 600px;
		border-radius: 0 0 0 30px;
		overflow: hidden;
}
.main-tit-box {
	position: absolute;
	width: 280px;
  height: 128px;
  left: -148px;
  right: 0;
  top: calc(50% - 46px);
}
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.main-img {
	height: 450px;
  margin-left: 20%;
}
#video-area {
		position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 20%;
		max-height: 450px;
		border-radius: 0 0 0 30px;
		overflow: hidden;
}
.main-tit-box {
	position: absolute;
	width: 202px;
  height: 92px;
  left: -108px;
  right: 0;
  top: calc(50% - 46px);
}
.main-img-slideshow,
.main-img-slideshow:after {
    border-radius: 0 0 0 30px;
}
}

@media screen and (max-width: 767px){
.main-img {
	height: calc(100% - 230px);
  margin: 0px 0 230px 0;
}
#video-area {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 230px;
		height: auto;
		border-radius: 0;
    overflow: hidden;
}
.main-tit-box {
	position: absolute;
	width: 202px;
    height: 92px;
    left: 0;
    right: 0;
    top: calc(100% + 50px);
    margin: 0 auto;
}
.main-img-slideshow,
.main-img-slideshow:after {
    border-radius: 0;
}
.main-img-slideshow li:nth-child(1) span {
    background-position: 40% 50%;
}
.main-img-slideshow li:nth-child(2) span {
    background-position: 40% 50%;
}
.main-img-slideshow li:nth-child(3) span {
    background-position: 40% 50%;
}
}

@media screen and (max-width: 767px) and (orientation : landscape) {
.main-img {
	height: 100%;
    margin: 0;
}
#video-area {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 25%;
    bottom: auto;
		height: 100%;
		border-radius: 0;
    overflow: hidden;
}
.main-tit-box {
	position: absolute;
	width: 202px;
    height: 92px;
    left: 8%;
    right: auto;
    top: calc(50% - 46px);
}
.main-img-slideshow,
.main-img-slideshow:after {
    border-radius: 0;
}
.main-img-slideshow li:nth-child(1) span {
    background-position: 40% 50%;
}
.main-img-slideshow li:nth-child(2) span {
    background-position: 40% 50%;
}
.main-img-slideshow li:nth-child(3) span {
    background-position: 40% 50%;
}
}

@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	}
	15% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.2);
	}
	45% {
		opacity: 0;
		-webkit-transform: scale(1.2);
	}
	60% {
	    opacity: 0;
	    -webkit-transform: scale(1.2);
	}
	100% {
		opacity: 0;
	}
}

@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	}
	15% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	30% {
	    opacity: 1;
	    transform: scale(1.2);
	}
	45% {
		opacity: 0;
		transform: scale(1.2);
	}
	60% {
	    opacity: 0;
	    transform: scale(1.2);
	}
	100% {
		opacity: 0;
	}
}

.no-cssanimations .main-img-slideshow li span {
	opacity: 1;
}



/*　　トップページ 
-------------------------------------------------------*/
.top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 15.5%;
    max-width: 310px;
    height: 120%;
    max-height: 1172px;
    background-image: url("../images/pages/top_bg01.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
    z-index: 10;
}
.top-business-img {
    border-radius: 0 50px 0 0;
    overflow: hidden;
}
.top-service-img-box {
    width: 45.5%;
    max-height: 1260px;
    margin-top: 60px;
    background-image: url("../images/pages/top_service_img01.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0 50px 0 0;
}
.top-service-box {
    width: 54.5%;
    margin-top: 60px;
    background-image: url("../images/pages/top_service_bg.png");
    background-repeat: repeat;
    border-radius: 0 0 0 50px;
}
.top-service-mypage {
    padding: 20px 60px;
    background-color: #fff;
}
.top-service-mypage-btn {
    display: block;
    width: 180px;
    margin-left: 40px;
    padding: 10px;
    line-height: 1;
    text-align: center;
    border: 3px solid #bb191f;
    border-radius: 12px;
}
.top-service-mypage-btn:hover {
    background-color: #ffe8e9;
}
.top-service-menu-inner {
    max-width: 690px;
    padding: 30px 60px 70px;
}
.top-service-menu-box {
    margin-top: 40px;
}
a.top-menu-link {
    display: block;
    background-color: #fff;
}
a.top-menu-link:hover div {
    opacity: 0.8;
}
.top-service-menu1 {    
    width: 205px;
    padding: 55px 20px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    background-color: #cc0022;
}
.top-service-menu2 {    
    width: 205px;
    padding: 40px 20px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    background-color: #cc0022;
}
.top-service-menu3 {    
    width: 205px;
    padding: 55px 20px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    background-color: #05387e;
}
.top-service-menu4 {    
    width: 205px;
    padding: 55px 20px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    background-color: #777;
}
.top-service-menu5 {
	width: 48%;
	margin-top: 40px;
}
.top-service-menu6 {
	width: 48%;
	margin-top: 40px;
}
.top-service-menu-tit {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
}
.top-service-menu-img {
    width: calc(100% - 205px);
}
.top-partner-tit {
    display: inline-block;
    padding: 0 20px;
    margin: 0 auto;
    background-color: #fff;
}
.top-partner-img {
	width: 18.4%;
	margin-right: 2%;
	margin-top: 50px;
}
.top-partner-img:nth-child(5n) {
	margin-right: 0;
}
.top-partner-img a {
    display: block;
    border: 1px solid #c3c3c3;
    text-align: center;
}
.top-partner-img img {
    display: block;
    margin: 0 auto;
}
.top-partner-box {
    margin-top: 145px;
}

@media screen and (min-width: 1024px) and (max-width: 1150px){
.top-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 750px;
}
.top-service-img-box {
    width: 50%;
		max-height: 1200px;
    background-position: left calc(50% - 40px) center;
}
.top-service-box {
    width: 50%;
}
.top-service-mypage {
    padding: 20px 40px;
}
.top-service-menu-inner {
    padding: 30px 40px 70px;
}
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.top-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 560px;
}
.top-business-img {
    border-radius: 0 30px 0 0;
}
.top-service-img-box {
    width: 100%;
    height: 650px;
    background-position: center top;
    border-radius: 0;
}
.top-service-box {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}
.top-service-menu-inner {
    margin: 0 auto;
}
.top-partner-box {
    margin-top: 125px;
}
.top-partner-img {
    margin-top: 30px;
}
}

@media screen and (max-width: 767px){
.top-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 97%;
    max-height: auto;
}
.top-service-img-box {
    width: 100%;
    height: 300px;
    margin-top: 50px;
    background-position: center top;
    border-radius: 0;
}
.top-service-box {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}
.top-service-mypage {
    padding: 20px 0;
    font-size: 12px; font-size: 1.2rem;
}
.top-service-mypage-btn {
    width: 140px;
    margin-left: 10px;
    border-radius: 8px;
}
.top-service-menu-inner {
    max-width: auto;
    width: 100%;
    padding: 10px 12px 50px;
}
.top-service-menu-box {
    width: 49%;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 0 15px 0 0;
    overflow: hidden;
}
.top-service-menu1 {    
    width: 100%;
    padding: 20px 10px;
}
.top-service-menu2,
.top-service-menu3,
.top-service-menu4 {    
    width: 100%;
    padding: 10px 10px;
}
.top-service-menu5,
.top-service-menu6{
	width: 49%;
	margin-top: 30px;
}
.top-service-menu-tit {
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.top-service-menu-img {
    width: 100%;
}
.top-partner-box {
    margin-top: 85px;
}
.top-partner-img {
	width: 48.33%;
	margin-right: 3.33%;
	margin-top: 15px;
}
.top-partner-img:nth-child(even) {
	margin-right: 0;
}
}


/*　　トップページ / NEWS
-------------------------------------------------------*/
.top-news-bg {
    position: relative;
    padding: 60px 110px 80px;
    background-color: #f2f2f2;
    border-radius: 12px;
}
.news-list-mgT {
		padding-top: 180px;
}
a.top-news-link {
    display: block;
    color: #666;
}
a.top-news-link:hover {
    color: #4388f0;
}
.top-news-box {
    margin-top: 15px;
    padding: 15px 0;
    border-bottom: 1px dotted #ccc;
}
.top-news-date {
    display: inline-block;
    width: 185px;
    padding-left: 10px;
}
.top-news-tit {
    display: inline-block;
    width: calc(100% - 185px);
}
.top-news-btn {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -27px;
}
.wrapper-news-detail {
    padding: 0 9.16%;
    border: 1px solid #ccc;
    border-radius: 12px;
}
.news-inner em {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-style: italic !important;
}
.news-inner ul {
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 25px;
}
.news-inner ol {
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 25px;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.top-news-bg {
    padding: 60px 40px 80px;
}
.news-list-mgT {
    padding-top: 125px;
}
}

@media screen and (max-width: 767px){
.top-news-bg {
    padding: 30px 10px 60px;
}
.news-list-mgT {
    padding-top: 85px;
}
.top-news-box {
    margin-top: 10px;
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
}
.top-news-date {
    width: 100%;
    padding: 0 10px;
}
.top-news-tit {
    width: 100%;
    padding: 0 10px;
}
.wrapper-news-detail {
    padding: 0 6%;
    border-radius: 8px;
}
}



/*　　各ページタイトルイメージ
-------------------------------------------------------*/
.pagetitle-img {
    position: relative;
    height: 360px;
    margin-top: 80px;
    letter-spacing: 3px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pagetitle-img-decoration {
    position: absolute;
    bottom: -28%;
    left: 10%;
    width: 13%;
    max-width: 260px;
    height: 243px;
    background-image: url("../images/pages/page_bg.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
    z-index: 10;
}
.page-company {
    height: auto;
    padding-bottom: 32%; /* アスペクト比 */
    background-image: url("../images/pages/page_company.jpg");
}
.page-koe {
    height: auto;
    padding-bottom: 32%; /* アスペクト比 */
    background-image: url("../images/pages/page_koe.jpg");
}
.page-business {
    height: auto;
    padding-bottom: 32%; /* アスペクト比 */
    background-image: url("../images/pages/page_business.jpg");
}
.page-fd {
    height: auto;
    padding-bottom: 32%; /* アスペクト比 */
    background-image: url("../images/pages/page_fd.jpg");
}
.page-contact {
    background-image: url("../images/pages/page_contact.jpg");
}
.page-privacy {
    background-image: url("../images/pages/page_privacy.jpg");
}

@media screen and (min-width: 1024px) and (max-width: 1150px){
.pagetitle-img {
    height: 320px;
    margin-top: 60px;
}
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.pagetitle-img {
    height: 220px;
    margin-top: 65px;
}
.pagetitle-img-decoration {
    left: 10%;
    width: 16%;
}
.page-company,
.page-business {
    height: 320px;
}
.page-company,
.page-koe {
    height: 320px;
}
}

@media screen and (max-width: 767px){
.pagetitle-img {
    height: 120px;
    margin-top: 45px;
}
.pagetitle-img-decoration {
    left: 6%;
    width: 16%;
}
.page-company,
.page-business {
    height: 150px;
}
.page-company,
.page-koe {
    height: 150px;
}
}



/*　　リリーユーについて　会社概要　アクセス
-------------------------------------------------------*/
.inner-about {
    padding: 0 80px;
}
.table-profile th {
	padding: 15px 0 30px 160px;
}
.access-table-box {
}
.accessmap-box {
    height: 600px;
    border: 8px solid #fff;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.inner-about {
    padding: 0 80px;
}
.table-profile th {
	padding: 15px 0 30px 30px;
}
}

@media screen and (max-width: 767px){
.inner-about {
    padding: 0 20px;
}
.table-profile th {
	padding: 10px 0 10px 0;
}
.access-table-box {
}
.accessmap-box {
    height: 400px;
}
}



/*　　事業内容 / お客様本位の業務運営方針
-------------------------------------------------------*/
.business-img {
    border-radius: 0 50px 0 50px;
    overflow: hidden;
}
.business-img2 {
    border-radius: 0 50px 0 0;
    overflow: hidden;
}
.business-step-box {
    border-bottom: 1px dotted #ccc;
}
.business-step {
    display: inline-block;
    margin-right: 10px;
    padding: 6px 20px 10px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    border-radius: 6px;
    background: linear-gradient(135deg, #4388f0, #38c6fb);
}
.fd-tit {
    padding-left: 60px;
}
.fd-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-left: -60px;
    padding: 6px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    border-radius: 6px;
    background: linear-gradient(135deg, #4388f0, #38c6fb);
}
.fd-img {
    width: 48.33%;
  	margin-right: 3.33%;
    margin-bottom: 20px;
    border-radius: 0 50px 0 50px;
    overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.business-img2 {
    border-radius: 0 30px 0 0;
}
.fd-num {
    width: 40px;
    height: 40px;
}
}

@media screen and (max-width: 767px){
.fd-tit {
    padding-left: 50px;
    clear: both;
}
.fd-num {
    width: 40px;
    height: 40px;
    margin-left: -50px;
}
.fd-img {
    width: 100%;
  	margin-right: 0;
    margin-bottom: 20px;
    border-radius: 0 50px 0 50px;
    overflow: hidden;
}
}



/*　　お問い合わせ　/　メールフォーム
-------------------------------------------------------*/
.table-contact th {
	padding: 15px 0 30px 160px;
}
.contact-img-ssl {
    width: 135px;
}
.contact-privacy-box {
	height: 400px;
	margin: 0 auto;
    border: 3px solid #dedede;
}
.contact-privacy-box2 {
    padding: 30px;
}
.contact-privacy-box iframe {
    width: 100%;
    height: 100%;
    overflow: auto;
}
.form-initialize {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.contactForm {
	margin: 30px auto 0;
}
.contactForm .pan {
	display: none;
}
.contactForm .icon-required {
	position: relative;
	display: inline-block;
	font-size: 12px; font-size: 1.2rem;
	line-height: 1.5;
	margin-right: 10px;
	padding: 2px 8px 2px;
	background-color: #cf1126;
	color: #fff;
	vertical-align:middle;
	border-radius: 3px;
}
.contactForm th,
.contactForm td { font-size: 16px; font-size: 1.6rem;}
.contactForm input { padding: 10px; font-size: 16px; font-size: 1.6rem; vertical-align:middle; border: 1px solid #ccc;}
.contactForm .select-menu { height: 40px; padding: 6px; font-size: 16px; font-size: 1.6rem; width: 50%; border: 1px solid #ccc;}
.contactForm textarea { padding: 10px; font-size: 16px; font-size: 1.6rem; font-family: 'Noto Sans JP', sans-serif; border: 1px solid #ccc;}
.contactForm .btn-box {
	padding-top: 50px;
	text-align: center;
}
.contactForm .btn-send,
.contactForm .btn-send2 {
	display: block;
	-webkit-appearance: none;
	width: 680px;
	height: 80px;
	margin: 0 auto;
	color: #fff;
	font-size: 20px; font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	border: 0;
    border-radius: 6px;
	background: url("../images/common/arrow_01.png"), linear-gradient(to right, #4388f0, #38c6fb);
	background-repeat: no-repeat, no-repeat;
	background-size: 8px auto, auto;
	background-position: right 15px center, center;
	cursor: pointer;
    transition-duration: 0.2s;
}
.contactForm .btn-send-lh {
	line-height: 80px;
}
.contactForm .btn-send2 {
	width: 42.5%;
	margin: 0 5% 0 2.5%;
}
.contactForm .btn-send:hover,
.contactForm .btn-send2:hover  {
	background: url("../images/common/arrow_01.png"), linear-gradient(to right, #0b6cff, #00d8ff);
    background-repeat: no-repeat, no-repeat;
	background-size: 8px auto, auto;
	background-position: right 15px center, center;
    transform: scale(1.05);
}
.contactForm .btn-modify {
	position: relative;
	-webkit-appearance: none;
	width: 42.5%;
	height: 80px;
	margin: 0 2.5% 0 5%;
	font-size: 20px; font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	border: 0;
    border-radius: 6px;
	color: #fff;
	background-color: #444;
	background-image: url("../images/common/arrow_02.png");
	background-repeat: no-repeat;
	background-size: 8px auto;
	background-position: left 15px center;
	cursor: pointer;
    transition-duration: 0.2s;
}
.contactForm .btn-modify:hover {
	background-color: #666;
    transform: scale(1.05);
}
#error_message_area {
	margin-top: -120px;
	padding-top: 130px;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.table-contact th {
	padding: 15px 0 30px 30px;
}
.contact-privacy-box {
    height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling:touch;
}
.contact-privacy-box iframe {
    height: 300px;
}
.contactForm .btn-send {
	width: 80%;
	font-size: 20px; font-size: 2.0rem;
}
.contactForm .btn-send2 {
	font-size: 20px; font-size: 2.0rem;
}
}

@media screen and (max-width: 767px){
.table-contact th {
	padding: 10px 0 10px 0;
}
.contact-privacy-box {
	height: 200px;
    overflow: auto;
    -webkit-overflow-scrolling:touch;
}
.contact-privacy-box2 {
    padding: 12px;
}
.contact-privacy-box iframe {
    height: 200px;
}
.contactForm .size_and_txt {
	width: 50%;
}
.contactForm .btn-box {
	padding-top: 30px;
}
.contactForm .btn-send {
	width: 80%;
	height: 60px;
	font-size: 18px; font-size: 1.8rem;
}
.contactForm .btn-send-lh {
	line-height: 60px;
}
.contactForm .btn-send2 {
	width: 80%;
	height: 60px;
	margin: 20px auto 0;
	font-size: 18px; font-size: 1.8rem;
}
.contactForm .btn-modify {
	width: 80%;
	height: 60px;
	margin: 0 auto;
	font-size: 18px; font-size: 1.8rem;
}
}



/*　ページャー
-------------------------------------------------------*/
.pagination {
    display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: row;
  	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  display: block;
  padding: 10px 18px;
  margin-right: 8px;
  margin-top: 10px;
  line-height: 1.4;
  font-family: 'Barlow', sans-serif;
  color: #333;
  text-decoration: none;
  background-color: #ccc;
  transition-duration: 0.2s;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #4388f0;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  font-weight: bold;
  background-color: #444;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
.pagination {
}
.pagination > li > a,
.pagination > li > span {
  padding: 6px 12px;
}
}

@media screen and (max-width: 767px){
.pagination {
}
.pagination > li > a,
.pagination > li > span {
  padding: 6px 12px;
}
}





