/***********************************************
 loading
************************************************/
.anime {
 width: 100vw;
 height: 100vh;
 background-color: #ccc;
    overflow-x: hidden;
    overflow-y: hidden;
}
.anime .inner {
    display: flex;
    align-items: center;
    max-width: 710px;
    width: 90%;
    height: 100vh;
    margin: 0 auto;
}
.anime .inner img {
   width: 100%;
    height: auto;
    animation: zoomIn 1.0s ease 0s 1 normal;
}
/* zoomIn */
@keyframes zoomIn {
0% {
transform:scale(3);
opacity:0;
}
100% {
transform:scale(1);
opacity:1;
}
}
/***********************************************
 stage
************************************************/
.mainPv {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100vh;
    width: 100%;
}
.mainPv span{
    position: absolute;
    display: block;	
    width: 100%;
	height: 100%;
    z-index: 1;	background: url(../images/common/dot.gif);
}
#stage {
    min-height: 100vh;
    width: calc(100% - 50px);
    margin-right: 50px;
}
#stage .inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
#stage .inner h1{
    max-width: 580px;
}
#stage .inner h1 img{
    width: 100%;
    height: auto;
}
#stage .inner h1 span{
    max-width: 250px;
    display: block;
    margin: 10px auto;
}
.layer {
    position: relative;
    z-index: 2;
}
/***********************************************
 top-lead
************************************************/
#top-lead {
    text-align: center;
    color: #fff;
    padding: 130px 0 100px 0;
    width: 90%;
    margin: 0 auto;
}
#top-lead h2{
    max-width: 520px;
    margin: 0 auto;
}
#top-lead h2 img{
    width: 100%;
    height: auto;
}
#top-lead p{
    line-height: 240%;
    font-size: clamp(1rem, 0.857rem + 0.36vw, 1.125rem);
}
#top-lead p span{
    display: block;
}
#top-lead p span strong{
    background: var(--gradation);
    padding: 15px 10px;
    display: inline-block;
    margin-top: 20px;
    line-height: 100%;
}
/***********************************************
 top-slider
************************************************/
#top-slider {
    display: flex;
    overflow: hidden;
    margin-bottom: -46px;
    transform: rotate(-3deg);
    position: relative;
    z-index: 5;
    width: 104%;
    margin-left: -2%;
}
#top-slider .slider-list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    animation: slideShow 28s infinite linear;
    list-style: none;
}
#top-slider .slider-item {
    width: 400px;
    height: 300px;
}
#top-slider .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 ;
}
#top-slider:hover .slider-list {
    animation-play-state: paused;
}
@keyframes slideShow {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/***********************************************
 top-cover
************************************************/
#top-cover .inner{
    position: relative;
}
#top-cover .inner{
    background: url(../images/top/cover.webp) no-repeat;
    background-size: 100% auto;
    padding-top: 43.9%;
    z-index: 1;
}
#top-cover:before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 20%;
    background: #000;
    z-index: -2;
}
#top-cover h2 {
    position: absolute;
    content: "";
    bottom: 5%;
    left: 3%;
    width: 51%;
    max-width: 774px;
}
#top-cover h2 img{
    width: 100%;
    height: auto;
}
/***********************************************
 top-story
************************************************/
#top-story {
    background: #000;
    padding: 50px 0;
    width: calc(100% - 50px);
}
#top-story .inner{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}
#top-story .inner h2{
    text-align: center;
    font-size: clamp(1.25rem, 0.679rem + 1.43vw, 1.75rem);
    line-height: 130%;
    margin-bottom: 50px;
}
#top-story .inner h2 span{
    font-family: "Outfit", sans-serif;
    font-size: clamp(3.125rem, 0.268rem + 7.14vw, 5.625rem);
    line-height: 100%;
    display: block;
    margin-bottom: 15px;
}
#top-story .search-column{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0;
}
#top-story .search-box {
    display: flex;
    justify-content: center;
    width: 320px;
}
#top-story .search-box input#feas_0_0{
    border: 2px solid #fff;
    border-radius: 20px;
    background: #fff;
    font-size: 15px;
    padding: 7px 10px;
    width:200px;
    color: #000;
    margin-right: 5px;
}
#top-story .search-box input#feas-submit-button-0{
    border: none;
    background: var(--gradation);
    font-size: 15px;
    padding: 7px 10px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
}
#top-story .search-box input[type="text"]:focus {
    border: 1px solid #403f44;
    outline: 0;
}
#top-story .search-box input[type="text"]::placeholder {
    color: #777;
    font-weight: 500;
}
#top-story .category-list {
    width: calc(100% - 360px);
}
#top-story .category-list strong{
    display: block;
    font-size: clamp(1rem, 0.857rem + 0.36vw, 1.125rem);
    line-height: 130%;
    margin: 0 0 15px 0;
}
#top-story .category-list ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top-story .category-list ul:before{
    content:"";
    display: block;
    width:24%;
    order:1;
}
#top-story .category-list ul:after{
    content:"";
    display: block;
    width:24%;
}
#top-story .category-list ul li{
    width: 24%;
    margin-bottom: 8px;
    font-size: 13px;
}
#top-story .category-list ul li a{
    color: #fff;
    background: #212121;
    padding: 4px 10px;
    display: block;
    position: relative;
}
#top-story .category-list ul li a::after,
#top-story .category-list ul li a::before,
#top-story .category-list ul li a span::after,
#top-story .category-list ul li a span::before {
  background-color: #00c6ff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
#top-story .category-list ul li a::after {
    width: 0px;
    height: 1px;
    top: -1px;
    left: -1px;
}
#top-story .category-list ul li a::before {
    width: 0px;
    height: 1px;
    right: -1px;
    bottom: -1px;
}
#top-story .category-list ul li a span::after {
    width: 1px;
    height: 0px;
    left: -1px;
    bottom: -1px;
}
#top-story .category-list ul li a span::before {
    width: 1px;
    height: 0px;
    top: -1px;
    right: -1px;
}
#top-story .category-list ul li a:hover::after,
#top-story .category-list ul li a:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
#top-story .category-list ul li a:hover span::after,
#top-story .category-list ul li a:hover span::before {
  height: 100%;
  height: calc(100% + 1px);
}

#top-story .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top-story .row::before{
  content:"";
  display: block;
  width:24%;
  order:1;
}
#top-story .row::after{
  content:"";
  display: block;
  width:24%;
}
#top-story .row .set{
    width: 24%;
    position: relative;
    margin-bottom: 70px;
}
#top-story .row .set .showcase{
    width: calc(96% - 16px);
    padding: 8px;
    background: var(--gradation);
    overflow: hidden;
}
#top-story .row .set .showcase img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all  0.2s ease;
}
#top-story .row .set .showcase img:hover{
    transform:scale(1.2,1.2);
}
#top-story .row .set h3{
    font-size: 18px;
    margin-left: 20px;
    margin-top: -35px;
    line-height: 130%;
    padding: 8px;
    border: 1px solid #fff;
    background: #000;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
#top-story .row .set a h4{
    font-size: 15px;
    line-height: 140%;
    font-weight: 500;
    color: #fff;
    margin: 20px 0 20px 20px;
}
#top-story .row .set ul{
    margin-left: 20px;
    display: flex;
    flex-wrap: wrap;
}
#top-story .row .set ul li{
    margin-right: 5px;
    position: relative;
}
#top-story .row .set ul li:before{
    position: absolute;
    content: "";
    left: 3px;
    top: -2px;
    width: 4px;
    height: 8px;
    background: url(../images/common/clip.svg) no-repeat;
    background-size: cover;
}
#top-story .row .set ul li a{
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    line-height: 120%;
    padding: 3px 7px;
    border: 1px solid #999;
}
/***********************************************
 top-blog
************************************************/
#top-blog {
    padding: 80px 0 150px 0;
    width: calc(100% - 50px);
    position: relative;
    overflow: hidden;
}
#top-blog:before {
content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    transform: skewY(-5deg) translateY(-120px);
    z-index: -1;
}
#top-blog .inner{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px
}
#top-blog .inner h2{
    text-align: center;
    font-size: clamp(1.375rem, 0.661rem + 1.79vw, 2rem);
    line-height: 130%;
    position: relative;
    padding-bottom: 35px;
    margin: 30px 0 60px 0;
}
#top-blog .inner h2:before{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90px;
    height: 10px;
    background: url(../images/common/blog-ic.svg) no-repeat;
    background-size: cover;
}
#top-blog .inner .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#top-blog .inner .row::after{
  content:"";
  display: block;
  width:31%;
}
#top-blog .inner .row .set{
    width: 31%;
    margin-bottom: 30px;
}
#top-blog .inner .row .set .showcase{
    overflow: hidden;
}
#top-blog .inner .row .set .showcase img {
    width: 100%;
    height: auto;
    transition: all  0.2s ease;
}
#top-blog .inner .row .set .showcase img:hover{
    transform:scale(1.2,1.2);
}
#top-blog .inner .row .set a p{
    font-size: 15px;
    color: #999999;
    line-height: 160%;
}
@media screen and (max-width: 1200px) {
/***********************************************
 top-story
************************************************/
#top-story .search-box {
    width: 100%;
}
#top-story .category-list {
    width: 100%;
    margin-bottom: 20px;
}
}
@media screen and (max-width: 1000px) {
/***********************************************
 top-story
************************************************/
#top-story .category-list ul:before{
    display: none;
}
#top-story .category-list ul:after{
    width:32%;
}
#top-story .category-list ul li{
    width: 32%;
    font-size: 14px;
}
#top-story .row:after{
    content:"";
    display: block;
    width:32%;
}
#top-story .row .set{
    width: 32%;
}
/***********************************************
 top-blog
************************************************/
#top-blog .inner .row .set{
    width: 48%;
}
}
@media screen and (max-width: 850px) {
}
@media screen and (max-width: 768px) {
/***********************************************
 top-story
************************************************/
#top-story .row .set h3{
    font-size: 16px;
    padding: 5px;
    margin-left: 15px;
}
#top-story .row .set a h4{
    font-size: 14px;
    margin: 15px 0 15px 15px;
}
#top-story .row .set ul{
    margin-left: 15px;
}
}
@media screen and (max-width: 640px) {
/***********************************************
 stage
************************************************/
#stage {
    width: 100%;
    margin-right: 0;
}
/***********************************************
 top-lead
************************************************/
#top-lead p{
    line-height: 200%;
    text-align: left;
}
#top-lead p span{
    display: inline;
}
#top-lead p span strong{
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 30%;
    padding: 0;
    margin-top: 0;
    line-height: 180%;
}
/***********************************************
 top-slider
************************************************/
#top-slider .slider-item {
    width: 240px;
    height: 180px;
}
/***********************************************
 top-cover
************************************************/
#top-cover .inner{
    background-size: cover;
    background-position: center left 30%;
    padding-top: 120%;
}
#top-cover h2 {
    width: 90%;
}
/***********************************************
 top-story
************************************************/
#top-story {
    width: 100%;
}
#top-story .search-box {
    width: 250px;
}
#top-story .search-box input#feas_0_0{
    width:170px;
}
#top-story .search-box input#feas-submit-button-0{
    padding: 7px 5px;
}
#top-story .category-list ul:before{
    display: none;
}
#top-story .category-list ul:after{
    display: none;
}
#top-story .category-list ul li{
    width: 49%;
    margin-bottom: 5px;
    font-size: 13px;
}
#top-story .category-list ul li a{
    padding: 5px;
}
#top-story .row .set{
    width: 49%;
}
/***********************************************
 top-blog
************************************************/
#top-blog {
    width: 100%;
    padding: 0 0 150px 0;
}
#top-blog .inner .row .set{
    width: 100%;
}
}
@media screen and (max-width: 540px) {
}
@media screen and (max-width: 450px) {
/***********************************************
 top-story
************************************************/
#top-story .row .set{
    width: 100%;
    margin-bottom: 40px;
}
}
@media screen and (max-width: 400px) {
/***********************************************
 top-story
************************************************/
#top-story .category-list ul li{
    width: 100%;
}
}
@media screen and (max-width: 300px) {
}