@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');


@import url("reset.css");

html {
	overflow: auto;
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
}

body {
	overflow: hidden;
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	font-family: 'Roboto', "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 2;
	color: #000;
	text-align: left;
	background: #FFF;
	-webkit-text-size-adjust: 100%;
}

strong {
	font-weight: 700;
}

/* link
-----------------------------------------------------------*/
a {
	color: #00A9D2;
	text-decoration: none;
	transition: all .3s;
}

a:visited {
	color: #00A9D2;
}

a:hover {
	color: #00A9D2;
	text-decoration: underline;
}

a:hover,
a:active,
a:focus {
	outline: none;
}

.opacity {
	transition: .3s;
}

@media(hover: hover) {
	.opacity:hover {
		opacity: .7;
	}
}

/* image
-----------------------------------------------------------*/
img {
	width: 100%;
	height: auto;
}

/* desktop/tablet smartphone
-----------------------------------------------------------*/
.pc {
	display: block;
}

.sp {
	display: none;
}

/* Header
-----------------------------------------------------------*/
/* ----- Top Page ----- */
header {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

header a.button_contact {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	padding-left: 43px;
	width: 195px;
	height: 76px;
	font-weight: 700;
	font-size: 22px;
	line-height: 76px;
	letter-spacing: .05em;
	color: #FFF;
	text-decoration: none;
	background-color: #151664;
	transition: .3s;
	will-change: transform;
}

header a.button_contact::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #00A9D2;
	transform: scale(0, 1);
	transform-origin: left;
	z-index: -1;
	transition: .3s;
}

@media(hover: hover) {
	header a.button_contact:hover::before {
		transform: scale(1);
	}
}

header a.button_contact::after {
	content: "";
	position: absolute;
	right: 21px;
	top: 0;
	margin: 0;
	width: 12px;
	height: 100%;
	background: url(../images/contact_arrow.svg) center center no-repeat;
	background-size: contain;
	transition: .3s;
}

@media(hover: hover) {
	header a.button_contact:hover::after {
		transform: translate(5px)
	}
}

/* ----- Contact Page ----- */
#contact header {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 20px;
	width: 100%;
	height: 115px;
	text-align: center;
	z-index: 2;
	background-color: #151664;
}

#contact header a {
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 30px auto 0;
	width: 279px;
	height: 60px;
	background: url(../images/logo.svg) center left no-repeat;
	background-size: contain;
}

/* Footer
-----------------------------------------------------------*/
a#pagetop {
	position: relative;
	display: inline-block;
	margin: 60px auto 20px;
	padding-top: 20px;
	font-weight: 700;
	font-size: 12px;
	color: #000;
}

a#pagetop::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	width: 100%;
	height: 12px;
	background: url(../images/pagetop_arrow.svg) center center no-repeat;
	background-size: contain;
	transition: .3s;
}

@media(hover: hover) {
	a#pagetop:hover::before {
		transform: translateY(-3px)
	}
}

a#pagetop:hover {
	text-decoration: none;
}

footer {
	padding: 65px 20px 25px;
	font-size: 12px;
	color: #FFF;
	text-align: center;
	letter-spacing: .05em;
	background-color: #0F0C1D;
}

/* main
-----------------------------------------------------------*/
main {
	overflow: hidden;
	position: relative;
	text-align: center;
}

.inner {
	position: relative;
	margin: 0 auto;
	width: 1200px;
}

/* ----- Contact Page ----- */
#contact main {
	padding-top: 200px;
	background-color: #F3F3F3;
}

/* Hero Area
-----------------------------------------------------------*/
#heroarea {
	position: relative;
	overflow: hidden;
	height: 530px;
}

#heroarea .bg {
	position: relative;
	width: 100%;
	height: 100%;
	background: url(../images/fv.jpg) center center no-repeat;
	background-size: cover;
	z-index: 1;
}

#heroarea h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 1200px;
	font-weight: 700;
	font-size: 28px;
	color: #FFF;
	text-align: left;
	line-height: 1.7em;
	text-shadow: 0 0 21px #000;
	z-index: 2;
}

#heroarea h1 img {
	display: block;
	margin-bottom: 8px;
	width: 465px;
}


/* Philosophy
-----------------------------------------------------------*/
#philosophy {
	position: relative;
	padding: 70px 20px 125px;
}

#philosophy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	width: 540px;
	height: 540px;
	background: repeating-linear-gradient(-45deg, #f4f3f5, #f4f3f5 6px, #fdfdfe 6px, #fdfdfe 12px);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: -1;
}

#philosophy::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	width: 540px;
	height: 540px;
	background: repeating-linear-gradient(45deg, #fdfdfe, #fdfdfe 6px, #f4f3f5 6px, #f4f3f5 12px);
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	z-index: -1;
}

#philosophy h2 {
	margin-bottom: 55px;
	font-weight: 300;
	font-size: 36px;
	letter-spacing: .05em;
}

#philosophy img {
	margin-bottom: 45px;
	width: 104px;
}

#philosophy h3 {
	position: relative;
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 24px;
	line-height: 2em;
	color: #00A9D2;
}

#philosophy p {
	line-height: 2em;
}

/* Service
-----------------------------------------------------------*/
#service {
	position: relative;
	padding: 0 0 90px;
}

#service h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -1em;
	margin-bottom: 75px;
	font-weight: 300;
	font-size: 36px;
	letter-spacing: .05em;
}

#service h2 .line {
	display: inline-block !important;
	width: auto !important;
}

#service h2::before,
#service h2::after {
	content: "";
	flex-grow: 1;
}

#service h2::before {
	margin-right: 1.5em;
	border-top: 1px solid #00A9D2;
	transform: scale(0, 1);
}

#service h2.move::before {
	animation-name: line-animation;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	transform-origin: left;
}

#service h2::after {
	margin-left: 1.5em;
	opacity: 0;
}

@keyframes line-animation {
	0% {
		transform: scale(0, 1);
	}

	100% {
		transform: scale(1);
	}
}

#service ul li {
	position: relative;
	margin-bottom: 70px;
	min-height: 352px;
}

#service .service_content {
	position: relative;
	padding: 35px 0 0 110px;
	width: calc(884 / 1200 * 100%);
	min-height: 225px;
	text-align: left;
	background: repeating-linear-gradient(-45deg, #f4f3f5, #f4f3f5 6px, #fdfdfe 6px, #fdfdfe 12px);
}

#service h3 {
	margin-bottom: 1em;
	font-weight: 500;
	font-size: 18px;
}

#service p.description {
	width: calc(385 / 774 * 100%);
	line-height: 1.5em;
}

#service p.english {
	position: absolute;
	bottom: -.5em;
	font-weight: 700;
	font-size: 46px;
	line-height: 1em;
	color: #D5D5D5;
}

#service li:last-child p.english {
	bottom: -1.5em;
}

#service img {
	position: absolute;
	top: 40px;
	right: 0;
	width: calc(600 / 1200 * 100%);
}

/* Profile
-----------------------------------------------------------*/
#profile .inner {
	position: relative;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	border-radius: 40px;
	box-shadow: 0 0 27px rgba(171, 171, 171, .29);
}

#profile .border {
	padding: 40px 0 55px;
	width: 100%;
	height: 100%;
	border: 1px solid #00A9D2;
	border-radius: 24px;
}

#profile h2 {
	margin-bottom: 35px;
	font-weight: 300;
	font-size: 36px;
	letter-spacing: .05em;
}

#profile dl {
	display: inline-block;
	clear: both;
	text-align: left;
	margin: 0 auto 65px;
}

#profile dt {
	float: left;
	font-weight: 300;
}

#profile dd {
	padding-left: 6em;
	word-wrap: break-word;
}

#profile a.button_contact {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 385px;
	height: 76px;
	font-weight: 700;
	font-size: 22px;
	line-height: 76px;
	letter-spacing: .05em;
	color: #FFF;
	text-decoration: none;
	background-color: #151664;
	transition: .3s;
	will-change: transform;
}

#profile a.button_contact::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #00A9D2;
	transform: scale(0, 1);
	transform-origin: left;
	z-index: -1;
	transition: .3s;
}

@media(hover: hover) {
	#profile a.button_contact:hover::before {
		transform: scale(1);
	}
}

#profile a.button_contact::after {
	content: "";
	position: absolute;
	right: 21px;
	top: 0;
	margin: 0;
	width: 12px;
	height: 100%;
	background: url(../images/contact_arrow.svg) center center no-repeat;
	background-size: contain;
	transition: .3s;
}

@media(hover: hover) {
	#profile a.button_contact:hover::after {
		transform: translate(5px)
	}
}

/* Contact Page
-----------------------------------------------------------*/
#contact .inner {
	padding: 50px 80px 90px;
	width: 960px;
	background-color: #FFF;
}

#contact h1 {
	margin-bottom: 60px;
	font-size: 24px;
}

#contact p.large {
	margin-bottom: 50px;
	font-weight: 500;
	font-size: 18px;
	text-align: left;
}

#contact p.required {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 16px;
	text-align: left;
}

/* ----- text / email / textarea ----- */
#contact .input {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 35px;
}

#contact .input.textarea {
	margin-bottom: 60px;
}

#contact .input .column {
	width: calc(350 / 800 * 100%);
}

#contact label {
	display: block;
	font-weight: 400;
	text-align: left;
	cursor: default;
}

#contact label .wpcf7-list-item-label>span {
	font-size: 14px;
}

#contact .input p {
	width: 100%;
	text-align: left;
}

#contact .mw_wp_form_confirm .input p {
	padding-top: .5em;
	border-top: 1px solid #A7A7A7;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
	padding: .5em 1em;
	width: 100%;
	text-align: left;
	border: 1px solid #A7A7A7;
}

/* ----- checkbox ----- */
#contact .input_checkbox {
	margin: 0 auto 50px;
	text-align: left;
}

#contact .mw_wp_form_confirm .input_checkbox {
	display: none;
}

#contact .input_checkbox span.mwform-checkbox-field-text {
	display: none;
}

#contact .input_checkbox label.check {
	text-align: left;
	cursor: pointer;
}

#contact .input_checkbox input[type="checkbox"] {
	/*display: none;
	border: 0;
	margin: 0;*/
	all: revert;
}

#contact .input_checkbox {
	display: inline-block;
	position: relative;
	margin-right: 30px;
	padding-left: 32px;
}

#contact .input_checkbox label.check {
	display: inline-block;
	cursor: pointer;
}

/* ----- エラー ----- */
#contact .error {
	display: block;
	font-size: 14px;
	color: #A70010;
	text-align: left;
}

/* ----- ボタン ----- */
#contact .button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

#contact .button div {
	position: relative;
	margin: 0 15px;
	width: calc(260 / 800 * 100%);
	height: 52px !important;
	background-color: #151664;
}

#contact .button.confirm div:nth-child(1) {
	background-color: #F3F3F3;
}

#contact .button div:has(:disabled) {
	background-color: #C3C3C3;
}

@media(hover: hover) {

	#contact .button div:hover {
		background-color: none;
	}
}

#contact .button div::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #00A9D2;
	transform: scale(0, 1);
	transform-origin: left;
	z-index: 1;
	transition: .3s;
	will-change: transform;
}

#contact .button.confirm div:nth-child(1)::before,
/*#contact .button div:has(.submit_prev)::before,*/
#contact .button.complete div::before {
	transform-origin: right;
}

@media(hover: hover) {

	#contact .button div:hover::before {
		transform: scale(1);
	}

	#contact .button div:has(:disabled):hover::before {
		transform: scale(0, 1);
	}
}

#contact .button div::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 0;
	margin: 0;
	width: 12px;
	height: 100%;
	background: url(../images/contact_arrow_wh.svg) center center no-repeat;
	background-size: contain;
	z-index: 2;
	transition: .3s;
}

#contact .button.confirm div:nth-child(1)::after {
	left: 15px;
	background: url(../images/contact_arrow_bk.svg) center center no-repeat;
}


#contact .button.complete div::after {
	left: 15px;
	background: url(../images/contact_arrow_wh_l.svg) center center no-repeat;
}

@media(hover: hover) {

	#contact .button div:hover::after {
		transform: translate(5px)
	}

	#contact .button.confirm div:nth-child(1):hover::after {
		background: url(../images/contact_arrow_wh_l.svg) center center no-repeat;
		transform: translate(-5px);
	}

	#contact .button.complete div:hover::after {
		transform: translate(-5px)
	}

	#contact .button div:has(:disabled):hover::after {
		transform: none;
	}
}

#contact button[type="submit"],
#contact input[type="submit"],
#contact input[type="button"],
#contact a.button_index {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 52px;
	font-weight: 700;
	font-size: 17px;
	line-height: 52px;
	letter-spacing: .05em;
	color: #FFF;
	background-color: none;
	text-decoration: none;
	z-index: 2;
}

#contact button[type="submit"].submit_prev,
#contact input[type="button"].submit_prev {
	color: #000;
	transition: .3s;
}

@media(hover: hover) {

	#contact button[type="submit"].submit_prev:hover,
	#contact input[type="button"].submit_prev:hover {
		color: #FFF;
	}
}

/* プライバシーポリシー */
#privacy.inner {
	margin-top: 10px;
	padding: 0;
}

#privacy h2 {
	padding: .5em 20px;
	font-weight: 700;
	font-size: 24px;
	color: #FFF;
	background-color: #151664;

}

#privacy .scroll_container {
	overflow-y: scroll;
	padding: 45px 100px 0;
	height: 335px;
	text-align: left;
}

#privacy .scroll_container p {
	margin-bottom: 1.5em;
}

/* ----- 確認画面 ----- */
#contact dl {
	clear: both;
	text-align: left;
	margin-bottom: 60px;
}

#contact dt {
	margin-bottom: 1em;
	float: left;
	font-weight: 400;
}

#contact dd {
	margin-bottom: 1em;
	padding-left: 10em;
	word-wrap: break-word;
}

/* ----- 完了画面 ----- */
#contact p.complete {
	margin: 60px auto 100px;
	font-size: 20px;
}

/*  1240px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1240px) {

	/* main
	-----------------------------------------------------------*/
	.inner {
		padding: 0 20px;
		width: 100%;
	}

	/* Hero Area
	-----------------------------------------------------------*/
	#heroarea h1 {
		padding: 0 35px;
		width: 100%;
	}

	/* Philosophy
	-----------------------------------------------------------*/
	#philosophy::before {
		left: -20vw;
	}

	#philosophy::after {
		right: -20vw;
	}

	/* Profile
	-----------------------------------------------------------*/
	#profile {
		padding: 0 20px;
		width: 100%;
	}
}

/*  1000px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1000px) {

	/* ----- Contact Page ----- */
	#contact main {
		padding: 0 20px;
	}

	/* Contact Page
	-----------------------------------------------------------*/
	#contact .inner {
		padding: 50px 80px 90px;
		width: 100%;
	}
}

/*  Mobile（767px）
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {

	body {
		font-size: 14px;
	}

	/* desktop/tablet smartphone
	-----------------------------------------------------------*/
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	/* Header
	-----------------------------------------------------------*/
	/* ----- Top Page ----- */
	header a.button_contact {
		padding-left: 21px;
		width: 115px;
		height: 50px;
		font-size: 16px;
		line-height: 50px;
	}

	header a.button_contact::after {
		right: 10px;
		width: 7px;
	}

	@media(hover: hover) {
		header a.button_contact:hover::after {
			transform: translate(3px)
		}
	}

	/* ----- Contact Page ----- */
	#contact header {
		height: 60px;
	}

	#contact header a {
		margin: 15px auto 0;
		width: 140px;
		height: 30px;
	}

	/* Footer
	-----------------------------------------------------------*/
	a#pagetop {
		margin: 30px auto 10px;
		padding-top: 15px;
	}

	a#pagetop::before {
		height: 10px;
	}

	a#pagetop:hover {
		text-decoration: none;
	}

	footer {
		padding: 30px 20px 10px;
	}

	/* main
	-----------------------------------------------------------*/
	/* ----- Contact Page ----- */
	#contact main {
		padding-top: 100px;
	}

	/* Hero Area
	-----------------------------------------------------------*/
	#heroarea {
		height: 450px;
	}

	#heroarea .bg {
		background: url(../images/fv@2x.jpg) center center no-repeat;
		background-size: cover;
	}

	#heroarea h1 {
		font-size: 4.0vw;
	}

	#heroarea h1 img {
		width: calc(505 / 680 * 100%);
	}

	/* Philosophy
	-----------------------------------------------------------*/
	#philosophy {
		position: relative;
		padding: 40px 20px 50px;
	}

	#philosophy::before {
		width: 340px;
		height: 340px;
		background: repeating-linear-gradient(-45deg, #f4f3f5, #f4f3f5 3px, #fdfdfe 3px, #fdfdfe 6px);
	}

	#philosophy::after {
		width: 340px;
		height: 340px;
		background: repeating-linear-gradient(45deg, #fdfdfe, #fdfdfe 3px, #f4f3f5 3px, #f4f3f5 6px);
	}

	#philosophy h2 {
		margin-bottom: 30px;
		font-size: 20px;
	}

	#philosophy img {
		margin-bottom: 22px;
		width: 70px;
	}

	#philosophy h3 {
		margin-bottom: 20px;
		font-size: 16px;
	}

	/*#philosophy h3::before {
		height: 70px;
	}*/

	#philosophy p {
		line-height: 2em;
	}

	/* Service
	-----------------------------------------------------------*/
	#service {
		padding: 0 0 10px;
	}

	#service h2 {
		margin-bottom: 40px;
		font-size: 20px;
	}

	#service ul li {
		margin-bottom: 40px;
		min-height: auto;
	}

	#service .service_content {
		padding: 20px 15px 60px;
		width: calc(593 / 650 * 100%);
		min-height: auto;
		background: repeating-linear-gradient(-45deg, #f4f3f5, #f4f3f5 3px, #fdfdfe 3px, #fdfdfe 6px);
	}

	#service h3 {
		margin-bottom: 1em;
		font-weight: 500;
		font-size: 18px;
	}

	#service p.description {
		width: 100%;
	}

	#service p.english {
		display: none;
	}

	#service img {
		position: relative;
		top: -35px;
		right: 0;
		width: calc(600 / 650 * 100%);
	}

	/* Profile
	-----------------------------------------------------------*/
	#profile .inner {
		padding: 15px;
		border-radius: 20px;
	}

	#profile .border {
		padding: 35px 20px 25px;
		border-radius: 12px;
	}

	#profile h2 {
		margin-bottom: 30px;
		font-size: 20px;
	}

	#profile dl {
		margin: 0 auto 45px;
	}

	#profile a.button_contact {
		width: 100%;
		height: 50px;
		font-size: 16px;
		line-height: 50px;
	}

	@media(hover: hover) {
		#profile a.button_contact:hover::after {
			transform: translate(3px)
		}
	}

	/* Contact Page
	-----------------------------------------------------------*/
	#contact .inner {
		padding: 30px 20px 25px;
	}

	#contact h1 {
		margin-bottom: 20px;
		font-size: 18px;
	}

	#contact p.large {
		margin-bottom: 35px;
		font-size: 14px;
	}

	#contact p.required {
		margin-bottom: 20px;
		font-size: 13px;
	}

	#contact label .wpcf7-list-item-label>span {
		font-size: 13px;
	}

	/* ----- text / email / textarea ----- */
	#contact .input {
		margin-bottom: 20px;
	}

	#contact .input.textarea {
		margin-bottom: 30px;
	}

	#contact .input .column {
		width: calc(300 / 620 * 100%);
	}

	#contact input[type="text"],
	#contact input[type="email"],
	#contact input[type="tel"],
	#contact textarea {
		font-size: 16px;
	}

	/* ----- checkbox ----- */
	#contact .input_checkbox {
		margin: 0 auto 30px;
	}

	/* ----- エラー ----- */
	#contact .error {
		font-size: 13px;
	}

	/* ----- ボタン ----- */
	#contact .button div {
		display: block;
		width: 100%;
		margin: 20px 0;
	}

	@media(hover: hover) {

		#contact .button div:hover::after {
			transform: translate(3px)
		}

		#contact .button div:has(.submit_prev):hover::after {
			transform: translate(-3px);
		}

		#contact .button div:has(a):hover::after {
			transform: translate(-3px)
		}
	}

	#contact button[type="submit"],
	#contact input[type="submit"],
	#contact a.button_index {
		width: 100%;
		font-size: 16px;
	}

	/* プライバシーポリシー */
	#privacy.inner {
		margin-top: 10px;
		padding: 0;
	}

	#privacy h2 {
		font-size: 18px;
	}

	#privacy .scroll_container {
		overflow-y: scroll;
		padding: 20px 20px 0;
		height: 335px;
		text-align: left;
	}

	#privacy .scroll_container p {
		margin-bottom: 1.5em;
	}

	/* ----- 確認画面 ----- */
	#contact dl {
		margin-bottom: 40px;
	}

	/* ----- 完了画面 ----- */
	#contact p.complete {
		margin: 40px auto 60px;
		font-size: 16px;
	}

}

/*  Mobile（420px）
=========================================================================
=========================================================================*/
@media screen and (max-width:420px) {

	/* Philosophy
	-----------------------------------------------------------*/
	#philosophy::before {
		left: -50vw;
	}

	#philosophy::after {
		right: -50vw;
	}

	#philosophy h3 {
		font-size: 3.8vw;
	}

	/* Profile
	-----------------------------------------------------------*/
	#profile dl {
		clear: both;
		text-align: left;
		margin-bottom: 60px;
	}

	#profile dt {
		margin-bottom: 0em;
		float: none;
	}

	#profile dd {
		margin-bottom: 1em;
		padding-left: 0;
	}

	/* Contact Page
	-----------------------------------------------------------*/
	/* ----- 確認画面 ----- */
	#contact dl {
		clear: both;
		text-align: left;
		margin-bottom: 60px;
	}

	#contact dt {
		margin-bottom: .5em;
		float: none;
	}

	#contact dd {
		padding-left: 0;
	}
}
