/* common S */
.section-title {
	position: relative;

	font-size: var(--font-size-h2);
	font-weight: 700;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.section-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 3px;
	background: var(--primary);
}

.section-description {
	margin-bottom: 40px;

	font-size: var(--font-size-h5);
	font-weight: 500;
	line-height: var(--font-lh-h5);
	letter-spacing: var(--font-ls-h5);
}
.inner-title {
	grid-column: 2/3;

	position: relative;
	margin-top: 30px;
	margin-bottom: 35px;
	padding-top: 60px;
}
.inner-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background: var(--primary);
}
.inner-title p {
	margin-top: 15px;

	text-align: center;
	color: var(--primary);
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}

.main {
	width: 100%;
	margin-top: 60px;

	display: grid;
	grid-template-columns: 23px 1fr 23px;
	grid-template-rows: 265px 50px auto auto auto;
}
.banner {
	position: relative;
	grid-column: 1/4;
	background-size: auto 100%;
}
.banner-cover {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.banner-cover h1 {
	color: var(--pri-white);
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.banner-cover p {
	color: var(--pri-white);
	font-size: var(--font-size-h3);
	font-weight: 500;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}

.inner-sub-nav {
	grid-column: 1/4;
	display: flex;
}
.page-group {
	width: 35%;
	height: 100%;
	background: #1e1e1e;

	display: flex;
	justify-content: center;
	align-items: center;
}
.page-group p {
	color: var(--pri-white);
	font-size: var(--font-size-body1);
	font-weight: 400;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.page-list {
	position: relative;
	width: 65%;
	height: 100%;
	background: #f9f9f9;
}
.page-list input {
	display: none;
}
.page-list label {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-left: 20px;
	padding-top: 13px;

	color: var(--primary);
	font-size: var(--font-size-body1);
	font-weight: 400;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.page-list label::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 23px;
	transform: translateY(-50%);
	width: 13px;
	height: 6px;
	background-image: url(/images/common/icon_arrow_blue.svg);
	background-size: cover;
}

/* common E */

/* business common S */
section {
	grid-column: 1/4;
	padding: 30px 0 60px 0;

	display: grid;
}
.content-title {
	grid-column: 2/3;
	margin-bottom: 30px;

	text-align: center;
	color: var(--primary);
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.content-sub-title {
	grid-column: 2/3;
	margin-bottom: 10px;

	color: #000000;
	font-size: var(--font-size-h3);
	font-weight: 500;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}
.content-description {
	margin-bottom: 30px;
	grid-column: 2/3;
	font-size: var(--font-size-body1);
	font-weight: 500;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.content-inner-banner {
	margin-bottom: 15px;
	grid-column: 2/3;
	height: 110px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.content-img {
	grid-column: 2/3;
	margin-bottom: 20px;
}
.content-img img {
	width: 100%;
}
/* business common E */

/* town content S */
.town-content {
	display: grid;
	grid-template-columns: 23px 1fr 23px;
	grid-template-rows: repeat(4, auto);
}
.town-banner {
	background-image: url(/images/business/town/banner_town.jpg);
}
.town-descriptions {
	grid-column: 1/4;
}
.town-descriptions__item {
	height: 300px;
	background-size: cover;
}
.town-descriptions__item--gold {
	background-image: url(/images/business/town/town_01.jpg);
}
.town-descriptions__item--blue {
	background-image: url(/images/business/town/town_02.jpg);
}
.town-descriptions__item input {
	display: none;
}
.town-descriptions__item label {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	position: relative;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	transition: 0.5s;

	color: var(--pri-white);
	text-align: center;
}
.town-descriptions__cover h3 {
	margin-bottom: 22px;
	transition: 0.5s;

	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.town-descriptions__item label::after {
	content: '';
	position: relative;
	background-image: url(/images/business/town/icon_plus.svg);
	width: 30px;
	height: 30px;
	transition: 0.5s;
}
.town-descriptions__cover p {
	width: 95%;
	height: 0;
	/* height: 120px; */
	max-width: 330px;
	margin-bottom: 0;
	/* margin-bottom: 17px; */
	transition: 0.5s;
	overflow: hidden;
}

/* checked  */
input:checked + .town-descriptions__cover {
	background: rgba(0, 0, 0, 0.7);
}
input:checked + .town-descriptions__cover::after {
	background-image: url(/images/business/town/icon_minus.svg);
}
input:checked + .town-descriptions__cover h3 {
	margin-bottom: 17px;
}
input:checked + .town-descriptions__cover p {
	height: 120px;
	margin-bottom: 17px;
}

/* town content E */
