.cb-slideshow,
.cb-slideshow:after {
    position: absolute;
    width: 100%;
    height: 580px;
    top: 0px;
    left: 0px;
    z-index: 0;
	overflow: hidden;
	background: #808080;
}


@media screen and (max-width: 999px) {
	.cb-slideshow, .cb-slideshow:after {
		position: absolute;
		width: 100%;
		height: 330px;
		top: 50px;
		left: 0px;
		z-index: 0;
		overflow: hidden;
		background: #808080;
	}
}

.cb-slideshow:after {
		top: 0;
    content: '';
		height: 100%;
    background: transparent url(../img/ui/pattern.png) repeat top left;
}
.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
		font-size: 1px;
		text-indent: -9999px;
    color: rgba(255,255,255,0);
		-webkit-backface-visibility: hidden;
}
.cb-slideshow li div {
    z-index: 1000;
    position: absolute;
    bottom: 80px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
}
.img_anime {
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
}
.title_anime {
    -webkit-animation: titleAnimation 36s linear infinite 0s;
    -moz-animation: titleAnimation 36s linear infinite 0s;
    -o-animation: titleAnimation 36s linear infinite 0s;
    -ms-animation: titleAnimation 36s linear infinite 0s;
    animation: titleAnimation 36s linear infinite 0s;
}
.cb-slideshow li div h4 {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 370%/*80px*/;
    padding: 0 30px;
    line-height: 1.4em/*120px*/;
    color: rgba(255,255,255,0.8);
}

.cb-slideshow li div h3 {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 500%/*100px*/;
    padding: 0 30px;
    line-height: 1.3em/*120px*/;
    color: rgba(255,255,255,0.8);
}
.cb-slideshow li:nth-child(1) span { background-image: url(../img/slider/slide01.jpg) }
.cb-slideshow li:nth-child(2) span {
    background-image: url(../img/slider/slide02.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../img/slider/slide03.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../img/slider/slide04.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(../img/slider/slide05.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(../img/slider/slide06.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}

.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
@-webkit-keyframes imageAnimation {
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation {
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation {
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation {
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation {
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-webkit-keyframes titleAnimation {
	0% {
	    opacity: 0;
	    -webkit-transform: translateY(-300%);
	}
	8% {
	    opacity: 1;
	    -webkit-transform: translateY(0%);
	}
	17% {
	    opacity: 1;
	    -webkit-transform: translateY(0%);
	}
	19% {
	    opacity: 0;
	    -webkit-transform: translateY(100%);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@-moz-keyframes titleAnimation {
	0% {
	    opacity: 0;
	    -moz-transform: translateY(-300%);
	}
	8% {
	    opacity: 1;
	    -moz-transform: translateY(0%);
	}
	17% {
	    opacity: 1;
	    -moz-transform: translateY(0%);
	}
	19% {
	    opacity: 0;
	    -moz-transform: translateY(100%);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@-o-keyframes titleAnimation {
	0% {
	    opacity: 0;
	    -o-transform: translateY(-300%);
	}
	8% {
	    opacity: 1;
	    -o-transform: translateY(0%);
	}
	17% {
	    opacity: 1;
	    -o-transform: translateY(0%);
	}
	19% {
	    opacity: 0;
	    -o-transform: translateY(100%);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@-ms-keyframes titleAnimation {
	0% {
	    opacity: 0;
	    -ms-transform: translateY(-300%);
	}
	8% {
	    opacity: 1;
	    -ms-transform: translateY(0%);
	}
	17% {
	    opacity: 1;
	    -ms-transform: translateY(0%);
	}
	19% {
	    opacity: 0;
	    -ms-transform: translateY(100%);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@keyframes titleAnimation {
	0% {
	    opacity: 0;
	    transform: translateY(-300%);
	}
	8% {
	    opacity: 1;
	    transform: translateY(0%);
	}
	17% {
	    opacity: 1;
	    transform: translateY(0%);
	}
	19% {
	    opacity: 0;
	    transform: translateY(100%);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
@media screen and (min-width: 1200px) {
	.cb-slideshow li div h4 { font-size: 50px }
}
@media screen and (max-width: 1199px) {
	.cb-slideshow li div h4 { font-size: 48px }
}
@media screen and (max-width: 999px) {
	.cb-slideshow li div h4 { font-size: 42px }
}
@media screen and (max-width: 767px) {
	.cb-slideshow li div h4 { font-size: 30px }
}
@media screen and (max-width: 413px) {
	.cb-slideshow li div h4 { font-size: 20px }
}

#site_name_wrapper {
	width: 1000px;
	margin: 0 auto;
}

#site_name {
	top: 67px;
	position: absolute;
}

@media (max-width: 999px) {
	#site_name_wrapper {
		width: 100%;
		margin: 0 auto;
		display: none;
	}
}

.grid {
	position: relative;
	margin: 0 auto;
	padding: 0 0 ;
	width: 100%;
	list-style: none;
	text-align: center;
	font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0px 0px;
	width: 50%;
	max-height: 240px;
	background: #fff;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	color: #fff;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.grid figure figcaption > a {
	z-index: 99;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
	font-size: 24px;
	height: 24px;
}

.grid figure h2 span {
	font-weight: 700;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 75%;
	height: 20px;
	font-weight:700;
}

figure.effect-bubba {
	background: #121212;
}

figure.effect-bubba img {
	opacity: 0.8;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0.3;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.effect-bubba figcaption::after {
	border-right: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

figure.effect-bubba h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	position: absolute;
	top: 0; bottom:0; left:0; right:0;
	margin: auto;
}

figure.effect-bubba p {
	opacity: 0;
	display: inline-block;
	position: absolute;
	top: 0; bottom:0; left:0; right:0;
	margin: auto;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.effect-bubba:hover h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}

@media screen and (max-width: 999px) {
	.content {
		padding: 0 10px;
		text-align: center;
	}
	.grid figure {
		display: inline-block;
		margin: 0 auto;
		width: 100%;
		height: 153px;
	}
	.grid figure h2 {
		word-spacing: -0.15em;
		font-size: 16px;
		height: 16px;
	}
	.grid figure p {
		font-size: 12px;
		height: 12px;
	}
	.grid figure {
		max-height: 120px;
	}
	figure.effect-bubba figcaption::before,
	figure.effect-bubba figcaption::after {
		position: absolute;
		top: 12%;
		right: 5%;
		bottom: 12%;
		left: 5%;
	}
}

/* ------------------------------------- */
/*	 パララックス
/* ------------------------------------- */
#slide1{
	background-image:url(../img/top/parallax.jpg)  ;
	background-position:center center;
}
.slide{
	background-attachment: fixed;
	width:100%;
	height: 197px;
	position: relative;
}
.slide_copy {
	width:100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.slide_copy img {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
}

@media (max-width: 999px) {
	.slide {
		height: 100px;
		padding: 0;
	}
	.slide_copy img {
		width: 80%;
	}
	#slide1{
		background-size: 200%;
		background-position:left top;
	}
}

.contents_box {
	width: 1000px;
	margin: 36px auto 60px;
	letter-spacing: -0.4em;
}

@media (max-width: 999px) {
	.contents_box {
		width: 100%;
		margin-top: 400px;
	}
}

/* ------------------------------------- */
/*	 お知らせ
/* ------------------------------------- *//* */
.information {
	width: 500px;
	/*height:470px;*/
	text-align: center;
	display: inline-block;
	letter-spacing: normal;
	padding-right: 39px;
	vertical-align: top;
}

.information .tab.tab_active {
	display: block;
}

.tab {
	width: 461px;
	text-align: left;
	font-size: 14px;
	display: none;
	height: ;
	/*height: 345px;*/
	/* height: 295px*/
	/*overflow: scroll;*/
	overflow-x: hidden;
}

.tab ul {
	width: 461px;
	padding-right: 10px;
}
.tab li a {
	text-decoration: underline;
}

.tab_head {
	width: 461px;
	height: 45px;
	border-bottom: 7px solid #424242;
	margin-top: 35px;
	text-align: left;
}

.tab_btn {
	width: 147px;
	height: 38px;
	background-color: #e6e6e6;
	color: #424242;
	text-align: center;
	line-height: 38px;
	float: left;
	margin-left: 10px;
}

.tab_btn_active {
	background-color: #424242;
	color: #ffffff;
}

.tab_head .tab_btn:first-child {
	margin-left: 0;
}

.tab_btn span {
	vertical-align: middle;
	display: inline-block;
	font-size: 14px;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 0.1em;
}

.tab ul {
	background-color: #ffffff;
}

.tab li {
	margin-top: 10px;/*margin-top: 20px;*/
}

.date {
	color: #9b9b9b;
	font-size: 12px;
}

/*.icon{
	background: url(../img/icon_space.png) no-repeat 0 0px;
}*/

/** ▼▼ お知らせ カテゴリーアイコン
・診療 news
・求人 recruit
・イベント event
・学術 activity_event
・本牧コラム column
・スタッフ！ staff      ▼▼ **/
.news_mark { margin-left: 0px; margin-right: 8px; width:120px; min-width:120px; text-align:center;
             color: #fff; display: block; height: 20px; font-size:12px;}
.news { background-color: #ff6f04;}
.recruit { background-color: #500047;}
.event { background-color: #c2022c;}
.academic { background-color: #0249b3;}
.column { background-color: #02b38a;}
.staff { background-color: #097c25;}

/** ▲▲ お知らせ カテゴリーアイコン ▲▲ **/

.title {
	font-weight: bold;
}

@media (max-width: 999px) {
	#information_ttl {
		width: 21%;
		margin: 0px auto;
	}
	.information {
		width: 100%;
		height: auto;
		padding: 0;
	}
	.tab {
		width: 95%;
		text-align: left;
		font-size: 12px;
		margin-left: 2.5%;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 2px solid #c6c6c6;
		height: auto;
		overflow: auto;
	}
	.tab ul {
		width: 100%;
		padding-bottom: 20px;
	}
	.tab_head {
		width: 95%;
		height: 42px;
		border-bottom: 7px solid #424242;
		margin-top: 20px;
		margin-left: 2.5%;
		text-align: left;
	}

	.tab_btn {
		width: 32%;
		height: 35px;
		text-align: center;
		line-height: 38px;
		float: left;
		margin-left: 2%;
	}
	.tab_btn span {
		font-size: 11px;
		letter-spacing: 0.05em;
	}
}


/* ------------------------------------- */
/*	 診療受付
/* ------------------------------------- */
.medicalcare {
	width: 500px;
	height: 470px;
	text-align: center;
	display: inline-block;
	letter-spacing: normal;
	border-left: 1px solid #c6c6c6;
	padding-left: 39px;
	font-size: 14px;
}
#medicalcare_tbl {
	margin-top: 35px/*50px*/;
}
.medicalcare_txt {
	width :460px;
	text-align: left;
	margin-top: 17px;
	margin-bottom: 30px;
}
.medicalcare_box {
	width: 460px;
	height: 72px;
	background-color: #f5f5f5;
	line-height: 72px;
}
.medicalcare_box img {
	vertical-align: middle;
	margin: 0 7px;
}
@media (max-width: 999px) {
	.medicalcare {
		width: 100%;
		height: auto;
		padding: 0;
		font-size: 12px;
	}
	#medicalcare_ttl {
		width: 21%;
	}
	#medicalcare_tbl {
		width: 95%;
		margin-top: 16px;
	}
	.medicalcare_txt {
		width : 100%;
		text-align: left;
		margin-top: 10px;
		margin-bottom: 10px;
		padding: 0 2.5%;
	}
	#medicalcare_tel {
		width: 205px;
	}
	.medicalcare_box {
		width: 100%;
		height: auto;
		background-color: #fff;
		line-height: 1.6;
		text-align: left;
	}
	#tel_icon {
		display: none;
	}
}
/* ------------------------------------- */
/*	 採用情報
/* ------------------------------------- */
.recruits {
	text-align: center;
	padding: 60px 0;
}

.recruit_box {
	width: 680px;
	height: 110px;
	background-color: #f5f5f5;
	margin: 29px auto 44px;
	line-height: 110px;
}

.recruit_box span {
	font-size: 14px;
	display: inline-block;
	text-align: left;
	vertical-align: middle;
	padding-right: 40px;
	line-height: 1.6;
}
.recruit_box img {
	vertical-align: middle;
}

@media (max-width: 999px) {
	#recruit_ttl {
		width: 21%;
	}
	.recruits {
		text-align: center;
		padding: 25px 0;
	}
	.recruit_box {
		width: 95%;
		height: auto;
		text-align: center;
		line-height: 1.6;
		padding: 16px 0;
		margin: 16px auto;
	}
	.recruit_box span {
		padding: 0;
	}
}

/* ------------------------------------- */
/*	 アクセス
/* ------------------------------------- */
.access_wrapper {
	width: 1000px;
	margin: 0 auto;
	letter-spacing: -0.4em;
	font-size: 0;
	overflow: hidden;
}
#access_map, #access_map_top {
	width: 500px;
	height: 500px;
}
#access_map_top img {
	width: 100%;
}
.access {
	width: 500px;
	vertical-align: top;
	text-align: center;
	padding-top: 60px;
}

#access_letter {
	margin: 50px 0px 70px 120px;
	text-align: left;
	font-size: 12px;
	font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	letter-spacing: normal;
}

#access_letter span:nth-of-type(1){
	font-size: 18px;
	font-weight: bold;
}
#access_letter span:nth-of-type(2){
	font-size: 13px;
	font-weight: bold;
}
#access_letter span:nth-of-type(3){
	font-size: 18px;
	font-weight: bold;
}
#access_letter span:nth-of-type(4){
	font-size: 12px;
}
#access_letter span:nth-of-type(5){
	font-size: 12px;
}

@media (min-width: 1000px) {
	#access_map {
		float: left;
	}
	.access {
		float: right;
	}
}
@media (max-width: 999px) {
	.access_wrapper {
		width: 95%;
		margin: 0 auto;
	}
	#access_map {
		width: 100%;
		height: 300px;
		margin-bottom: 13px;
	}
	 #access_map_top {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}
	.access {
		width: 100%;
		margin-bottom: 13px;
		padding-top: 26px;
	}
	#access_ttl {
		width: 22%;
	}
	#access_letter {
		width: 280px;
		margin: 16px auto;
	}
}
@media (max-width: 479px) {
	#access_letter {
		margin: 16px auto;
	}
}


/* ------------------------------------- */
/*	 リンク
/* ------------------------------------- */
.link_wrapper {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding:20px;
	background-color: #0961c5;
}

.link_box {
	width: 70%;
	height: 110px;
	background-color: #fff;
	margin: 0px auto;
	padding: 0 10px 10px;
	line-height: 110px;
}

.link_bnr{ float:left; letter-spacing:normal; margin:0 5px; color:#000; font-size:14px;}
.link_bnr img {vertical-align:middle;}

@media (max-width: 999px) {
	.link_wrapper {
		width: 100%;
		margin: 0 auto;
	}
	
	.link_box {
		width: 90%;
		padding: 0 0;
		margin: 0 auto;
	}
}

