@charset "UTF-8";
/* CSS Document */

/* #loading
* --------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: all 1s;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}
#loading .loading-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*#loading .loading-logo img {
    animation: fuwafuwa 2s infinite;
    width: 150px;
}*/
#loading .loading-logo img {
    animation: blinking 3s infinite;
    width: 150px;
}
#loading .loading-logo.up {
    opacity: 0;
    transition: .5s;
    top: 10%;
}
#loading .loading-logo.fade {
    opacity: 0;
    transition: .5s;
}
@keyframes fuwafuwa {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0px);
    }
}

@keyframes blinking {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media screen and (max-width: 599px) {
    #loading .loading-logo img {
        width: 100px;
    }
}

/* #header
* --------------------------------------- */
#header, 
#header a {
    color: #fff;
}
#header.fixed,
#header.fixed a {
    color: #282828;
}
@media screen and (max-width: 599px) {
    #header, 
    #header a {
        color: #282828;
    }
}

/* .mainVisual
* --------------------------------------- */
.mainVisual {
    margin-bottom: 100px;
    width: 100%;
    height: auto;
}
@keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.15);
    }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
    animation: zoomUp 20s linear 0s 1 normal both;
}
.mainVisual .slide-img img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .mainVisual {
        margin-bottom: 70px;
    }
}
@media screen and (max-width: 599px) {
    .mainVisual {
        margin-bottom: 50px;
    }
}

/* section
* --------------------------------------- */
section {
    margin-bottom: 150px;
}
.more a {
    display: inline-block;
    color: #787878;
    padding: 0 50px 2px 5px;
}
.more a::after {
    background-color: #888;
}
@media screen and (max-width: 1024px) {
    section {
        margin-bottom: 120px;
    }
}
@media screen and (max-width: 599px) {
    section {
        margin-bottom: 80px;
    }
    .more a {
        font-size: 1.4rem;
    }
}

/* #concept
* --------------------------------------- */
#concept h2 {
    font-size: 160%;
    margin-bottom: 30px;
}
#concept p {
    line-height: 2.2;
}


/* #works
* --------------------------------------- */
#works ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
#works ul li {
    margin: 0 4% 50px 0;
    text-align: right;
    width: 48%;
}
#works ul li:nth-child(2n) {
    margin-right: 0;
}
#works ul li a {
    margin-bottom: 5px;
}
#works .more {
    position: absolute;
    top: 80px;
    right: 40px;
}
@media screen and (max-width: 599px) {
    #works .inner {
        padding-bottom: 70px;
    }
    #works ul {
        flex-flow: column wrap;
    }
    #works ul li {
        margin: 0 0 30px;
        width: 100%;
    }
    #works .more {
        bottom: 20px;
        top: auto;
        right: 6%;
    }
}


/* #news
* --------------------------------------- */
#news .news {
    position: relative;
    margin: 0 0 80px 148px;
}
#news .news ul li a {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
#news .news ul li a:hover {
    opacity: 0.6;
    transform: translate(10px,0);
    transition-duration: 0.5s;
}
#news .news ul li a .date {
    margin-right: 30px;
    width: 100px;
}

#news .insta {
    margin-left: 148px;
}
#news .insta h4 {
    font-size: 130%;
    margin-bottom: 20px;
}
#news .insta ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0;
}
#news .insta ul li {
    margin: 0 2% 20px 0;
    width: 18.4% !important;
}
#news .insta ul li:nth-child(5n) {
    margin-right: 0;
}
#news .insta ul li a img {
    width: 100%;
}
#news .more {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media screen and (max-width: 1024px) {
    #news .news ul li a .date {
        margin-right: 10px;
    }
}
@media screen and (max-width: 599px) {
    #news .news {
        margin: 0 0 60px 68px;
        padding-bottom: 35px;
    }
    #news .news ul li a {
        flex-flow: column wrap;
    }
    #news .news ul li a:hover {
        opacity: 1;
        transform: none;
    }
    #news .news ul li a .date {
        margin-right: 0;
    }
    
    #news .insta {
        margin-left: 68px;
    }
    #news .insta h4 {
        margin-bottom: 10px;
    }
    #news .insta ul li {
        margin: 0 4% 10px 0;
        width: 48% !important;
    }
    #news .insta ul li:nth-child(5n) {
        margin-right: 4%;
    }
    #news .insta ul li:nth-child(2n) {
        margin-right: 0;
    }
}

#sb_instagram .sb_instagram_header, .sb_instagram_header {
    display: none;
}
#sb_instagram {
    margin-left: -10px !important;
}



/* #about
* --------------------------------------- */
#about .box {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    margin-top: 30px;
}
#about .img {
    width: 50%;
}
#about .img img {
    width: 100%;
}
#about .txt {
    box-sizing: border-box;
    padding: 20px 0 0 8%;
    width: 50%;
}
#about .txt h4 {
    font-size: 120%;
    margin-bottom: 30px;
}
#about .txt h5 {
    margin-bottom: 20px;
}
#about .txt .link {
    font-size: 92%;
    margin: 50px 0 0;
    overflow: hidden;
    width: 100%;
}
#about .txt .link li {
    float: left;
    margin: 0 8% 10px 0;
    width: 46%;
}
#about .txt .link li:nth-child(2n) {
    margin-right: 0;
}
#about .txt .link li a {
    display: block;
    padding: 5px 0;
}
#about .more {
    position: absolute;
    top: 70px;
    right: 40px;
}
@media screen and (max-width: 1024px) {
    #about .txt {
        padding: 0 0 0 7%;
    }
    #about .txt .link li {
        float: none;
        margin: 0 0 10px;
        width: 80%;
    }
}
@media screen and (max-width: 599px) {
    #about .box {
        flex-flow: column wrap;
        margin-top: 0;
        padding-bottom: 70px;
    }
    #about .img {
        width: 100%;
    }
    #about .txt {
        padding: 30px 3% 0;
        width: 100%;
    }
    #about .txt h4 {
        margin-bottom: 25px;
    }
    #about .txt h5 {
        margin-bottom: 15px;
    }
    #about .txt .link {
        font-size: 100%;
        margin: 40px 0 0;
    }
    #about .more {
        position: absolute;
        top: auto;
        bottom: 0;
        right: 6%;
    }
}


/* #contactBox
* --------------------------------------- */
#contactBox a {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    height: 300px;
}
#contactBox a::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    background: url(/wp-content/uploads/contact.jpg) center -90px no-repeat;
    background-size: cover;
    opacity: 0.75; 
    width: 100%;
    height: 100%;
}
#contactBox a:hover::after {
    opacity: 1; 
    transform: scale(1.05);
}
#contactBox a p {
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 120%;
    padding: 15px 70px;
    z-index: 1;
}
@media screen and (max-width: 599px) {
    #contactBox {
        margin-top: 10px;
    }
    #contactBox a {
        height: 200px;
    }
    #contactBox a::after {
        background: url(/wp-content/uploads/contact.jpg) center center no-repeat;
        background-size: cover;
    }
    #contactBox a:hover::after {
        opacity: 0.75;
        transform: none;
    }
    #contactBox a p {
        padding: 5% 10%;
    }
}
@media screen and (max-width: 330px) {
    #contactBox a {
        height: 170px;
    }
}
