@charset "UTF-8";

/* *******************************************************************************************
* 
*	Common
*
******************************************************************************************* */

html{
	overflow: auto;
}
body.fixed{
	overflow: hidden;
}

.pc{ display: block;}
.sp{ display: none;}
.pcInline{ display: inline-block;}
.spInline{ display: none;}

.mincho-medium{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: 500;
}
.mincho-demibold{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: 600;
}
.en{
	font-family: 'Cantata One', serif;
}

@media screen and (max-width : 768px){
	.pc{ display: none;}
	.sp{ display: block;}
	.pcInline{ display: none;}
	.spInline{ display: inline-block;}
}

/* -------------------------------------------------------------------------------------------
*
* ヘッダー 
*
* ----------------------------------------------------------------------------------------- */

.swuHeader{
}
.swuHeader_inner{
	margin: 0 auto;
	height: 90px;
	max-width: 980px;
}
.swuHeader_l{
	float: left;
	width: 390px;
}

@media screen and (max-width : 768px){
	.swuHeader{
		min-width: 320px;
	}
	.swuHeader_inner{
		position: fixed;
		top: 0;
		left: 0;
		padding: 0;
		width: 100%;
		min-width: 320px;
		height: 55px;
		background: #fff;
		z-index: 99999;
		box-shadow: 0px 0px 3px #a3a3a3;
	}
	.swuHeader_l{
		width: 223px;
	}
	#mainNavSp.slideIn{
		-webkit-animation: navSlideIn .3s ease 0s 1 normal both;
		animation: navSlideIn .3s ease 0s 1 normal both;
	}
	#mainNavSp.slideOut{
		-webkit-animation: navSlideOut .3s ease 0s 1 normal both;
		animation: navSlideOut .3s ease 0s 1 normal both;
	}
	@-webkit-keyframes navSlideIn{
		from{
			top: -55px;
		}
		to{
			top: 0px;
		}
	}
	@keyframes navSlideIn{
		from{
			top: -55px;
		}
		to{
			top: 0px;
		}
	}
	@-webkit-keyframes navSlideOut{
		from{
			top: 0px;
		}
		to{
			top: -55px;
		}
	}
	@keyframes navSlideOut{
		from{
			top: 0px;
		}
		to{
			top: -55px;
		}
	}
}

/* ----------------------------- PC メニュー ----------------------------- */

.swuHeader_r{
	position: relative;
	float: right;
	width: 49%;
	height: 90px;
	text-align: right;
	overflow: hidden;
}
.swuHeader_nav1{
	margin: 0 0 16px auto;
	width: 100%;
}
.swuHeader_nav1_item{
	float: left;
	width: calc(20% - 1px);
	text-align: center;
	border-right: 1px solid #dbe0e4;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.swuHeader_nav1_item.item-student1{
	border-right: 1px solid #dfe4e8;
}
.swuHeader_nav1_item.item-student2{
	border-right: 1px solid #fff;
}
.swuHeader_nav1_item:last-child{
	width: calc(20% + 4px);
	text-align: right;
	letter-spacing: -0.06em;
	border-right: 0;
}
.swuHeader_nav1_item a{
	display: block;
	height: 32px;
	font-size: 12px;
	line-height: 32px;
}
.swuHeader_nav1_item.item-student1 a{
	color: #fff;
	font-weight: bold;
	background: #f15a85;
}
.swuHeader_nav1_item.item-student2 a{
	color: #fff;
	font-weight: bold;
	background: #4eb2df;
}
.swuHeader_r_mid{
	font-size: 0;
	line-height: 0;
}
.swuHeader_nav2{
	float: right;
	padding-top: 7px;
	font-size: 0;
	line-height: 0;
}
.swuHeader_nav2_item{
	display: inline-block;
	padding: 0 10px;
	font-size: 12px;
	line-height: 1em;
	border-left: 1px solid #b7c1ca;
}
.swuHeader_nav2_item:first-child{
	border-left: 0;
}
.swuHeader_nav2_item a:hover span{
	text-decoration: underline;
}

@media screen and (max-width : 880px){
	.swuHeader_nav1_item{
		width: calc(20% - 4px);
	}
	.swuHeader_nav1_item:last-child{
		width: calc(20% + 16px);
	}
}

/* 検索 */
.swuHeader_search{
	position: relative;
	float: right;
	margin-left: 15px;
	width: 28px;
}
.search_btn{
	position: relative;
	display: block;
	width: 26px;
	height: 26px;
	background: url(../img/common/icon_search_pc.png) center center no-repeat;
	background-size: 12px auto;
	border: 1px solid #d0d4d8;
	z-index: 20;
}
.swuHeader_search_body{
	position: absolute;
	top: 32px;
	left: 100%;
	padding: 11px 0 0 11px;
	width: 100%;
	height: 57px;
	background: #929ba4;
	z-index: 100;
	overflow: hidden;
	opacity: 0;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.swuHeader_search_body_input{
	float: left;
	width: 71%;
	height: 34px;
	background: #fff;
	-webkit-border-radius: 17px;
	border-radius: 17px;
}
.swuHeader_search_body_radio{
	float: left;
	padding-left: 10px;
	width: 22%;
	color: #fff;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.swuHeader_search_body_radio_item{
	font-size: 12px;
	line-height: 16px;
	text-align: left;
}
.swuHeader_search_body_close{
	float: left;
	width: 7%;
}
.search_close_btn{
	display: block;
	width: 100%;
	height: 37px;
	background: url(../img/common/icon_close_wt.png) center center no-repeat;
	background-size: 12px auto;
}

/* 検索フォーム */
.search_type-text{
	float: left;
	padding: 0 14px;
	width: 85%;
	height: 34px;
	font-family: inherit;
	font-size: 14px;
	line-height: 34px;
	background: transparent;
	border: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
.search_type-submit{
	float: left;
	width: 15%;
	height: 34px;
	cursor: pointer;
	font-family: inherit;
	font-size: 12px;
	line-height: 34px;
	background: transparent;
	border: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
.search_type-radio{
	display: none;
}
.search_type-radio + label{
	cursor: pointer;
	position: relative;
	display: inline-block;
	padding-left: 16px;
}
.search_type-radio + label::before{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	background: #fff;
	border: 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.search_type-radio:checked + label::after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 1px;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	background: #009ce2;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

/* ----------------------------- SP メニュー ----------------------------- */

@media screen and (max-width : 768px){
	.swuHeader_r{
		width: auto;
		height: auto;
	}
	.swuHeader_nav{
		margin-left: auto;
		margin-right: 0;
		width: 55px;
	}
	.swuHeader_nav_item{
		float: left;
		width: 55px;
	}
	.swuHeader_nav_item a{
		display: block;
		padding-top: 35px;
		height: 55px;
		color: #000;
		font-size: 10px;
		line-height: 1em;
		text-align: center;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.swuHeader_nav_item.nav_item-menu a{
		background: url(../img/common/icon_menu_sp.png) center 13px no-repeat;
		background-size: 15px auto;
	}
	.swuHeader_nav_item.nav_item-menu a.nav-active{
		background: url(../img/common/icon_close.png) center center no-repeat;
		background-size: 12px auto;
	}
}

/* ----------------------------- PC メインメニュー ----------------------------- */

.swuHeader_mainNav{
	position: relative;
	box-shadow: 0px 0px 3px #a3a3a3;
}
.swuHeader_mainNav_inner{
	margin: 0 auto;
	width: 100%;
	max-width: 980px;
}
.swuHeader_mainNav_item{
	position: relative;
	float: left;
	width: 12%;
	height: 68px;
}
.swuHeader_mainNav_item:nth-child(odd){
	width: 13%;
}
@media screen and (max-width : 940px){
	.swuHeader_mainNav_item,
	.swuHeader_mainNav_item:nth-child(odd){
		width: 11%;
	}
	.swuHeader_mainNav_item:nth-child(6){
		width: 16%;
	}
	.swuHeader_mainNav_item:last-child{
		width: 18%;
	}
}
.swuHeader_mainNav_item:after{
	position: absolute;
	content: '';
	top: 50%;
	right: 0;
	width: 1px;
	height: 42px;
	background: #dbe0e4;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.swuHeader_mainNav_item:last-child:after{
	background: none;
}
.swuHeader_mainNav_item_link{
	position: relative;
	display: block;
	padding-top: 13px;
	height: 68px;
	font-size: 13px;
	line-height: 27px;
	font-weight: bold;
	text-align: center;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.swuHeader_mainNav_item_link .en{
	display: block;
	font-size: 10px;
	line-height: 1em;
	font-weight: normal;
}
.swuHeader_mainNav_item_link:hover .en{
	color: #ee3166;
}
.swuHeader_mainNav_item_link.nav-current .en{
	color: #ee3166;
}
.swuHeader_mainNav_item_link:after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0px;
	background: #ee3166;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.swuHeader_mainNav_item_link.nav-current:after{
	height: 4px;
}

/* ----------------------------- PC FIXメニュー ----------------------------- */

.swuHeader_mainNav-fix{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 9999;
	box-shadow: 0px 0px 3px #a3a3a3;
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item{
	width: calc(12% - 7px);
	height: 56px;
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item:nth-child(odd){
	width: calc(13% - 7px);
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item:after{
	height: 30px;
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item:last-child:after{
	background: none;
}
.swuHeader_mainNav_item-mark{
	float: left;
	width: 56px;
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item_link{
	height: 56px;
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item_link:hover{
	opacity: .6;
}
.swuHeader_mainNav-fix .swuHeader_mainNav_item_link.nav-current:hover{
	opacity: 1;
}
@media screen and (max-width : 940px){
	.swuHeader_mainNav-fix .swuHeader_mainNav_item,
	.swuHeader_mainNav-fix .swuHeader_mainNav_item:nth-child(odd){
		width: calc(11% - 7px);
	}
	.swuHeader_mainNav-fix .swuHeader_mainNav_item:nth-child(7){
		width: calc(17% - 7px);
	}
	.swuHeader_mainNav-fix .swuHeader_mainNav_item:last-child{
		width: calc(17% - 7px);
	}
	.swuHeader_mainNav-fix .swuHeader_mainNav_item_link{
		letter-spacing: -0.06em;
	}
}

/* ----------------------------- SP メニューコンテンツ ----------------------------- */

@media screen and (max-width : 768px){
	#spMenu{
		position: fixed;
	    top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		padding-top: 55px;
	    width: 100%;
	    height: 100%;
	    background: #333;
		z-index: 9999;
		overflow-y: auto;
		opacity: 0;
	    -webkit-box-sizing:border-box;
	    box-sizing:border-box;
	    -webkit-overflow-scrolling: touch;
	}
	.spMenu_nav1{
		background: #c9d0d7;
	}
	.spMenu_nav1_item{
		display: block;
		text-align: left;
		border-top: 1px solid #d9dee3;
	}
	.spMenu_nav1_item:first-child{
		border-top: 0;
	}
	.spMenu_nav1_item_link{
		position: relative;
		display: block;
		padding: 15px 0 15px 20px;
		font-size: 18px;
		line-height: 1em;
		font-weight: bold;
	}
	.spMenu_nav1_item_link .en{
		display: block;
		padding-top: 10px;
		color: #6d7073;
		font-size: 12px;
		line-height: 1em;
		font-weight: normal;
	}
	.spMenu_nav1_item_link:after{
		position: absolute;
		content: '';
		top: 50%;
		right: 25px;
		width: 6px;
		height: 11px;
		background: url(../img/common/icon_arrow_r_bk.png) right center no-repeat;
		background-size: 6px 11px;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.spMenu_nav2{
		display: table;
		width: 100%;
		background: #929ba4;
	}
	.spMenu_nav2_item{
		display: table-cell;
		width: 50%;
		height: 62px;
		vertical-align: middle;
		border-left: 1px solid #b0b6bd;
	}
	.spMenu_nav2_item:first-child{
		border-left: 0;
	}
	.spMenu_nav2_item_link{
		position: relative;
		display: block;
		padding-left: 20px;
		color: #fff; 
		font-size: 13px;
		line-height: 18px;
		font-weight: bold;
	}
	.spMenu_nav2_item_link:after{
		position: absolute;
		content: '';
		top: 50%;
		right: 25px;
		width: 6px;
		height: 11px;
		background: url(../img/common/icon_arrow_r.png) right center no-repeat;
		background-size: 6px 11px;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.spMenu_nav3{
		display: table;
		width: 100%;
		background: #929ba4;
		border-top: 1px solid #b0b6bd;
	}
	.spMenu_nav3_item{
		display: table-cell;
		width: 256px;
		height: 62px;
		vertical-align: middle;
		border-left: 1px solid #b0b6bd;
	}
	.spMenu_nav3_item:first-child{
		border-left: 0;
	}
	.spMenu_nav3_item_link{
		position: relative;
		display: block;
		padding-left: 20px;
		color: #fff; 
		font-size: 13px;
		line-height: 18px;
		font-weight: bold;
	}
	.spMenu_nav3_item_link:after{
		position: absolute;
		content: '';
		top: 50%;
		right: 11px;
		width: 6px;
		height: 11px;
		background: url(../img/common/icon_arrow_r.png) right center no-repeat;
		background-size: 6px 11px;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.spMenu_nav3_item:last-child .spMenu_nav3_item_link:after{
		right: 25px;
	}
	.spMenu_nav4{
		display: table;
		width: 100%;
		border-top: 1px solid #b0b6bd;
	}
	.spMenu_nav4_item{
		display: table-cell;
		width: 50%;
		height: 62px;
		vertical-align: middle;
		border-left: 1px solid #6d6e6e;
	}
	.spMenu_nav4_item:first-child{
		border-left: 0;
	}
	.spMenu_nav4_item_link{
		position: relative;
		display: block;
		padding-left: 20px;
		color: #fff; 
		font-size: 13px;
		line-height: 18px;
		font-weight: bold;
	}
	.spMenu_nav4_item_link:after{
		position: absolute;
		content: '';
		top: 50%;
		right: 20px;
		width: 10px;
		height: 8px;
		background: url(../img/common/icon_win_wt.png) right center no-repeat;
		background-size: 10px 8px;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.spMenu_nav5{
		display: table;
		width: 100%;
		border-top: 1px solid #6d6e6e;
	}
	.spMenu_nav5_item{
		display: table-cell;
		width: 100%;
		height: 62px;
		vertical-align: middle;
	}
	.spMenu_nav5_item_link{
		position: relative;
		display: block;
		padding-left: 20px;
	}
	.spMenu_nav5_item_link span{
		display: inline-block;
		padding-left: 25px;
		color: #fff; 
		font-size: 13px;
		line-height: 20px;
		font-weight: bold;
		background: url(../img/common/icon_spot_wt.png) 0 center no-repeat;
		background-size: 13px 20px;
	}
	.spMenu_nav5_item_link:after{
		position: absolute;
		content: '';
		top: 50%;
		right: 20px;
		width: 10px;
		height: 8px;
		background: url(../img/common/icon_win_wt.png) right center no-repeat;
		background-size: 10px 8px;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.spMenu_nav6{
		border-top: 1px solid #6d6e6e;
	}
	.spMenu_nav6_item{
		display: block;
	}
	.spSearch_body{
		padding: 20px 7px;
	}
	.spSearch_body_input{
		margin-bottom: 10px;
		height: 36px;
		background: #fff;
		-webkit-border-radius: 18px;
		border-radius: 18px;
	}
	.spSearch_body_radio{
		text-align: center;
		color: #fff;
		font-size: 0;
		line-height: 0;
	}
	.spSearch_body_radio_item{
		display: inline-block;
		padding: 0 10px;
		font-size: 12px;
		line-height: 1em;
	}
	/* 検索フォーム */
	.search_type-text{
		padding: 0 0 0 40px;
		width: 85%;
		height: 36px;
		font-size: 16px;
		line-height: 36px;
		background: url(../img/common/icon_search_sp.png) 12px center no-repeat;
		background-size: 16px auto;
	}
	.search_type-submit{
		width: 15%;
		height: 36px;
		font-size: 12px;
		line-height: 36px;
	}
	.search_type-radio:checked + label::after{
		background: #009ce2;
	}
}

/* -------------------------------------------------------------------------------------------
*
* メインコンテンツ 
*
* ----------------------------------------------------------------------------------------- */

.swuMain{
}

@media screen and (max-width : 768px){
	.swuMain{
		padding-top: 55px;
		min-width: 320px;
		overflow: hidden;
	}
}

/* ----------------------------- アイコン ----------------------------- */

.ic-win{
	display: inline-block;
	padding-right: 17px;
	background: url(../img/common/icon_win.png) right center no-repeat;
	background-size: 10px auto;
}

/* ----------------------------- ボタン ----------------------------- */

.more_btn{
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	font-size: 14px;
	line-height: 38px;
	text-align: center;
	background: #fff;
	border: 1px solid #a1aab2;
	-webkit-border-radius: 20px;
	border-radius: 20px;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.more_btn:after{
	position: absolute;
	content: '';
	top: 0;
	right: 15px;
	width: 7px;
	height: 38px;
	background: url(../img/common/icon_arrow_r_blue.png) right center no-repeat;
	background-size: 7px 11px;
}
.more_btn:hover{
	color: #fff;
	background: #009ce2;
	border: 1px solid #009ce2;
}
.more_btn:hover:after{
	background: url(../img/common/icon_arrow_r.png) right center no-repeat;
	background-size: 7px 11px;
}
.detail_link{
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
}
.detail_link span{
	padding-right: 27px;
	background: url(../img/common/icon_arrow_r_blue.png) right center no-repeat;
	background-size: 7px 11px;
}
.detail_link:before{
	position: absolute;
	content: '';
	top: 50%;
	left: -60px;
	width: 0px;
	height: 1px;
	background: #009ed4;
	z-index: 2;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.detail_link:after{
	position: absolute;
	content: '';
	top: 50%;
	left: -60px;
	width: 40px;
	height: 1px;
	background: #ccc;
	z-index: 1;
}
.detail_link:hover{
	color: #009ed4;
}
.detail_link:hover:before{
	width: 40px;
}

@media screen and (max-width : 768px){
	.more_btn{
		height: 50px;
		font-size: 14px;
		line-height: 48px;
		-webkit-border-radius: 25px;
		border-radius: 25px;
	}
	.more_btn:after{
		right: 19px;
		height: 48px;
	}
	.more_btn:hover{
		color: inherit;
		background: #fff;
		border: 1px solid #a1aab2;
	}
	.more_btn:hover:after{
		background: url(../img/common/icon_arrow_r_blue.png) right center no-repeat;
		background-size: 7px 11px;
	}
}

/* ----------------------------- フォーム ----------------------------- */


/* ----------------------------- 各コンテンツ ----------------------------- */

.swuContents{
	position: relative;
	overflow: hidden;
}
.swuContents_overlay-l{
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1490px;
	width: 1000px;
	height: 100%;
	background: rgba(255,255,255,.5);
	z-index: 99;
}
.swuContents_overlay-r{
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: 490px;
	width: 1000px;
	height: 100%;
	background: rgba(255,255,255,.5);
	z-index: 99;
}
.swuContents_list{
	display: none;
	margin: 0 auto;
	max-width: 980px;
	font-size: 0;
	line-height: 0;
	text-align: center;
}
.swuContents_list.slick-initialized{
	display: block;
}
.swuContents_list_item{
	display: inline-block;
	width: 245px;
}
/* override ---> */
.swuContents_list .slick-list{
	overflow: visible;
}
.swuContents_list .slick-track{
	display: flex;
}
.swuContents_list .slick-slide{
    float: none;
    height: auto;
    min-height: 0;
}
/* <--- override */

@media screen and (max-width : 768px){
	.swuContents{
		padding-bottom: 26px;
	}
	.swuContents_overlay-l{
		display: none;
	}
	.swuContents_overlay-r{
		display: none;
	}
	.swuContents_list{
		width: 50%;
	}
	.swuContents_list_item{
		width: 100%;
	}
	/* override ---> */
	.swuContents .slick-dots{
		bottom: -25px;
		width: 150%;
		margin-left: -25%;
	}
	.swuContents .slick-prev{
		bottom: -25px;
		left: -webkit-calc(-50% + 23px);
		left: calc(-50% + 23px);
	}
	.swuContents .slick-next{
		bottom: -25px;
		right: -webkit-calc(-50% + 23px);
		right: calc(-50% + 23px);
	}
	/* <--- override */
}

/* ----------------------------- SNS ----------------------------- */

.followUs{
	padding: 80px 0;
}
.followUs_inner{
	margin: 0 auto;
	max-width: 980px;
	text-align: center;
}
.followUs_ttl{
	margin-bottom: 16px;
	font-size: 22px;
	line-height: 1em;
}
.followUs_lead{
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1em;
}
.followUs_list{
	display: inline-block;
	font-size: 0;
	line-height: 0;
}
.followUs_list_item{
	display: inline-block;
	padding: 0 8px;
	width: 42px;
}

@media screen and (max-width : 768px){
	.followUs{
		padding: 25px 0;
	}
	.followUs_inner{
		width: 100%;
	}
	.followUs_ttl{
		margin-bottom: 10px;
		font-size: 20px;
		line-height: 1em;
	}
	.followUs_lead{
		margin-bottom: 12px;
		font-size: 14px;
		line-height: 1em;
	}
	.followUs_list_item{
		float: left;
		padding: 0 7px;
		width: 40px;
	}
}

/* ----------------------------- パンくずリスト ----------------------------- */

.breadCrumbs{
	margin: 0 auto;
	max-width: 980px;
}
.breadCrumbs_list{
	padding: 12px 0;
}
.breadCrumbs_list_item{
	position: relative;
	float: left;
	padding-left: 13px;
	font-size: 12px;
	line-height: 14px;
}
.breadCrumbs_list_item:after{
	position: absolute;
	content: '>';
	top: 50%;
	left: 2px;
	font-size: 12px;
	line-height: 14px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.breadCrumbs_list_item-home{
	padding-left: 0;
}
.breadCrumbs_list_item-home:after{
	content: '';
}

@media screen and (max-width : 768px){
	.breadCrumbs_list{
		padding: 10px 15px;
	}
	.breadCrumbs_list_item{
		font-size: 12px;
		line-height: 18px;
	}
	.breadCrumbs_list_item:after{
		top: 0;
		font-size: 12px;
		line-height: 18px;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	.breadCrumbs_list_item-home{
		padding-left: 0;
	}
}

/* -------------------------------------------------------------------------------------------
*
* フッター 
*
* ----------------------------------------------------------------------------------------- */

.swuFooter_mainNav{
	padding: 20px 0 0 0;
	min-height: 545px;
	background: #f4f9fb;
}
.swuFooter_mainNav_list{
	position: relative;
	margin: 0 auto;
	max-width: 980px;
	height: 40px;
}
.swuFooter_mainNav_list:after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #d5dde2;
	z-index: 10;
}
.swuFooter_mainNav_list_item{
	position: relative;
	float: left;
	width: 12%;
}
.swuFooter_mainNav_list_item:nth-child(odd){
	width: 13%;
}
.swuFooter_mainNav_list_item:after{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 1px;
	height: 35px;
	background: #fff;
	z-index: 15;
}
.swuFooter_mainNav_list_item:last-child:after{
	background: none;
}
.swuFooter_mainNav_list_item_link{
	position: relative;
	display: block;
	padding-top: 8px;
	height: 40px;
	color: #000;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	border-top: 2px solid transparent;
	z-index: 20;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.swuFooter_mainNav_list_item_link:hover{
	color: #666;
}
.tab-active .swuFooter_mainNav_list_item_link{
	background: #f4f9fb;
	border-left: 1px solid #d5dde2;
	border-right: 1px solid #d5dde2;
	border-top: 2px solid #009ce2;
}
.swuFooter_nav1{
	background: #929ba4;
}
.swuFooter_nav1_list{
	margin: 0 auto;
	max-width: 980px;
}
.swuFooter_nav1_list_item{
	position: relative;
	float: left;
	width: 20%;
}
.swuFooter_nav1_list_item:after{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #b7c1ca;
}
.swuFooter_nav1_list_item:last-child:after{
	background: none;
}
.swuFooter_nav1_list_item a{
	display: block;
	color: #fff;
	font-size: 12px;
	line-height: 28px;
	text-align: center;
}
.swuFooter_nav2{
	border-bottom: 1px solid #dbe0e4;
}
.swuFooter_nav2_list{
	margin: 0 auto;
	max-width: 980px;
}
.swuFooter_nav2_list_item{
	float: left;
	width: 14.28%;
}
.swuFooter_nav2_list_item a{
	display: block;
	font-size: 12px;
	line-height: 28px;
	text-align: center;
}
.swuFooter_nav2_list_item a:hover,
.swuFooter_nav2_list_item a:hover span{
	text-decoration: underline;
}
.swuFooter_btm{
	margin: 0 auto;
	max-width: 980px;
}
.swuFooter_btm_l{
	float: left;
	padding: 10px 0;
	width: 244px;
}
.swuFooter_btm_r{
	float: right;
	padding: 14px 0;
	display: inline-block;
	text-align: left;
	font-size: 12px;
	line-height: 22px;
}

@media screen and (max-width : 768px){
	.swuFooter{
		min-width: 320px;
	}
	.swuFooter_nav1_list{
		padding: 8px 20px;
		width: 100%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.swuFooter_nav1_list_item{
		float: left;
		padding: 4px 0;
		width: 33.33%;
	}
	.swuFooter_nav1_list_item:after{
		background: none;
	}
	.swuFooter_nav1_list_item a{
		font-size: 13px;
		line-height: 23px;
		text-align: left;
	}
	.swuFooter_nav2_list{
		padding: 8px 20px;
		width: 100%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.swuFooter_nav2_list_item{
		float: left;
		padding: 4px 0;
		width: 33.33%;
	}
	.swuFooter_nav2_list_item:last-child{
		width: 60%;
	}
	.swuFooter_nav2_list_item a{
		font-size: 12px;
		line-height: 22px;
		letter-spacing: -0.06em;
		text-align: left;
	}
	.swuFooter_nav2_list_item a:hover,
	.swuFooter_nav2_list_item a:hover span{
		text-decoration: none;
	}
	.swuFooter_btm{
		padding: 12px 20px;
		width: 100%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.swuFooter_btm_r.pc{
		display: none;
	}
	.swuFooter_btm_copy{
		font-size: 10px;
		line-height: 18px;
		text-align: center;
	}
}

/* ----------------------------- PC サブメニュー ----------------------------- */

/*.subMenu{
	position: absolute;
	top: 68px;
	left: 0px;
	padding: 20px 0;
	width: 100%;
	min-width: 1114px;
	background: #f0f0f0;
	overflow: hidden;
	opacity: 0;
	z-index: 999;
}
#fix_mainNav .subMenu{
	top: 53px;
}*/
.ft_subMenu{
	opacity: 0;
}
.subMenu_inner{
	margin: 0 auto;
	padding: 20px 0;
	max-width: 1020px;
}
.subMenu_clm{
	float: left;
	padding: 0 20px;
}
.subMenu_clm.clm-2{
	width: 50%;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.subMenu_clm.clm-2 .clm-4{
	width: 50%;
}
.subMenu_clm.clm-3{
	width: 33.33%;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.subMenu_clm.clm-4{
	width: 25%;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.subMenu_clm_ttl{
	margin-bottom: 16px;
	color: #0b9be2;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 600;
}
.subMenu_clm_content{
	margin-bottom: 20px;
}
.subMenu_clm_content_ttl{
	padding: 3px 0;
	font-size: 14px;
	line-height: 22px;
}
.subMenu_clm_content_list{
	border-top: 1px solid #d5dde2;
}
.subMenu_clm_content_list_item{
	padding: 2px 0;
	font-size: 12px;
	line-height: 20px;
	border-bottom: 1px solid #d5dde2;
}
.subMenu_clm_content_list_item a{
	position: relative;
	display: block;
	padding-right: 16px;
}
.subMenu_clm_content_list_item a:after{
	position: absolute;
	content: '';
	top: 50%;
	right: 6px;
	width: 5px;
	height: 9px;
	background: url(../img/common/icon_arrow_r_blue.png) right center no-repeat;
	background-size: 5px 9px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/* ----------------------------- SP メニュー ----------------------------- */

@media screen and (max-width : 768px){
	.swuFooter_spNav{
		background: #f4f9fb;
	}
	.swuFooter_spNav_list_item{
		display: block;
		border-top: 1px solid #d5dde2;
	}
	.swuFooter_spNav_list_item_link{
		display: block;
		padding: 10px 20px;
		font-size: 15px;
		line-height: 21px;
	}
}







