/*------------------------------------------
  Key Visual Page
------------------------------------------*/
.page-key-visual {
	max-width: 390px;
	width: 100%;
	height: 610px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: fixed;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
}	
.page-key-visual .m-title01 {
	position: relative;
	z-index: 2;
}
.page-key-visual .thumb {
	position: absolute;
	left: 0;
	top: 0;
}
.page-key-visual .scroll-line {
	width: 2px;
	height: 180px;
	background: #fff;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.page-key-visual .scroll-line:after {
	content: "";
	width: 2px;
	height: 180px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #000;
	z-index: 2;
	animation: scrolldown 2s ease-in-out infinite;
}
.page-key-visual.no-thumb {
	height: 350px;
	color: #000;
	background: #fff;
}
@keyframes scrolldown {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

/*------------------------------------------
	Page
------------------------------------------*/
/* Common */
.page-content {
	position: relative;
	z-index: 2;
	padding-top: 610px;
}
.page-content.no-thumb {
	padding-top: 350px;
}
.page-main {
	background: #fff;
	padding: 7rem 0;
}	
.page-main .inner {
	width: 90%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 7rem 0;
}

/* Business */
.page-business .inner{
	gap: 0;
}
.page-business {
	line-height: 2;
}
.page-business h3{
	font-weight: 700;
}
.page-business p{
	padding-left: 10px;
}
.page-business .img-box{
	text-align:center;
}
.page-business .contentsb{
	margin-top: 29px;
}

/* Recruit */
.page-recruit .inner{
	gap: 0;
}
.page-recruit .section01 {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  text-align: center;
}

/* Contact */
.page-contact {
	padding: 1rem 0 7rem;
}
.page-contact .inner {
	display: flex;
	flex-direction: column;
	gap: 7rem 0;
}
.page-contact section {
	margin-bottom: 5rem;
}
.page-contact .overview {
	text-align: center;
}
.page-contact .line-title {
	border-bottom: 1px solid #000022;
	margin-bottom: 1rem;
}
.page-contact .tel {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 5px;
}
.page-contact .tel .small {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-main);
	line-height: 1;
}
.page-contact .tel .large {
	font-size: 34px;
	font-weight: 500;
	line-height: 1;
}
.page-contact .complete-section {
	text-align: center;
}
.page-contact	.complete-section .text01 {
	font-weight: 600;
	margin-bottom: 3rem;
}
.page-contact .complete-section .m-button01 {
	margin-top: 3rem;
}

/* Privacy Policy */
.page-privacy {
	padding: 1rem 0 7rem;
}
.page-privacy h3 {
	font-weight: bold;
	font-size: 16px;
	margin: 3rem 0 1rem;
}
.page-privacy .ul01 {
	margin-top: 1rem;
}
.page-privacy .ul01 li {
	list-style: decimal;
	margin-left: 2rem;
	padding: 0.3rem 0;
}
.page-privacy .ul02 {
	margin: 1rem 0;
}
.page-privacy .ul02 li {
	margin-left: 6rem;
}
.page-privacy .ul03 {
	margin: 1rem 0;
}
.page-privacy .ul03 li {
	margin-left: 10rem;
}
.page-privacy-bold{
	font-weight: 700;
}
.page-privacy-address{
margin-left:48px;
}

/*------------------------------------------
	Archive Single
------------------------------------------*/
.page-single .date {
	font-size: 14px;
}
.page-single .title {
	border-bottom: 1px solid #000;
	padding: .5rem 0;
	margin-bottom: 3rem;
}
.page-single .m-button01 {
	text-align: center;
}