main section.title {
	background-color: var(--bg-color);
	padding: 60px 0;
}
main section.title h1 {
	font-size: 237.5%;
	font-weight: 300;
	text-align: center;
}
main section article.lead-copy {
	font-size: 112.5%;
	font-weight: 400;
}
main section article:not(:last-child) {
	padding: 60px 5% 0;
}
main section article h2 {
	font-size: 125%;
	font-weight: 500;
	margin-bottom: 15px;
	color: var(--primary-color);
}
main section article p {
	margin: 10px 0;
}
main section article ul {
	list-style: disc;
	padding-left: 1.5em;
}
main section article p.link {
	text-align: right;
}
@media (min-width: 769px) {
	main section.title {
		padding: 120px 0 60px;
		position: relative;
		top: -90px;
		z-index: -1;
		margin-bottom: -90px;
	}
	main section article:not(:last-child) {
		padding: 60px 0 0;
	}
}

/*business*/
@media (min-width: 769px) {
	.business main section article > div {
		display: flex;
	}
	.business main section article:nth-child(odd) > div {
		flex-direction: row-reverse;
	}
	.business main section article > div > p {
		width: 35%;
		margin-right: 20px;
	}
	.business main section article:nth-child(odd) > div > p {
		margin-left: 20px;
		margin-right: 0;
	}
	.business main section article > div > div {
		width: 65%;
	}
}

/*news*/
.archive main section article ul {
    list-style: none;
    padding-left: 0;
}
.archive main section article ul li:not(:last-child) {
	margin-bottom: 30px;
}
.archive main section article ul li time {
	font-weight: 400;
	color: var(--primary-color);
}
.single header p,
.single nav ul {
	margin: 0;
}
.single main section article time {
	display: block;
	text-align: right;
}
@media (min-width: 769px) {
	.archive main section article ul li {
		display: flex;
	}
	.archive main section article ul li time {
	    margin-right: 1em;
	}
	.archive main section article ul li p {
		margin: 0;
	}
}

/*お問い合わせ*/
.confirm main section article .consent {
	display:none;
}
.confirm main section article p.submit {
	text-align: center;
}
.confirm main section article p.submit input {
    background-color: var(--primary-color);
    width: auto;
    color: #ffffff;
    padding: 10px 3em;
    margin: 30px auto 0;
    transition: 0.4s;
}