@charset "utf-8";

@-ms-viewport {
	width: auto;
}

@viewport {
	width: device-width;
}

/*===================================================================
basic setting
===================================================================*/
html,
body,
#app{
    height:100%;
}

body{
    font-family: "Bebas Neue", sans-serif;
    background:#000;
    color:#fff;
}

.main-bg {
    position: relative;
    z-index: 0;
    background-image: url('../img/asnav-img.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}
.main-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    pointer-events: none;
}
.main-bg > * {
    position: relative;
    z-index: 2;
}

/* Loading overlay */
#loading{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:60;
    background:#000;
    overflow:hidden;
}

/*loading画面の背景画像設定*/
#loading .bg-image{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    background-image:url('../img/asnav-img.jpg');
}
#loading .bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 1;
    pointer-events: none;
}
#loading .bg-image > * {
    position: relative;
    z-index: 2;
}
#loading .center-stage{
    position:relative;
    z-index:10;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    opacity:0;
}
#loading .logo{
    width:15%;
    height:15%;
    object-fit:contain
}

#loading .site-name{
    font-size:2rem;
    letter-spacing:0.06em;
    text-align:center;
    text-shadow: #000 1px 0 5px;
}
.pc{display:block;}
.sp{display:none;}
@media (max-width:920px){
    #loading .logo{
        width:50%;
    }
    #loading .site-name{
        font-size:1rem;
        letter-spacing:0.06em;
        text-align:center;
    }
    .pc{display:none;}
    .sp{display:block;}
}

/*===================================================================
header setting
===================================================================*/
header{
    position:relative;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}
.hamburger{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px
}
.site-title{
    display:flex;
    align-items: center;
}
.site-title img{
    width:5%;
    margin-right: 20px;
}
.site-title h1{
    font-size:150%;
    font-weight:700;
}
@media (max-width:1024px){
    .site-title img{
        width:10%;
        margin-right: 20px;
    }
    .site-title h1{
        font-size:150%;
        font-weight:700;
    }
}
@media (max-width:920px){
    .site-title img{
        width:10%;
        margin-right: 20px;
    }
    .site-title h1{
        font-size:120%;
        font-weight:700;
    }
}
@media (max-width:480px){
    .site-title img{
        width:20%;
        margin-right: 20px;
    }
    .site-title h1{
        font-size:100%;
        font-weight:700;
    }
}
/* #globalMenu ul li a{
    text-decoration: underline;
}
#globalMenu ul li a:hover{
    text-decoration: none;
    transition:0.5s;
    text-shadow: #fc0 1px 0 10px;
} */


/*===================================================================
Carousel area setting
===================================================================*/
.carousel-wrap{
    padding:5vh 3vw;
    height:100%;
}
.slide-inner{
    display:flex;
    gap:0;
}
.slide-card{
    flex:1;
    overflow:hidden;
}
.slide-card img{
    object-fit:cover;
    margin:0 auto 10px auto;
    display:block;
}
.slide-card h2{
    font-size:130%;
}
.slide-card h2 span{
    font-size:80%;
    display:block;
}
@media (max-width:1024px){
    .carousel-wrap{
        padding:1vh 3vw;
        height:100%;
    }
    .slide-card{
        flex:1;
        overflow:hidden;
        margin-bottom:30px;
    }
    .slide-card h2{
        font-size:100%;
        align-items: center;
    }
    .slide-card h2 span{
        font-size:80%;
        display:inline-block;
        padding-right:1em;
    }
}
/*===================================================================
image hover zoom setting
===================================================================*/
.zoomIn img{
  transform: scale(1);
  transition: .5s ease-in-out;
}
.zoomIn a:hover img{
  transform: scale(1.2);
}
.mask{
    display: block;
    line-height: 0;
    overflow: hidden
}

/* Thumbnail */
.swiper-thumb .swiper-slide{
    opacity:0.7;
    cursor:pointer;
    margin-bottom:50px;
}
.swiper-thumb .swiper-slide-thumb-active{
    opacity:1
}
@media (max-width:1024px){
    .slide-inner{
        flex-direction:column
    }
}

/*===================================================================
button section area setting
===================================================================*/
.commonSec{
    width:100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align:center;
}

.commonSec .border_btn{
    display: inline-block;
    width: 25%;
    color: #fff;
    border: 1px solid #fff;
    padding: 1em 2em;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    font-size:130%;
    font-weight:500;
}
.border_btn:hover {
    text-decoration: none;
    background:#fff;
    transition:0.5s;
    color:#333;
    border: 1px solid #fff;
} 

@media (max-width:1024px){
    .commonSec .border_btn{
        width: 60%;
        font-size:160%;
    }
}
@media (max-width:920px){
    .commonSec .border_btn{
        width: 50%;
        font-size:130%;
    }
}
@media (max-width:480px){
    .commonSec .border_btn{
        width: 80%;
        font-size:100%;
    }
}

/*===================================================================
footer setting
===================================================================*/
footer{
    display:block;
    padding:20px;
    z-index:50;
    text-align:center;
    position: fixed;
    bottom: 0;
    width: 100%;
}
    
/*===================================================================
font setting
===================================================================*/
.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*===================================================================
project member list setting
===================================================================*/
.fade-start {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}
.fade-end {
    opacity: 1;
    transform: translateY(0);
}

.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/asnav-img.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.prjectMember-main {
    position: relative;
    z-index: 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
}
.prjectMember-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}
.prjectMember-main > * {
    position: relative;
    z-index: 2;
}

#staff-main p{
    text-shadow: #000 1px 0 5px;
}