@charset "utf-8";
/* common */
html {
	width:100%;
}
body {
	width: 100%;
    font-family: 'Noto Sans JP',sans-serif;
    font-weight: 300;
    font-style: normal;
	background-color: #FFF;
    color: #3B4043;
}
#wapper {
  overflow-x: hidden;
    width: 100%;
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.8;
    padding-top: 50px;
}
li{
	list-style-type: none;
}
.fluidimg {
    max-width: 100%;
    height: auto;
} 
img {
	max-width: 100%;
	height: auto;
}
section {
    padding: 80px 0px 40px;
    text-align: center;
}
section .inner {
    max-width: 1140px;
    padding: 0 30px;
	margin: 0 auto;
}
figure{
	text-align: center;
	margin: 2rem 0 3rem;
}
#pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
}
#pagetop a {
    display: block;
    color: #FFFFFF;
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    background-color: #1e3c54;
}
.en{
	font-family: sofia-pro, sans-serif;
	font-size: 110%;
} 
.bg_black{background: #333;}
.bg_gray{background: #eff1f3;}

.taL{text-align: left;}

/* 共通タイトル */
h2.ttl01{
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 3rem;
}
.text{
	font-size: 2.4rem;
	font-weight: 700;
    letter-spacing: 3px;
	line-height: 1.4;
	color: #1e3c54;
	display: inline-block;
	background-image: linear-gradient(45deg, #1e3c54 0%, #4697d7 52%, #1e3c54 90%);
	background-size: 400% 100%;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	animation-name: gradationTextAnimation;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
@keyframes gradationTextAnimation{
		0%{
			background-position: 0 0;
		}
		50%{
			background-position: 100% 0;
		}
		100%{
			background-position: 0 0;
		}
}
h3{
	font-size: 1.1rem;
	color: #fff;
	background: #1e3c54;
	padding: 0.4rem 0 0.4rem 2rem;
	text-align: left;
	letter-spacing: 3px;
	display: flex;
	align-items: center;
}	
h3 i{
	color: #4697d7;
	font-size: 0.7rem;
	margin-right: 0.6rem;
}
.comment{
	font-size: 0.4rem;
	margin-top: 1rem;
	text-align: left;
}

/* Flex */
.container{
    width: 100%;
    display: flex;
	align-items: center;
}

/* ヘッダー */
#header {
    width: 100%;
    border-bottom: 1px solid #eee;
    position: fixed;
    margin: 0px auto;
    transition: .5s;
    background-color: #FFF;
    z-index: 10100;
    top: 0;
}
#header #headerinnr {
    max-width: 1100px;
	margin: 0 auto;
    height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
#headerinnr #logo {
    width: 180px;
}
#headerinnr .topLogo {
    /* left: 220px; */
    /* top: 10px; */
    position: relative;
    width: 180px;
    /* position: absolute; */
    line-height: 1;
}
#headerinnr .headContBtn{
    text-align: center;
    color: #fff;
    background: #1e3c54;
	border: solid 1px #1e3c54;
    padding: 6px 35px;
    display: block;
	transition: .4s ease-in-out;  
    position: relative;
    border-radius: 30px;
    font-size: 1rem;
}
#headerinnr .headContBtn {
    display: block;
}
#headerinnr .headContBtn i{
    margin-right: 5px;
}
#headerinnr .btn_area{
	display: flex;
}
#headerinnr .btn_area li:first-child{
	margin-right: 1.6rem;
}

/*ドロワー*/
.l-drawer {
    position: relative;
  }
  .l-drawer__checkbox {
    display: none;
  }
  .l-drawer__icon {
    cursor: pointer;
    display: block;
    width: 56px;
    height: 60px;
    position: fixed;
    right: 0;
    top: 65px;
    z-index: 10100;
  }
  .l-drawer__icon-parts, .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
    background-color: #000;
    display: block;
    width: 26px;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
    content: " ";
  }
  .l-drawer__icon-parts:before {
    top: 10px;
  }
  .l-drawer__icon-parts:after {
    top: -16px;
  }
  .l-drawer__overlay {
    background: #000;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
  }
  .l-drawer__menu {
    background: #ffffff;
    color: #000;
    max-width: 100%;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    right: -300px;
    font-weight: bold;
  }
  .l-drawer__item{
    padding: 5px 10px;
    border-bottom: solid 2px #434343;
    background-color: #f7f9fb;
  }
  .l-drawer__item a,
  .l-drawer__item label{
    display: block;
    color: #110273;
    text-decoration: none;
}
  .l-drawer__icon {
    display: none;
  }
  .l-drawer__menu {
    z-index: 3;
  }
  .l-drawer__overlay {
    z-index: 2;
  }
  .l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts {
    background: transparent;
  }
  .l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
  }
  .l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
  }
  .l-drawer__checkbox:checked ~ .l-drawer__overlay {
    opacity: 0.3;
    pointer-events: auto;
  }
  .l-drawer__checkbox:checked ~ .l-drawer__menu {
    right: 0;
  }
  .l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }

/* グローバルメニュー */
#g_navi{
	background-color: #1e3c54;
	display: inherit;
  }
  #g_navi ul {
	  display: flex;
	  margin: 0 auto;
	  padding: 0 1.1%;
	  width: 100%;
	  max-width: 1140px;; 
  }
  #g_navi ul li {
	width: calc(100%/4);
	line-height: 1;
	border-left: 1px solid #fff;
  }
  #g_navi ul li:last-child {
	border-right:1px solid #fff;
  }
  #g_navi ul li a {
	display: block;
	padding: 10px 5% 10px ;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 0.9rem;
  }
  #g_navi ul li a:hover {
	background-color: #4697d7;
  }
  .firstNav{
	position: relative;
	transition: all 0.2s;
  }

/* top */
.top{
	background-image:url("../img/topvisual_bg.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
	height:480px;
}
.top_area{
    max-width: 1140px;
	margin: 0 auto;
	padding: 80px 0 0 20px;
	color: #1e3c54;
	text-align: left;;
}
.top_area h1.main_ttl span.en{
	font-size: 3.1rem;
	display: block;	
}
.top_area h1.main_ttl{
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 4px;
	line-height: 1.5;
	padding-top: 1rem;
}
.top_area h1.main_ttl span.en{
	color: #1e3c54;
    background: -webkit-linear-gradient(0deg, #1e3c54, #4697d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.top_area h1.sub_ttl01{
	font-size: 1.7rem;
	letter-spacing: 2px;
}
.top_area h1.sub_ttl02{
	font-size: 1rem;
	letter-spacing: 2px;
	padding-top: 2rem;
}


/* section01 */
.section01 p{
	color: #1e3c54;
	background: #eff1f3;
	padding: 2rem;
	text-align: left;
}
.section01 h4{
	font-size: 1.4rem;
	margin: 2rem 0 3rem;
}
.section01 h4 span{
	margin-right: 0.2rem;
	color: #4697d7;
	border-bottom: solid 2px #4697d7;
}
.section01 p span{
	font-size: 1rem;
	font-weight: 700;
	background: linear-gradient(transparent 60%, #cbe2f4 0%);
}

/* section02 */
.section02 p,.section05 p{
	text-align: left;
	margin: 1rem 0 3rem;
}
.table {
	width: 90%;
	margin: 0 auto;
}
.table thead {
    border-right: 2px solid #fff;
    line-height: 1.6;
}
.table tr {
    border-bottom: 2px solid #fff;
    padding: 0.8rem 0 0.8rem 0.8rem;
    font-size: 0.9rem;
    text-align: center;
    vertical-align: middle;
	background: #f2f8fd;
}
.table th {
    text-align: center;
    background: #4697d7;
    font-weight: 500;
    color: #fff;
    border-right: 2px solid #fff;
    padding: 0.4em;
    letter-spacing: 1.8px;
}
.table td {
	border-left: 2px solid #fff;
    border-right: 2px solid #fff;
	padding: 0.4rem 0 0.4rem 0.6rem;
	vertical-align: middle;
	letter-spacing: 1.2px;
	line-height: 1.5;
}
.section02 .comment{
	width: 90%;
	margin: 0 auto;
	text-align: left;
	margin-bottom: 3rem;
	margin-top: 0.4rem;
}
.section02 ul{
	justify-content: space-between;
}
.section02 ul li{
	width: 40%;
	margin-bottom: 3rem;
}
.section02 .container p{
	background: #4697d7;
	color: #fff;
	font-size: 1.1rem;
	padding: 1rem 0 1rem 1rem;
	margin: 0 0 0.6rem;
	position: relative;
}
.section02 .container p::after {
	position: absolute;
    top: 0;
    right: -60px;
    content: '';
    border: solid 48px transparent;
    border-right: solid 30px transparent;
    border-left: solid 30px #4697d7;
  }
.section02 ul li h4{
	font-size: 1.2rem;
	font-weight: 700;
    text-align: left;
	padding-left: 1rem;
}

/* section03 */
.section03 h3 {
    padding: 0;
}
.section03 h3 span{
	background: #4697d7;
	margin-right: 1.4rem;
	padding: 0.4rem 1rem;
}
.section03 h4 {
	font-size: 1.3rem;
    border-left: solid 6px #4697d7;
	padding: 0.4rem 0 0.4rem 1rem;
	margin: 3rem 0 0;
	text-align: left;
}
.section03 h4 span {
    font-size: 1.2rem;
	display: block;
	color: #4697d7;
	font-weight: 700;
	letter-spacing: 3px;
}
.section03 .ttl04{
    display: flex;
	justify-content:space-between;
	align-items: flex-end;
}
.section03 .container {
    justify-content:space-between;
	width: 97%;
	align-items:flex-start;
	margin-bottom: 5rem;
}
.section03 .container .ttl03 {
    background: #4697d7;
    color: #fff;
    font-size: 1rem;
    padding: 0.6rem 0 0.6rem 1rem;
    margin: 2rem 0 1.6rem;
    position: relative;
}
.section03 .container .ttl03::after {
    position: absolute;
    top: 0;
    right: -60px;
    content: '';
    border: solid 24px transparent;
    border-right: solid 30px transparent;
    border-left: solid 30px #4697d7;
}
.section03 .container li {
    width: 31%;
}
.section03 .txt_area {
	display: flex;
	align-items: center;
	margin-top: 1rem;
}
.section03 .txt_right_area{
    width: 80%;
}
.section03 .container .txt01 {
	background: #eff1f3;
	padding: 0.6rem;
	width: 20%;
	height: 238px;
	display: flex;
    justify-content: center;
	align-items: center;
}
.section03 .container .txt01.txt04 {
	height: 60px;
	background: #9facbd;
	color: #fff;
	line-height: 1.4;
	letter-spacing: 0.8px;
}
.section03 .container .txt01.txt05 {
	height: 160px;
}
.section03 .container .txt02 {
	font-size: 0.8rem;
	text-align: left;
	text-indent: -1em;
    padding-left: 1.8em;
	line-height: 1.4;
	margin-bottom: 0.6rem;
}
.section03 .container .txt02.txt06 {
	text-indent: -1.5em;
    padding-left: 2.5em;
}
.section03 .container .txt02 span {
	color: #4697d7;
	font-weight: bold;
}
.section03 .container i {
	color: #4697d7;
	margin-left: 1rem;
}

/* section04 */
section.section03 .inner,section.section04 .inner,section.section05 .inner {
    padding: 100px 30px 0;
}
.section04 table.table01,.section04 table.table02{
	margin: 0 auto;
	margin-top: 3rem;
}
.section04 table.table01 tr {
	text-align: right;
}
.section04 table.table01 td,.section04 table.table02 td {
    padding: 0.4rem 1rem 0.4rem;
}
.section04 table th.bg_gray02{
	background: #78818e;
}
.section04 .comment {
	line-height: 1.5;
	width: 90%;
	margin: 0 auto;
	margin-top: 0.4rem;
	margin-bottom: 4rem;
}

/* section05 */
.section05 h4{
	border-left: 6px solid #4697d7;
	text-align: left;
	font-size: 1rem;
	padding-left: 0.6rem;
	margin: 3rem 0 1.6rem;
}
.table03 {
	width: 100%;
	margin: 0 auto;
}
.table03 thead {
    border-right: 2px solid #fff;
    line-height: 1.6;
}
.table03 tr {
    border-bottom: 2px solid #fff;
    padding: 0.8rem 0 0.8rem 0.8rem;
    font-size: 0.9rem;
    text-align: center;
    vertical-align: middle;
	background: #f2f8fd;
}
.table03 th {
    text-align: center;
    background: #4697d7;
    font-weight: 500;
    color: #fff;
    border-right: 2px solid #fff;
    padding: 0.4em;
    letter-spacing: 1.8px;
}
.table03 th.item03,.table03 td.green,.table03 td.blue,.table03 td.pink{
	width: 8%;
	font-size: 0.75rem;
	padding: 0.4rem 0;
}
.table03 td {
	border-left: 2px solid #fff;
    border-right: 2px solid #fff;
	padding: 0.4rem 0 0.4rem 1rem;
	vertical-align: middle;
	letter-spacing: 1.2px;
	line-height: 1.5;
	background: #eff1f3;
}
.table03 td.green{
	background: #38C08F;
	color: #fff;
}
.table03 td.blue{
	background: #0052B6;
	color: #fff;
}
.table03 td.pink{
	background: #f86da6;
	color: #fff;
}
.section05 .comment {
	width: 100%;
}

/* お問い合わせ */
.contact{
    background-color: #f4f5f7;
	font-size: 1.3rem;
	color: #13192f;
	text-align: center;
}  
.contactInn{
    max-width: 1200px;
    margin: 0 auto;
}
.contactTitle.en {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
	font-weight:500;
}
.contactInn p{
    font-size: 1rem;
	color: #13192f;
	margin-bottom: 10px;
}
.contact_wrapper{
	display: flex;
	justify-content:center;
	align-items:center	
}
.contact .contactText{
	margin: 30px 0;
	font-size: 1.7rem;
	letter-spacing: 1.2px;
}
.contact_wrapper li {
    padding: 0 1.6rem;
}
a.contactBtn i{
	margin-right: 10px;
	color: #FFFFFF;
}
a.contactBtn{
	text-align: center;
    color: #fff;
	border: solid 1px #1e3c54;
	background: #1e3c54;
    line-height: 1;
	width: 250px;
    padding: 14px 50px;
    display: block;
    transition: .2s linear;
    border-radius: 30px;
	letter-spacing: 1.2px;
	margin: 1.2rem 0 1rem;
}
.contactInn .comment{
	font-size: 0.7rem;
}
.contactInn p.comment02 {
    display: flex;
    align-items: flex-start;
    font-size: 0.7rem;
    width: 530px;
    text-align: left;
    margin: 0 auto;
    padding-top: 20px;
    line-height: 1.4;
    font-weight: normal;
}
.contactInn p.comment02 span {
	color: #1e3c54;
    padding: 3px 7px;
    border: solid 1px #1e3c54;
    display: inline-block;
    margin-bottom: 3px;
    margin-right: 10px;
}
section.contact{
	padding: 60px 0px 30px;
}

a.contactBtn:hover, a.contactBtn:active {
    text-decoration: none;
	color: #1e3c54;
	border: solid 1px #1e3c54;
    background-color: #eff1f3;
}
#headerinnr .headContBtn:hover, #headerinnr .headDocsBtn:active {
    text-decoration: none;
	color: #1e3c54;
	border: solid 1px #1e3c54;
    background-color: #fff;
}

/*フッター*/
#footer {
  padding: 0;
  background: #1e3c54;
}
#footer .footerinnr {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 20px 0px;
}
#footer .footerinnr .footerNav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
}
#footer .footerinnr .footerNav li {
	width: auto;
}
#footer .footerinnr .footerNav li:last-child {
	width: auto;
}
#footer .footerinnr .footerNav li a {
	display: block;
	padding: 10px 15px;
}
#footer .copy {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 1.2px;
  background-color: #333;
  color: #fff;
  line-height: 1.4;
  padding: 7px 5px 5px;
}

/* リンク*/
#footer .footerinnr .footerNav li a:link, #footer .footerinnr .footerNav li a:visited {
	color: #fff;
	text-decoration: none;
}
#footer .footerinnr .footerNav li a:hover, #footer .footerinnr .footerNav li a:active {
	color: #d7d9ed;
	text-decoration: underline;
}

.sp{
	display: none;
}

/* ふわっと表示 */
.scr-target {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}
.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s;
}


/*****************************************************
	タブレット
******************************************************/
@media screen and (max-width: 1024px) {
  　.pc_none{
       display: none;
    }
	#header #headerinnr {
		padding: 0 20px;
		width: 100%;
	}
	#headerinnr #logo {
		width: 140px;
	}
	#headerinnr .topLogo {
		width: 140px;
	}
	#headerinnr .topLogo {
		/* left: 180px;
		top: 20px; */
	}
	#headerinnr .headContBtn {
		padding: 6px 20px;
		font-size: 0.9rem;
	}
	#headerinnr ul li:first-child {
		margin-right: 10px;
	}
	.top_area h1.sub_ttl01 {
		font-size: 1.3rem;
	}
	.top {
		height: 660px;
	}
	.top_area {
		padding: 60px 0 0 20px;
	}
	.top_area h1.main_ttl span.en {
		font-size: 2.6rem;
	}
	.top_area h1.sub_ttl02 {
		font-size: 1rem;
		padding-top: 1rem;
	}
	.section03 .container li {
		width: 30%;
	}
	.section03 h4 {
		font-size: 1.2rem;
		padding: 0.4rem 2rem 0.4rem 1rem;
	}
	.section03 .container .txt01.txt04 {
		height: 90px;
	}
	.table {
		width: 100%;
	}
}

/*****************************************************
	iPad縦向き
******************************************************/
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
	
}
/*****************************************************
	タブレット／スマホ横
******************************************************/
@media screen and (max-width: 767px){
	#headerinnr .headbtn.contact_btn,#headerinnr .headbtn.movie_btn,#headerinnr .headbtn.dl_btn,#headerinnr .blog_btn,#g_navi{
        display: none;
    }
	#header #headerinnr {
        max-width: 100%;
        height: 50px;
    }
	/* ハンバーガーメニュー*/
	.l-drawer__icon {
        cursor: pointer;
        display: block;
        width: 56px;
        height: 60px;
        position: fixed;
        right: 0;
        top: 65px;
        z-index: 10000;
    }
	
}

/*****************************************************
	横向き・横幅812px以下の場合 (iphoneXR対応)
******************************************************/
@media (orientation: landscape) and (max-width: 896px){
	#headerinnr .headContBtn {
		padding: 6px 16px;
		font-size: 0.8rem;
	}
	#headerinnr .topLogo {
        /* top: 7px; */
	}
	#headerinnr .headContBtn {
		display: none;
	}
}

/*****************************************************
	スマホ
******************************************************/
@media only screen and (max-device-width: 599px) {
	.sp_none{
       display: none;
    }
	#header {
		padding: 0 10px;
	}
	#headerinnr #logo {
		width: 130px;
		top: 10px;
		position: absolute;
	}
	#headerinnr .headContBtn a {
		padding: 6px 20px 6px 10px;
		font-size: 1rem;
	}
	#header #headerinnr {
		justify-content: space-between;
		width: 100%;
		padding: 0;
	}
	#headerinnr ul,.contact_wrapper{
        flex-direction:column;	
	}
	#headerinnr .headContBtn {
		display: none;
	}
	#headerinnr ul li:first-child {
		margin-right: 0;
		margin-bottom: 0.4rem;
	}
	#headerinnr ul {
		display: flex;
		position: absolute;
		right: 0;
	}
	#headerinnr .topLogo {
		/* left: 150px;
        top: 7px; */
        width: 130px;
	}
	section {
		padding: 60px 0px;
	}
	section .inner {
		max-width: 100%;
		padding: 0 16px;
	}
	section.section02 {
		padding: 0;
	}
	.top{
		background-image:url("../img/topvisual-sp.png");
		background-position: center bottom;
		height: 680px;
	}
	.top_area h1.main_ttl span.en {
		font-size: 2.4rem;
		line-height: 1.2;
	}
	.top_area h1.main_ttl {
		font-size: 1.6rem;
		line-height: 2;
	}
	.top_area h1.sub_ttl01 {
		font-size: 1.5rem;
		letter-spacing: 2px;
    }
	.top_area {
		padding: 20px 0 0 20px;
	}
	.top_area h1.sub_ttl02 {
		font-size: 0.9rem;
		padding-top: 1rem;
	}
	.text {
		font-size: 2.3rem;
		line-height: 1.2;	
		margin-top: 3rem;
	}
	h2.ttl01 {
		font-size: 1.3rem;
	}
	h3 {
		padding: 1rem;
	}
	.section01 h4 {
		font-size: 1.2rem;
	}
	.container {
		flex-direction: column;
		align-items: flex-start;
	}
	.section01 p {
		padding: 2rem 1rem;
	}
	.section02 ul li {
        width: 90%;
    }
	.section02 ul li h4 {
		padding-left: 0;
	}
	.section03 .ttl04 {
		flex-direction: column;
		align-items: center;
	}
	.section03 .container li,.section04 .comment,.table{
		width: 100%;
	}
	.section03 h4 {
		margin: 2rem 0 1rem;
	}
	section.section03 .inner,section.section04 .inner,section.section05 .inner{
    padding: 0 16px;
	}
	a.contactBtn {
		margin-left: 0;
		width: 100%;
	}
	.contactInn p.comment02 {
        padding: 0 16px;
		width: 100%;
	}
	.contactInn p.comment02 span {
		padding: 3px 4px;
	}
	.contact {
        padding: 50px 20px 0;
    }
	.contactBtn {
        margin-left: 0;
		margin-bottom: 20px;
    }
	.contact .contactText {
		margin: 30px 20px 15px 0;
	}
	.contactInn p {
		margin: 0 20px;
	}
	.contactInn p.comment {
		width: 95%;
	}
	#footer .logo {
		padding: 20px 10px;
	}
	#footer .footerinnr .footerNav {
		justify-content: space-between;
	}
	#footer .footerinnr .footerNav li {
		width: 50%;
	}
	#footer .footerinnr .footerNav li:last-child {
		width: 100%;
	}
	#footer .footerinnr .footerNav li a {
		padding: 10px 0px;
	}	
}
