@charset "UTF-8";
/* ===============================================
Base
=============================================== */
/*
  Reset
----------------------------------------------- */
/* CSS Document */
html {overflow-y: scroll;}
html.drawerOpen {overflow: hidden;}

.Header-button {
	visibility: visible;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-width: 0;
	padding: 0;
	width: 77px;
	height: 77px;
	background-color: #d62121;
}
.Header-button .fas {
	color: #fff;
	font-size: 1.5em;
}
.Header-button::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(223, 50, 50, 0.05);
	content: "";
	opacity: 0;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	cursor: pointer;
}

.Nav {background-color: #d62121;}
.Nav-button {
	position: absolute;
	right: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-width: 0;
	padding: 0;
	width: 77px;
	height: 77px;
	background-color: #c01e1e;
}
.Nav-button:focus {outline: none;}
.Nav-button::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(192, 30, 30, 0.5);
	content: "";
	opacity: 0;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.Nav-list {
	margin-top: 77px;
	margin-bottom: 0;
	padding-left: 0;
	list-style-type: none;
}
.Nav-list:first-of-type {border-top: 1px #fff solid;}

.Nav-item {
	border-width: 0 0 1px;
	border-style: solid;
	border-color: rgba(223, 50, 50, 0.2);
}
.Nav-item:first-child {border-top-width: 1px;}

.Nav-link {
	display: block;
	position: relative;
	padding: 1em;
	color: ivory;
	font-size: 1.8rem;
	line-height: 0.8;
	text-decoration: none;
	text-align: center;
	border-bottom: 1px #fff solid;
}
.Nav-link--en {font-size: 1.5rem;}
.Nav-link::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(223, 50, 50, 0.2);
	content: "";
	opacity: 0;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.Drawer {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.Drawer-backdrop {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.Drawer-nav {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 280px;
}

.Nav {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.Drawer[aria-expanded] {
	-webkit-transition-property: visibility;
	transition-property: visibility;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
}

.Drawer[aria-expanded] .Drawer-backdrop {
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.Drawer[aria-expanded] .Drawer-nav {
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

/* 開いているとき */
.Drawer[aria-expanded="true"] {
	visibility: visible;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.Drawer[aria-expanded="true"] .Drawer-backdrop {opacity: 1;}

.Drawer[aria-expanded="true"] .Drawer-nav {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

/* 閉じているとき */
.Drawer[aria-expanded="false"] {visibility: hidden;}
.Drawer[aria-expanded="false"] .Drawer-backdrop {opacity: 0;}
.Drawer[aria-expanded="false"] .Drawer-nav {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

/*アイコン*/
.fa-bars,
.fa-times {color: #fff;}

/* Reset */
html,body,
div,span,
applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,
pre,a,abbr,acronym,address,big,
cite,code,del,dfn,em,
img,ins,kbd,q,s,samp,small,
strike,strong,sub,sup,tt,var,
b,u,i,center,dl,dt,dd,ol,
l,li,fieldset,form,label,
legend,tale,caption,
tbody,tfoot,thead,tr,th,td
article,aside,canvas,details,
embed,figure,figcaption,
footer,header,hgroup,
main,menu,nav,
output,ruby,section,
summary,time,mark,
audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

iframe {
	width: 100%;
	min-height: 222px;
}


article,aside,
details,figcaption,figure,
footer,header,
hgroup,main,
menu,nav,section {display: block;}

.fas {
	color: #aaa;
/*	font-size: 0.8rem;*/
}

body {
	line-height: 1;
	position: relative;
}

ol,
ul {list-style: none;}

blockquote,
q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
  Default Style
----------------------------------------------- */
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	font: medium/1.75 "Hiragino Kaku Gothic Pro","Yu Gothic Medium","YuGothic","Meiryo UI",Meiryo,"Noto Sans JP",sans-serif;
/*	-webkit-font-feature-settings: "palt";*/
	font-feature-settings: "palt";
	margin: 0;
	padding: 0;
	line-height: 1.75;
	overflow-y: scroll;
}

html.sp {
	overflow: hidden;
}

html *,
html *:before,
html *:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	height: 100%;
	color: #263238;
}

body.sp {overflow-y: hidden;}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	color: #263238;
}

*[lang="en"] {
	font-family: "Roboto", sans-serif;
}

.-uppercase {
	text-transform: uppercase;
}

/*
パンくず
-----------------------------------------------------*/
.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.8rem;
	padding-top: 3rem;
	margin: auto;
	width: 90%;
	margin-left: 0.625rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.breadcrumbs__menu {
	padding: 0.5rem 0;
	line-height: 1.5;
}

.breadcrumbs__menu + .breadcrumbs__menu:before {
	content: ">";
	margin: 0 1rem;
}

.breadcrumbs__link {
	border-bottom: 1px #000 solid;
}

/*
ボタン
-----------------------------------------------------*/
.c-button.-readmore {
	font-size: 0.9rem;
	font-weight: bold;
	position: relative;
	width: 6rem;
	margin-left: auto;
	margin-top: 1rem;
	margin-right: 0.5rem;
}

.c-button.-more {
	width: 19.4375rem;
	text-align: center;
	font-weight: bold;
	position: relative;
	margin: 2rem auto 0;
	font-size: 0.9rem;
	padding: 0.25rem 0;
	z-index: 10;
}

.c-button.-contact,
.c-button.-migratory,
.c-button.-migratory2{
	font-size: 1rem;
	width: 19.4375rem;
	height: 2.6875rem;
	text-align: center;
	margin: auto;
}

.c-button__link.-contact {
	width: 100%;
	height: 2.6875rem;
	border-radius: 3.125rem;
	background-color: #cb1b1b;
	display: block;
	padding-top: 0.75em;
	color: #fff;
}

.c-button__link.-migratory {
	width: 100%;
	height: 2.6875rem;
	border-radius: 3.125rem;
	background-color: #676767;
	display: block;
	padding-top: 0.75em;
	color: #fff;
}
.c-button__link.-migratory2 {
	width: 100%;
	height: 2.6875rem;
	border-radius: 3.125rem;
	background-color: #FBE200;
	display: block;
	padding-top: 0.75em;
	color: #000;
}

.c-button__link.-footercontact {
	background-color: #fff;
	color: #cb1b1b;
	width: 100%;
	height: 2.6875rem;
	border-radius: 3.125rem;
	display: block;
	padding-top: 0.75em;
}

.wrap_button {
	margin-top: 1.5rem;
}

.c-button__link {
	display: block;
	width: 100%;
	height: 100%;
}

.fa-chevron-right {
	color: #000;
}

.bold,
.c-strength {
	font-weight: bold;
}

.c-strength.-contact {
	color: #df3232;
	font-size: 0.8rem;
}

.red_bd-btm,
.c-strength.-creative {
	color: #cb1b1b;
	border-bottom: 3px rgba(203, 27, 27, 0.5) solid;
}

.c-strength.-promotion {
	color: #cb961b;
	border-bottom: 3px rgba(203, 150, 27, 0.5) solid;
}

.c-strength.-event {
	color: #5bcb1b;
	border-bottom: 3px rgba(91, 203, 27, 0.5) solid;
}

.c-strength.-management {
	color: #1b7fcb;
	border-bottom: 3px rgba(27, 127, 203, 0.5) solid;
}

/* ===============================================
Header
=============================================== */
.p-header {
	position: relative;
}

.p-header__container {
	position: relative;
	z-index: 20;
}

.p-header__inner {
	background: #fff;
	width: 100%;
	overflow: hidden;
	-webkit-box-shadow: 0 1px 5px #ddd;
	box-shadow: 0 1px 5px #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.p-header__inner.fixed {
	position: fixed;
	top: 0;
/*	z-index: 2;*/
}

.p-header__inner.sp {
	display: block;
	width: 100%;
	height: 100vh;
	z-index: 3;
	background-color: #fff;
}

.p-header__title {
	padding: 0.5em 0;
	margin-right: auto;
	margin-left: 0.625rem;
}

.p-header__catch {
	clear: both;
	font-size: 5vw;
	line-height: 1.5;
	color: #df3232;
	text-align: center;
	letter-spacing: 0.4rem;
}

.catchcopy {
	padding: 2em 0 1.66em;
}

.typ {
	opacity: 0;
}

.typ span {
	opacity: 0;
}

.p-globalNav {
	font-size: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#nav>.Nav-item,
.p-globalNav__menu {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
    white-space: nowrap;
}
#nav>.Nav-item + .Nav-item::before,
.p-globalNav__menu + .p-globalNav__menu:before {
	content: "";
	display: block;
	width: 1px;
	height: 30px;
	background-color: rgba(0, 0, 0, 0.26);
}
#nav>.Nav-item>a,
.p-globalNav__link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1em;
	font-weight: bold;
	color: #263238;
}

#nav>.Nav-item>a>.Nav__link-en,
.p-globalNav__link-en {
	display: inline-block;
	width: 100%;
}

#nav>.Nav-item>a>.Nav__link-en::after,
.p-globalNav__link-en:after {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #eee;
	margin: 0.5em 0 0.1em;
}

.-out #nav>.Nav-item>a::after,
.-out .p-globalNav__link-en:after {
	background-color: #fff;
}

#nav>.Nav-item>a.-out,
.p-globalNav__link.-out {
	color: #fff;
	margin: 1rem;
	padding: 1rem;
}

#nav>.Nav-item>a.-cnet,
.p-globalNav__link.-cnet {
	background-color: #f9b522;
}

#nav>.Nav-item>a.-cvips,
.p-globalNav__link.-cvips {
	background-color: #0dcdc2;
}

.p-globalNav__auxiliary {
	font-size: .7em;
	font-weight: normal;
}

/*
  SP Menu
----------------------------------------------- */
#sp_button {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 60px;
	height: 60px;
	background: #000;
	color: #fff;
	user-select: none;
}

#sp_button:hover {
	cursor: pointer;
}

#pcNav,
#sp_nav_wrap[data-is-open=""] #nav {
	display: none;
}

#sp_nav_wrap[data-is-open="true"] {
	width: 100%;
}

#sp_nav_wrap[data-is-open="true"] #nav {
	flex-direction: column;
}

#nav>.Nav-item,
#sp_nav_wrap[data-is-open="true"] .p-globalNav__menu
{width: 100%;}

/*#nav>.Nav-item::before,*/
#sp_nav_wrap[data-is-open="true"] .p-globalNav__menu:before
{display: none;}

/*#nav>.Nav-item + .Nav-item,*/
#sp_nav_wrap[data-is-open="true"] .p-globalNav__menu + .p-globalNav__menu
{border-top: 1px #eee solid;}

/*#nav>.Nav-item>a,*/
#sp_nav_wrap[data-is-open="true"] .p-globalNav__link {
	width: 100%;
	margin: 1rem auto;
}

#sp_nav_wrap[data-is-open="true"] .p-globalNav__link.-out
{width: 40%;}

/* ===============================================
Main
=============================================== */
.l-main__decoration {
	max-width: 13%;
	margin: auto;
}

.l-container:not(.topics-special .l-container)
{background-color: #f5f5f5;}

.c-section {padding-top: 3rem;}

@media screen and (min-width: 769px) {
	.breadcrumbs {
		width: 100%;
		margin-left: 0;
	}

	.c-button.-more {
		width: auto;
		position: absolute;
		top: 3em;
		right: 40px;
		margin: 0;
	}

    .c-button:hover {
        -webkit-filter: opacity(50);
        filter: opacity(50);
        opacity: .5;
    }

    .wrap_button {
        margin-top: 1.5rem;
    	display: flex;
    	justify-content: center;
    }

	#nav>.Nav-item>a:hover,
    .p-globalNav__link:hover {
        opacity: 0.6;
        -webkit-filter: opacity(60);
        filter: opacity(60);
    }

	.c-section {padding-top: 5rem;}
}

.c-section__wrap {
	width: 90%;
	margin: auto;
	padding-bottom: 5rem;
	position: relative;
	max-width: 1200px;
}

@media screen and (min-width: 960px) {
	.p-header__inner {flex-direction: row;}
	.p-header__catch {font-size: 1.5rem;}

	.catchcopy {
		padding-top: 2em;
		padding-bottom: 1.66em;
	}

	#sp_button {display: none;}

	#pcNav>ul,
	#sp_nav_wrap[data-is-open=""] #nav
	{display: flex;}

	#sp_nav_wrap[data-is-open="true"] #nav
	{flex-direction: row;}
}

@media screen and (min-width: 1200px) {
	.breadcrumbs {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}

	.p-header__nav {margin: 0 .625em 0 0;}

	.c-section__wrap {
		width: 100%;
	}
}

@media screen and (min-width: 1400px) {
	.p-header__inner {justify-content: center;}
	.p-header__title {
		margin-right: 0;
		margin-left: 0;
	}
	.p-header__nav {margin: 0 0 0 11.625em;}

	#nav>.Nav-item>a,
	.p-globalNav__link {padding: 1.6em 1.5em;}
}

.c-section__heading {
	padding: 0 0 1em 0;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 8vw;
}

@media screen and (min-width: 769px) {
	.c-section__heading {
		font-size: 2.5em;
	}
}

.c-section__heading-en {
	display: inline-block;
	letter-spacing: 0.1em;
}

.c-section__heading-small {
	display: inline-block;
	margin-top: 0.5em;
	font-size: 0.4em;
	font-weight: 400;
}

.c-section__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media screen and (min-width: 769px) {
    .c-section__link:hover {
        opacity: 0.5;
        -webkit-filter: opacity(50);
        filter: opacity(50);
    }
}

/*
Topics
-----------------------------------------------------*/
.c-topics__link {
	display: inline-block;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 769px) {
    .c-topics__link:hover {
        opacity: 0.7;
        -webkit-filter: opacity(70);
        filter: opacity(70);
    }
}

.c-topics-top .-main,
.c-topics-bottom .-main {
	display: inline-block;
	margin-bottom: 0.5rem;
	padding-left: 0.5rem;
	font-size: 1.25rem;
	font-weight: bold;
	position: relative;
}

.c-topics-top .-main::before,
.c-topics-bottom .-main::before {
	content: "";
	display: block;
	width: 0.2rem;
	height: 22px;
	margin-right: 0.5em;
	margin-top: 0.2em;
	position: absolute;
	left: 0;
}

.c-topics-top__articlle-wrap,
.c-topics-bottom__articlle-wrap {
	width: 50%;
}

.c-topics-top__article,
.c-topics-bottom__article {
	background-color: #fff;
	padding: 1.5rem;
	border-radius: 1rem;
	position: relative;
	-webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.c-topics .c-topics-top__img,
.c-topics .c-topics-bottom__img {
	border: 1px #eee solid;
}

.c-topics-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 3%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

@media screen and (min-width: 1200px) {
	.c-topics-top {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.c-topics-top__categories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	-webkit-box-shadow: 3px 3px 3px #eee;
	box-shadow: 3px 3px 3px #eee;
	margin: auto auto 1.5rem;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	border-radius: 1rem;
	background-color: #fff;
	width: 100%;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

@media screen and (min-width: 1200px) {
	.c-topics-top__categories {
		width: 18%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0;
	}
}

.c-topics-top__categories .p-categories__heading {
	background: #676767;
	color: #fff;
	padding: 1rem;
	border-radius: 1rem 0 0 1rem;
}

@media screen and (min-width: 1200px) {
	.c-topics-top__categories .p-categories__heading {
		border-radius: 1rem 1rem 0 0;
	}
}

.c-topics-top__categories .p-categories__heading .-en {
	display: inline-block;
	font-size: 1rem;
	font-weight: bold;
}

.c-topics-top__categories .p-categories__heading .-small {
	display: inline-block;
	line-height: 1.5;
	margin-top: 0.5em;
	font-size: 0.4em;
	font-weight: 400;
}

.c-topics-top__categories .p-categories__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 1rem;
}

@media screen and (min-width: 1200px) {
	.c-topics-top__categories .p-categories__menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		padding-left: 0;
	}
}

.c-topics-top__categories .p-categories__list {
/*	font-size: 0.5rem;*/
	border-radius: 1rem;
/*	margin-left: 0.5rem;*/
/*	margin-bottom: 1rem;*/
	margin: .5rem .5rem 1rem;
}

@media screen and (min-width: 1200px) {
	.c-topics-top__categories .p-categories__list {
/*		margin-left: 1rem;*/
		margin: auto 1rem 1rem;
	}
}

.c-topics-top__categories .p-categories__list .category {
	display: inline-block;
/*	background-color: rgba(255, 255, 255, 0.2);*/
	color: #fff;
	border-radius: 1rem;
	padding: 0.5rem;
	font-weight: bold;
	width: 100%;
}

.c-topics-top__categories .p-categories__list.-creative .category {
	border: 1px #cb1b1b solid;
/*	color: #cb1b1b;*/
	background: #cb1b1b;
}

.c-topics-top__categories .p-categories__list.-promotion .category {
	border: 1px #cb961b solid;
/*	color: #cb961b;*/
	background: #cb961b;
}

.c-topics-top__categories .p-categories__list.-event .category {
	border: 1px #5bcb1b solid;
/*	color: #5bcb1b;*/
	background: #5bcb1b;
}

.c-topics-top__categories .p-categories__list.-management .category {
	border: 1px #1b7fcb solid;
/*	color: #1b7fcb;*/
	background: #1b7fcb;
}

.c-topics-top__categories .p-categories__list.-special .category {
	border: 1px #cb1bae solid;
/*	color: #cb1bae;*/
	background: #cb1bae;
}

@media screen and (min-width: 769px) {
    .c-topics-top__categories .p-categories__list.-creative .category:hover {
        color: #fff;
        background: rgba(203, 27, 27, .4);
    }

    .c-topics-top__categories .p-categories__list.-promotion .category:hover {
        color: #fff;
        background: rgba(203, 150, 27, .4);
    }

    .c-topics-top__categories .p-categories__list.-event .category:hover {
        color: #fff;
        background: rgba(91, 203, 27, .4);
    }

    .c-topics-top__categories .p-categories__list.-management .category:hover {
        color: #fff;
        background: rgba(27, 127, 203, .4);
    }

    .c-topics-top__categories .p-categories__list.-special .category:hover {
        color: #fff;
        background: rgba(203, 27, 174, .4);
    }
}

.c-topics-top__contents {
	width: 100%;
}

@media screen and (min-width: 1200px) {
	.c-topics-top__contents {
		max-width: 960px;
		margin: auto;
	}
}

.c-topics-top__pic {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media screen and (min-width: 960px) {
	.c-topics-top__pic {
		width: 60%;
	}
}

@media screen and (min-width: 1200px) {
	.c-topics-top__pic {
		width: auto;
	}
}

@media screen and (min-width: 1200px) {
	.c-topics-top__img {
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: 50% 20%;
		object-position: 50% 20%;
		width: 556px;
	}
}

.c-topics-top__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

@media screen and (min-width: 960px) {
	.c-topics-top__wrap {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
}

.c-topics-top__txt-wrap {
	position: relative;
	margin-top: 1rem;
}

@media screen and (min-width: 960px) {
	.c-topics-top__txt-wrap {
		margin-top: 0;
		width: 37%;
	}
}

.c-topics-top__head {
	margin-bottom: 0.25rem;
	font-weight: bold;
}

.c-topics-top__txt {
	font-size: 0.9rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.c-topics-top__txt a {
	border-bottom: 1px #000 solid;
}

.c-topics-top__heading {
	margin-top: 0;
	line-height: 1.5;
	position: relative;
	margin-top: 2rem;
}

.tpc-catch,
.c-topics-top__heading .-catch,
.c-topics-bottom__heading .-catch {font-size: 0.9rem;}

.tpc-head-cri,
.c-topics-top__heading.-creative .-main:before,
.c-topics-bottom__heading.-creative .-main:before {background-color: #cb1b1b;}

.tpc-head-eve,
.c-topics-top__heading.-event .-main:before,
.c-topics-bottom__heading.-event .-main:before {background-color: #5bcb1b;}

.tpc-head-prm,
.c-topics-top__heading.-promotion .-main:before,
.c-topics-bottom__heading.-promotion .-main:before {background-color: #cb961b;}

.tpc-head-mng,
.c-topics-top__heading.-management .-main:before,
.c-topics-bottom__heading.-management .-main:before {background-color: #1b7fcb;}

.tpc-head-spe,
.c-topics-top__heading.-special .-main:before {background-color: #cb1bae;}


.c-topics-top__category.-wrap {
	font-size: 0.5rem;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}

.c-topics-top__category.-inner {
	border-radius: 1rem;
	padding: 0.5rem;
	display: inline-block;
}

.c-topics-top__category.-inner.-event {
	border: 1px #5bcb1b solid;
	color: #5bcb1b;
}

.c-topics-top__category.-inner.-creative {
	border: 1px #cb1b1b solid;
	color: #cb1b1b;
}

.c-topics-top__category.-inner.-promotion {
	border: 1px #cb961b solid;
	color: #cb961b;
}

.c-topics-top__category.-inner.-management {
	border: 1px #1b7fcb solid;
	color: #1b7fcb;
}

.c-topics-top__category.-inner.-special {
	border: 1px #cb1bae solid;
	color: #cb1bae;
}

.c-topics ul.c-topics-top__txt {
	list-style-position: outside;
	list-style: disc;
	padding-left: 1rem;
}

.c-topics ul.c-topics-top__txt li {
	margin-bottom: 1rem;
}

.c-topics-bottom {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (min-width: 1200px) {
	.c-topics-bottom {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.c-topics-bottom__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: -12px;
	margin-left: -12px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-topics-bottom__inner {width: 100%;}

.c-topics-bottom__inner {
	width: 100%;
	border-top: 24px transparent solid;
	border-left: 24px transparent solid;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.c-topics-bottom__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.c-topics-bottom__txt-wrap {
	position: relative;
	margin-top: 1rem;
}
.c-topics-bottom__txt-wrap > p {
	font-size: 0.9rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.c-topics-bottom__txt-wrap .c-topics-top__txt a {
    display: inline-block;
    border-bottom: 0;
	word-break: break-all;
}

.c-topics-bottom__txt-wrap .yt_sum {position: relative;}

.c-topics-bottom__txt-wrap .yt_sum > i {
    color: rgba(32, 32, 32, 0.8);
    font-size: 15vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c-topics-bottom__txt {
	font-size: 0.9rem;
	line-height: 1.75;
	margin-top: 1rem;
}

.c-topics-bottom__heading {
	line-height: 1.5;
	position: relative;
	margin-top: 2rem;
}

.c-topics-bottom__category.-wrap {
	font-size: 0.5rem;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}

.c-topics-bottom__category.-inner {
	border-radius: 1rem;
	padding: 0.5rem;
	display: inline-block;
}

.c-topics-bottom__category.-inner.-event {
	border: 1px #5bcb1b solid;
	color: #5bcb1b;
}

.c-topics-bottom__category.-inner.-creative {
	border: 1px #cb1b1b solid;
	color: #cb1b1b;
}

.c-topics-bottom__category.-inner.-management {
	border: 1px #1b7fcb solid;
	color: #1b7fcb;
}

.c-topics-bottom__category.-inner.-promotion {
	border: 1px #cb961b solid;
	color: #cb961b;
}

.c-special__article-wrap {width: 100%;}

/*
Special
-----------------------------------------------------*/
.c-special {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -12px;
	margin-bottom: 2rem;
	margin-left: -12px;
}

.c-special-wrap {margin-bottom: 2.5rem;}

.c-special__article {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	border-top: 24px transparent solid;
	border-left: 24px transparent solid;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.c-special__article + .c-special__article {margin-top: 5rem;}

.c-special__heading {
	margin-top: 3rem;
	line-height: 1.5rem;
	text-align: justify;
	text-justify: auto;
}

.c-special__txt {
	position: absolute;
	top: 1rem;
	line-height: 1.5;
}

.c-special__attribution.-bg {
	display: inline-block;
	padding: 0.1rem 0.5rem;
	color: #777676;
	border: 1px #777676 solid;
	border-radius: 1em;
	font-size: .8em;
}

.c-special__img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 20%;
	object-position: 50% 20%;
}

.c-special__content {
	margin-left: 0;
	position: relative;
	background: #fff;
	padding: 1.5rem;
}

@media screen and (min-width: 769px) {
	.c-topics-bottom__inner {
		width: 50%;
	}
	.c-special__article {
		background-color: inherit;
		padding: 0;
	}

    .c-special__article:hover {
        opacity: 0.5;
        -webkit-filter: opacity(50);
        filter: opacity(50);
    }
}

@media screen and (min-width: 960px) {
	.c-special__article {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.c-special__txt {top: 0;}

	.c-special__article-wrap,
	.c-special__figure {width: 50%;}

	.c-special__img {
		width: 370px;
		height: 208px;
	}

	.c-special__content {
		background: none;
		width: 45%;
		margin-left: 5%;
		padding: 0;
	}
}

@media screen and (min-width: 1200px) {
	.c-topics-bottom__contents {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.c-special__heading {margin-top: 3.875rem;}
	.c-special__figure {
		width: 370px;
		height: 208px;
	}

	.c-special__content {margin-left: 1rem;}
}

/*
Bsiness
-----------------------------------------------------*/
@media screen and (min-width: 769px) {
	.top #business {
		background-image: url(../images/bg-top-business.png?2025);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center 20%;
		background-color: transparent;
	}
}

.top .c-business__wrap {
	margin-left: -1rem;
	margin: auto;
}

.top .c-business .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.top .c-business .flex__item {
	border-left: 1rem transparent solid;
}

.top .c-business__link {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	position: relative;
}

.top .c-business__category {
	font-size: 0.75rem;
	display: inline-block;
}

.top .c-business__category.-big {
	padding-top: 0.5rem;
	text-indent: 0.5rem;
	width: 100%;
	font-weight: bold;
}

.top .c-business__category.-big.-creative {
	color: #cb1b1b;
}

.top .c-business__category.-big.-promotion {
	color: #cb961b;
}

.top .c-business__category.-big.-event {
	color: #5bcb1b;
}

.top .c-business__category.-big.-management {
	color: #1b7fcb;
}

.top .c-business__category.-small {
	padding-bottom: 0.5rem;
	text-indent: 0.5rem;
	width: 100%;
}

.top .c-business__category.-small.-creative {
	color: #cb1b1b;
}

.top .c-business__category.-small.-promotion {
	color: #cb961b;
}

.top .c-business__category.-small.-event {
	color: #5bcb1b;
}

.top .c-business__category.-small.-management {
	color: #1b7fcb;
}

.top .c-business__category.-small.-special {
	color: #cb1bae;
}

.top .c-business__category.-ja {
	margin-bottom: 1rem;
	width: 100%;
	padding-top: 0.5rem;
	padding-left: 0.5rem;
}

.top .c-business__category.-ja.-creative {
	border-top: 2px #cb1b1b solid;
}

.top .c-business__category.-ja.-promotion {
	border-top: 2px #cb961b solid;
}

.top .c-business__category.-ja.-event {
	border-top: 2px #5bcb1b solid;
}

.top .c-business__category.-ja.-management {
	border-top: 2px #1b7fcb solid;
}

.top .c-business__category.-ja.-special {
	border-top: 2px #cb1bae solid;
}

.top .c-business__category.-catch {
	width: 100%;
	font-size: 0.9rem;
	line-height: 1.75;
	padding: 0 0.5rem 13.625rem;
}

/*
Works
-----------------------------------------------------*/
.c-works {
	position: relative;
}

.c-works__wrap {
	position: relative;
	margin: auto;
	margin-bottom: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -10px;
	margin-left: -10px;
}

.c-works__menu {
	width: 80%;
	margin: auto;
}

.c-works__item {
	position: relative;
	border: 10px transparent solid;
	width: calc(100% / 2);
}

.c-works__link {
	display: block;
	width: 100%;
	height: 100%;
}

.c-works__title {
	display: block;
	width: 100%;
	padding-top: 190px;
}

.c-works__figure {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.c-works__img {
	width: 100%;
	height: 175px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 20%;
	object-position: 50% 20%;
}

/*
Aside
-----------------------------------------------------*/
.c-aside {
	padding-top: 5rem;
	background-color: #fff;
}

.c-aside__menu {
	max-width: 1200px;
	margin: auto;
	width: 94%;
}

.c-aside__inner {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
}

.c-aside__content {
	border: 10px transparent solid;
	width: 50%;
    text-align: center;
}

.c-aside__item {text-align: center;}
.c-aside__figure {max-width: 14.625rem;}
.c-aside__img {
	border: 1px #aaa solid;
    max-width: 100%;
}

/* ===============================================
Footer
=============================================== */
.l-footer {
	padding-top: 4em;
	position: relative;
}

.l-footer__logo {
	margin-bottom: 1.5em;
}

figure.l-footer__logo.sec-act_s2 {
    width: 30%;
    margin-left: 2em;
}

#sec {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.p-iso {
	margin: 1em 1em 0 0;
	font-size: 0.8rem;
	line-height: 1.7;
}
.l-footer__wrap.-top {
	margin: auto;
	padding-bottom: 5rem;
	width: 90%;
}

.l-footer__wrap.-top .blog {margin-top: 2.3em;}


.l-footer__wrap.-middle {
	background-color: #cb1b1b;
	padding: 2rem 0;
	position: relative;
}

.l-footer__wrap.-middle.hide .pagetop {
	display: block;
	content: "";
	-webkit-animation-name: kf-fadeout;
	animation-name: kf-fadeout;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.l-footer__wrap.-middle.initial .pagetop {opacity: 0;}

.l-footer__wrap.-middle.show .pagetop {
	display: block;
	content: "";
	width: 50px;
	height: 50px;
	right: 0;
	bottom: 140px;
	background-image: url(../images/btn-pagetop.png);
	z-index: 1;
	-webkit-animation-name: kf-fadein;
	animation-name: kf-fadein;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}

.l-footer__wrap.-middle.start .pagetop {
	position: fixed;
	right: 0;
	bottom: 140px;
}

.l-footer__wrap.-middle.end .pagetop {
	position: absolute;
	right: 0;
	top: -50px;
}

.l-footer__wrap.-middle .p-footer-contact__txt {
	text-align: center;
	color: #fff;
	font-size: 0.9rem;
	margin-bottom: 1em;
}

.l-footer__wrap.-bottom {
	position: relative;
	background-color: #f6f6f6;
	margin: auto;
}

.l-footer__contents {
	margin: auto;
	padding: 4em 0 2em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 90%;
}

.l-footer__cont.-data {	margin-bottom: 2.5rem;}

.l-footer__cont.-data,
footer section,
.l-footer__cont.-deployment {
	width: 100%;
}

.l-footer__profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 0.8rem;
	line-height: 1.75;
	color: #777676;
	padding-top: 0.5rem;
}

.l-footer__profile-dt {
	width: 5em;
	font-weight: bold;
}
.l-footer__profile-dt + .l-footer__profile-dt {margin-bottom: 1.5rem;}

.l-footer__profile-dd {width: calc(100% - 5em);}

.l-footer__profile-dd + .l-footer__profile-dd {margin-bottom: 1.5rem;}

.l-footer__profile-link {color: #777676;}

.l-footer__profile-link.-border {
	border-bottom: 1px #777676 solid;
}

.l-footer__flexbox {
	width: 80%;
	max-width: 1076px;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.c-footer__menu {
	display: flex;
/*	justify-content: flex-start;*/
	flex-wrap: wrap;
}

.c-footer__menu ul li {
	padding: 0;
	border-bottom: none;
}

.c-footer__link {
	padding: 1rem 2.5rem 1rem 0;
	border-bottom: 1px #ccc solid;
	width: 100%;
    white-space: nowrap;
}

.c-footer__link.-margin_none {margin-left: 0;}

.c-footer__link.-bottom {
	margin-left: 1rem;
	font-size: 0.8rem;
	margin-top: 1rem;
	position: relative;
}

.c-footer__link.-bottom:before {content: "-";}

.c-footer__link.-bottom .p-globalNav__auxiliary {margin-left: 0.5rem;}

.p-wrap_sns {
	clear: both;
    display: flex;
    padding-top: 1em;
}

.p-wrap_sns__menu {width: 32px;}
.p-wrap_sns__menu:not(:first-child) {
    margin-left: .5em;
}

.p-wrap_sns__link > i {color: #9499a3;}

.category.-top {
	font-weight: bold;
}

.c-cv__link {
	display: block;
	text-align: center;
	width: 100%;
	padding: 0.5rem 0;
	color: #fff;
	background-color: #cb1b1b;
}

.c-blog__heading {
	padding-bottom: 0.5rem;
	border-bottom: 1px #df3232 solid;
}

.c-blog__heading-txt.-en {
	font-weight: bold;
	font-size: 1.6rem;
}

.c-blog__heading-txt.-small {font-size: 0.5rem;}

.c-blog__wrap {
	height: 290px;
	overflow-y: scroll;
}

.c-blog__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.c-blog__date {
	width: 100%;
	padding-left: 0.25rem;
	padding-top: 1.25rem;
	padding-bottom: 0.5rem;
}

.c-blog__contents {
	width: 100%;
	padding-left: 0.5rem;
	border-bottom: 1px #f5f5f5 solid;
	padding-bottom: 1.25rem;
	line-height: 1.5;
}

.c-blog__link {	border-bottom: 1px #676767 solid;}

.p-address {
	margin-top: auto;
	float: left;
	width: 100%;
}

.p-address__detail {
	font-size: 0.8rem;
	line-height: 1.75;
	color: #777676;
	margin-bottom: 0.5rem;
}

.p-address__detail + .p-address__detail {margin-top: 0.5rem;}

.p-address__detail a {
	color: #777676;
	border-bottom: 1px #777676 solid;
}

#banner_strech > a {display: block;}
.p-banner {
	text-align: center;
	background-color: #f6f6f6;
	padding-bottom: 2rem;
}

.p-banner.absolute {bottom: 40px;}

.p-banner.fixed {
	-webkit-transform: translateY(67px);
	transform: translateY(67px);
}

.p-banner.initial {opacity: 0;}

.p-copyright {
	text-align: center;
	background-color: #f6f6f6;
	font-size: 0.9rem;
	padding: 0.375rem 0;
}

.spNon {display: none;}


@media screen and (min-width: 700px) {
    .c-aside__link {
        max-width: 300px;
        display: inline-block;
    }
	.c-aside__content {width: 33%;}
}

@media screen and (min-width: 769px) {
/* reset 系 */
    .Header-button:hover::before,
    .Nav-button:hover::before,
    .Nav-link:hover::before {opacity: 1;}
    .Nav-button:hover {cursor: pointer;}

	iframe {
		height: auto;
		min-height: 428px;
	}

    a img:hover {
        opacity: .6;
        -webkit-filter: opacity(60);
        filter: opacity(60);
    }
/*=================================================================*/
    .top .c-business__link:hover {
        opacity: 0.5;
        -webkit-filter: opacity(50);
        filter: opacity(50);
    }

    .c-works__link:hover {
        opacity: 0.6;
        -webkit-filter: opacity(60);
        filter: opacity(60);
    }

	.c-footer__link.-margin_none {
		margin-left: 2.5rem;
		margin-top: 0;
        padding-right: 0;
	}

	.c-blog__contents {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
		width: calc(100% - 8em);
	}

	.c-footer__menu {
		justify-content: flex-start;
		flex-wrap: nowrap;
	}

    .c-blog__heading a:hover {
        opacity: 0.6;
        -webkit-filter: opacity(60);
        filter: opacity(60);
    }

	.c-blog__date {
		border-bottom: 1px #f5f5f5 solid;
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
		width: 8em;
        white-space: nowrap;
	}

    .p-banner.fixed:hover {
        -webkit-transform: translateY(32px);
        transform: translateY(32px);
        cursor: pointer;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }

	.c-topics-top__categories .p-categories__menu {width: 85%;}

	.c-footer__link {
		width: auto;
/*		border-bottom: none;*/
	}
	.c-footer__link + .c-footer__link {
/*		margin-left: 2.3rem;*/
		border-bottom: none;
	}
    .c-footer__link.-top > ul {white-space: nowrap;}
	.c-footer__menu {
		justify-content: flex-end;
/*		-ms-flex-wrap: nowrap;*/
/*		flex-wrap: nowrap;*/
	}

    .l-footer__wrap.-middle.show .pagetop:hover {cursor: pointer;}
	.l-footer__cont.-deployment {min-width: 650px;}

	.p-iso {white-space: nowrap;}
}

@media screen and (min-width: 960px) {
	.top .c-business__category.-big,
	.top .c-business__category.-small {width: auto;}
	.c-works__title {padding-top: 230px;}
}

@media screen and (min-width: 960px) {
/* reset 系 */
	.Header-button {visibility: hidden;}

	#nav>.Nav-item,
	#nav>.Nav-item>a {border: none;}

	#nav .Nav-link--en,
	#nav .Nav-link {
		font-size: initial;
		line-height: inherit;
	}

	#nav .Nav-link::before {display: none;}
/*=================================================================*/
	.c-works__img {height: 222px;}
	.c-aside__inner {margin-top: -20px;}
	.c-aside__content {width: 24%;}
	.l-footer__wrap.-top .blog {margin-top: 0;}

	.p-address {float: none;}

	.l-footer__contents {
		flex-direction: row;
		max-width: 1200px;
	}

	.l-footer__cont.-data {
		margin-bottom: 1.5rem;
		width: 60%;
	}
    .l-footer__profile-dt {width: 4.6em;}
	footer section {width: 50%;}
	.c-footer__link {padding: 1rem 1.5rem 1rem 0;}
	.p-banner {padding-bottom: 0;}

/*
	.p-banner.initial {opacity: 0;}
*/
	.p-banner.hide {
		-webkit-animation-name: kf-fadeout;
		animation-name: kf-fadeout;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-iteration-count: 1;
		animation-iteration-count: 1;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
	.p-banner.show {
		-webkit-animation-name: kf-fadein;
		animation-name: kf-fadein;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
	}

	.p-banner.absolute {
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.p-banner.fixed {
		position: fixed;
		right: 0;
		bottom: 0;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
		-webkit-transform: translateY(32px);
		transform: translateY(32px);
		z-index: 30;
	}

	.p-banner.fixed:hover {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	#pcNav,
    .spNon {display: block;}
}

@media screen and (min-width: 1200px) {
	.c-works__item {width: calc(100% / 4);}
	.c-works__title {padding-top: 280px;}
}

@media screen and (min-width: 1200px) {
	.c-works__img {height: 272px;}

	.c-aside__menu,
	.l-footer__wrap.-top {width: 100%;}

	.l-footer__wrap.-top,
	.l-footer__wrap.-middle .p-footer-contact {max-width: 1200px;}
	.l-footer__wrap.-middle .p-footer-contact {margin: auto;}
	.c-blog__date {width: 30%;}
	.c-blog__contents {width: 70%;}
}

@media screen and (min-width: 1300px) {
	.l-footer__contents {width: 100%;}
}

/*------------------------------------------------max set*/
@media screen and (max-width: 959px) {
	.l-footer__logo.iso {margin-right: .5em;}
}

@media screen and (max-width: 768px) {
	.c-topics-top__categories,
	.c-topics-top__categories .p-categories__heading {
		display: block;
		border-radius: 0;
	}
	#drawer {z-index: 20;}
}

/*
Accesibility
-----------------------------------------------------*/
.screen-reader-text {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

/*
Animation
-----------------------------------------------------*/
@-webkit-keyframes kf-fadeout {
	from {opacity: 1;}
	to {opacity: 0;}
}
@keyframes kf-fadeout {
	from {opacity: 1;}
	to {opacity: 0;}
}

@-webkit-keyframes kf-fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes kf-fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
