/*   ローディング  */
.intro_screen{
    position: fixed;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 100vh;
    z-index: 2;
    background: #000;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    z-index: 100;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.loading-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 99;
    pointer-events: none;
    
}
.loading-screen{
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 99;
    pointer-events: none;

    height: 0%;
    width: 100%;

    background-color: #000;
}
/* メニュー　*/

.noise {
    background: url(../img/noise5.png);
    animation: noise_anima 1s steps(10) infinite;
}
img {
    object-fit: cover;
}
@keyframes noise_anima {
    from { background-position: 0 0; }
    to { background-position: 123px 456px; }
}


.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
}
.menu-trigger {
    z-index: 2;
    position: fixed;
    top: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #722334;

    display: flex;
    justify-content: center;
    align-items: center;
}
.menu_icon{
    width: 20px;
    height: 9px;
    position: relative;
}
.menu-trigger .menu_icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
}
.menu_container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    
}
.menu_container p{
    position: absolute;
    bottom: -15%;
    right:0%;
    transform: translateY(-50%);
    font-size: 180px;

    color: transparent;
    -webkit-text-stroke: 0.6px rgba(255,255,255,0.3);
    text-stroke: 0.6px rgba(255,255,255,0.3);
    letter-spacing: -0.04em;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger span:nth-of-type(2) {
    top: 4px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}

.menu_item span{
    font-size: 20px;
    vertical-align: top;
    margin-right: 30px;

    color: transparent;
    -webkit-text-stroke: 0.4px rgba(255,255,255,0.8);
    text-stroke: 0.4px rgba(255,255,255,0.8);
}
.menu_link{
    font-size: 82px;
    color: transparent;
    -webkit-text-stroke: 0.6px #FFF;
    text-stroke: 0.6px #FFF;

    text-decoration: none;
    font-family: 'Playfair Display';

    display: inline-block;
    width: 100%;

    transition: 0.8s all;
}
.menu_link:hover{
    color: #fff;
}
.menu_container{
    display: flex;
    justify-content: flex-end;
    align-items: center;

    display: none;
}
.menu_Group{
    width: 90%;
}
.menu_Group > * + *{
    margin-top: 40px;
}




/* コンテンツ　*/
.intro_screen_head{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    text-align: center;
}
.intro_name {
    font-size: 32px;
    margin-bottom: 16px;
}
.intro_desc{
    font-size: 24px;
}


.hero_section{
    width: 100%;
    height: 100vh;

    position: relative;
}
.hero_section_inner{
    width: 100%;
    height: 100%;

    display: flex;
}
.hero_left{
    width: 45%;
    height: 100%;

    background-color: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    color: #fff;

    padding-top: 70px;
    padding-left: 80px;
    padding-bottom: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero_left_top{
    letter-spacing: 0.08em;

    text-decoration: none;
    color: #fff
}

.hero_left_top h1{
    font-size: 24px;
    margin: 0;
    margin-bottom: 13px;
}
.hero_left_top p{
    font-size: 18px;
}
.hero_left_bottom{
}
.name{
    font-size: 14px;
    letter-spacing: 0.24em;

    margin-bottom: 4px;
}
.job{
    font-size: 10px;

    margin-bottom: 14px;
}
.desc{
    font-size: 10px;
    line-height: 1.4em;

    margin-bottom: 14px;
}
.contact_group{
    font-size: 12px;

    display: flex;
    align-items: center;
}
.contact_border{
    width: 12px;
    height: 1px;

    background-color: #fff;
    margin-left: 10px;
    margin-right: 10px;
}
.contact_group a{
    color: #fff;
}
.hero_right{
    width: 55%;
    height: 100%;

    overflow: hidden;
    position: relative;
}
.hero_right img{
    width: 100%;
    height: 100vh;

    object-fit: cover;
    object-position: left bottom;
}

.glide__slides{
    transition: transform 1.6s cubic-bezier(0.75, 0, 0.08, 0.99) 0s !important;
}
.glide__slide{
    transition: transform .8s 1s cubic-bezier(.84, 0, .08, .99);
}
.glide__slide--active{
    transform:scale(1.1);
}
.glide__arrows{
    position: absolute;
    bottom: 0;
    left: 0;

    display: flex;
}
.glide__arrow--left{
    margin-right: 1px;
}
.glide__arrow--right img{
    transform: rotate(180deg);
}
.glide__arrow{
    width: 80px;
    height: 80px;

    background-color: #722334;

    display: flex;
    justify-content: center;
    align-items: center;
}
.glide__arrow img{
    width: 36px;
    height: 36px;

    transition: 0.2s all;
}

.hero_main_text{
    position: absolute;
    top: 50%;
    right: 40px;

    transform: translateY(calc(-50% - 30px));

    padding-left: 70px;
}
.hero_main_text p{  
    color: #fff;
    font-size: 42px;
}
.hero_main_text h2{  
    color: #fff;
    font-size: 155px;

    font-family: 'Playfair Display';
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 145px;
}
.text_ajust{
    padding-left: 74px;
}
.glide__arrow{

}
.glide__arrow--left:active img{
    transform: scale(0.9);
}
.glide__arrow--right:active img{
    transform: scale(0.9) rotate(180deg);
}
@media screen and (max-width:1040px){
    .hero_main_text h2{  
        color: #fff;
        font-size: 125px;
        line-height: 110px;
    }
}

@media screen and (max-width:992px){
    .hero_main_text h2{  
        color: #fff;
        font-size: 105px;
        line-height: 96px;
    }
}

.mobile_head{
    display: none;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none; 
}
.mobile_head h1{
    font-size: 18px;
    margin: 0;
    margin-bottom: 8px;
}
.mobile_head p{
    font-size: 14px;
}
.mobile_contact_wrap{
    display: none;
    color: #fff;
}
.mobile_contact_wrap .name{
    font-size: 14px;
    letter-spacing: 0.24em;

    margin-bottom: 4px;
}
.mobile_contact_wrap.job{
    font-size: 10px;

    margin-bottom: 14px;
}
.mobile_contact_wrap .desc{
    font-size: 10px;
    line-height: 1.4em;

    margin-bottom: 14px;
}
.mobile_contact_wrap .contact_group{
    font-size: 11px;

    display: flex;
    align-items: center;
}
.mobile_contact_wrap .contact_border{
    width: 12px;
    height: 1px;

    background-color: #fff;
    margin-left: 10px;
    margin-right: 10px;
}
.mobile_contact_wrap .contact_group a{
    color: #fff;
}
@media screen and (max-width: 768px){
    .hero_left{
        display: none;
    }
    .hero_right{
        width: 100%;
    }
    .hero_main_text{
        padding-left: 22px;
        width: 100%;
        right: initial;
    }
    .hero_main_text p{
        font-size: 18px;
        transform: none;
    }  
    .hero_main_text h2{  
        color: #fff;
        font-size: 60px;
        line-height: 60px;
        white-space: nowrap;
    }
    .text_ajust{
        padding-left: 30px;
    }
    .mobile_head{
        display: block;
        position: absolute;
        top: 30px;
        left: 22px;
    }
    .mobile_contact_wrap{
        max-width: 210px;
        display: block;
        position: absolute;
        right: 16px;
        bottom: 20px;
    }

    .glide__arrow{
        width: 60px;
        height: 60px;
    }
    .glide__arrow img{
        width: 30px;
        height: 30px;
    }
    .intro_name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .intro_desc{
        font-size: 14px;
    }

    .menu-trigger {
        top: 33px;
        right:22px;
    }
    .menu_Group{
        width: 92%;
    }
    .menu_link{
        font-size: 48px;
        letter-spacing: -0.04em;
    }
    .menu_item span{
        margin-right: 18px;
    }
    .menu_item:nth-of-type(1) a{
        font-size: 37px;
    }
    .menu_container p{
        font-size: 78px;
        bottom: -8%;
    }
}
@media screen and (max-width: 374px){
    .glide__arrows{
        flex-direction: column;
    }
    .hero_main_text h2{
        font-size: 48px;
    }
    .menu_link{
        font-size: 40px;
        letter-spacing: -0.04em;
    }
    .menu_item:nth-of-type(1) a{
        font-size: 32px;
    }
}










.menu_item:nth-of-type(1) .menu_link:hover::before{
    content: "";
    z-index: -1;
    width: 450px;
    height: 320px;
    object-fit: cover;
    display: block;
    position: fixed;
    top: 50%;
    left: 55%;
    background: url(../images/works/works_01_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 1s;
    animation: image-fade-in 0.4s ease-in-out;
}
.menu_item:nth-of-type(2) .menu_link:hover::before{
    content: "";
    z-index: -1;
    width: 450px;
    height: 320px;
    object-fit: cover;
    display: block;
    position: fixed;
    top: calc(50% - 120px);
    left: 55%;
    background: url(../images/works/works_02_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 1s;
    animation: image-fade-in 0.6s ease-in-out;
}
@keyframes image-fade-in{
    0%{
        opacity: 0;
        transform:translateX(-20px);
    }
    100%{
        opacity: 1;
        transform:translateX(0px);
    }
}
@media screen and (max-width: 768px){
    .menu_item:nth-of-type(1) .menu_link:hover::before{
        display: none; 
    }
    .menu_item:nth-of-type(2) .menu_link:hover::before{
        display: none; 
    }
}
