@charset "utf-8";

.c5-wrap {
	font-size: 16px;
	line-height: 1.6;
}
.c5-wrap p {
	padding: 0;
	margin: 0 0 1.7em 0;
}
.c5-wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.c5-inner {
	max-width: 80%;
	margin: 0 auto;
}
.c5-mv {
	text-align: center;
	margin-bottom: 60px;
}
.c5-nav {
	font-size: 14px;
	background-color: rgba(255,255,255,0.9);
	margin-bottom: 80px;
}
.c5-nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
	z-index: 99;
	margin: 0;
}
.c5-nav_inner {
	max-width: 950px;
	margin: 0 auto;
}
.c5-nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	border-right: 1px solid #ccc;
}
.c5-nav li {
	margin: 0;
	box-sizing: border-box;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	text-align: center;
	flex: auto;
	overflow: hidden; /*1px隙間バグ対応*/
}
.c5-nav li:first-child {
	/*border: none;*/
}
.c5-nav a {
	height: 100%;
	display: table;
	width: calc(100% + 1px); /*1px隙間バグ対応*/
	color: #000;
	text-decoration: none;
	padding: 10px;
	transition: all .3s ease;
	box-sizing: border-box;
	font-weight: bold;
	line-height: 1.4;
}
.c5-nav a > span {
	display: table-cell;
	vertical-align: middle;
}
.c5-nav .blue a {
	background-color: #5787f4;
	color: #fff;
}
.c5-nav .blue a:hover {
	background-color: rgba(87, 135, 244, .7);
}
.c5-nav .blue *::before {
	border-color: #fff;
}
.c5-nav li:not(.blue) a:hover {
	background-color: #eee;
}
.c5-section {
	margin-bottom: 100px;
}
.c5-section_sub {
	margin-bottom: 60px;
}
.c5-title {
	font-size: 24px;
	line-height: 1.4;
	margin: 0 0 30px 0;
	padding: 0 0 20px 0;
	text-align: center;
	border-bottom: 1px solid #333;
}
.c5-title_m {
	font-size: 19px;
	line-height: 1.5;
	margin: 0 0 15px 0;
	padding: 0;
}
.c5-lead {
	text-align: center;
}

.c5-movie_wrap {
	position: relative;
	padding-top: 56.25%;
	margin-bottom: 60px;
}
.c5-movie_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.c5-cols {
	display: flex;
	justify-content: space-between;
}
.c5-cols + * {
	margin-top: 30px;
}
.c5-cols > div {
	flex: 0 1 48%;
}
.c5-cols_photo {
	max-width: 80%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 30px auto;
}
.c5-cols_photo > div {
	margin: 0 10px;
	flex: 0 1 47%;
}
.c5-items {
	display: flex;
	/*justify-content: center;*/
	flex-wrap: wrap;
	margin: 0 -10px;
}
.c5-items > div {
	width: 33.333%;
	padding: 0 10px;
	margin-bottom: 30px;
	box-sizing: border-box;
}
.c5-items a {
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #000;
	box-sizing: border-box;
	transition: all .3s ease;
	border: 1px solid #ccc;
}
.c5-items a:hover {
	opacity: .7;
}
.c5-items_thumb {
	margin-bottom: 15px;
}
.c5-items_cat {
	font-size: 13px;
}
.c5-items_name {
	font-weight: bold;
}

.c5-btn_simple {
	display: inline-block;
	color: #fff;
	padding: 8px 12px;
	text-decoration: none;
	background-color: #5787f4;
	transition: all .3s ease;
}
.c5-btn_simple:visited {
	color: #fff;
	background-color: #5787f4;
}
.c5-btn_simple .c5-icon_arrow::before {
	border-color: #fff;
}
.c5-btn_simple:hover {
	background-color: #5787f4;
	color: #fff;
	text-decoration: none;
	opacity: .7;
}
.c5-icon_step {
	display: inline-block;
	padding: 4px 6px;
	font-size: 20px;
	color: #fff;
	text-align: center;
	line-height: 1.2;
	background-color: orange;
	font-weight: bold;
	margin-bottom: 10px;
}
.c5-icon_arrow {
	position: relative;
	padding-left: 15px;
	display: inline-block;
}
.c5-icon_arrow::before {
	position: absolute;
	left: 0;
	top: 8px;
	content: '';
	display: inline-block;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
	margin-right: 8px;
	vertical-align: middle;
}
.c5-icon_arrow.down {
	padding-left: 0;
	padding-bottom: 10px;
}
.c5-icon_arrow.down::before {
	transform: rotate(135deg);
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.c5-list_simple {
	list-style-type: disc;
	margin: 0;
	padding: 0;
}
.c5-wrap .c5-list_simple + * {
	margin-top: 30px;
}
.c5-list_simple li {
	margin: 0 0 5px 20px;
}
.c5-center {
	text-align: center;
}
.c5-fc_red {
	color: #FF0000;
}
.c5-notes {
	font-size: 12px;
	line-height: 1.4;
	color: #666;
}
.c5-arrow_down {
	text-align: center;
	max-width: 40%;
	margin: 60px auto;
	height: 80px;
	font-size: 20px;
	font-weight: bold;background: url("../images/arrow.png") no-repeat 0 0 / 100% 100%;
	position: relative;
	color: #fff
}
.c5-arrow_down span {
	display: inline-block;
	padding-top: 13px;
	/*text-shadow: 1px 1px 0 #ff8f00;*/
}
.c5-sp {
	display: none !important;
}
.c5-movieWrap {
	max-width: 80%;
	margin: 0 auto;
}
.c5-icon_window {
    width: 11px;
    height: 9px;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    margin: -2px 3px 0 0;
    background: url(/share5/images/s5-icon/sprite_01.png) no-repeat;
}
.c5-list_cs {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.c5-list_cs > div {
	/*flex: 0 1 50%;*/
	margin: 0 20px;
    width: calc(50% - 40px);
}
.c5-list_cs a {
	display: block;
	text-decoration: none;
	color: #000;
	overflow: hidden;
}
.c5-list_cs_img {
	float: left;
	width: 40%;
}
.c5-list_cs_txt {
	float: right;
	width: calc(60% - 20px);
	font-size: 14px;
}
.c5-list_cs h3 {
	font-size: 16px;
	margin: 0 0 10px 0;
	padding: 0;
}
.c5-icon_new {
	display: inline-block;
	font-size: 11px;
	background-color: red;
	color: #fff;
	text-align: center;
	line-height: 1;
	padding: 2px 4px;
	vertical-align: middle;
}
.c5-icon_box {
	margin-bottom: 10px;
}
.c5-icon_box ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.c5-icon_box li {
    display: inline-block;
    margin: 0 0 4px;
    padding: 2px 4px 1px;
    background: #8a99dd;
    font-size: 11px;
    color: #fff;
}
.c5-icon_navArrow {
	position: relative;
	/*padding-left: 25px !important;
	text-align: left;*/
}
.c5-icon_navArrow::before {
	content: '';
	position: absolute;
    top: 0;
	margin: auto;
    bottom: 0;
	left: 5px;
    display: inline-block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}
.c5-icon_navDown {
	position: relative;
	padding-bottom: 25px !important;
}
.c5-icon_navArrow span:not(.c5-icon_window),
.c5-icon_navDown span {
	/*top: 50%;
	transform: translateY(-50%);
	position: relative;
	display: block;*/
}
.c5-icon_navDown::after {
	content: '';
	position: absolute;
    left: 0;
	right: 0;
	margin: auto;
    bottom: 10px;
    display: inline-block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 8px;
    height: 8px;
    transform: rotate(135deg);
}
@media (max-width: 640px) {
	.c5-wrap {
		font-size: 14px;
		line-height: 1.6;
	}
	.c5-nav {
		font-size: 10px;
		margin-bottom: 40px;
		position: static;
		width: auto;
		line-height: 1.3;
	}
	.c5-nav.fixed {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 99;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.c5-nav ul {
		flex-wrap: wrap;
		padding-top: 1px;
	}
	.c5-nav li {
		/*flex: 0 1 33.3%;*/
		width: 33.3333%;
		margin-top: -1px;
	}
	.c5-nav li:nth-child(4),
	.c5-nav li:nth-child(5) {
		flex: 0 1 50%;
	}
	.c5-nav li:last-child {
		flex: 0 1 100%;
	}
	.c5-nav a {
		padding: 8px;
	}
	.c5-nav a .c5-icon_arrow {
		padding-left: 10px;
	}
	.c5-nav a .c5-icon_arrow::before {
		top: 6px;
		width: 3px;
		height: 3px;
	}
	.c5-icon_navDown {
		padding-bottom: 18px !important;
		
	}
	.c5-icon_navDown::after {
		width: 4px;
		height: 4px;
		bottom: 5px;
	}
	.c5-icon_navArrow {
		text-align: center;
	}
	.c5-icon_navArrow::before {
		width: 4px;
		height: 4px;
		/*position: static;
		margin-right: 5px;*/
	}
	.c5-icon_navArrow span:not(.c5-pc) {
		/*top: auto !important;
		transform: none !important;
		display: inline-block !important;*/
	}
	.c5-section {
		margin-bottom: 60px;
	}
	.c5-section_sub {
		margin-bottom: 30px;
	}
	.c5-mv {
		margin: 30px 0;
	}
	.c5-title {
		font-size: 18px;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
	.c5-title_m {
		font-size: 17px;
	}
	.c5-lead {
		text-align: left;
	}
	.c5-arrow_down {
		max-width: 80%;
		margin: 30px auto;
		height: 60px;
		font-size: 16px;
	}
	.c5-arrow_down span {
		padding-top: 7px;
	}
	.c5-cols {
		display: block;
	}
	.c5-cols div:not(:last-child) {
		margin-bottom: 20px;
	}
	.c5-items {
		margin-bottom: 10px;
	}
	.c5-items > div {
		width: 50%;
		margin-bottom: 20px;
	}
	.c5-items_cat {
		font-size: 10px;
	}
	.c5-cols_photo {
		max-width: none;
	}
	.c5-icon_step {
		font-size: 14px;
	}
	.c5-list_cs {
		display: block;
		margin: 0;
	}
	.c5-list_cs > div {
		width: auto;
		margin: 0 0 20px 0;
	}
	.c5-pc {
		display: none !important;
	}
	.c5-sp {
		display: block !important;
	}
}