@charset "UTF-8";
.sections {
  opacity: 0; /* 初期状態で非表示 */
}

.webp .section01 {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/company/company_img01.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; 
}
.no-webp .section01 {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/company/company_img01-min.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
/* タイトル アニメーション */
.section01 .animate_titleBox {
	position: absolute;
	top: 34%;
	left: 20%;
	z-index: 2;
	width: 100%;
	max-width: 350px;
	height: 100px;
	overflow: hidden;
	display: block;
}
.section01 .animate_titleBox svg {
	width: 100%;
	max-width: 350px;
}
.section01 .animate_titleBox text {
	font-size: 50px;
}


.section02 {
	width: 100%;
	max-width: 500px;
	margin-top: 100px;
	padding: 0px 0px;
}
.section02 .sec02_box {
	padding: 0px 20px;
}
.section02 .top_message {
	margin-top: 50px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
/*	gap: 100px;*/
}
.section02 .top_message .left {
	margin-top: 30px;
	order: 2;
}
.section02 .top_message .left img {
	opacity: 0;
	width: 100%;
}
@keyframes sec02_img {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
		
	}
	100% {
		opacity: 1;
		
	}
}

.section02 .top_message .right {
	order: 1;
}
.section02 .top_message .right h2 {
	position: relative;
	width: 100%;
	height: 50px;
	font-size: 21px;
	font-weight: bold;
	font-family: "Noto Sans JP",sans-serif;
	padding: 0px 0px 30px 0px;
	display: block;
	transform: translate(-10%);
	display: block;
	overflow: hidden;
	opacity: 0;
}
@keyframes sec02_title {
	0% {
		transform: translate(-10%);
		opacity: 0;
	}
	70% {
		transform: translate(-10%);
		opacity: 0;
		
	}
	100% {
		transform: translate(0%);
		opacity: 1;
	}
}
.section02 .top_message .right .detail {
	position: relative;
	width: 100%;
	font-family: "Noto Sans JP",sans-serif;
	overflow: hidden;
	transform: translate(0%,-10%);
	opacity: 0;
}
.section02 .top_message .right .detail span {
	font-size: 15px;
	line-height: 1.5;
	display: block;
}
.section02 .top_message .right .detail p {
	text-align: right	; 
	margin-top: 50px;
	display: block;
}
@keyframes sec02_detail {
	0% {
		opacity: 0;
		transform: translate(0%,-10%);
	}
	70% {
		opacity: 0;
		transform: translate(0%,-10%);
	}
	100% {
		opacity: 1;
		transform: translate(0%,0%);
	}
}


.section03 {
	
}
.section03 .sec03_box {
	width: 100%;
	max-width: 500px;
	margin-top: 100px;

}
.section03 .sec03_subbox {
	padding: 0px 20px;
}
.section03 .profile_box {
	margin-top: 50px;
}
.section03 .profile_box .left {
/*	width: 500px;*/
}
.section03 .profile_box table {
	width: 100%;
	box-sizing: border-box;
	border-collapse: collapse;
	display: block;
}
.section03 .profile_box table tbody,
.section03 .profile_box table tbody tr {
	display: block;
}
.section03 .profile_box table th {
	color: #1E6D64;
	font-size: 16px;
	font-family: "Noto Sans JP",sans-serif;
	font-weight: bold;
	margin-top: 10px;
	display: block;
}
.section03 .profile_box table th .left_text {
	position: relative;
	width: 150px;
	padding: 10px 0px 0px 0px;
	display: block;
	overflow: hidden;
}
.section03 .profile_box table th .left_text .th_title {
	text-align: left; 
	transform: translate(-10%,0%);
	display: block;
	opacity: 0;
}
.section03 .profile_box table th .left_text .border_left_bottom {
	width: 0;
	height: 1px;
	margin-top: 15px;
	background-color: #979797;
	display: block;
}
@keyframes th_title {
	0% {
		opacity: 0;
		transform: translate(-10%,0%);
	}
	70% {
		opacity: 0;
		transform: translate(-10%,0%);
	}
	100% {
		opacity: 1;
		transform: translate(0%,0%);
	}
}
@keyframes border_left_bottom {
	0% {
		width: 0px;
	}
	70% {
		width: 0px;
	}
	100% {
		width: 0px;
	}
}
.section03 .profile_box table td {
	color: #483D3A;
	font-size: 16px;
	font-family: "Noto Sans JP",sans-serif;
	display: block;
}
.section03 .profile_box table td .right_text {
	position: relative;
/*	width: 500px;*/
	padding: 0px 10px 0px 0px;
	display: block;
	overflow: hidden;
}
.section03 .profile_box table td .right_text .detail_text {
	text-align: left; 
	margin-bottom: 10px;
	transform: translate(100%,0%);
	display: block;
	opacity: 0;
}
.section03 .profile_box table td .right_text .detail_text a {
	position: relative;
	color: #483D3A;
	text-decoration: none;
	padding-bottom: 5px;
	transition: all 0.5s ease-in-out;
	display: block;
	}
.section03 .profile_box table td .right_text .detail_text a:hover {
	color: #1E6D64;
}
.section03 .profile_box table td .right_text .detail_text a:after {
	position: absolute;
	content: '';
	left: 0; 
	bottom: -5px;
	width: 0;
	height: 1px;
	background-color: #1E6D64;
	transition: all 0.2s ease-in-out;
}
.section03 .profile_box table td .right_text .detail_text a:hover:after {
	width: 100%;
}
.section03 .profile_box table td .right_text .border_right_bottom {
	width: 100%;
	height: 1px;
	transform: translate(100%,0%);
	margin-top: 15px;
	background-color: #979797;
	display: block;
}
@keyframes detail_text {
	0% {
		opacity: 0;
		transform: translate(100%,0%);
	}
	70% {
		opacity: 0;
		transform: translate(100%,0%);
	}
	100% {
		opacity: 1;
		transform: translate(0%,0%);
	}
}
@keyframes border_right_bottom {
	0% {
		transform: translate(100%,0%);
	}
	70% {
		transform: translate(100%,0%);
	}
	100% {
		transform: translate(0%,0%);
	}
}
.section03 .profile_box table td .right_text .address {
	margin-top: 20px;
}
.section03 .profile_box table td .right_text .google_map {
	width: 110px;
}
.section03 .profile_box table td .right_text .google_map a {
	padding-right: 20px;
}
.section03 .profile_box table td .right_text .google_map a:before {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../img/company/icon-map.png);
	background-repeat: no-repeat;
	background-position: center;
/*	background-size: 50px;*/
}
.section03 .profile_box table td .right_text .tel {
	width: 150px;
}

.section03 .profile_box .right {
	margin-top: 20px;
}
.section03 .profile_box .right .img {
	display: block;
}
.section03 .profile_box .right img {
	width: 100%;
	opacity: 0;
}
@keyframes profile_img {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


.section04 {
	width: 100%;
	max-width: 500px;
	margin-top: 150px;

	padding: 0px 0px 100px 0px;
}
.section04 .sec04_box {
	padding: 0px 20px;
}
.section04 .history_box {
	width: 100%;
	max-width: 500px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}
.section04 .history_box .box {
	display: flex;
	align-items: flex-start;
/*	justify-items: center;*/
}
.section04 .history_box .box .left {
}
.section04 .history_box .box .left .date {
	color: #1E6D64;
	font-size: 20px;
	font-family: "Lato",sans-serif;
	font-style: italic;
	display: block;
	opacity: 0;
}
.section04 .history_box .box .center {
	width: 30px;
}
.section04 .history_box .box .center .cirle_vertical_box {
	width: 100%;
	height: 70px;
	box-sizing: border-box;
	position: relative;
	padding: 0px 10px;
}
.section04 .history_box .box .center .box_circle {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%);
	padding: 5px;
	background-color: #1E6D64;
	border-radius: 50%;
	opacity: 0;
}
.section04 .history_box .box .center .border_vertical {
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translate(-50%);
	width: 2px;
	height: 0;
	display: block;
	background-color: #1E6D64;
	
}
.section04 .history_box .box .right {
	width: 65vw;
}
.section04 .history_box .box .right .text {
	transform: translate(0%,10%);
	color: #483D3A;
	font-size: 14px;
	font-family: "Lato",sans-serif;
	line-height: 1.5;
	display: block;
	opacity: 0;
}
@keyframes date_text_animation {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 0.6;
	}

}
@keyframes circle_animation {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes vertical_animation {
	0% {
		height: 0;
	}
	70% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}
