.btn-primary {
	background-color: #98c1af;
	box-shadow: 0 0 9px -1px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	padding: 1.6rem 3rem;
	position: relative;
	z-index: 1;
}

.btn-primary:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.btn-primary::before {
	content: "";
	background-color: #006083;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.6s ease-out;
}

.btn-primary[target=_blank]::after {
	content: "";
	background: url("/company/cmn/img/img_icon_33.png") no-repeat center/contain;
	position: absolute;
	top: 50%;
	width: 1.2rem;
	height: 1.1rem;
	right: 1.5rem;
	transform: translateY(-50%);
}

.btn-primary:not([target=_blank])::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1.5rem;
	width: 0.5rem;
	height: 0.5rem;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg) translateY(-50%);
	z-index: 3;
	transition: border 0.3s ease-out;
	pointer-events: none;
}

.p-comp {
	margin-bottom: 12rem;
}

.tbl-comp {
	display: grid;
	grid-template-columns: 8rem 1fr;
	gap: 3rem 2rem;
	line-height: 1.5;
	font-size: 1.4rem;
}

.tbl-comp > dt {
	color: #006083;
	font-weight: 400;
}

.tbl-comp dd {
	margin: 0;
}

.tbl-subcomp dd {
	margin-bottom: 1rem;
}

.tbl-subcomp dd:last-child {
	margin-bottom: 0;
}

.link a {
	color: #006083;
	font-weight: 400;
	text-decoration: underline;
}

.link a:hover {
	text-decoration: none;
}

.link a[target=_blank]::after {
	content: "";
	background: url("../images/common/icon_url.png") no-repeat center/contain;
	aspect-ratio: 42/38;
	width: 1.4rem;
	display: inline-block;
	margin-left: 0.5rem;
}

.p-access {
	background-color: #f7f7f7;
	padding-bottom: 12rem;
}

.p-access__head {
	background-color: #fff;
	margin-bottom: 6rem;
	padding-block: 5rem;
}

.p-access .outner {
	padding-inline: 1.8rem;
}

.anchor-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
}

.anchor-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.6rem;
	line-height: 1.5;
	padding-inline: 1rem 2rem;
	transition: 0.2s ease;
}

.anchor-list a:hover {
	background-color: #e5e5e5;
}

.anchor-list a::after {
	content: "";
	background: url("../images/common/icon_arrow.svg") no-repeat center/contain;
	height: 0.5rem;
	width: 1.6rem;
}

.access-box {
	display: grid;
	row-gap: 3rem;
	background-color: #fff;
	line-height: 1.5;
	margin-top: 6rem;
	padding: 3rem 2rem;
	overflow: hidden;
}

.access-box:first-child {
	margin-top: 0;
}

.access-box__name {
	border-bottom: 1px solid #b2cfd9;
	color: #006083;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.4;
	padding-bottom: 1rem;
}

@media (min-width: 768px) {

.btn-primary {
	font-size: 1.6rem;
}

.btn-primary[target=_blank]::after {
	width: 1.3rem;
	height: 1.2rem;
}

.btn-primary:not([target=_blank])::after {
	width: 0.8rem;
	height: 0.8rem;
}

.tbl-comp {
	grid-template-columns: 20rem 1fr;
	font-size: 1.6rem;
}

.anchor-list {
	gap: 1.4rem 3rem;
}

.anchor-list li {
	border-right: 1px solid #e5e5e5;
	width: 19%;
}

.access-box {
	margin-top: 9rem;
	padding: 5rem 4rem;
}

.access-box__name {
	font-size: 2rem;
}

}

@media (max-width: 767px) {

.anchor-list li {
	border-bottom: 1px solid #e5e5e5;
	width: 100%;
}

.anchor-list a {
	height: 6rem;
}

}

