@charset "utf-8";

.l-main img {
	max-width: 100%;
	height: auto;
}

/* 横移動ナビゲーション */
.c-sub_nav {
	width: 1200px;
	max-width: 100%;
	margin: 120px 0;
}

.c-sub_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.c-sub_nav li {
	width: 24%;
	display: flex;
	align-items: center;
	border: solid 1px var(--main-color);
	margin-bottom: 15px;
	/* margin-bottom: 20px; */
}

@media screen and (max-width: 780px) {
	.c-sub_nav li {
		width: 49%;
	} 
}
@media screen and (max-width: 610px) {
	.c-sub_nav li {
			width: 100%;
			margin-bottom: 5px;
	}
}

.c-sub_nav a {
	display: inline-block;
	width: 100%;
	color: var(--text-color);
	text-decoration: none;
	padding: 1em 45px 1em 18px;
	font-size: 0.875rem;
	background: #fff url(/-/media/BREXA-CrossBorder/img/common/arrow.svg) no-repeat right 18px center;
	line-height: 1.3;
	transition: all 0.3s;
}

.c-sub_nav a:hover {
	background-color: rgba(var(--sub-color-light-rgb),0.2);
}

.c-dis_block {
    display: block;
}



.p-float_right {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
	.p-float_right {
		float: none;
		display: block;
		margin: 20px auto;
	}
}



.p-service2__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-service2__item {
	box-sizing: border-box;
	width: 48.5%;
	background: rgba(var(--sub-color-light-rgb),0.4);
	padding: 20px;
	margin-bottom: 24px;
}

.p-service2__item img {
	display: block;
	margin: 0 auto;
}

.p-service2__title {
	text-align: center;
	margin: 1em 0;
	font-weight: bold;
	font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
	.p-service2__item {
		width: 100%;
	}
}



.p-colored_box__text {
	font-weight: bold;
	font-size: 1.125rem;
	margin: 1em 0;
}

/* 細目 */
.p-small {
	font-size: 0.875rem;
}

/* 赤い、数字付きのリスト */
.p-number_list {
	list-style-type: decimal;
	font-weight: bold;
	font-size: 1rem;
}

.p-number_list li {
	margin: 0.5em 0 0.5em 2em;
	padding: 0;
}

.p-number_list li::marker {
	color: var(--main-color);
	font-weight: bold;
}

.p-number_list--katakana {
	list-style-type: katakana;
}



/* 横3列 */
.c-3col {
	display: flex;
	justify-content: space-between;
}

.c-3col_box {
	width: 32.5%;
}

@media screen and (max-width:768px) {
	.c-3col {
		display: block;
	}

	.c-3col_box {
		width: 100%;
		margin-bottom: 20px;
	}

	.c-3col_box:last-of-type {
		margin-bottom: 0;
	}
}


/* 赤い■の付くタイトル */
.p-left_square_title {
	font-weight: bold;
	text-indent: -1.1em;
	padding-left: 1.1em;
	margin-bottom: 0.5em;
	font-size: 0.875rem;
}
.p-left_square_title::before {
	content: '■ ';
	color: var(--main-color);
}
