@charset "UTF-8";

.sections {
  opacity: 0; /* 初期状態で非表示 */
}
.header-box .menus .menu ul li a {
	color: #483D3A !important;
}
.contact_page_box {
	background-color: #F5F5F5;
}


.section01 {
	width: 1100px;
	font-family: "Noto Sans JP",sans-serif;
	margin-top: 150px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 50px;
}
.section01 h1 {
	color: #1E6D64;
	font-size: 36px;

	font-weight: bold;
	display: block;
}
.section01 .detail {
	line-height: 2;
	margin-top: 50px;
}
.section01 .detail h2 {
	font-weight: bold;
	margin-top: 20px;
	margin-left: 20px;
	display: block;
}
.section01 .detail p {
	margin-left: 38px;
}
.section01 .detail ul {
	list-style-type:disc;
	margin-left: 57px;
}
.section01 .last {
	text-align: left;
	margin-top: 30px;
}


.section02 {
	padding-bottom: 100px;
}
.section02 .tel_box {
	width: 1000px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
}
.section02 .tel_box a {
	color: #483D3A;
	text-decoration: none;
	padding: 20px;
	display: block;
}
.section02 .tel_box a span {
	display: block;
	font-family: "Noto Sans JP",sans-serif;
}
.section02 .tel_box a .text01 {
	font-size: 18px;
}
.section02 .tel_box a .phone_num {
	position: relative;
	width: 256px;
	font-size: 34px;
	font-weight: bold;
	text-align: right;
	margin: 20px auto;
	padding-right: 15px;
	transition: all 0.5s ease-in-out;
}
.section02 .tel_box a:hover .phone_num {
	color: #1E6D64;
}
.section02 .tel_box a .phone_num:after {
	position: absolute;
	top: 5px;
	left: 0;
	content: '';
	width: 28px;
	height: 28px;
	background-image: url(../img/common/icon-tel.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
}
.section02 .tel_box a .text02 {
	font-size: 16px;
}


.border_top {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #979797;
}
@keyframes border_top {
	0% {
		width: 0;
	}
	70% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

.border_left {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 0;
	background-color: #979797;
}
@keyframes border_left {
	0% {
		height: 0;
	}
	70% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}

.border_right {
	position: absolute;
	top: 100%;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #979797;
}
@keyframes border_right {
	0% {
		top: 100%;
	}
	70% {
		top: 100%;
	}
	100% {
		top: 0;
	}
}
.border_bottom {
	position: absolute;
	bottom: 0;
	left: 100%;
	width: 100%;
	height: 1px;
	background-color: #979797;
}
@keyframes border_bottom {
	0% {
		left: 100%;
	}
	70% {
		left: 100%;
	}
	100% {
		left: 0;
	}
}


.text01 {
	position: relative;
	transform: translate(0%,-30%);
	opacity: 0;
}
@keyframes text01 {
	0% {
		transform: translate(0%,-30%);
		opacity: 0;
	}
	70% {
		transform: translate(0%,-30%);
		opacity: 0;
	}
	100% {
		transform: translate(0%,0%);
		opacity: 1;
	}
}
.phone_num {
	position: relative;
	opacity: 0;
}
@keyframes phone_num {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.text02 {
	position: relative;
	transform: translate(0%,30%);
	opacity: 0;
}
@keyframes text02 {
	0% {
		transform: translate(0%,30%);
		opacity: 0;
	}
	70% {
		transform: translate(0%,30%);
		opacity: 0;
	}
	100% {
		transform: translate(0%,0%);
		opacity: 1;
	}
}
