@charset "UTF-8";
/* ==========================================================================
	 * mainvisual
========================================================================== */
.mainvisual__container {
	position: relative;
	width: 100%;
	height: 420px;
	background-image: url(/assets/img/event/mainvisual_bg_sp.jpg?v=210003);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.mainvisual__title {
	padding-top: 1em;
	padding-right: .5em;
	padding-bottom: 1em;
	padding-left: 1.2em;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 210px;
	background-color: #a4c300;
	opacity: .9;
	font-size: 2.4rem;
	color: #fff;
	line-height: 1.5;
}

@media screen and (min-width: 768px) {
	.mainvisual__container {
		height: 480px;
		background-image: url(/assets/img/event/mainvisual_bg.jpg?v=210003);
	}
	.mainvisual__title {
		padding-top: .85em;
		padding-right: .5em;
		padding-bottom: .8em;
		padding-left: 1.3em;
		width: 310px;
		font-size: 3.4rem;
	}
}


/* ==========================================================================
	 * event
========================================================================== */
.event {
	background-color: #fffbe5;
}
.event__container {
	padding-top: 45px;
	padding-right: 20px;
	padding-bottom: 70px;
	padding-left: 20px;
}
.event__title {
	margin-bottom: 25px;
	font-size: 2.5rem;
	text-align: center;
	color: #297229;
	line-height: 1.5;
}
.event__bodycopy {
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: #297229;
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	.event__container {
		margin-right: auto;
		margin-left: auto;
		padding-top: 90px;
		padding-right: 60px;
		padding-left: 60px;
		max-width: 860px;
	}
	.event__title {
		font-size: 4rem;
	}
	.event__bodycopy {
		margin-bottom: 30px;
	}
}


.event__list {
	margin-bottom: 50px;
}
.event__item:first-child {
	margin-bottom: 10px;
}
.event__picture {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.event__list {
		margin-bottom: 60px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.event__item {
		width: 49.3%;
	}
	.event__item:first-child {
		margin-bottom: 0;
	}
}


.event__point {
	margin-bottom: 70px;
}
.event__point-list {
	margin-right: auto;
	margin-left: auto;
}
.event__point-item {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	padding-top: 30px;
	padding-right: 30px;
	padding-left: 30px;
	width: 230px;
	height: 230px;
	background-color: #fff;
	border: 1px solid #297229;
	border-radius: 50%;
	text-align: center;
	color: #297229;
}
.event__point-item:last-child {
	margin-bottom: 0;
}
.event__point-number {
	margin-bottom: 10px;
	font-size: 1.2rem;
	line-height: 1.1;
}
.event__point-number span {
	display: block;
	font-size: 5rem;
}
.event__point-bodycopy {
	font-size: 1.5rem;
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	.event__point {
		margin-bottom: 120px;
	}
	.event__point-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.event__point-item {
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 0;
	}
}

@media screen and (min-width: 479px) and (max-width: 768px) {
	.event__point-item {
		width: 200px;
		height: 200px;
	}
	.event__point-bodycopy {
		font-size: 1.3rem;
	}
}


.event__example {
	margin-bottom: 50px;
}
.event__example-title {
	padding-bottom: 10px;
	font-size: 1.8rem;
	text-align: center;
	color: #297229;
	line-height: 1.6;
}
.event__example-container {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid #297229;
	border-bottom: 1px solid #297229;
}
.event__example-wrap {
	margin-bottom: 50px;
}
.event__example-wrap:last-of-type {
	margin-bottom: 0;
}
.event__example-item img {
	margin-right: auto;
	margin-left: auto;
	max-width: 290px;
}
.event__example-place {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #297229;
	line-height: 1.6;
}
.event__example-picture {
	margin-bottom: 15px;
	text-align: center;
}
.event__example-bodycopy {
	font-size: 1.5rem;
	line-height: 1.6;
}
.event__link {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	padding-top: .7em;
	padding-right: .7em;
	padding-bottom: .7em;
	padding-left: .7em;
	display: block;
	max-width: 255px;
	border: 1px solid #707070;
	border-radius: 3px;
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.6;
	transition: .4s;
}
.event__link:hover {
	opacity: .7;
}
.event__link:after {
	position: absolute;
	top: 39%;
	right: 5%;
	content: '';
	display: inline-block;
	width: 22px;
	height: 11px;
	background-image: url(/assets/common/img/icon_arrow_right_black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: .4s;
}
.event__link:hover:after {
	right: 3%;
}

@media screen and (min-width: 768px) {
	.event__example {
		margin-bottom: 120px;
	}
	.event__example-title {
		font-size: 2.2rem;
	}
	.event__example-container {
		padding-top: 40px;
		padding-right: 15px;
		padding-bottom: 40px;
		padding-left: 15px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.event__example-wrap {
		margin-bottom: 0;
		width: 46%;
	}
	.event__example-item img {
		margin-right: 0;
		margin-left: 0;
		max-width: 330px;
	}
	.event__example-picture {
		margin-bottom: 20px;
	}
	.event__example-bodycopy {
		margin-right: auto;
		margin-left: auto;
		max-width: 330px;
	}
	.event__link {
		margin-bottom: 60px;
		padding-top: 1.2em;
		padding-right: 1.2em;
		padding-bottom: 1.2em;
		padding-left: 1.2em;
		max-width: 390px;
	}
}

@media screen and (min-width: 479px) and (max-width: 768px) {
	.event__example-container {
		padding-right: 0;
		padding-left: 0;
	}
}


/* ==========================================================================
	 * space
========================================================================== */
.space__container {
	padding-top: 60px;
	padding-right: 20px;
	padding-bottom: 70px;
	padding-left: 20px;
}
.space__title {
	margin-bottom: 35px;
	padding-bottom: 10px;
	border-bottom: 3px solid #297229;
	font-size: 2.5rem;
	text-align: center;
	color: #297229;
	line-height: 1.6;
}
.space__subtitle {
	margin-bottom: 15px;
	font-size: 2.1rem;
	text-align: center;
	line-height: 1.6;
}
.space__bodycopy {
	margin-bottom: 30px;
	font-size: 1.5rem;
	line-height: 1.8;
}
.space__bodycopy span {
	padding-top: 1em;
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
}
.space__map {
	margin-bottom: 50px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.space__container {
		margin-right: auto;
		margin-left: auto;
		padding-top: 120px;
		padding-right: 60px;
		padding-bottom: 120px;
		padding-left: 60px;
		max-width: 860px;
	}
	.space__title {
		margin-bottom: 90px;
		padding-bottom: 15px;
		font-size: 3.2rem;
	}
	.space__subtitle {
		font-size: 2.4rem;
	}
	.space__bodycopy {
		margin-bottom: 40px;
	}
	.space__map {
		margin-bottom: 100px;
	}
}


.space__street {
	margin-bottom: 50px;
}
.space__street-img {
	margin-bottom: 20px;
}
.space__street-picture {
	text-align: center;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
.space__street-title {
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #297229;
	font-size: 1.7rem;
	line-height: 1.5;
}
.space__street-bodycopy {
	font-size: 1.5rem;
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	.space__street {
		margin-bottom: 100px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.space__street-img {
		margin-bottom: 0;
		width: 54%;
	}
	.space__street-picture {
		margin: 0;
		width: 100%;
	}
	.space__street-text {
		margin-top: -5px;
		width: 42%;
	}
	.space__street-title {
		font-size: 2rem;
	}
}


.space__step {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 40px;
	padding-left: 20px;
	background-color: #fffbe5;
}
.space__step-title {
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
}
.space__step-bodycopy {
	margin-bottom: 20px;
	font-size: 1.5rem;
	line-height: 1.8;
}
.space__step-img {
	margin-bottom: 25px;
}
.space__step-picture {
	text-align: center;
}
.space__step-link {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	padding-top: .7em;
	padding-right: .7em;
	padding-bottom: .7em;
	padding-left: 4.5em;
	display: block;
	max-width: 295px;
	border: 1px solid #297229;
	border-radius: 3px;
	font-size: 1.5rem;
	color: #297229;
	line-height: 1.6;
	transition: .4s;
}
.space__step-link:hover {
	opacity: .7;
}
.space__step-link:before {
	position: absolute;
	content: '';
	display: inline-block;
	left: 25px;
	top: 35%;
	width: 21px;
	height: 17px;
	background-image: url(/assets/common/img/icon_external_green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.space__step-link--pc {
	display: none;
}

@media screen and (min-width: 768px) {
	.space__step {
		padding-top: 35px;
		padding-right: 40px;
		padding-bottom: 35px;
		padding-left: 40px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.space__step-text {
		width: 62%;
	}
	.space__step-img {
		margin-bottom: 0;
		width: 33%;
	}
	.space__step-link {
		margin-left: 0;
		padding-top: 1.1em;
		padding-right: 0;
		padding-bottom: 1.1em;
		padding-left: 2.4em;
		max-width: 405px;
		text-align: center;
	}
	.space__step-link:before {
		left: 17px;
	}
	.space__step-link--pc {
		display: block;
	}
	.space__step-link--sp {
		display: none;
	}
}


/* ==========================================================================
	 * price
========================================================================== */
.price {
	padding-top: 60px;
	padding-bottom: 70px;
	background-color: #fffbe5;
}
.price__head {
	padding-right: 20px;
	padding-left: 20px;
}
.price__container {
	padding-right: 20px;
	padding-left: 20px;
}
.price__title {
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 3px solid #297229;
	font-size: 2.5rem;
	text-align: center;
	color: #297229;
	line-height: 1.6;
}
.price__subtitle {
	margin-bottom: 25px;
	font-size: 2.1rem;
	text-align: center;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.price {
		padding-top: 110px;
		padding-bottom: 120px;
	}
	.price__head {
		margin-right: auto;
		margin-left: auto;
		padding-right: 60px;
		padding-left: 60px;
		max-width: 860px;
	}
	.price__container {
		margin-right: auto;
		margin-left: auto;
		padding-right: 60px;
		padding-left: 60px;
		max-width: 1080px;
	}
	.price__title {
		margin-bottom: 90px;
		padding-bottom: 15px;
		font-size: 3.2rem;
	}
	.price__subtitle {
		margin-bottom: 40px;
		font-size: 2.4rem;
	}
}


/* SP only */
@media screen and (max-width: 768px) {
	.price__pc {
		display: none;
	}
	.price__sp {
		display: block;
	}
	.price__accordion {
		margin-bottom: 20px;
	}
	.price__accordion:last-of-type {
		margin-bottom: 0;
	}
	.price__accordion-head {
		position: relative;
		padding-top: .9em;
		padding-right: .9em;
		padding-bottom: .9em;
		padding-left: .9em;
		background-color: #acc818;
		font-size: 1.5rem;
		text-align: center;
		color: #fff;
		line-height: 1.6;
		cursor: pointer;
	}
	.price__accordion-head:before {
		position: absolute;
		top: 41%;
		right: 5%;
		content: '';
		display: inline-block;
		width: 15px;
		height: 9px;
		background-image: url(/assets/img/event/icon_arrow_down_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.price__accordion-head.is-active:before {
		background-image: url(/assets/img/event/icon_arrow_up_white.svg);
	}
	.price__accordion-body {
		display: none;
		margin-bottom: 50px;
		padding-top: 20px;
	}
	.price__accordion-body:last-of-type {
		margin-bottom: 0;
	}
	.price__img {
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 20px;
		max-width: 170px;
		text-align: center;
	}
	.price__dl {
		margin-bottom: 20px;
		padding-bottom: 15px;
		border-bottom: 1px solid #297229;
	}
	.price__dt {
		margin-right: 3px;
		margin-bottom: 2px;
		font-size: 1.4rem;
		font-weight: bold;
		color: #297229;
		line-height: 1.6;
	}
	.price__dl--left .price__dt {
		float: left;
		clear: left;
	}
	.price__dd {
		margin-bottom: 2px;
		font-size: 1.4rem;
		line-height: 1.6;
	}
	.price__note-item {
		margin-bottom: .2em;
		padding-left: 1em;
		text-indent: -1em;
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.price__document-link {
		position: relative;
		margin-top: 40px;
		padding-top: .7em;
		padding-right: .5em;
		padding-bottom: .7em;
		padding-left: 4.2em;
		display: block;
		width: 100%;
		border: 1px solid #297229;
		border-radius: 3px;
		font-size: 1.5rem;
		color: #297229;
		line-height: 1.6;
		transition: .4s;
	}
	.price__document-link:hover {
		opacity: .8;
	}
	.price__document-link:before {
		position: absolute;
		top: 16px;
		left: 18px;
		content: '';
		display: inline-block;
		width: 30px;
		height: 34px;
		background-image: url(/assets/img/event/icon_pdf_green.svg?v=211002);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}


/* PC only */
@media screen and (min-width: 768px) {
	.price__pc {
		display: block;
	}
	.price__sp {
		display: none;
	}
	.price__table-wrap {
		margin-bottom: 60px;
	}
	.price__table {
		width: 100%;
		border-top: 1px solid #acc818;
		border-left: 1px solid #acc818;
	}
	.price__caption {
		margin-bottom: 10px;
		font-size: 1.8rem;
		text-align: left;
		line-height: 1.6;
	}
	.price__caption span {
		color: #acc818;
	}
	.price__th {
		padding-top: .8em;
		padding-right: .8em;
		padding-bottom: .8em;
		padding-left: .8em;
		background-color: #acc818;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #acc818;
		font-size: 1.5rem;
		color: #fff;
		line-height: 1.5;
	}
	.price__th:last-of-type {
		border-right: 1px solid #acc818;
	}
	.price__td {
		padding-top: 1em;
		padding-right: 1em;
		padding-bottom: 1em;
		padding-left: 1em;
		background-color: #fff;
		border-right: 1px solid #acc818;
		border-bottom: 1px solid #acc818;
		font-size: 1.5rem;
		text-align: center;
		line-height: 1.6;
	}
	.price__td span {
		padding-top: 3px;
		display: inline-block;
		font-size: 1.2rem;
		line-height: 1.5;
	}
	.price__text {
		display: inline-block;
		vertical-align: middle;
		text-align: left;
		width: 60%;
	}
	.price__img {
		display: inline-block;
		vertical-align: middle;
		max-width: 90px;
		width: 40%;
	}
	.price__note-list {
		padding-top: 10px;
	}
	.price__note-item {
		margin-bottom: .1em;
		padding-left: 1em;
		text-indent: -1em;
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.price__document-link {
		position: relative;
		margin-top: 60px;
		margin-right: auto;
		margin-left: auto;
		padding-top: 1.1em;
		padding-right: .5em;
		padding-bottom: 1.1em;
		padding-left: 3.2em;
		display: block;
		max-width: 450px;
		border: 1px solid #297229;
		border-radius: 3px;
		font-size: 1.5rem;
		text-align: center;
		color: #297229;
		transition: .4s;
	}
	.price__document-link:hover {
		opacity: .8;
	}
	.price__document-link:before {
		position: absolute;
		top: 12px;
		left: 20px;
		content: '';
		display: inline-block;
		width: 30px;
		height: 34px;
		background-image: url(/assets/img/event/icon_pdf_green.svg?v=211002);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}


/* ==========================================================================
	 * flow
========================================================================== */
.flow {
	margin-bottom: 90px;
}
.flow__container {
	padding-top: 60px;
	padding-right: 20px;
	padding-left: 20px;
}
.flow__title {
	margin-bottom: 35px;
	padding-bottom: 10px;
	border-bottom: 3px solid #297229;
	font-size: 2.5rem;
	text-align: center;
	color: #297229;
	line-height: 1.6;
}
.flow__section {
	margin-bottom: 50px;
}
.flow__section:last-of-type {
	margin-bottom: 0;
}
.flow__section-title {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #297229;
	font-size: 1.7rem;
	text-align: center;
	color: #297229;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.flow {
		margin-bottom: 200px;
	}
	.flow__container {
		margin-right: auto;
		margin-left: auto;
		padding-top: 110px;
		padding-right: 60px;
		padding-left: 60px;
		max-width: 870px;
	}
	.flow__title {
		margin-bottom: 90px;
		padding-bottom: 15px;
		font-size: 3.2rem;
	}
	.flow__section {
		margin-bottom: 60px;
	}
	.flow__section-title {
		font-size: 2.2rem;
	}
}


.flow__list {
	padding-left: 35px;
	counter-reset: number;
}
.flow__item {
	position: relative;
	margin-bottom: 30px;
}
.flow__item:last-child {
	margin-bottom: 0;
}
.flow__item:before {
	position: absolute;
	top: 1px;
	left: -35px;
	width: 25px;
	height: 25px;
	background-color: #297229;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 25px;
	content: counter(number)'';
	counter-increment: number;
}
.flow__bodycopy {
	font-size: 1.7rem;
	line-height: 1.7;
}
.flow__contact {
	margin-top: 15px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	display: inline-block;
	border: 1px solid #000;
	font-size: 1.5rem;
	line-height: 1.7;
}
.flow__link {
	color: #297229;
	text-decoration: underline;
}
.flow__note-list {
	padding-top: .2em;
}
.flow__note-item {
	padding-top: .2em;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.5rem;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.flow__item {
		margin-bottom: 40px;
	}
	.flow__item:before {
		top: 2px;
	}
	.flow__bodycopy {
		font-size: 1.8rem;
	}
	.flow__contact {
		margin-top: 20px;
		padding-top: 15px;
		padding-right: 30px;
		padding-bottom: 15px;
		padding-left: 30px;
	}
}


.flow__document-list {
	padding-top: 60px;
	margin-bottom: -15px;
}
.flow__document-item {
	margin-bottom: 15px;
}
.flow__document-link {
	position: relative;
	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 4.5em;
	display: block;
	width: 100%;
	border: 1px solid #297229;
	border-radius: 3px;
	font-size: 1.5rem;
	color: #297229;
	line-height: 1.6;
	transition: .4s;
}
.flow__document-link:hover {
	opacity: .8;
}
.flow__document-link:before {
	position: absolute;
	top: 10px;
	left: 20px;
	content: '';
	display: inline-block;
	width: 30px;
	height: 34px;
	background-image: url(/assets/img/event/icon_excel_green.svg?v=211002);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.flow__document-item:nth-child(2) .flow__document-link:before {
	background-image: url(/assets/img/event/icon_pdf_green.svg?v=211002);
}

@media screen and (min-width: 768px) {
	.flow__document-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.flow__document-item {
		display: flex;
		width: 32%;
		min-height: 80px;
	}
	.flow__document-link {
		padding-top: .8em;
		padding-right: .8em;
		padding-bottom: .8em;
		padding-left: 5.2em;
		display: flex;
		align-items: center;
	}
	.flow__document-link:before {
		top: 20px;
		left: 25px;
	}
}


.contact {
	padding-right: 20px;
	padding-left: 20px;
}
.contact__container {
	background-color: #acc818;
}
.contact__picture {
	text-align: center;
}
.contact__text {
	padding-top: 25px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	text-align: center;
}
.contact__bodycopy {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #fff;
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.7;
}
.contact__name {
	margin-bottom: 10px;
	font-size: 1.45rem;
	font-weight: bold;
	color: #fff;
}
.contact__tel {
	margin-bottom: 10px;
	padding-top: .2em;
	padding-right: .2em;
	padding-bottom: .2em;
	padding-left: .2em;
	display: block;
	background-color: #fff;
	border-radius: 4px;
	font-size: 3rem;
	color: #297229;
}
.contact__tel:before {
	margin-right: .5em;
	content: '';
	display: inline-block;
	width: 28px;
	height: 28px;
	background-image: url(/assets/img/contact/icon_tel_green.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: -2px;
}
.contact__time {
	font-size: 1.4rem;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.contact__container {
		margin-right: auto;
		margin-left: auto;
		max-width: 960px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.contact__img {
		width: 50%;
	}
	.contact__text {
		padding-right: 50px;
		padding-left: 50px;
		width: 50%;
	}
	.contact__bodycopy {
		margin-bottom: 20px;
		padding-bottom: 0;
		border-bottom: none;
		font-size: 1.9rem;
	}
	.contact__name {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.contact__tel {
		margin-right: auto;
		margin-left: auto;
		padding-top: .1em;
		padding-right: .1em;
		padding-bottom: .1em;
		padding-left: .1em;
		max-width: 340px;
		font-size: 3.2rem;
	}
	.contact__tel:before {
		width: 35px;
		height: 35px;
		vertical-align: -4px;
	}
	.contact__time {
		font-size: 1.6rem;
	}
}

@media screen and (min-width: 479px) and (max-width: 768px) {
	.contact__container {
		margin-right: auto;
		margin-left: auto;
		max-width: 960px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.contact__img {
		width: 50%;
	}
	.contact__text {
		padding-right: 25px;
		padding-left: 25px;
		width: 50%;
	}
	.contact__bodycopy {
		margin-bottom: 20px;
		padding-bottom: 0;
		border-bottom: none;
		font-size: 1.5rem;
	}
	.contact__name {
		margin-bottom: 10px;
		font-size: 1.35rem;
	}
	.contact__tel {
		margin-right: auto;
		margin-left: auto;
		padding-top: .1em;
		padding-right: .1em;
		padding-bottom: .1em;
		padding-left: .1em;
		max-width: 280px;
		font-size: 2.6rem;
	}
	.contact__tel:before {
		width: 30px;
		height: 30px;
		vertical-align: -4px;
	}
	.contact__time {
		font-size: 1.3rem;
	}
}