@charset "UTF-8";
/****************************************************
* TOP 03トップスタイル *
*****************************************************/
#main {
    position: relative;
}
ol, ul {
	padding: 0px;
	list-style-type: none;
}
li {
	margin: 0px;
	padding: 0px;
}

.topSectionHeader h3 {
    font-size: 1.875em;
    font-weight: 500;
    font-style: italic;
    padding: 0 146px 0 0;
    margin: 0;
    position: relative;
    display: inline-block;
}
.topSectionHeader h3 span {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.topSectionHeader h3::after {
    content: '';
    width: 133px;
    height: 1px;
/*    margin-left: 13px;*/
    position: absolute;
    top: 50%;
/*    left: 100%;*/right:0;
}
.topSection header:not(.topSectionHeader) {
    margin: 0 auto 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/*.topSection header .topSectionHeader {
    min-width: 20em;
}*/
.topSection header .btn {
    margin-top: 7px;
    margin-left: 30px;
}
@media screen and (max-width: 767px) {
	.topSectionHeader h3 {
		padding-right:0;
		margin-bottom: 25px;
		font-size: 1.5em;
	}
	.topSectionHeader h3::after {
		content: '';
		width: 1px;
		height: 26px;
		margin-left: 0;
		position: absolute;
		top: 45px;
		right: 50%;
	}
	.topSectionHeader,
	.topSection header{
		text-align: center;
		display: block;
	}

}

/*particles.js*/
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 420px;
    background: rgb(255,255,255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%,rgba(209,211,220,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    overflow: hidden;
    z-index: 0;
	-webkit-animation-name: bgfadeIn;
	        animation-name: bgfadeIn;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}
@-webkit-keyframes bgfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes bgfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#particles-js canvas{
	-webkit-animation-name: particlefadeIn;
	        animation-name: particlefadeIn;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-transform: scale(1.2);
	        transform: scale(1.2);
}
@-webkit-keyframes particlefadeIn{
	0% {
        opacity: 0;
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
    }
    100% {
        opacity: 1;
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
    }
}
@keyframes particlefadeIn{
	0% {
        opacity: 0;
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
    }
    100% {
        opacity: 1;
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
    }
}

.particles_pauseplay {
    margin: 0;
 /*   display: inline-block;*/
    vertical-align: middle;
    position: absolute;
    bottom:0;
    z-index: 2;
}
.particles_pauseplay a {
    display: inline-block;
    opacity: 1;
    width: 15px;
    padding-top: 15px;
    height: 0;
    text-align: center;
    border-radius: 0;
    border: none;
    background-color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.particles_pauseplay a::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -2.5px;
    margin-top: -3.5px;
    width: 5px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px;
}
.particles_pauseplay a.stop::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -2px;
    margin-top: -3px;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #000;
}

@media screen and (max-width: 767px) {
	.particles_pauseplay {
		right: 0;
		padding-right: 30px;
		text-align: right; 
	}
}
.topEyecatch {
    padding-top: 30px;
    position: relative;
}
.topEyecatch .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1120px;
	padding: 0 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
	-webkit-animation: fadeIn 2s;
	        animation: fadeIn 2s;
}
@-webkit-keyframes fadeIn {
	0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
	0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.topEyecatch h3 {
    font-size: 25px;
    font-weight: 900;
    font-style: italic;
    color: #bf1a20;
    position: relative;
    margin-top: 20px;
	white-space: nowrap;   
    overflow: hidden;
	width: 0;
	-webkit-animation:catchfadeIn ease-in-out 2s;
	        animation:catchfadeIn ease-in-out 2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@media screen and (max-width: 1099px) {
	.topEyecatch h3 {
	    	font-size: 2.25vw;
	}
}
@-webkit-keyframes catchfadeIn {
    0% {
        width: 0%;
    }
	20% {
        width: 0%;
    }
    100% {
       	width: 100%;
    }
}
@keyframes catchfadeIn {
    0% {
        width: 0%;
    }
	20% {
        width: 0%;
    }
    100% {
       	width: 100%;
    }
}
.topEyecatch .btmLine {
    left: 2px;  
    display: block;
    width: 0;
    height: 3px;
    background-color: #bf1a20;
	margin: 20px 0;
	-webkit-animation:linefadeIn ease-in-out .8s;
	        animation:linefadeIn ease-in-out .8s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes linefadeIn {
    0% {
        width: 0;
    }
	20% {
        width: 0;
    }
    100% {
       	width: 50px;
    }
}
@keyframes linefadeIn {
    0% {
        width: 0;
    }
	20% {
        width: 0;
    }
    100% {
       	width: 50px;
    }
}
.topEyecatch .contents {
position: relative;
    width: 41.87%;
    margin-right: 2.545454545454545%;
    color: #000;
    text-align: left;
    padding-bottom: 20px;
}
.topEyecatch .contents p {
    font-size: 0.938em;
    line-height: 1.8;    
    margin-bottom: 20px;
	text-align: justify;
	opacity: 0;
	-webkit-animation: fadeIn 1s;
	        animation: fadeIn 1s;
	-webkit-animation-duration: 1s;
	-webkit-animation-delay:2s;
	        animation-delay:2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
.topEyecatch .contents h3 br {
    display: none;
}
.topEyecatch .contents .btn a {
    color: #fff;
    background-color: #000;
    font-weight: 100;
}
.topEyecatch .intoros{
    width: 55.90909090909091%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.topEyecatch .intoros .item{
    display: block;
    position: relative;
    overflow: hidden;   
    max-height: 330px;
    width: 100%;
    margin: 0;
	text-align: center;
}
.topEyecatch .intoros .item a::after,
.topEyecatch .intoros .item * {
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
.topEyecatch .intoros .item a::after {
    content: "";
	font-size: 1.125em;
	min-width: 180px;
	width:7em;
	min-height: 40px;
	height: 1.95em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0,0,0, .5);
}
.topEyecatch .intoros .item a:hover::after {
    width: 100%;
    height: 100%;
}

.topEyecatch .intoros .item a {
    display: block;
}
.topEyecatch .intoros .item img {
	-o-object-fit: cover;
	   object-fit: cover;
    width: 100%;
    height: 330px;
}
.topEyecatch .intoros .item a:hover img {
	-webkit-filter: blur(5px);
	        filter: blur(5px);
	-webkit-transform: scale(1.03);
	        transform: scale(1.03)
}

.topEyecatch .intoros .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid white;
    font-size: 1.125em;
	min-width: 180px;
	width:7em;
	min-height: 40px;
	height: 1.95em;
	overflow: hidden;
    margin: auto;
    z-index: 2;
}

.topEyecatch .intoros .content h4 {
    font-size: 1em;
    color: #fff;
    width: 100%;
    margin-top: 4px;
}
.topEyecatch .intoros .content h4:before {
    left: -1000%;
}
.topEyecatch .intoros .content h4:after {
    right: -1000%;
}
.topEyecatch .intoros  a:hover .content {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
}
.topEyecatch .intoros  a:hover  .content h4 {
    margin-top: 10px;
}

	
.topEyecatch .intoros .inner {
	padding: 10px;
	margin: 0;
	opacity: 0;   visibility: hidden;
	line-height: 1.75;
	font-size: 0.9em;
	color: #fff;
	z-index: 2;
	flex: 1;
	overflow-y: auto; overflow-x: hidden;

}
.topEyecatch .intoros .inner p{
	text-align: left;
}
.topEyecatch .intoros .inner .btn{
    display: inline-block;
    position: relative;
    text-decoration: none;
    line-height: 2;
    margin: 10px auto 0;
    padding: 3px 38px 3px 20px;
    font-size: 0.938em;
    background-color: #fff;
    color: #000;
}
.topEyecatch .intoros .inner .btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 20px;
	line-height: 2;
	text-align: center;
	z-index: 0;
}
.topEyecatch .intoros .inner .btn::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 7px;
	height: 7px;
	border-right-width: 2px;
	border-right-style: solid;
	border-top-width: 2px;
	border-top-style: solid;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	transition: border-color 0.3s ease, -webkit-transform 0.6s ease;
	-webkit-transition: border-color 0.3s ease, -webkit-transform 0.6s ease;
	transition: border-color 0.3s ease, transform 0.6s ease;
	transition: border-color 0.3s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
	z-index: 1;
	right: 15px;
}
.topEyecatch .intoros a:hover .inner {
    opacity: 1;     visibility: visible;
    will-change: opacity;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;

}

/*文字サイズ調整*/
@media screen and (max-width: 1090px) {
	.topEyecatch .intoros  .inner {
		font-size: 0.75em;
	}
}

@media screen and (max-width: 990px) {
	.topEyecatch .contents{
		width:48%;
	}
}

/*Mobile*/
@media screen and (max-width: 767px) {

	.topEyecatch {
		padding-top: 10px;
	}
	.topEyecatch .wrap {
		display: block;  
	}
	.topEyecatch .contents {
		width: 100%;
		margin: 0 auto;
	}
	.topEyecatch h3{
		font-size: 5.4vw;
	}
	.topEyecatch .contents p{
		font-size: .8em;
	}

	.topEyecatch .contents .btn {
		display: inline-block;
	}

	.topEyecatch .intoros {
		width: 100%;    
		margin: 20px auto;
	}
	.topEyecatch .intoros .item {
		margin: 0 auto;
		max-height: 200px;
	}
	.topEyecatch .intoros .item img{
		max-height: 200px;
	}
	.topEyecatch .intoros .item a::after,
	.topEyecatch .intoros .item .content{
		width: 90%;
		font-size: 1em;
	}
	.topEyecatch .intoros .item .inner{
		font-size: .8em;
	}
}


.topContents {
    position: relative;
    z-index: 1;
}
#topAbout {
    max-width: 100%;
    margin: 0 auto;
}
#topAbout .wrap {
    max-width: 1100px;
    padding: 34px 0 47px;
    margin: 0 auto;
    display: block;
}


.topPickup {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.topPickup .item {
    width: 30.90909090909091%;
}
.topPickup .item .thumb{
	margin: 0;
	height: 140px;
	overflow: hidden;
}
.topPickup .item a{
	text-decoration: none;
	display: block;
}
.topPickup .item a img {
   	-o-object-fit: cover;
   	   object-fit: cover;
	height: 140px;
	width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.topPickup .item a:hover img,
.topPickup .item a:focus img {
	-webkit-transform: scale(1.07);
	        transform: scale(1.07);
}
.topPickup .item p {
    text-align: center;
    font-size: 0.938em;
    margin-top: 10px;
}
.topPickup .item a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.topPickup .item a:hover,
.topPickup .item a:focus {
    opacity: 0.7;
}
@media screen and (max-width: 767px) {
	#topAbout .wrap {
		padding: 20px 10px;
	}

	.topPickup {
		display: block;
	}
	.topPickup .item {
		width: 100%;
		margin: auto;
		margin-bottom: 15px;
	}
}

/*目的別*/
.topPurpose {
    max-width: 1100px;
    margin: 0 auto;
}
.topPurpose h3 {
    font-size: 1.875em;
    font-weight: 500;
    font-style: italic;
    text-align: center;
}
.topPurpose ul.Purposes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.Purposes li.item {
    text-align: center;
    position: relative;
    width: 136px;
    margin-bottom: 10px;
    padding: 10px;
    border-right: 1px solid #dfdfdf;
-webkit-box-flex: 1 ;
	    -ms-flex: 1 ;
	        flex: 1 ;
}
.Purposes li.item:last-child {
    border-right: none;
}
.Purposes li.item a{
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.Purposes li.item p {
    font-size: 0.875em;
}
.Purposes li.item a:hover p,  .Purposes li.item a:focus p{
    text-decoration: underline;
}
.Purposes li.item a::before{
	content: '';
	display: block;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	position: relative;
	background-position:center center;
}

/*アイコン*/
.Purposes li.item a::before {
	background-size: 40px 41px;
}
.Purposes li.item.facility a::before {
	background-size: 39px 34px;
}
.Purposes li.item.residents a::before {
	background-size: 48px 42px;
}
.Purposes li.item.residentsCheck a::before {
	background-size: 56px 36px;
}
.Purposes li.item.creator a::before {
	background-size: 42px 42px;
}
.Purposes li.item.project a::before {
	background-size: 39px 39px;
}
.Purposes li.item.creator_find a::before {
	background-size: 38px 38px;
}
.Purposes li.item.subsidy a::before {
	background-size: 40px 40px;
}
@media screen and (max-width: 767px) {
	.topPurpose {
		width: 100%;
		font-size: 0.938em;
	}
	.topPurpose h3{
		font-size: 1.5em;		
	}
	.topPurpose ul.Purposes {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin: 10px;
	}
	.Purposes li.item {
		width: 25%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 25%;
	        flex: 1 0 25%;
	}	
	.Purposes li.item {
		padding: 0;
	}
	.Purposes li.item:nth-child(4n) {
		border-right: none;
	}
	.Purposes li.item a p br {
		display: none;
	}
}
#topNews {
    position: relative;

}
#topNews::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0; bottom:-104px;
    left: 0; right:0;
}
#topNews::after {
    content: "";
    background-image: url(/nmudtq0000000fog/topbgcrosswhite.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 545px;
    height: 545px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#topNews .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    position: relative;
    z-index: 2;
}
#topNews .content.topicList .page{
	margin-bottom:20px;
}
#topNews .btn {
	display:block;
	text-align: right;
}
#topNews .content.topicList,
#topNews .topicList .entry.cards{
	max-width:none;
}
#topNews .topicList .entry.cards{
	margin:0 -10px;
}
#topNews .topicList .entry.cards li{
	max-width:none;
	width:calc(100% / 3) ;
	padding:0 10px;
}
#topNews .topicList .entry.cards::after{
	max-width:none;
	width:calc(100% / 3) ;
}
@media screen and (max-width: 767px) {
	#topNews {
		padding-bottom: 35px;
	}
	#topNews .content.topicList{
		display: block;
		padding: 0 10px;
	}

	#topNews .topicList .entry.cards li{
		width:50% ;
	}
}
/*Mobile(portrait)*/
@media screen and (max-width: 479px) {
	#topNews .topicList .entry.cards li{
		width:100% ;
	}
}


.topEvent_wrap {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.topEventHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.topEventHeader {
    min-width: 16.875em;
}
.topIdxInter {
    position: relative;
}
.topIdxInter ul {
    margin: 9px 0 0;
    list-style-type: none;
    padding-left: 30px;
}
.topIdxInter ul li {
    margin-right: 40px;
    display: inline-block;
    list-style-type: none;
}
.topIdxInter li a {
    padding-right: 20px;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.topIdxInter li a:hover,  .topIdxInter li a:focus {
    text-decoration: underline;
}
.topIdxInter li a::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    width: 5px;
    height: 5px;
    margin-top: 1px;
    border-right-width: 1px;
    border-right-style: solid;
    border-top-width: 1px;
    border-top-style: solid;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: border-color 0.3s ease, -webkit-transform 0.6s ease;
    -webkit-transition: border-color 0.3s ease, -webkit-transform 0.6s ease;
    transition: border-color 0.3s ease, transform 0.6s ease;
    transition: border-color 0.3s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
#topEventList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
margin:0 -10px;
}
#topEventList a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
#topEventList a:hover,  #topEventList a:focus {
    opacity: .7;
}
.topEventListItem {
 /*   width: 31.8181818182%;
    margin-right: 2.18181818182%;*/
width:calc( 100% / 3);
padding:0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 20px;
}
.topEventListItem a {
    display: block;
	text-decoration: none;

}
.topEventListItem  .picture{
    padding-top: 56.575%;
    text-align: center;
    position: relative;
    margin-bottom: 3px;
    border-width: 1px;
    border-style: solid;
}
.topEventListItem  .picture img {
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.topEventListItem  .picture span {
    min-width: 6.063em;
    margin-right: 50px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5.5px;
}
.topEventListItem  .picture span::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;

}
.topEventListItem:nth-child(3n) {
    margin-right: 0;
}
.topEventListItem .detail .date {
    display: inline-block;
    font-size: 0.938em;
    margin: 0 4px 0 0;
}

.topEventListItem .detail .title{
    font-weight: bold;
}
@media screen and (max-width: 767px) {
	.topEventHead {
		display: block;
	}
	.topEventHeader.topSectionHeader {
		display: block;
		text-align: center;
		width: 100%;
	}

	.topEventHeader.topSectionHeader {
		padding-top: 30px;
	}
	.topIdxInter {
		font-size: 0.938em;
	}
	.topIdxInter ul {
		padding: 0 10px;
	}
	.topIdxInter ul li{
		margin-right:0
	}

	#topEventList {
		padding: 0 10px;
	}
	.topEventSupport_wrap {
		padding: 0 10px;
	}
	.topEventListItem {
		width: 50%;
	}
	.topEventListItem  .picture span {
		padding: 2px;
	}
	.topEventListItem  .picture span::after {
		right: -9px;
		width: 9px;
	}
	.topEventListItem:last-child {
		margin-bottom: 50px;
	}

}

/*Mobile(portrait)*/
@media screen and (max-width: 479px) {
	.topEventListItem{
		width:100% ;
	}
}

#topCompanys {
    background-repeat:repeat;
    background-size: 32px;
}
#topCompanys header{
    max-width: 1100px;
    margin: 0 auto 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 35px;
}
/*#topCompanys header .topSectionHeader {
    min-width: 20em;
}
#topCompanys header .btn {
    margin-top: 7px;
    margin-left: 60px;
}*/
#topCompanys .companys{
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.813em;
    padding-bottom: 40px;
}
#topCompanys .companys ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
}
.companys .item {
    text-align: center;
    position: relative;
    width: 16.72727272727273%;
    margin-right: -1px;
    margin-bottom: 20px;
	border: 1px solid ;
}
.companys .item a {
    height: 100%;
    position: relative;
    display: block;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.companys .item a:hover,
.companys .item a:focus{
    opacity: .7;
}
.companys .item .figure {
    height: 130px;
    margin: 0 auto;
    position: relative;
}
.companys .item .figure img {
    max-width: auto;
    max-height: 105px;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.companys .item .text {
    min-height: 50px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.companys .item p {
    display: inline-block;
    text-align: left;
    line-height: 1.35;
}

@media screen and (max-width: 767px) {
	#topCompanys header {
		display: block;
		text-align: center;
	}
	#topCompanys header .topSectionHeader {
		width: 100%;;
	}
	#topCompanys header .btn {
		padding: 0 10px;
		margin: 10px auto;
	}
	#topCompanys .companys ul {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		border-top-width: 1px;
		border-top-style: solid;
		margin-right: -1px;
	}
	.companys .item{
		width: 50%;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		margin-bottom: initial;
		margin-right: 0;
	}

}

.topCreatorBanner {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.topCreatorBanner ul {
    text-align: center;
    margin: 0 -12px -20px;
}
.topCreatorBanner ul li {
    text-align: left;
    margin: 0 10px 20px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 350px;
}
.topCreatorBanner ul li a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    display: block;
    color: #fff;
}

#topBanner {
    padding: 43px 0;
    border-top: 1px solid #DBDCDC;
}

#LinkList {
    max-width: 1100px;
    margin: 0 auto;
    border-width: 1px;
    border-style: solid;
}
#LinkList  .bannerList{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 1012px;
    margin: 0 auto;
    padding: 17px 0;
}
#LinkList h3 {
    max-width: 7.575757575757576%;
    font-size: 0.938em;
    margin-right: 15px;
    font-weight: 700;
}
#LinkList ul {
    font-size: 0;
    margin: 0;
    max-width: 90.50505050505051%;
}
#LinkList li  {
    padding: 0 10px 5px 0;
    display: inline-block;
}
#LinkList li a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.banners a:hover,  .banners a:focus {
    opacity: .7;
}
@media screen and (max-width: 767px) {

	.topCreatorBanner {
		margin-bottom: 10px;
	}
	.topCreatorBanner ul {
		margin: 0;
	}
	.topCreatorBanner ul li {
		width: 100%;
		padding: 0 10px 10px;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		margin: 0;
		text-align: center;
	}
	.topCreatorBanner ul li a {
		margin: 0 auto;
		display: inline-block;
		position: relative;
	}
	.topCreatorBanner_pict img {
		max-width: 100%;
	}
	.topCreatorBanner_title img {
		height: 17px;
	}

	.topCreatorBanner_text {
		line-height: 1.3;
	}
	.topCreatorBanner_contents {
		padding-right: 35px;
	}
	#LinkList .bannerList {
		display: block;
		text-align: center;
	}
	#LinkList h3 {
		margin: 0 0 8px;
		max-width: initial;
	} 
	
	#LinkList {
		margin: 0px 5px 20px;
	}
	#LinkList ul {
		max-width: 100%;
	}
	#LinkList li {
		padding: 0;
		margin: 0 1.06666666667% 10px;
		width: 45.3333333333%;
	}
	#LinkList li img {
		width: 100%;
	}
}
#topSupport{
	position: relative;
	color:#fff;
	background-color: #000;
	border-width:1px 0;
	border-style:solid;
	overflow: hidden;
}
#topSupport .container{
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 10px;
	position: relative;
	z-index: 1;
}
#topSupport .Intoro{
	position: relative;
}
#topSupport .Intoro::after {
	content: "";
	width: 100%;
	background-image: url(/nmudtq0000000fog/top_support_bg.png);
	background-position:bottom center;
	background-size: 100% auto;
	position: absolute;
	z-index: -1;
	top: -35px;
	bottom:0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#topSupport header{
	margin:15px 0;
	text-align: center;
}
#topSupport h3 {
	font-size: 1.563em;
	font-weight: bold;
	margin-bottom: 1em;
	position: relative;
}
#topSupport h3::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 100%);
	bottom: -0.5em;
	display: inline-block;
	width: 7.52em;
	height: 1px;
	z-index: 1;
}
#topSupport .row .item{
	padding:10px 5px;
}
#topSupport .supports h4{
	font-size: 1.188em;
	font-weight: 500;
}
#topSupport .supports ul{
	margin:0.5em 0;
}
#topSupport .supports ul li::before {
	content: "";
	display: inline-block;
	width: 19px;
	height: 19px;
	background-image: url(/nmudtq0000000fog/icon-checked.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 8px;
	margin-left: 10px;
}
#topSupport footer{
	text-align: center;
}
#topSupport .btn a{
	padding-left:20px;
	font-size: 1.125em;
	font-weight:500;
}
#topSupport .btn a::after{
	right:8px;
}
#topSupport .btn a::before{
	display: none;
}

/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	#topSupport .Intoro{
	}
	#topSupport .Intoro::after {
		width: 1100px;
		background-image: url(/nmudtq0000000fog/top_support_bg.png);
	}
	#topSupport .supports{
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		max-width: 630px;
		margin: 10px auto;
		text-align: left;
	}
	#topSupport .row .item{
		width:48%;
	}
}
/*Mobile*/
@media screen and (max-width: 767px){
	#topSupport .Intoro::after {
		width: 375px;
		background-image: url(/nmudtq0000000fog/top_support_bg_sp.png);
	}
}
