* {
	line-height: 1.8;
	min-height: 0;
	min-width: 0;
}

img {
	max-width: 100%;
}

:root {
	--main_color: #E60012;
}

.pc {
	display: block !important;
}

.pc_inline {
	display: inline !important;
}

.sp, .sp_inline {
	display: none !important;
}

body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}

article {
	flex: 1;
}

@media (max-width: 767px) {
	.pc, .pc_inline {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	.sp_inline {
		display: inline !important;
	}
}

/* コンテンツ幅 ***************************/
.header_footer-container, .MV-container, .content-container, .content-container2 {
	margin-left: auto;
	margin-right: auto;
}

.MV-container {
	max-width: 100%;
}

.content-container {
	max-width: 1260px;
	padding-left: 10px;
	padding-right: 10px;
}

.content-container2 {
	max-width: 834px;
	padding-left: 10px;
	padding-right: 10px;
}

.header_footer-container {
	padding-left: 15px;
	padding-right: 15px;
}

@media (max-width: 767px) {
	.content-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.content-container2 {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* スペース ***************************/
.con_p_space {
	padding: 80px 0;
}

.con_top_space {
	margin-top: 60px;
}

@media (max-width: 767px) {
	.con_p_space {
		padding: 50px 0;
	}
}

/* color ***************************/
/** font color **/
.main_fc {
	background-color: var(--main_color);
}

/** background color **/
.main_bg {
	background-color: var(--main_color);
}

/* font ***************************/
/** font size**/
.fontSS {
	font-size: 14px;
}

/** font family**/
.Sync {
	font-family: 'Noto Sans JP', sans-serif;
}

/* グロナビ ***************************/
.header_wrap {
	border-bottom: 1px solid #E5E5E5;
	position: fixed;
	z-index: 99;
	width: 100%;
	background: #fff;
	top: 0;
}

.nav_wrap .logo_area {
	margin-bottom: 0;
	font-size: 0;
	line-height: 0;
}

.nav_wrap .nav_above_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0;
	height: 60px;
}

.nav_wrap .sns_area ul {
	display: flex;
	justify-content: flex-end;
}

.nav_wrap .sns_area ul li {
	margin-left: 10px;
}

.nav_wrap .menu ul {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

.nav_wrap .menu ul li {
	margin-left: 10px;
	margin-right: 10px;
}

.nav_wrap .menu ul a {
	display: block;
	padding-bottom: 5px;
	position: relative;
}

.nav_wrap .menu>ul a[target="_blank"]:after {
	content: "";
	background-color: var(--main_color);
	-webkit-mask: url(../img/icon_blank.svg);
	mask: url(../img/icon_blank.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	margin: 0 2px;
	display: inline-block;
	width: 12px;
	height: 12px;
}

.nav_wrap .menu ul a::before {
	background: var(--main_color);
	content: '';
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: -4px;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.nav_wrap .menu ul a:hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
}

.nav_wrap .menu ul a.current {
	border-bottom: 4px solid var(--main_color);
	margin-bottom: -4px;
}

@media (max-width: 1300px) {
	.nav_wrap .nav_above_wrap .sns_area.pc {
		position: fixed;
		right: 15px;
		right: 15px;
		top: 65px;
		z-index: 99;
	}

	.nav_wrap .menu {
		flex: 1;
		padding-left: 30px;
	}

	.nav_wrap .menu ul a {
		font-size: 1.3vw;
	}

	.nav_wrap .menu ul li {
		margin-left: 5px;
		margin-right: 5px;
	}
}

@media (max-width: 767px) {
	.nav_wrap .nav_above_wrap {
		padding: 15px;
	}

	.nav_wrap .logo_area {
		width: 108px;
		font-size: 0;
		margin: 0;
	}

	.nav_wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 99;
		background-color: var(--main_color);
		padding: 40px 15px;
		overflow: scroll;
		opacity: 0;
		transition: .5s;
		visibility: hidden;
	}

	.nav_wrap .menu a {
		pointer-events: none;
	}

	.nav_wrap .menu.active {
		left: 0;
		opacity: 1;
		visibility: visible;
	}

	.nav_wrap .menu.active a {
		pointer-events: all;
	}

	.nav_wrap .menu ul {
		display: block;
	}

	.nav_wrap .menu>ul a {
		font-size: 24px;
		color: #fff;
	}

	.nav_wrap .menu .sns_area ul {
		display: flex;
		justify-content: flex-start;
	}

	.nav_wrap .openbtn {
		position: fixed;
		width: 50px;
		height: 50px;
		z-index: 999;
		right: 15px;
		top: 5px;
	}

	.nav_wrap .openbtn>div {
		position: relative;
		width: 50px;
		height: 50px;
		background-color: #010201;
		border-radius: 50px;
		cursor: pointer;
	}

	.nav_wrap .openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		height: 1px;
		background: #fff;
		width: 23px;
	}

	.nav_wrap .openbtn span:nth-of-type(1) {
		top: 16px;
	}

	.nav_wrap .openbtn span:nth-of-type(2) {
		top: 24px;
	}

	.nav_wrap .openbtn span:nth-of-type(3) {
		top: 32px;
	}

	/* open */
	.nav_wrap .openbtn.active span:nth-of-type(1) {
		top: 19px;
		left: 13px;
		transform: translateY(6px) rotate(-45deg);
	}

	.nav_wrap .openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.nav_wrap .openbtn.active span:nth-of-type(3) {
		top: 31px;
		left: 13px;
		transform: translateY(-6px) rotate(45deg);
	}

	.nav_wrap .menu>ul a[target="_blank"]:after {
		margin: 0 7px;
		vertical-align: middle;
		background-color: #fff;
	}
}

/* btn ***************************/
.opacity_link a {
	transition: .5s;
}

.opacity_link a:hover {
	opacity: .6;
}

/* リスト ***************************/
.api_list {
	margin-bottom: 40px;
}

.api_list li {
	border-top-width: 1px;
	border-top-style: solid;
}

.api_list li:last-child {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.api_list li a {
	display: block;
	padding: 20px 0;
	transition: .5s;
}


.api_list li a .date {
	display: flex;
	align-items: center;
}

.api_list li a .date .cat_txt {
	font-size: 14px;
	display: table;
	background-color: #dfdfdf;
	color: #000;
	line-height: 1;
	padding: 5px 10px 4px;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
	min-width: 75px;
	text-align: center;
	font-weight: bold;
	margin-left: 10px;
	transition: .3s;
}

.api_list li a:hover .date .cat_txt {
	background-color: #1C1C1C;
	color: #fff;
}

.api_list li a .ttl_txt {
	margin-top: 5px;
	font-weight: bold;
}

@media (max-width: 767px) {
	.api_list li a .date .md_txt {
		font-size: 16px;
	}

	.api_list li a .date .cat_txt {
		font-size: 12px;
	}

	.api_list li a .ttl_txt {
		font-size: 14px;
	}

	.api_list .y_txt {
		font-size: 14px;
	}
}

/* footer_area ***************************/
.footer_area section {
	display: flex;
	justify-content: space-between;
}

.footer_area section ul {
	display: flex;
}

@media (max-width: 767px) {
	.footer_area section {
		display: block;
		text-align: center;
	}

	.footer_area section ul {
		justify-content: center;
	}

	.footer_area section p {
		font-size: 10px;
	}
}

/* 下層ページ ***************************/
.innner_page {
	background-color: #F5F5F5;
	margin-top: 60px;
	position: relative;
}

.innner_page .inner_space {
	padding-top: 100px;
	padding-bottom: 100px;
}

.innner_page .bg_icon_slide {
	position: absolute;
	width: 100%;
	top: 120px;
	z-index: 0;
}

.innner_page .bg_icon_slide.stop {
	/**
	【下層ページ背景スライドを停止させる場合】
	①各ページのスクリプトコメントアウト
	②bg_icon_slideにstopつける
	 **/
	position: absolute;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	top: 120px;
	z-index: 0;
	padding-left: 140px;
	text-align: center;
}

.innner_page section {
	position: relative;
	z-index: 99ß;
}

.innner_page h2 {
	font-size: 70px;
	margin-bottom: 80px;
}

.tag_wrap ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}

.tag_wrap ul li {
	margin: 0 5px;
	text-align: center;
}

.tag_wrap ul li a {
	display: block;
	min-width: 96px;
	padding: 0 10px;
	font-weight: bold;
	border-width: 1px;
	border-style: solid;
	border-color: #E5E5E5;
	border-radius: 40px;
}

.tag_wrap ul li.active a {
	border-color: var(--main_color);
	color: var(--main_color);
}

.pager_wrap ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pager_wrap ul li {
	margin: 0 15px;
	font-size: 20px;
	font-weight: bold;
}

.pager_wrap ul a {
	display: block;
	text-align: center;
	color: var(--main_color);
}

.pager_wrap ul .active {
	position: relative;
}

.pager_wrap ul .active::after {
	content: "";
	position: absolute;
	background-color: var(--main_color);
	opacity: .2;
	width: 35px;
	height: 35px;
	border-radius: 23px;
	top: 47%;
	left: 47%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.pager_wrap ul li.prev a, .pager_wrap ul li.next a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pager_wrap ul li.prev a svg, .pager_wrap ul li.next a svg {
	position: relative;
	z-index: 9;
}

.pager_wrap ul li.prev a::before, .pager_wrap ul li.next a::before {
	content: "";
	position: absolute;
	background-color: var(--main_color);
	width: 30px;
	height: 30px;
	border-radius: 60px;
	z-index: 0;
	top: 47%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.back_to_index a {
	display: block;
	background-color: #1C1C1C;
	color: #fff;
	text-align: center;
	padding: 70px 0;
	font-size: 32px;
	font-weight: bold;
}

.back_to_index a .content-container {
	position: relative;
}

.back_to_index a .content-container::before {
	content: "";
	position: absolute;
	background-image: url(../../common/img/icon_back_arr.svg);
	width: 44px;
	height: 18px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: .6s;
}

.back_to_index a:hover .content-container::before {
	left: -10px;
}

@media (max-width: 767px) {
	.innner_page .inner_space {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.innner_page .bg_icon_slide {
		top: 80px;
	}

	.innner_page .bg_icon_slide.stop {
		display: none;
	}

	.innner_page h2 {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.tag_wrap ul {
		flex-wrap: wrap;
	}

	.tag_wrap ul li {
		margin: 0 5px 10px;
	}

	.pager_wrap ul li {
		margin: 0 10px;
		font-size: 18px;
	}

	.back_to_index a {
		font-size: 22px;
		padding: 40px 0;
	}

	.back_to_index a .content-container::before {
		background-size: contain;
		background-repeat: no-repeat;
		width: 28px;
		height: 12px;
	}
}
