/* Y'S GEAR : top.css */


/*==============================================*
 *  [ tabNav ] 
 *==============================================*/

.tabNav {
	padding: 80px 0 70px;
	background-image: url(../img/top/tab_mask.png), url(../img/top/tab_bg.png);
	background-position: center top, left top;
	background-repeat: no-repeat, repeat;
	background-size: 100% auto, 8px 8px;
}
.tabNav ul {
	display: -webkit-flex;
	display: flex;
	margin: 0;
	padding: 0 60px;
	text-align: center;
}
.tabNav li {
	list-style-type: none !important;
	display: -webkit-flex;
	display: flex;
	width: 33.33%;
}
.tabNav li + li {
	margin: 0 0 0 20px;
}
.tabNav li > * {
	display: block;
	width: 100%;
	padding: 20px;
	border: 3px solid;
	color: #666;
}
.tabNav a {
	border-color: #bfbfbf;
	background: #fff;
}
.tabNav div {
	position: relative;
	border-color: #000;
	background: #fdfaf4;
}
.tabNav div::after {
	position: absolute;
	bottom: -12px;
	left: calc(50% - 10px);
	width: 16px;
	height: 16px;
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
	background: #fdfaf4;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
}
.tabNav img {
	display: block;
	margin: 0 auto;
}
.tabNav .icon {
	width: 100%;
	max-width: 185px;
	margin-bottom: 5px;
}
.tabNav .ttl {
	margin-bottom: 10px;
	border-bottom: 2px solid transparent;
}
.tabNav div .ttl { border-bottom-color: #4894ce; }
.tabNav p {
	margin: 0;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	.tabNav ul { padding: 0 20px; }
} /* */

@media screen and (max-width: 568px) {
	.tabNav { padding: 30px 0 40px; }
	.tabNav ul { padding: 0 10px;}
	.tabNav li + li { margin-left: 10px; }
	.tabNav li > * {
		padding: 15px 0 10px;
		border-width: 2px;
	}
	.tabNav div::after {
		bottom: -10px;
		border-width: 2px;
	}
	.tabNav .icon { max-width: 95px; }
	.tabNav .ttl {
		height: 18px;
		margin-bottom: 0;
		border-bottom: none;
	}
	.tabNav p { display: none; }
} /* */


/*==============================================*
 *  [ rakuwakuList ] 
 *==============================================*/

/* [ テキスト ] */
.rakuwakuList .txt {
	margin: 0;
	padding: 55px 60px 85px;
	background: url(../img/rakuwaku/bg_header.png) left center no-repeat #2f5188;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

/* [ リスト ] */
.rakuwakuList .list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -45px;
	padding: 0 50px;
}
.rakuwakuList .list section {
	width: calc(33.33% - 20px);
	margin: 0 10px 35px;
}
.rakuwakuList .list a { color: #000; }
.rakuwakuList .list figure { margin-bottom: 10px; }
.rakuwakuList .list figure + span {
	margin-bottom: 2px;
	background: linear-gradient(transparent 60%, #bee6f9 60%);
	font-size: 1.4rem;
}
.rakuwakuList .list h2 { font-size: 1.6rem; }
.rakuwakuList .list time {
	display: block;
	color: #666;
	font-size: 1.4rem;
	text-align: right;
}

@media screen and (max-width: 768px) {
	/* [ テキスト ] */
	.rakuwakuList .txt {
		padding-right: 20px;
		padding-left: 20px;
	}
	
	/* [ リスト ] */
	.rakuwakuList .list { padding: 0 10px; }
} /* */

@media screen and (max-width: 568px) {
	/* [ テキスト ] */
	.rakuwakuList .txt {
		margin-bottom: 30px;
		padding: 30px 0;
		font-size: 1.8rem;
	}

	/* [ リスト ] */
	.rakuwakuList .list {
		display: block;
		margin-top: 0;
		padding: 0 10px;
	}
	.rakuwakuList .list section {
		width: 100%;
		margin: 0 0 30px;
	}
	.rakuwakuList .list figure { margin-bottom: 5px; }
	.rakuwakuList .list figure img { width: 100%; }
} /* */


/*==============================================*
 *  [ columnList ] 
 *==============================================*/

.columnList {
	margin-bottom: 80px;
	background: url(../img/column/bg_header.jpg) center top -5% no-repeat;
	background-size: 100% auto;
}

/* [ テキスト ] */
.columnList .txt {
	padding: 50px 60px 35px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
.columnList .txt p + p { margin: 60px 0 0; }

/* [ リスト ] */
.columnList .list { padding: 0 60px; }
.columnList .list section { margin: 0 0 20px; }
.columnList .list a {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
	padding: 19px 50px 19px 19px;
	border: 1px solid #c9c9c9;
	color: #000;
	background: #fff;
}
.columnList .list a::after {
	position: absolute;
	right: 20px;
	width: 12px;
	height: 12px;
	border-top: 5px solid #a0a0a0;
	border-right: 5px solid #a0a0a0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	-webkit-transition: border ease .3s; /* Safari */
	transition: border ease .3s;
}
.columnList .list a:hover::after, 
.columnList .list a:active::after { border-color: #4894ce; }
.columnList .list figure {
	margin-bottom: 0;
	width: 60px;
}
.columnList .list div {
	-webkit-flex: 1;
	flex: 1;
	margin: 0 20px;
	color: #000;
}
.columnList .list h2 {
	font-size: 1.8rem;
	font-weight: normal;
}
.columnList .list h2 span {
	color: #106fb8;
	font-size: 1.4rem;
	font-weight: bold;
}
.columnList .list p {
	margin-bottom: 0;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	/* [ テキスト ] */
	.columnList .txt {
		padding-right: 20px;
		padding-left: 20px;
	}
	
	/* [ リスト ] */
	.columnList .list { padding: 0 20px; }
} /* */

@media screen and (max-width: 568px) {
	.columnList {
		margin-bottom: 50px;
		background-position: center top 10px;
		background-size: 100% auto;
	}

	/* [ テキスト ] */
	.columnList .txt {
		padding: 25px 10px 35px;
		font-size: 1.8rem;
	}
	.columnList .txt p + p { margin-top: 25px; }

	/* [ リスト ] */
	.columnList .list { padding: 0 10px; }
	.columnList .list section { margin: 0 0 10px; }
	.columnList .list a { padding: 14px 30px 14px 14px; }
	.columnList .list a::after {
		right: 10px;
		width: 10px;
		height: 10px;
		border-top-width: 4px;
		border-right-width: 4px;
	}
	.columnList .list div { margin: 0 0 0 15px; }
	.columnList .list h2 { font-size: 1.6rem; }
	.columnList .list h2 span { display: block; }
	.columnList .list p { display: none; }
	.columnList .list b { display: none; }
} /* */

