@charset "utf-8";

/*--------------------------------------------------*/
/* l-underline */
/*--------------------------------------------------*/

.l-underline {
	text-decoration: underline;
}

/*--------------------------------------------------*/
/* l-autoimg */
/*--------------------------------------------------*/

.l-autoimg {
	height: auto;
}

/*--------------------------------------------------*/
/* l-arrow */
/*--------------------------------------------------*/

.c-column__w6 > div {
	background-color: #F000;
}

.l-arrow > .c-column__w6:first-child > div {
	position: relative;
	/*padding-right: 10px;*/
}

.l-arrow > .c-column__w6:first-child > div::before {
	content: '';
	display: block;
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	right: -5px;
	border-right: #333 dotted 1px;
}

.l-arrow > .c-column__w6:first-child > div::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	right: -20px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 15px solid #333;
}

@media (max-width: 991px) {
	.l-arrow > .c-column__w6:first-child > div {
		padding-bottom: 50px;
	}

	.l-arrow > .c-column__w6:first-child > div::before {
		display: none;
	}

	.l-arrow > .c-column__w6:first-child > div::after {
		top: auto;
		bottom: 0;
		right: 50%;
		border-top: 15px solid #333;
		border-bottom: none;
		border-right: 15px solid transparent;
		border-left: 15px solid transparent;
		margin-right: -8px;
	}
}