@charset "utf-8";

.view-all a{
    display: flex;
    position: relative;
}
.view-all a img{
    /* display: block; */
    height: 10px;
    margin-left: 10px;
    margin-top: 5px;
}
.view-all:hover{
    color: #ddd;
}

.menu-title{
    display: flex;
    justify-content: space-between;
}
.menu-title h2{
    font-size: 16px;
}
.underline::after{
    content: '';
    width: 100%;
    height: 0.15px;
    display: inline-block;
    background-color: #9a9a9a;
}

.content {
    /* width: 500px;
    margin: 180px auto 0;
    padding: 120px 80px;
    text-align: center; */
    opacity: 0;
}
.content.inview {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
@keyframes fade-in {
    0% {
      transform: translateY(40px);
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
}

.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start img {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}



/* toppage */
.topimage img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.topimage{
    position: relative;
}
.topimage h1{
    position: absolute;
    left: 10%;
    bottom: 20%;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    text-shadow: 2px 2px 3px #4a4a4a;
}
/* .container_05 {
    height: 300px;
  } */
  
  .scrollbar-text_05 {
    display: inline-block;
    position: absolute;
    bottom: 0;
    padding: 10px 10px 110px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    left: 90%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 3px #4a4a4a;
  }
  
  .scrollbar_05 {
    position: absolute;
    left: 90%;
    transform: translateX(-50%);
    bottom: 1px;
    text-shadow: 2px 2px 3px #4a4a4a;
  }
  
  .scrollbar_05::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100px;
    background: #fff;
    animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
  
  @keyframes liner {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    30% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    70% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

/* recomended */
.recommended{
    margin: 120px 8%;
}
.recommended-item ul li dl img{
    width: 300px;
    transition: all 0.5s ease;
}
.recommended-item ul{
    display: flex;
    justify-content: center;
}
.recommended-item ul li{
    margin: 60px 20px 0;
}
.recommended-item ul li p{
    font-size: 12px;
}
/* .recommended-item ul li{
    position: relative;
    overflow: hidden;
}
.recommended-item ul li .mask{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.recommended-item ul li dl dt a:hover .mask{
    opacity: 1;
} */
/* .recommended-item ul li dl dt{ 
    background:#111; 
} */
.recommended-item ul li dl dt a img:hover{
	opacity:0.6;
	transition: all 0.5s ease;
}

/* categories */
.categories{
    margin: 120px 8%;
}
.categories-menu ul li{
    width: 45%;
    position: relative;
    overflow: hidden;
}
.categories-menu ul li a img{
    transition: all 0.5s;
}
.categories-menu ul{
    margin-top: 60px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 10px;
}
.categories-menu ul li .caption{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
}
.categories-menu ul li .mask{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.4);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.categories-menu ul li:hover .mask{
    opacity: 1;
}
.categories-menu ul li:hover img{
    transform: scale(1.1);
}

/* about */
.about{
    margin: 120px 8%;
}
.message{
    display: flex;
    align-items: center;
}
.message-text{
    width: 45%;
    padding: 70px 25px 70px 70px;
    background-color: #f5f5f5;
}
.message-text p{
    margin-top: 20px;
    line-height: 1.8;
}
.message img{
    width: 40%;
    margin: 80px 0 80px 120px;
    z-index: 10;
}
.message-text h2{
    font-size: 15px;
    font-weight: normal;
}

/* news */
.news{
    margin: 120px 8%;
}
.news ul li{
    padding: 1.5rem;
    border-bottom: 0.15px solid #9a9a9a
}
.news ul li a img{
    /* width: 30%; */
    transition: all 0.3s;
}
.news ul li a span{
    background-color: #e3b75c;
    border-radius: 5px;
    color: #fff;
    padding: 2px 15px;
    margin: 0 20px;
}
.news ul li a{
    display: flex;
    align-items: center;
}
.news-contents{
    margin: 0 50px;
    line-height: 4;
}
.news-title{
    display: block;
}
.news ul li a:hover img{
    transform: scale(1.1);
}
/* .news ul li:hover {
    background-color: rgba(245,245,245,0.3);
} */
.news ul li:hover p{
    font-weight: 500;
}
.img-hidden{
    overflow: hidden;
    width: 30%;
}
.news-contents p{
    transition: all 0.1s;
}