@charset "UTF-8";

/** ************************************* **

	TABLE CONTENTS
	---------------------------
		01. Globals
		02. Button
		03. Navigation
		04. Bootstrap extension
		05. 文字列にスラッシュ追加
	---------------------------

 ** ************************************* **/

/** 01. Globals
 **************************************************************** **/
@media screen and (max-width: 480px) {
	.content_full {
		margin: 0 -10px;
		padding: 0px;
	}
}

#content ul li,
#content ol li {
	line-height: 1.2;
}

#content ul,
#content ol {
	margin: 0;
	margin-bottom: 0;
	padding-left: 0;
}


/** 02. Button
 **************************************************************** **/
.top_btnmenu .btn {
	height: 40px;
	padding: 5px;
	white-space: normal;
}

.top_btnmenu {
	display: table;
	width: 100%;
}

.top_btnmenu .row_center {
	display: table-cell;
	vertical-align: middle;
}

@media (max-width: 768px) {
	.top_btnmenu .btn {
		height: 50px;
	}
}

@media screen and (max-width: 480px) {
	.top_btnmenu .btn {
		font-size: 14px;
	}
}


/** 03. Navigation
 **************************************************************** **/
.container_nav {
	margin-right: 10px;
	margin-left: 10px;
	padding: 10px;
}

@media screen and (max-width: 480px) {
	.container_nav {
		padding: 8px;
	}
}

.header-nav {
	color: #000;
	background-color: #fff;
	background: #e1f0fa;
}

.header-nav a::after {
	display: block;
	height: 0px;
	margin-top: 3px;
	margin-bottom: 3px;
	content: '';
}

.header-nav p.toppd {
	padding-top: 10px;
}


/** 04. Bootstrap extension
 **************************************************************** **/
@media (max-width: 480px) {
	.col-6 {
		padding-right: 5px;
		padding-left: 5px;
	}
}



/** 05. 文字列にスラッシュ追加
 **************************************************************** **/
.slash {
	position: relative;
	display: inline-block;
	padding: 0px 40px;
	margin: 5px;
	font-size: 1.5em;
	color: #3498db;
}

@media (max-width: 991px) {
	.slash {
		font-size: 2vw;
	}
}

@media (max-width: 768px) {
	.slash {
		font-size: 2.5vw;
	}
}

@media (max-width: 575px) {
	.slash {
		font-size: 2.3vw;
	}
}

@media (max-width: 480px) {
	.slash {
		font-size: 4.3vw;
		padding: 0px 28px;
	}
}

.slash::before {
	content: '';
	position: absolute;
	bottom: 13px;
	display: inline-block;
	width: 32px;
	height: 2px;
	background-color: #3498db;
	-webkit-transform: rotate(60deg);
	transform: rotate(60deg);
}
.slash::after {
	content: '';
	position: absolute;
	bottom: 13px;
	display: inline-block;
	width: 32px;
	height: 2px;
	background-color: #3498db;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

.slash::before {
	left: 0;
}

.slash::after {
	right: 0;
}
