@charset "utf-8";

/* break point */
/* ---------------------
  (max-width) 1390, 991, 781, 575
  (min-width) 1391, 992, 782, 576
--------------------- */

/* 共通
-----------------------------------------------*/
.breadcrumbs {
	font-size: 1.5rem;
	margin: 200px auto 0.8em;
}
.breadcrumbs a {
	text-decoration: underline;
	margin-right: 0.3em;
}
.breadcrumbs a + span {
	margin-left: 0.2em;
}
.lower_container {
	position: relative;
	padding-left: 90px;
}
.lower_container .catchcopy {
	position: absolute;
	top: 0;
	left: 0;
}
.lower_main_container {
	padding-right: 90px;
}
.pagetitle {
	background: url("images/pagetitle_bg.jpg") no-repeat;
    background-size: cover;
	background-position: center top;
	background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1em;
    min-height: 250px;
}
.pagetitle .text {
    display: inline-block;
    font-size: 250%;
	font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px #060504, 0 0 30px #4e372b, 0 0 50px #4e1c02;
}
.pagination {
	width: 100%;
}
.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.pagination .page-numbers {
	margin: 0.3em;
	border: 1px solid #777;
	width: 3em;
	height: 3em;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagination .current {
    background: #131c32;
    color: #fff;
    border-color: transparent;
}
.pagination .dots {
	border: none;
	width: auto;
	height: auto;
}
.pagination .prev, .pagination .next {
	display: none;
}
.notfound {
	margin: 8em 0 16em;
}
@media (hover: hover) and (min-width: 992px) {
	.breadcrumbs a:hover {
		text-decoration: none;
	}
	.pagination a:not(.prev):not(.next):hover {
		background: #131c32;
		color: #fff;
		border-color: transparent;
	}
}
@media screen and (max-width: 1920px) {
	.breadcrumbs {
		margin-top: 150px;
	}
}
@media screen and (max-width: 1390px) {
	.lower_container {
		padding-left: 60px;
	}
	.lower_main_container {
		padding-right: 60px;
	}
	.pagetitle {
		min-height: 200px;
	}
	.pagetitle .text {
		font-size: 200%;
	}
}
@media screen and (max-width: 991px) {
	.breadcrumbs {
		margin-top: 100px;
		font-size: 1.4rem;
	}
	.lower_container {
		padding-left: 0;
	}
	.lower_main_container {
		padding-right: 0;
	}
	.pagetitle {
		min-height: 180px;
		background-size: 1000px;
	}
	.pagetitle .text {
		font-size: 3.0rem;
	}
	.pagination .nav-links {
		font-size: 80%;
	}
}

/* 固定ページ
-----------------------------------------------*/
.page_maincontent {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}
.maincontent .section {
	margin-top: 6em;
}
.maincontent .section::after {
	content: "";
	display: block;
	clear: both;
}
.maincontent h2 {
	font-size: 160%;
	color: #fff;
	background: linear-gradient(60deg, #12327f, #062675);
	text-align: center;
	padding: 0.25em 0.5em 0.3em;
	margin-bottom: 1em;
}
.maincontent h3 {
	font-size: 140%;
	color: #000;
	margin: 2em 0 0.8em;
}
.maincontent h4 {
	font-size: 120%;
	color: #000;
	margin: 1.3em 0 0.8em;
}
.maincontent h5 {
	font-size: 105%;
	margin: 1.3em 0 0.8em;
}
.maincontent h6 {
	font-size: 100%;
	margin: 1.3em 0 0.8em;
}
.maincontent .title_has_logo {
	background: none;
	color: #000;
	text-align: left;
	position: relative;
	padding-left: 2.6em;
	margin-top: 3em;
	margin-bottom: 1em;
}
.maincontent .title_has_logo::before {
	content: "";
	background: url("images/title_icon.png") no-repeat 0 0;
	background-size: contain;
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
}
.maincontent .title_lebel_1 {
	font-size: 140%;
}
.maincontent p {
	margin-bottom: 1.5em;
}
.maincontent hr {
	border: none;
	border-top: 1px solid #ccc;
	margin: 2.5em auto;
}
.maincontent table {
	width: 100%;
}
.maincontent th, .maincontent td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
	border: 1px solid #b9bcbd;
	padding: 0.7em 0.8em;
}
.maincontent th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
	background: #e8edee;
	text-align: left;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table.is-style-stripes tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table.is-style-stripes tr td {
	border-left: none;
	border-right: none;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table.is-style-stripes tr:nth-child(odd) td {
	background: #e8edee;
}
.maincontent ul, .maincontent ol {
	margin: 0 0 1.5em 35px;
}
.maincontent ul {
	list-style-type: disc;
}
.maincontent a {
	color: #0060b3;
	text-decoration: underline;
}
/* 余白調整用 */
.maincontent .mt_2_em {
	margin-top: 2em;
}
@media (hover: hover) and (min-width: 992px) {
	.maincontent a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width: 991px) {
	.maincontent .section {
		margin-top: 4em;
	}
	.maincontent h2 {
		font-size: 130%;
	}
	.maincontent h3 {
		font-size: 130%;
	}
}

/* 詳細ページ
-----------------------------------------------*/
.single_head .title {
	border-bottom: 2px solid #000;
	font-size: 170%;
	padding-bottom: 0.4em;
	color: #000;
}
.single_head .cate {
	margin-top: 0.7em;
}
.single_head .cate a {
	display: inline-block;
	border: 1px solid #000;
	font-size: 85%;
	padding: 0.1em 0.3em;
	margin: 0 0.6em 0.6em 0;
}
.single_head .date {
	font-size: 85%;
	margin-bottom: 0.5em;
}
.single_share {
	display: flex;
}
.single_share .twitter-share-button {
	margin-right: 10px;
}
.single_foot {
	text-align: center;
}
@media (hover: hover) and (min-width: 992px) {
	.single_head .cate a:hover {
		background: #131c32;
		color: #fff;
		border-color: transparent;
	}
}
@media screen and (max-width: 991px) {
	.single_head .title {
		font-size: 130%;
	}
}

/* 会社案内
-----------------------------------------------*/
.maincontent .map {
	width: 100%;
	height: 400px;
}
.maincontent .map > div, .maincontent .map iframe {
	width: 100%;
	height: 100%;
}
.maincontent .history_table tr td {
	text-align: left;
	vertical-align: top;
}
.maincontent .history_table tr td:nth-child(1) {
	width: 11em;
	padding-right: 1.7em;
	text-align: right;
}
.maincontent .history_table tr td:nth-child(2) {
	padding-left: 0;
}
@media screen and (max-width: 991px) {
	.maincontent .history_table table, .maincontent .history_table tbody, .maincontent .history_table tr, .maincontent .history_table td {
		display: block;
		width: 100%;
	}
	.maincontent .history_table tr td:nth-child(1) {
		width: 100%;
		text-align: left;
		font-weight: 700;
		border-bottom: none;
		padding: 0.7em 0.8em 0;
		font-size: 90%;
	}
	.maincontent .history_table tr td:nth-child(2) {
		border-top: none;
		padding: 0.7em 0.7em 0.8em 1em;
	}
	.maincontent .history_table tr + tr td:nth-child(1) {
		border-top: none;
	}
}

/* 実績紹介
-----------------------------------------------*/
.works_category {
	margin-top: 6em;
	margin-bottom: 3em;
}
.works_category .sp {
	display: none;
}
.works_category .pc {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.works_category .item {
	width: 24.5%;
	display: flex;
}
.works_category .item a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border: 1px solid #000;
	padding: 0.6em 0.5em;
}
.works_category a.current {
    background: #131c32;
    color: #fff;
    border-color: transparent;
    position: relative;
}
.works_category a.current::after {
    content: "";
    width: 20px;
    height: 10px;
    border: 10px solid transparent;
    border-top: 10px solid #131c32;
    border-bottom: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.works_archive {
	display: flex;
	flex-wrap: wrap;
}
.works_archive .clm {
	width: 25%;
	padding: 1%;
	margin-bottom: 3%;
}
.works_archive .img {
	position: relative;
	width: 100%;
	padding-top: 66%;
	overflow: hidden;
	border: 1px solid #ededed;
}
.works_archive .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: all 0.1s;
}
.works_archive .cate {
	margin: 0.3em 0;
}
.works_archive .cate span {
	font-size: 1.4rem;
	border: 1px solid #000;
	padding: 0 0.3em 0.1em;
}
.works_archive .title {
	font-weight: 700;
}
.works_archive .pagination {
	margin-top: 2em;
}
/* 詳細ページ */
.works_single_head {
	margin-top: 6em;
}
.works_single_gallery {
	margin: 30px auto;
}
.works_single_gallery .slider {
	text-align: center;
	background: #f3f3f3;
	overflow: hidden;
	position: relative;
}
.works_single_gallery .slider .swiper-wrapper {
	align-items: center;
}
.works_single_gallery .slider .swiper-slide {
	padding: 0 7%;
}
.works_single_gallery .swiper-button-next, .works_single_gallery .swiper-button-prev {
	width: 4%;
	padding-top: 4%;
	height: auto;
	background: #131c32;
	color: #fff;
	border: 1px solid transparent;
	margin-top: 0;
	transform: translateY(-50%);
}
.works_single_gallery .swiper-button-next::after, .works_single_gallery .swiper-button-prev::after {
	font-size: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.works_single_gallery .swiper-button-next {
	right: 0;
}
.works_single_gallery .swiper-button-prev {
	left: 0;
}
.works_single_gallery .slider-thumbnail {
	overflow: hidden;
	margin-top: 20px;
}
.works_single_gallery .slider-thumbnail .swiper-slide {
	padding: 0 2px;
	opacity: 0.6;
	position: relative;
	overflow: hidden;
	padding-top: 14%;
}
.works_single_gallery .slider-thumbnail .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
}
.works_single_gallery .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}
.works_single_foot {
	margin-top: 5em;
}
@media (hover: hover) and (min-width: 992px) {
	.works_category .item a:hover {
		background: #131c32;
		color: #fff;
		border-color: transparent;
	}
	.works_archive a:hover .img img {
		transform: scale(1.2,1.2);
	}
	.works_archive a:hover .title {
		text-decoration: underline;
	}
	.works_single_gallery .swiper-button-prev:not(.swiper-button-disabled):hover, .works_single_gallery .works_single .swiper-button-next:not(.swiper-button-disabled):hover {
		background: #fff;
		color: #000;
		border-color: #000;
	}
}
@media screen and (max-width: 1390px) {
	.works_category, .works_single_head {
		margin-top: 4em;
	}
}
@media screen and (max-width: 991px) {
	.works_category {
		margin-top: 3em;
	}
	.works_category .pc {
		display: none;
	}
	.works_category .sp {
		display: block;
	}
	.works_category select {
		border: 1px solid #000;
		width: 100%;
		font-size: 105%;
		font-weight: 700;
		padding: 0.7em 1em;
		background: url("images/select_arrow.png") no-repeat center right 10px #fff;
		padding-right: 35px;
	}
	.works_archive .clm {
		width: 33.33%;
		margin-bottom: 7%;
	}
	.works_single_foot {
		margin-top: 3em;
	}
}
@media screen and (max-width: 575px) {
	.works_archive .clm {
		width: 50%;
	}
	.works_single_gallery .swiper-button-next, .works_single_gallery .swiper-button-prev {
		width: 6%;
		padding-top: 6%;
	}
}

/* お知らせ
-----------------------------------------------*/
.news_container {
	display: flex;
	margin-top: 7%;
}
.news_Rbox {
	flex: 1;
	padding-right: 6%;
}
.news_sidebar {
	max-width: 300px;
	width: 25%;
}
.side_clm {
	margin-bottom: 2em;
}
.side_clm .title {
    background: linear-gradient(60deg, #12327f, #062675);
    color: #fff;
    padding: 0.3em 0.7em;
}
.side_clm .list li {
	border-bottom: 1px solid #ccc;
}
.side_clm .list a {
    display: block;
    font-size: 95%;
    padding: 0.7em 0;
    position: relative;
    padding-left: 25px;
}
.side_clm .list a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	top: 1.25em;
	left: 8px;
}
/* アーカイブ */
.news_archive .archive_title {
	font-size: 130%;
	margin-bottom: 0.6em;
	border-bottom: 2px solid #000;
	padding: 0 0.2em 0.4em;
}
.news_archive .archive_title::before {
	content: "";
	background: url("images/icon_folder.png") no-repeat 0 0;
	background-size: contain;
	width: 25px;
	height: 22px;
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: -0.1em;
}
.news_archive .article {
	border-bottom: 1px solid #ccc;
}
.news_archive .article a {
    display: flex;
    width: 100%;
    padding: 1em;
}
.news_archive .article .date {
	width: 6.5em;
	font-size: 90%;
	margin-top: 0.1em;
}
.news_archive .article .cate span {
    display: inline-block;
    border: 1px solid #000;
    font-size: 85%;
    padding: 0.1em 0.3em;
}
.news_archive .article .title {
	flex: 1;
	font-weight: bold;
	padding-left: 1em;
}
.news_archive .pagination {
	margin-top: 3em;
}
/* 詳細ページ */
.news_single_head {
	margin-bottom: 1.5em;
}
.news_single_share {
	margin-top: 3em;
}
.news_single_foot {
	margin-top: 2em;
}
@media (hover: hover) and (min-width: 992px) {
	.side_clm .list a:hover {
		text-decoration: underline;
	}
	.news_archive .article a:hover .main {
		text-decoration: underline;
	}
}
@media screen and (max-width: 991px) {
	.news_container {
		display: block;
		margin-top: 3em;
	}
	.news_Rbox {
		padding-right: 0;
	}
	.news_sidebar {
		width: 100%;
		max-width: none;
		margin-top: 10%;
	}
	.news_archive .article a {
		flex-wrap: wrap;
	}
	.news_archive .article .title {
		flex: initial;
		width: 100%;
		padding-left: 0;
		margin-top: 0.5em;
	}
}

/* お問い合わせ
-----------------------------------------------*/
.telfax_container {
	gap: normal !important;
	justify-content: space-between;
	margin-top: 2em;
}
.telbox, .faxbox {
	width: 49%;
	flex: inherit !important;
	background: #efefef;
	text-align: center;
	padding: 0 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}
.telbox {
	padding-top: 1.5em;
}
.faxbox {
	padding-top: 0.5em;
}
.telbox .label, .faxbox .label {
    position: absolute;
    top: 0.3em;
    margin: 0;
}
.telbox .num, .faxbox .num {
    font-weight: 700;
    font-size: 4.0rem;
    margin: 0.2em 0;
    color: #000;
	width: 100%;
}
.telbox .num::before {
	content: "";
	background: url("images/icon_tel.png") no-repeat center center;
	background-size: contain;
	width: 1em;
	height: 1em;
	display: inline-block;
	margin-right: 0.2em;
	vertical-align: -0.15em;
}
.faxbox .num::before {
	content: "";
	background: url("images/icon_fax.png") no-repeat center center;
	background-size: contain;
	width: 1em;
	height: 1em;
    display: inline-block;
    margin-right: 0.3em;
    vertical-align: -0.15em;
}
.policycheck {
	border: 1px solid #ccc;
	background: #f9f9f9;
	font-size: 90%;
	margin-top: 2em;
	padding: 1.3em 1.5em 0.5em;
}
@media screen and (max-width: 991px) {
	.telfax_container {
		flex-wrap: wrap !important;
	}
	.telbox, .faxbox {
		width: 100%;
		font-size: 85%;
		padding-top: 0.5em;
	}
	.faxbox {
		padding-bottom: 1em;
		margin-top: 10px !important;
	}
	.telbox .label, .faxbox .label {
		position: static;
	}
	.telbox .num, .faxbox .num {
		font-size: 3.0rem;
	}
}

/* MW WP Form（旧）
-----------------------------------------------*/
.mailform {
	margin-top: 2em;
}
.mailform input, .mailform textarea {
	border: 1px solid #999;
	border-radius: 3px;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.15) inset;
	font-size: 95%;
	padding: 0.5em 0.7em;
	width: 100%;
}
.mailform input[type="radio"], .mailform input[type="checkbox"] {
	border: none;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	width: auto;
}
.mailform button {
	background: #fff;
	color: #000;
	border: 1px solid #000;
	box-shadow: none;
	border-radius: 0;
	width: auto;
	font-size: 100%;
	padding: 1em 1.5em 1em 2em;
	margin: 5px;
	cursor: pointer;
}
.mailform button[type="submit"]:not([value="back"])::after {
	content: "";
	background: url("images/ft_arrow.png") no-repeat 0 0;
	width: 15px;
	height: 11px;
	display: inline-block;
	margin-left: 0.7em;
}
.mailform button[value="back"] {
	padding-right: 2em;
	padding-left: 1.5em;
}
.mailform button[value="back"]::before {
	content: "";
	background: url("images/ft_arrow.png") no-repeat 0 0;
	width: 15px;
	height: 11px;
	display: inline-block;
	margin-right: 0.7em;
	transform: rotate(180deg);
}
.mailform select {
	border: 1px solid #999;
	border-radius: 3px;
	font-size: 95%;
	padding: 0.5em 0.7em;
	background: url("images/select_arrow.png") no-repeat right 5px center;
	padding-right: 30px;
}
.mailform input[name="tel"], .mailform input[name="zip_code"] {
	width: auto;
}
.mailform .form_row {
	border-top: 1px solid #cdcdcd;
	border-bottom: 1px solid #cdcdcd;
    display: flex;
}
.mailform .form_row+.form_row {
	border-top: none;
}
.mailform .form_cel_label {
	width: 28%;
	position: relative;
	padding: 1.4em 65px 1em 1em;
	background: #efefef;
}
.mailform .form_cel_content {
	width: 72%;
	padding: 1em 0.8em;
}
.mailform .req {
	position: absolute;
	right: 1em;
	background: #c00;
	color: #fff;
	font-size: 1.4rem;
	padding: 0.2em 0.6em;
}
.mailform .ex {
	font-size: 85%;
	color: #555;
	display: block;
	margin: 0.3em 0.1em -0.3em;
}
.mailform .postalcode input {
	margin: 0 0.5em 0 0.2em;
}
.mailform .postalcode .ex {
    display: inline-block;
    margin: 0 0.1em;
}
.mailform .address {
	margin-top: 10px;
}
.mailform .submit {
	text-align: center;
	margin: 2em 0;
}
.mailform .error {
	color: #c00;
}
/* 入力画面 */
.mw_wp_form_input .input_none {
	display: none !important;
}
/* 確認画面 */
.mw_wp_form_confirm .confirm_none {
	display: none !important;
}
@media (hover: hover) and (min-width: 992px) {
	.mailform button:hover {
		background: #000;
		color: #fff;
	}
	.mailform button[type="submit"]:hover::after, .mailform button[value="back"]:hover::before {
		background-image: url("images/ft_arrow_white.png");
	}
}
@media screen and (max-width: 991px) {
	.mailform .form_row {
		flex-wrap: wrap;
	}
	.mailform .form_cel_label {
		width: 100%;
		padding: 0.6em;
	}
	.mailform .form_cel_content {
		width: 100%;
		padding: 1.5em 0.3em;
	}
	.mailform .req {
		position: static;
		margin-left: 1em;
		font-size: 1.3rem;
	}
	.mailform .submit {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.mailform button {
		width: 100%;
		margin: 5px 0;
		padding: 1em !important;
	}
	.mailform button[type="submit"]::after, .mailform button[value="back"]::before  {
		content: none !important;
	}
}

/* CF7（新）
-----------------------------------------------*/
.wpcf7 {
	margin-top: 2em;
}
.wpcf7 p {
    margin-bottom: 0;
}
.wpcf7 table th, .wpcf7 table td {
    border-color: #cdcdcd;
    border-left: none;
    border-right: none;
    vertical-align: top;
}
.wpcf7 table th {
	width: 28%;
	padding: 1.4em 1em 1em;
	background: #efefef;
}
.wpcf7 table td {
	width: 72%;
	padding: 1em .8em;
}
.wpcf7 table input, .wpcf7 table textarea {
	border: 1px solid #999;
	border-radius: 3px;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.15) inset;
	font-size: 95%;
	padding: 0.5em 0.7em;
	width: 100%;
}
.wpcf7 .label-wrap {
    position: relative;
    padding-right: 55px;
}
.wpcf7 .req {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
	background: #c00;
	color: #fff;
	font-size: 1.4rem;
	padding: .2em .6em;
}
.wpcf7 .notice {
    display: block;
    font-size: 85%;
    color: #555;
    margin: .3em .1em -.3em;
}
.wpcf7 .zip-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.wpcf7 .zip-wrap input {
    width: 10em;
}
.wpcf7 .zip-wrap .notice {
    margin: 0;
    margin-left: 10px;
}
.wpcf7 .acceptance {
    text-align: center;
    margin: 50px auto;
    font-weight: bold;
}
.wpcf7 .acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7 .acceptance .wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7 .submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.wpcf7 .submit input {
	padding: 1em 1.5em;
    background: #ccc;
    pointer-events: none;
}
.wpcf7 .acceptance:has(input:checked)+.submit input {
    pointer-events: auto;
    background: #1d49b7;
    color: #fff;
    cursor: pointer;
}
.wpcf7 form .wpcf7-response-output {
    padding: 1.2em 1em;
    text-align: center;
}
@media (hover: hover) and (min-width: 992px) {
    .wpcf7 .acceptance:has(input:checked)+.submit input:hover {
		background: #000;
		color: #fff;
    }
}
@media screen and (max-width: 991px) {
    .wpcf7 table, .wpcf7 table tbody, .wpcf7 table tr, .wpcf7 table th, .wpcf7 table td {
        display: block;
        width: 100%;
    }
    .wpcf7 table th {
		padding: 10px;
        border-bottom: none;
    }
    .wpcf7 table tr+tr th {
        border-top: none;
    }
    .wpcf7 table td {
        padding: 15px 5px 30px;
        border-top: none;
    }
    .wpcf7 .label-wrap {
        padding-right: 0;
    }
	.wpcf7 .req {
        position: static;
        font-size: 1.3rem;
        margin-right: 10px;
        vertical-align: 2px;
	}
}