@charset "EUC-JP";


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

	TABLE CONTENTS
	---------------------------
		01. Globals
		02. balloon
		03. button
		04. list
		05. nav
		06. link
		07. bootstrap
		08. 画像上の文字
		09. CHARACTOR
		10. 丸数字カウンターリスト
		11. point_fukidashi
	---------------------------

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



/** 01. Globals
 **************************************************************** **/
.content_inner{
	padding:0 100px;
}
.alert {
	padding: 10px;
	margin-bottom: 5px;
	border-radius: 6px;
}
#content .alert h4 {
	margin-top: 0;
	color: inherit;
}
.alert-danger .line {
	border-bottom: 2px solid #fcc7cc;
	padding-bottom: 2px;
}
.alert-title{
	font-size: 1.2em;
	font-weight: bold;
}
.news_box {
	margin: 10px 0;
	padding: 10px;
	border: 1px solid #cccccc;
	background: #fff;
}
#container h4[id] {
	margin-top: 20px;
	padding-top: 0px;
}
h4.box1{
	font-size:1.2em; 
	color: #505050;/*文字色*/
	padding: 0.5em 0.5em 0.5em 1.5em;/*文字周りの余白*/
	text-indent: -1.5em;
	line-height: 1.3;/*行高*/
	background: #e1f0fa;/*背景色*/
	vertical-align: middle;/*上下中央*/
	border-radius: 0px 0px 0px 0px;/*左側の角を丸く*/
	margin:5px 0;
	border-bottom: solid 1px #217dbb;
}
h4.box1:before {
	font-size:1.6em; 
	content: '●';
	color: white;
	margin:8px 5px;
	text-shadow: -1px -1px 1px #fff, -1px -1px 1px #414141;
}

.marker.yellow.thin {
	color: inherit;
	background: linear-gradient(transparent 50%, #ffff66 50%);
}
.nav-pills > li > a {
	border-radius: 0px;
}



/* ----------------------------------------
 * 画像の横に文字を配置
 * ---------------------------------------- */
.SideBySide p{
	display:inline-block;
	vertical-align:middle; /*縦方向の揃え位置を指定*/
}
.SideBySide .img-fluid{
	display:inline-block;
}
div.SideBySide{
	display:inline-block;
	vertical-align:middle; /*縦方向の揃え位置を指定*/
}

/* ----------------------------------------
 * heading center
 * --------------------------------------- */
#content .center-heading h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 0.17em;
	color: #333;
	line-height: 1.8;
}
@media(max-width:533px){
#content .center-heading h6{
	font-size: 18px;
	letter-spacing: 0.10em;
}
}
#content .center-heading h6:first-letter{
    text-transform: uppercase;
}



@media only screen and (max-width: 768px) {

.step_hr {
	width:95%;
	border-bottom:solid 1px #ccc;
}
}





@media (max-width: 768px) {
	.content_inner{
		padding:0 2px;
	}
	h4 {
		font-size: 1.1em;
		margin-bottom: 20px;
		padding-bottom: 0.2em;
		border-bottom: solid 2px #005b9f;
	}
	.alert-title{
		font-size: 1.09em;
		font-weight: bold;
	}
	.text-right.sp{
		text-align: left;
	}
}

/* ----------------------------------------
 * border　追加
 * --------------------------------------- */
.border_bottom_dot {
    border-bottom: 4px dotted #4E8AC9;
	margin: 0 10px 0px 10px;
}










/** 02. balloon
 **************************************************************** **/
/* balloon-2 bottom */
.balloon_bottom {
	position: relative;
	display: inline-block;
	padding:10px;
	width: auto;
	min-width: 115px;
	height: 40px;
	color: #F6F6F6;
	line-height: 40px;
	text-align: center;
	-webkit-border-radius: 5px;    /* Safari,Google Chrome */
	-moz-border-radius: 5px;   /* Firefox */
	border-radius: 5px;        /* CSS3 */
	background: #f24387;
	z-index: 0;
}
.balloon_bottom:after {
	content: "";
	position: absolute;
	bottom: -10px; left: 50%;
	margin-left: -10px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #f24387 transparent transparent transparent;
}
/* ----------------------------------------
 * 吹き出し追加
 * ---------------------------------------- */
.fukidashi_top {
	position: relative;
	display: inline-block;
 	margin: 1.5em 0;
	padding: 15px 18px;
	min-width: 120px;
 	max-width: 100%;
 	color: #393939;
	font-size: 14px;
	background: #E0F5AA;
 	box-sizing: border-box;
    border-radius: 15px;
}
.fukidashi_top:before {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
 	margin-left: -15px;
	border: 15px solid transparent;
	border-bottom: 15px solid #E0F5AA;
}


/** 03. button
 **************************************************************** **/

.btn {
	white-space: normal;
}






/** 04. list
 **************************************************************** **/
/* ----------------------------------------
 * リストにフォントオーサム使用
 * ---------------------------------------- */
 #content .list_check ul {
	list-style: none;
	margin: 0;
	padding-left: 1em;
}
#content .list_check li{
	position: relative;
	padding-left: 0.4em;
	padding-bottom: 0.4em;
	font-weight: bold;
	font-size: 1.1em;
}
#content .list_check li:before {
	font-family: FontAwesome;
	content: '\f046'; /* アイコンのunicode */
	position: absolute;
	font-size: 1.2em;
	left: -0.8em; /* アイコンのスタート位置。左揃えの場合 ul のpadding-leftと同じ値 */
	top: -0.05em; /* アイコンの場所を変えたければ適宜変更 */
}





/** 05. nav
 **************************************************************** **/
.nav > li > a {
	margin-left: 5px;
	margin-right: 5px;
	background-color: #FFFFFF;
	color: #545555;
	position: relative;
	display: block;
	padding: 10px 5px;
}
.nav-tabs > li > a:hover {
	border-color: #FFFFFF;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus{
	color: #323232;
	background-color: #FFFFFF;
	border-bottom: double 3px rgba(34,125,187,1.00);
	border-radius: 0px;
}
#content ul.nav li{
	line-height: 1.3;
}
.nav.nav-primary > li.row_center{
	vertical-align: middle;
}
.nav.nav-primary > li > a {
	display: table;
	width:95%;
	height: 55px;
}
.nav.nav-primary > li > a >span{
	display: table-cell;
	vertical-align: middle;
}
.nav-tabs > li, .nav-pills > li {
	float:none;
	display:inline-block;
	*display:inline; /* ie7 fix */
	 zoom:1; /* hasLayout ie7 trigger */
}
.nav-tabs, .nav-pills {
	text-align:center;
}
@media (max-width: 768px) {
	.nav.nav-primary > li > a {
		height: 50px;
	}
}



/* ----------------------------------------
 * header-nav
 * --------------------------------------- */
#content .container_nav ul li, #content .container_nav ol li {
	line-height: 1.2;
}
#content .container_nav ul, #content .container_nav ol {
	margin: 0;
	margin-bottom: 0;
}
#content .container_nav ul {
	margin: 0;
	padding-left: 0;
}
.container_nav {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}
.header-nav .container {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}
.header-nav ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 5px 0;
	list-style: none;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.header-nav a, .header-nav a:link, .header-nav a:visited {
	text-decoration: none;
	color: #4E8AC9;
}
.header-nav a {
	font-size: 1.6rem;
	font-weight: 500;
	position: relative;
	display: block;
	padding: 5px;
	text-align: center;
	background: #fff;
	box-sizing: border-box;
	text-decoration: none;
	margin: 0 5px;
	-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
	-webkit-tap-highlight-color: transparent;
	transition: .3s ease-out;
}
.header-nav a:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
}
.header-nav a:hover{
	background-color: #4E8AC9;
	color: #fff;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
.header-nav .container {
	padding-right: 12px;
	padding-left: 12px;
}
.header-nav a:after {
	display: block;
	height: 0px;
	margin-top: 3px;
	margin-bottom: 3px;
	content: '';
}
.header-nav li {
	padding: 5px 3px;
	text-align: center;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
@media screen and (max-width: 979px){
.header-nav a {
	font-size: 1.4rem;
	text-align: center;
}
}
@media screen and (max-width: 767px){
.header-nav li {
	width: 50%;
	-webkit-box-flex: initial;
	-moz-box-flex: initial;
	-ms-flex: initial;
	flex: initial;
}
.header-nav a:after {
	position: absolute;
	top: 50%;
	right: 5px;
	width: 10px;
	margin-top: -4px;
}
}
@media screen and (max-width: 480px){
.header-nav li {
	width: 100%;
	-webkit-box-flex: initial;
	-moz-box-flex: initial;
	-ms-flex: initial;
	flex: initial;
}
.header-nav a {
	font-size: 1.5rem;
	text-align: center;
}
}







/** 06. link
 **************************************************************** **/
/* ----------------------------------------
 * ページ内リンク
 * --------------------------------------- */
span.link-t-a {
	position: relative;
	top: 130px;/*左の数値を変えると、上下に調整します*/
	display: block;
}
@media (max-width: 768px) {
	span.link-t-a {
		position: relative;
		top: 120px;/*左の数値を変えると、上下に調整します*/
		display: block;
	}
}


/** 07. bootstrap
 **************************************************************** **/
/* bootstrap 機能拡張 */
.row-center{
letter-spacing:-0.4em;
}
.row-center > [class*='col-'] {
display:inline-block;
letter-spacing:0;
vertical-align:top;
float:none !important;
}
.row-center.va-middle > [class*='col-'] {
vertical-align:middle;
}
.row-center.va-bottom > [class*='col-'] {
vertical-align:bottom;
}



/** 08. 画像上の文字
 **************************************************************** **/
.colorfilter-base {
	background-color: rgba(0,0,0,1.00); /* カラーフィルタ効果の色を指定 */
}
.colorfilter-image {
	opacity: 0.6;    /* カラーフィルタ効果の度合いを指定(※) */
	display: block;
}
.bg-inner {
	text-align: center;
	position: absolute;
	width: 100%;
}
#example {
	position: relative;
	margin: 0;
}
#example img {
	width: 100%;
}
#example h3{
	font-family: vdl-v7marugothic, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 3.5em;
	color: #fff;
	border-bottom: solid 0px #E1E2E1;
	margin-top: 0px;
	margin-bottom: 0px;
}
#example-in {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	margin: 0 auto;
	line-height: 1.7;
	padding: 20px 10px;
}

/* Opacity*/
#example{
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.box_yellow{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: solid 8px rgba(208,218,55,0.50);
	width: 50%;
	height: 60%;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.7;
}
@media (max-width: 768px) {
	#example h3{
		font-size: 1.5em;
		color: #fff;
		border-bottom: solid 0px #E1E2E1;
	}
	#example p{
		color: #494949;
		font-size: 3vw;
	}
	#example-in {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		margin: 0 auto;
		line-height: 1.7;
		padding: 10px 10px;
	}
	.box_yellow{
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		border: solid 4px rgba(208,218,55,0.50);
		width: 60%;
		height: 60%;
		margin: 0 auto;
		font-size: 1rem;
		line-height: 1.7;
	}
}


/** 09. CHARACTOR
 **************************************************************** **/
.just {
	text-align: justify;
}





/** 10. 丸数字カウンターリスト
 **************************************************************** **/
ol.calender_list {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
}
#content ol.calender_list li {
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
	line-height: 1.5;
}
ol.calender_list li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #52A7E0;
	color: #fff;
	display: block;
	float: left;
	line-height: 22px;
	margin-left: -30px;
	text-align: center;
	height: 22px;
	width: 22px;
	border-radius: 50%;
	vertical-align: middle;
}

ol.calender_list.back_orange li::before {
	background-color: #e67e22;
}


ol.calender_list.back_green li::before {
	background-color: #27AE60;
}


.col-sm-6.mb10 {
	margin-bottom: 10px;
}



.module-green {
    background-color: #1ba784;
		color: #fff;
}





/** 11. point_fukidashi
 **************************************************************** **/
.point_fukidashi {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
	padding: 6px 0;
	width: 75px;
	height: 70px;
	line-height: 1.1;
	vertical-align: middle;
	text-align: center;
	color: #FFF;
	background: #3498db;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-sizing: border-box;
}
.point_fukidashi:before{
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	margin-left: -8px;
	border: 8px solid transparent;
	border-top: 10px solid #3498db;
	z-index: 0;
}
#container h4.point_univ {
	font-size: 120%;
	font-weight: 600;
	line-height: 1.8;
	color: #3498db;
	border-bottom: solid 0px #005b9f;
	margin-top: 5px;
	text-align: left;
}

.point_fukidashi.back_green {
	background: #27AE60;
}

.point_fukidashi.back_green:before{
	border-top: 10px solid #27AE60;
}

#container h4.point_univ.back_green {
	color: #27AE60;
	border-bottom: solid 0px #27AE60;
}

.step_hr {
	width: 95%;
	border-bottom: dotted 1px #ccc;
}
@media only screen and (max-width: 768px) {
	.point_fukidashi {
		position: relative;
		display: inline-block;
		margin-bottom: 1em;
		padding: 6px 0;
		width: 75px;
		height: 70px;
		line-height: 1.1;
		vertical-align: middle;
		text-align: center;
		color: #FFF;
		background: #3498db;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		box-sizing: border-box;
	}
	#container h4.point_univ {
		font-size: 110%;
		font-weight: 600;
		text-align: center;
		line-height: 1.8;
		color: #3498db;
		border-bottom: solid 0px #005b9f;
	}
}




/* 下線 */
.under {
	text-decoration:underline;
}
