/* .html {
    font-size: 18px;
    color: black;
} */

/* 基本設定 */

body {
    overflow: hidden;

    background-color: #fff;
    color: #242424;
    transition: .5s;
}

header {
    position: relative;
    /* z-index: 100; */
    overflow: hidden;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);

}

.wrap {
    overflow-y: hidden;
}

.loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 555;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spinner,
.spinner:before,
.spinner:after {
  background: #000000;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.spinner {
  color: #000000;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.spinner:before,
.spinner:after {
  position: absolute;
  top: 0;
  content: '';
}
.spinner:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}



.nav {
    display: flex;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    height: 60px;

    transition: .5s;
    position: fixed;
    z-index: 999;

    mix-blend-mode: difference;
}

/* .nav.hide {
    transform: translateY(-100%);
} */


.nav.upmove {
    animation: upmove 0.5s forwards;
}

@keyframes upmove {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

.nav.downmove {
    animation: downmove 0.5s none;
}

@keyframes downmove {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.nav_left {
    width: 50%;
    position: relative;
}

.nav_left span {
    display: block;
    content: "";
    margin: 0px 0;
}

.header_logo {
    font-size: 30px;
    font-family: 'ROBOTO', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;

    position: relative;
    mix-blend-mode: screen;
    z-index: 999;
    color: white;
    /* background-color: black; */
}

.logo_small {
    font-size: 10px;
    letter-spacing: 10px;
    padding-left: 7px;
}

.nav_right {
    width: 50%;
    position: relative;
    text-align: right;
}

.header_darkmode {
    font-size: 11px;
    font-family: 'ROBOTO', sans-serif;
    font-weight: 500;
    padding-bottom: 3px;
    letter-spacing: 1.4px;
    padding-top: 2px;
}

#button-1 .knobs:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 2px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 2px 3px;
    background-color: #ededed;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
    width: 30px;
}

#button-1 .checkbox:checked+.knobs:before {
    content: '';
    left: 42px;
    background-color: #ffffff;
}

#button-1 .checkbox:checked~.layer {
    background-color: #000000;
}

#button-1 .knobs,
#button-1 .knobs:before,
#button-1 .layer {
    transition: 0.3s ease all;
}

.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: absolute;
    width: 76px;
    height: 12px;
    overflow: hidden;
    border: 1px solid rgb(255, 255, 255);
    right: 0;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #000000;
    transition: 0.3s ease all;
    z-index: 1;
}

.wrapper {
    width: 100vw;
}

.main_copy {
    width: 90vw;
    left: 10vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: 600;
    z-index: 100;
    position: absolute;
    top: 80px;
    line-height: 1.6;
    letter-spacing: 2px;
    animation: myanime_copy_letter 1s 4.2s both ease-out;
}

.main_copy hr {
    width: 30px;
    height: 0.5px;
    margin-top: 10px;
    margin-bottom: 10px;
    animation: myanime_line 2s 4s both ease-out;
}

@keyframes myanime_line {
    0% {
        width: 0px;
    }

    50% {
        width: 5px;
    }

    100% {
        width: 30px;
    }
}

.main_copy_en {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'ROBOTO', sans-serif;
}

.fade_bg_copy {
    background-color: #000;
    width: 160px;
    height: 30px;
    position: absolute;
    top: 8px;
    animation: myanime_copy 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
}

.fade_bg_copy_2 {
    background-color: #000;
    width: 150px;
    height: 30px;
    position: absolute;
    top: 47px;
    animation: myanime_copy_2 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
}

.fade_bg_copy_3 {
    background-color: #000;
    width: 82vw;
    height: 30px;
    position: absolute;
    top: 85px;
    animation: myanime_copy_3 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
}

.fade_bg_copy_4 {
    background-color: #000;
    width: 82vw;
    height: 15px;
    position: absolute;
    top: 145px;
    animation: myanime_copy_4 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
}

.fade_bg_copy_5 {
    background-color: #000;
    width: 82vw;
    height: 15px;
    position: absolute;
    top: 163px;
    animation: myanime_copy_5 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
}

@keyframes myanime_copy {
    0% {
        width: 0px;
    }

    80% {
        width: 160px;

    }


    100% {
        width: 0px;
    }
}

@keyframes myanime_copy_2 {
    0% {
        width: 0px;
    }

    80% {
        width: 150px;

    }

    100% {
        width: 0px;
    }
}

@keyframes myanime_copy_3 {
    0% {
        width: 0px;
    }

    80% {
        width: 210px;

    }

    100% {
        width: 0px;
    }
}

@keyframes myanime_copy_4 {
    0% {
        width: 0px;
    }

    80% {
        width: 190px;

    }

    100% {
        width: 0px;
    }
}

@keyframes myanime_copy_5 {
    0% {
        width: 0px;
    }

    80% {
        width: 140px;

    }

    100% {
        width: 0px;
    }
}

@keyframes myanime_copy_letter {
    0% {
        opacity: 0;
    }

    99% {
        opacity: 0;

    }

    100% {
        opacity: 1;
    }
}

#main {
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.main_video {
    width: 100vw;
    padding-left: 2.5vw;
    margin-right: 0;
    z-index: -100;
    padding-top: 100px;
    height: calc(100vh - 30px);
    /* height: calc(var(--vh, 1vh) * 100); */
    height: calc(var(--vh, 1vh) * 100 - 30px);


}

.fade_bg_main {
    background-color: #000000;
    width: 97.5vw;
    height: calc(100vh - 100px - 30px);
    height: calc(var(--vh, 1vh) * 100 - 100px - 30px);
    z-index: 1;
    position: absolute;
    padding-left: 2.5vw;
    top: 100px;
    animation: myanime 2s 3s both cubic-bezier(0.87, 0, 0.13, 1);
}


@keyframes myanime {
    0% {
        height: 0vh;
    }

    80% {
        height: calc(100vh - 100px - 30px);
        height: calc(var(--vh, 1vh) * 100 - 100px - 30px);

    }

    100% {
        height: 0vh;
    }
}

@keyframes myanime_video {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;

    }

    100% {
        opacity: 1;
    }
}

.video {
    z-index: -1;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    animation: myanime_video 2s 3s both ease-out;
}

#main .link_button {
    overflow: hidden;
    width: 230px;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 5vw;
    animation: myanime_btn 2s 5s both ease-out;
    z-index: 101;
}

@keyframes myanime_btn {
    0% {
        opacity: 0;
        bottom: -30px
    }

    60% {
        opacity: 0;
        bottom: -20px
    }

    61% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        bottom: 0;
    }
}

.link_button a {
    position: absolute;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 60px;
    color: #fff;
    font-size: 12px;
    font-family: 'ROBOTO', sans-serif;
    font-weight: 500;
    background-color: rgb(0, 0, 0);
    text-decoration: none;
    padding-left: 60px;
    transition: .5s;

}

.link_button a::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: #000 solid 1px;
}

.link_button a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -105%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #ffffff;
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);;
}

.link_button a:hover {
    color: #242424;
    z-index: 2;

}

.link_button a:hover:before {
    left: 0;
    z-index: -1;

}

.link_button a span.material-symbols-outlined {
    font-size: 25px;
    margin-left: 10px;
    vertical-align: middle;
    padding-bottom: 3px;
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
    color: white;
}

.link_button a:hover span.material-symbols-outlined {
    /* animation: arrow .5s both; */
    margin-left: 20px;
    color: #242424;
}

/* @keyframes arrow {
    50% {
        margin-left: 18px;
    }

    100% {
        margin-left: 20px;
    }
} */





.about_img {
    width: 100vw;
    height: 550px;
    position: relative;
    margin-bottom: 60px;
}

.siema div.slide-bg1 {
    background-image: url(../img/top_slide_sp.jpg);
    background-repeat: no-repeat;
    /* background-position: 0% 50%; */
    background-size: cover;
    /* background-position: center center; */
    width: 100vw;
    height: 550px;
    /* position: relative; */
    margin-bottom: 60px;
    background-attachment: scroll;
}

.siema div.slide-bg2 {
    background-image: url(../img/top_slide_2_sp.jpg);
    background-repeat: no-repeat;
    /* background-position: 0% 50%; */
    background-size: cover;
    /* background-position: center center; */
    width: 100vw;
    height: 550px;
    /* position: relative; */
    margin-bottom: 60px;
    background-attachment: scroll;

}

.bg_cover::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(255, 255, 255);
    z-index: -100;
}

.about_section {
    position: absolute;
    width: 80vw;
    z-index: 100;
    padding-left: 5vw;
    padding-right: 5vw;
    bottom: 0;
    padding-top: 30px;
    padding-bottom: 20px;

}

.title_onimg {
    position: absolute;
    top: -70px;
}

.title_sign {
    display: flex;
}

h2.section_title {
    font-size: 14px;
    font-family: 'ROBOTO';
    font-weight: 600;
    margin-bottom: 20px;
    margin-left: 5vw;
    color: rgb(110 110 110);
}

.about_section h2.section_title {
    margin-left: 0;
    color: rgb(110 110 110);
}

.contact_section h2.section_title {
    margin-left: 0;
}

h3.section_title_sub {
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    margin-left: 5vw;
    color: black;
    display: flex;
    align-items: center;
}

.about_section h3.section_title_sub,
.contact_section h3.section_title_sub {
    margin-left: 0;
    color: rgb(0, 0, 0);
}

/* h3.section_title_sub:before {
    border-top: 10px solid black;
    content: "";
    width: 3px;
} */

.about_section h3.section_title_sub:before,
    {
    border-color: white;
}

h3.section_title_sub:before {
    margin-right: 10px;
    /* 文字の右隣 */
}

#works h2.section_title {
    color: black;
            transition: all 0.5s ease 0s;

}

#works h2.section_title.show{
    color: white;
}

#works h3.section_title_sub {
    color: white;
}

#works h3.section_title_sub:before {
    border-color: white;
}

.lead {
    margin-bottom: 20px;
}

.lead p {
    font-family: 'Noto Sans JP';
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6
}

p.explain {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.about_service {
    position: relative;
    /* color: #101010; */
    transition: .5s;
}



.card {
    margin-top: 30px;
}



.bg_cover_gray::after {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    content: "";
    background: #f1f1f1;
    z-index: -1000;
    margin-top: 60px;
}

h4.paragraph_title_jp {
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    padding-top: 5px;
    padding-left: 5vw;
    padding-right: 5vw;
    font-weight: 500;
    color: #878787;
}

h3.paragraph_title {
    font-size: 25px;
    font-family: 'ROBOTO';
    font-weight: 600;
    margin-top: 25px;
    margin-left: 5vw;
}

.card_half,
.card_max {
    margin-bottom: 60px;
    position: relative;
}

.card_paragraph {
    width: 100vw;
    z-index: -100;
    position: relative;
    padding-top: 20px;
    padding-left: 5vw;
    padding-right: 5vw;
}

.card_paragraph p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    clear: both;
}

.card_img {
    width: 95vw;
    height: 80vw;
    margin-left: 5vw;
    background-image: url(../img/photography_list_sp.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.fade {
    opacity: 0;
    transition: 1s 0s;
    transform: translate(-20px, 0);
}

.fade.view {
    opacity: 1;
    left: 0px;
    transform: translate(0, 0);
}

.fade_2 {
    opacity: 0;
    transition: 400ms 0.5s;
    transform: translate(0px, 0);
}

.fade_2.view {
    opacity: 1;
    left: 0px;
    transform: translate(0, 0);
}

.fade_3 {
    opacity: 1;
    transition: 700ms 0.3s;
    transform: translate(0, 0px);
}

.fade_3.view {
    opacity: 1;
    left: 0px;
    transform: translate(0, 0);
}

.fade_4 {
    opacity: 0;
    transition: 1000ms 0.3s;
    transform: translateY(0, 0px)
}

.fade_4.view {
    opacity: 1;
    transform: translateY(0, 0)
}

.card_img_2 {
    width: 95vw;
    height: 80vw;
    margin-left: 5vw;
    background-image: url(../img/videography_list_sp.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    background-position: center center;
}

.card_img_3 {
    width: 95vw;
    height: 80vw;
    margin-left: 5vw;
    background-image: url(../img/stock_list_sp.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    background-position: center center;
}

#works {
    padding-top: 60px;
    background-color: #efefef;
        transition: all 0.5s ease 0s;
}

#works.show{
background-color: #000000;
}

.works_section {
    background-color: #efefef;
    padding-top: 50px;
        transition: all 0.5s ease 0s;
}

.works_section.show{
    background-color: #242424;

}

.works_explain {
    background-color: #101010;
    margin-top: 30px
}

/* .works_explain p {
    color: white;
    margin-left: 5vw;
    margin-right: 5vw;
} */


.slider_2 {
    /* background-color: #101010; */
    padding-top: 10px;
    padding-bottom: 10px;
}


.slider_2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slider_2 .slick-slide {
    margin: 0 5px;
}



.works_paralax {
    /* margin-bottom: 20px; */
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

/* .works_paralax:nth-child(5) {
    padding-bottom: 80px;
} */

.work_box {
    width: 97.5vw;
    position: relative;
    margin-bottom: 30px;
}

/* .work_img {
    width: 100vw;
    position: relative;
    overflow: hidden;
} */

.work_img_a,
.work_img_2,
.work_img {
    width: 100vw;
    position: relative;
    overflow: hidden;
    margin-left: 0vw;
    height: 400px;
}

.work_img_l {
    width: 95vw;
    position: relative;
    overflow: hidden;
    margin-right: 5vw;
}

/* img.country {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
} */

picture.subject img {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 400px;
    left: 0;
    object-fit: cover
}


.work_img_a video {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 150%;
    left: 0;
    object-fit: cover;
}

.work_img_2 video {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 150%;
    left: 0;
    object-fit: cover;
}

.works_title {
    top: -50px;
    z-index: 10;
    background: #000000;
 padding: 10px  15px;
    position: relative;
    width: 97.5vw;
    margin-left: 2.5vw;
    transition: 0.5s;
    overflow: hidden;
    border: 1px solid black;
}

.works_title a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -105%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #ffffff;
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
}

.works_title:hover a {
    color: #242424;
    border: none;
}

.works_title:hover a:before {
    left: 0;
}

/* .works_title:hover {
    background-color: rgb(0, 0, 0);

} */

.works_title:hover h3.title_work_text {
    color: #5f5f5f;
}




h3.title_jpn_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    transition: 0.5s ;

}

h3.title_work_text {
    font-family: 'ROBOTO', sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    margin-top: 10px;
    color: #ffffff;
    transition: 0.5s;

}



.works_title:hover h3.title_work_text {
    color: #000000;
}

.title_jpn {
    margin-bottom: 12px;
    padding-bottom: 20px;}

h3.title_jpn_text {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.title_jpn,
.title_work {
    position: relative;
    z-index: 100;
    /* padding-left: 2.5vw;
    padding-right: 2.5vw; */
}

.works_title_btn{
    position: absolute;
    z-index: 100;
    font-size: 10px;
    font-family: 'ROBOTO', sans-serif;
    color: #ffffff;
    /* margin-top: 20px; */
    right: 15px;
    font-weight: 500;
    bottom: 10px;
    transition: 0.5s ;
}

.works_title .works_title_btn span{
    font-size: 22px;
    /* color: white; */
    /* margin-left: 5px; */
    vertical-align: middle;
    transition: 0.5s;
    line-height: unset;
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
    color: #ffffff;
    position: relative;
    left: 5px;
}

/* .works_title_btn span {
    font-size: 25px;
    margin-left: 10px;
    vertical-align: middle;
    padding-bottom: 3px;
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
    color: white;
} */




.works_title:hover .works_title_btn{
    color: #242424;
}

.works_title:hover .works_title_btn span{
    color: #242424;
    left: 12px;
}

.works_title:hover h3.title_jpn_text{
    color: #242424;
}

.contact_img {
    width: 100vw;
    /* height: 600px; */
    position: relative;
    margin-bottom: 30px;
}

/* .contact_img .img_box {
    width: 100vw;
    height: 600px;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
} */

/* .slide-bg10 {
    background-image: url(../img/contact.jpg);
    background-repeat: no-repeat;
    background-size: 300%;
    background-position: center center;
    width: 100vw;
    height: 900px;
    position: absolute;
    margin-bottom: 60px;
} */

#contact {
    background-color: #f1f1f1;
    padding-top: 50px;
    padding-bottom: 20px;
}

.contact_section {
    /* position: absolute; */
    width: 95vw;
    z-index: 100;
    /* bottom: 0; */
    padding-left: 5vw;
    padding-top: 0px;
    padding-right: 5vw;
    /* padding-bottom: 20px; */
    padding-top: 20px;
}

.contact_box h2.section_title {
    color: rgb(110 110 110);
    margin-left: 0;
}

.project_box h2.section_title {
    margin-top: 50px;
}

.contact_section h3.section_title_sub {
    color: #000;
}

.contact_section h3.section_title_sub:before {
    border-color: #000;
}

.paragraph hr {
    width: 30px;
    height: 0.1px;
    color: rgb(117, 117, 117);
    background-color: rgb(224, 224, 224);
    margin-top: 30px;
    margin-bottom: 30px;
}

p.explain_en {
    font-family: 'ROBOTO', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* .email {
    margin-top: 50px;
    font-family: 'ROBOTO', sans-serif;
    font-size: 16px;
    font-weight: 500;
} */

.email {
    /* margin-top: 50px; */
    font-family: 'ROBOTO', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
    /* padding-left: 5vw; */
}

/* a.mailto {
    text-decoration: underline solid 1px black;

} */

/* .email span.material-icons {
    vertical-align: -5px;
    margin-right: -5px;
} */

.contact_link {

    width: 100vw;
    /* margin-left: 5vw;
    margin-right: 5vw; */

}



.recruit_box,
.project_box,
.access_box {
    width: 95vw;
    margin-bottom: 40px;
    padding-left: 5vw;
}

.contact_box .img_box,
.contact_box .img_box_2
{
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-size: cover;
    width: 95vw;
    height: 250px;
    /* margin-left: 5vw; */
    z-index: 10;
    position: relative;
    margin-top: 50px;
}

.contact_box .img_box_3 {
     background-repeat: no-repeat;
    background-position: 0% 50%;
    background-size: cover;
    width: 95vw;
    height: 400px;
    /* margin-left: 5vw; */
    z-index: 10;
    position: relative;
    margin-top: 50px;
}



.contact_box .img_box {
    background-image: url(../img/contact_main.jpg);
}

.contact_box .img_box_2 {
    background-image: url(../img/office_main.jpg);
}

#map{
width: 100%;
height: 100%;
}

.title_box {
    width: 100%;
    margin-bottom: 20px;
}




h3.contact_title {
    font-size: 20px;
    font-family: 'NOTO SANS JP', sans-serif;
    font-weight: 600
}

.paragraph_box {
    margin-bottom: 30px;
    /* padding-right: 5vw; */
}

.contact_box .paragraph_box p {
    font-size: 14px;
    font-family: 'NOTO SANS JP', sans-serif;
    font-weight: 400;
    line-height: 1.8;

}

.paragraph_box a {
    /* border-bottom: rgb(195, 195, 195) 1px solid; */
    position: relative;
    color: #242424;
    /* z-index: 10; */
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);

}

/* .paragraph_box a:hover{
    color: black;
} */

.paragraph_box a::before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(155, 155, 155);
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
}

.paragraph_box a::after{
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #242424;
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
}

.paragraph_box a:hover::after{

    width: 100%;
}

.paragraph_box span{
    font-size: 12px;
    font-family: 'NOTO SANS JP', sans-serif;
    font-weight: 400;
    line-height: 1;
}


.btn_box {
    width: 90vw;
    /* padding-left: 5vw;
    padding-right: 5vw; */
    margin-top: 20px;
}


.btn_box {
    position: relative;
    color: rgb(0, 0, 0);
    display: inline-block;
    font-family: 'NOTO SANS JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    outline: none;
    transition: 0.5s;
}

.btn_box:hover {
    color: #000;
}

.btn_box::before,
.btn_box::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -10px;
    left: 0;
    background: rgb(195, 195, 195);
    width: 100%;
    height: 1px;
    /* transition: 0.5s ease-in; */
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);;
}


.btn_box::after {
    width: 0;
    background: #242424;
}

.btn_box:hover::after {
    width: 100%;
}

.link_btn span.btn_arrow::after {
    content: '';
    position: absolute;
    top: 7px;
    right: 10px;
    width: 7px;
    height: 7px;
    border-top: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    transform: rotate(45deg);
    /* transition: all 0.5s; */
    transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);;
}

.link_btn:hover span.btn_arrow::after {
    /* content: '';
    position: absolute; */
    top: 7px;
    right: 0px;
    /* width: 8px; */
    /* height: 8px;
    /* border-top: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0); */
    /* transform: rotate(45deg); */
}

/* .contact_link span.material-icons {
    vertical-align: -3px;
} */

/* .email p {
    margin-left: -5px;
} */



/* #contact .link_button {
    overflow: hidden;
    width: 230px;
    height: 60px;
    position: absolute;
    bottom: -30px;
    left: 5vw;
}

#contact .link_button_2{
    overflow: hidden;
    width: 230px;
    height: 60px;
    position: absolute;
    bottom: -120px;
    left: 5vw;
}

#contact .link_button a{
    background-color: white;
    border: 1px solid black;
    color: #000;
}

#contact .link_button a:hover{
    color: white;
}

.link_button a:before {
    background-color: #000000;
} */

footer {
    width: 100vw;
    height: auto;
}

.footer_icon {
    display: flex;
    /* width: 100vw; */
    margin-top: 15px;
    margin-bottom: 40px;
}

.copyright {
    width: 50vw;
    height: auto;
    padding-right: 5vw;
}



.scroll {
    width: 50vw;
    height: auto;
    padding-left: 10vw;
    padding-right: 5vw;
}

.footer_bottom {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 150px; */
    height: 350px;
    background-color: #f1f1f1;
    color: white;

}

.footer_left {
    padding-bottom: 0px;
    display: flex;
    width: 95vw;
    background-color: #000;
    align-items: center;
    height: 350px;
    flex-direction: column;
    text-align: center;
}

.footer_logo {
    line-height: 16px;
    padding-top: 5px;
}

.footer_left .header_logo {
    line-height: 16px;
    padding-top: 80px;
    height: 150px;
}

.footer_sns {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
}

.sns_logo {
    width: 45px;

}

.sns_logo a{
    transition: 0.3s all;
}

.sns_logo a:hover{
    opacity: 0.5;
}

.sns_logo img {
    width: 35px;
}

.footer_icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}


.footer_link {
    display: flex;
    flex-wrap: wrap;
    width: 5vw;
    /* padding-top: 40px; */
    /* padding-bottom: 80px; */
    font-size: 15px;
    font-family: 'ROBOTO', sans-serif;
    /* margin-top: -20px; */
    background-color: #242424;
    height: 320px;
    align-items: center;
    padding-left: 5vw;
    position: relative;
    bottom: -20px;
    /* font-weight: 500;*/
}

.footer_link_left {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* width: 80vw; */
    position: relative;
    /* bottom: 23px; */
    font-weight: 500;
}






.footer_link_left a {
    transition: 0.5s;

}

.footer_link_left li {
    padding-top: 12px;
    color: rgb(255 255 255);
    font-family: 'ROBOTO', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.footer_link_left ul.footer_list_address li {
    line-height: 1.5;
}

a.font_n {
    font-family: 'ROBOTO', sans-serif;
    margin-bottom: 3px;
}

.footer_link_left a:hover {
    color: #838383;
    transition: 0.5s
}

.footer_link_left ul {
    padding-bottom: 20px;
}

.footer_link_left p {
    padding-bottom: 10px;
    font-family: 'NOTO SANS JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;


}


/* .footer_link_left hr{
    width: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
} */

.footer_copy {
    width: 40vw;
    /* height: auto; */
    /* padding-top: 30px; */
    font-size: 14px;
    font-family: 'ROBOTO', sans-serif;
    text-align: center;
}

.page-top {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: fixed;
    right: 20px;
    bottom: 10px;
    z-index: 100;
    width: 40px;
    height: 40px;
    background-color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-top::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-bottom: -6px;
    border-top: solid 3px rgb(255, 255, 255);
    border-right: solid 3px rgb(255, 255, 255);
    transform: rotate(-45deg);
}

.page-top:hover {
    transform: scale(1.1);
}





@media (prefers-color-scheme: dark) {
    body {
        color: #fff;
        background: rgb(0, 0, 0);
        transition: .5s;
    }

    .loading {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #000000;
        z-index: 555;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    
        /* width: 100vw;
        height: 100vh;
        transition: all 1s;
        background-color: rgb(255, 255, 255);
        position: fixed;
      top: 0;
      left: 0;
      z-index: 9999; */
      }
    
      .spinner,
    .spinner:before,
    .spinner:after {
      background: #ffffff;
      -webkit-animation: load1 1s infinite ease-in-out;
      animation: load1 1s infinite ease-in-out;
      width: 1em;
      height: 4em;
    }
    .spinner {
      color: #ffffff;
      text-indent: -9999em;
      margin: 88px auto;
      position: relative;
      font-size: 11px;
      -webkit-transform: translateZ(0);
      -ms-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-animation-delay: -0.16s;
      animation-delay: -0.16s;
    }

/* 
    #splash{
        background: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
    
    }
    
    #splash_text{
        color: rgb(0, 0, 0);
    } */

    .bg_cover::after {
        background: #000;
        transition: .5s;

    }

    .bg_cover {
        background-color: #000;
        color: #fff;
    }

    .bg_cover_gray::after {
        background-color: #242424;
    }

    #contact {
        background-color: #2a2a2a;

    }

    .project_box {
        background-color: #2a2a2a;
    }

    #works {
        background-color: #242424;
    }

    .works_section {
        background-color: #242424;
    }

    .works_section.show {
        background-color: #000000;
    }

    #works h2.section_title {
    color: rgb(255, 255, 255);
}


    .footer_bottom {
        background-color: #2a2a2a;
    }

    
.footer_link {

    background-color: #777777;

}

    h3.paragraph_title {
        color: white;
    }

    h2.section_title {
        color: rgb(255, 255, 255);
        transition: .5s;
    }

    .card_paragraph {
        color: white;
    }

    .about_section h2.section_title {
        color: white;
    }

    .link_button a {
        color: rgb(0, 0, 0);
        background-color: white;
        transition: .5s;
    }

    .btn_box {
        color: white;
    }

    .btn_box:hover {
        color: white;
    }

    .btn_box::after {
        background-color: white;
    }

    /* #works {
        background-color: #565656;
    } */

    .works_title:hover {
        background-color: rgb(255, 255, 255);
    }

   

    h3.title_work_text {
        color: #242424;
    }

    .works_title:hover h3.title_work_text{
        color: rgb(255, 255, 255)
    }

    /* .works_title:hover h3.title_jpn_text{
        color: rgb(230, 228, 228)
    } */

    .works_title {
        background-color: rgb(255, 255, 255);
    }

    h3.title_jpn_text {
color: #242424    }

h3.title_jpn_text {
    color: #242424   }

    /* .footer_bottom {
        background-color: #363636;
        color: rgb(255, 255, 255);
    } */

    .works_title a:before {

        background-color: #ffffff;
    }
    
    .works_title:hover a {
        color: rgb(255, 255, 255);
    }

    .works_title:hover a:before{
        background-color: #242424;
    }
    
    
    .works_title:hover h3.title_work_text {
        color: #ffffff;
    }

    .works_title:hover .works_title_btn {
        color: rgb(255, 255, 255);
    }

    .works_title:hover .works_title_btn span {
        color: rgb(255, 255, 255);
    }

    .works_title:hover h3.title_jpn_text {
        color: #ffffff;
    }

    .link_button a:before {
        background-color: #000000;
    }

    .fade_bg_copy {
        background-color: #fff;
    }

    .fade_bg_copy_2 {
        background-color: #fff;
    }

    .fade_bg_copy_3 {
        background-color: #fff;
    }

    .fade_bg_copy_4 {
        background-color: #fff;
    }

    .fade_bg_copy_5 {
        background-color: #fff;
    }

    .fade_bg_main {
        background-color: #ffffff;
    }

    .works_title_btn {
        color: #242424;
    }

    .works_title .works_title_btn span {
        color: #242424;
    }

    .link_button a span.material-symbols-outlined {
        color: rgb(0, 0, 0);
    }

    .link_button a:hover {
        background-color: rgb(0, 0, 0);
        color: white;
    }

.link_button a:hover span.material-symbols-outlined{
    color: white;
}


    h3.contact_title {
        color: #ffffff;
    }

    .contact_box .paragraph_box p {
        color: #ffffff;
    }

    .contact_box .paragraph_box a{
        color: #ffffff;
    }



    .link_btn {
        color: rgb(255, 255, 255);
    }

    .link_btn::before,
    .link_btn::after {
        background: #000000;
    }

    .link_btn::after {
        background: #ffffff;
    }


    .link_btn span.btn_arrow::after {
        border-top: 2px solid rgb(255, 255, 255);
        border-right: 2px solid rgb(255, 255, 255);
    }

    .link_btn:hover span.btn_arrow::after {
        border-top: 2px solid rgb(255, 255, 255);
        border-right: 2px solid rgb(255, 255, 255);
    }

    .contact_box h2.section_title {
        color: rgb(171 171 171);
    }

    h4.paragraph_title_jp {
        color: rgb(171 171 171);
    }

}


/* 768以上設定 */

@media screen and (min-width: 768px) {



    .main_copy {
        font-size: 50px;
        /* top: 110px; */
    }

    .fade_bg_copy {
        background-color: #000;
        width: 307px;
        height: 64px;
        position: absolute;
        top: 10px;
        animation: myanime_copy 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_2 {
        background-color: #000;
        width: 300px;
        height: 64px;
        position: absolute;
        top: 89px;
        animation: myanime_copy_2 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_3 {
        background-color: #000;
        width: 416px;
        height: 64px;
        position: absolute;
        top: 169px;
        animation: myanime_copy_3 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_4 {
        background-color: #000;
        width: 197px;
        height: 17px;
        position: absolute;
        top: 270px;
        animation: myanime_copy_4 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_5 {
        background-color: #000;
        width: 148px;
        height: 17px;
        position: absolute;
        top: 292px;
        animation: myanime_copy_5 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    @keyframes myanime_copy {
        0% {
            width: 0px;
        }

        80% {
            width: 307px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_2 {
        0% {
            width: 0px;
        }

        80% {
            width: 300px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_3 {
        0% {
            width: 0px;
        }

        80% {
            width: 416px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_4 {
        0% {
            width: 0px;
        }

        80% {
            width: 197px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_5 {
        0% {
            width: 0px;
        }

        80% {
            width: 148px;

        }

        100% {
            width: 0px;
        }
    }

    .main_video {
        padding-top: 122px;
    }

    .fade_bg_main {
        top: 122px;
        height: calc(100vh - 100px - 30px);

    }

    /* .fade_bg_main {
        background-color: #303030;
        width: 95vw;
        z-index: 1;
        position: absolute;
        padding-left: 5vw;
        top: 122px;
        animation: myanime 2s 1s both cubic-bezier(0.87, 0, 0.13, 1);
    } */

    @keyframes myanime {
        0% {
            height: 0vh;
        }

        80% {
            height: calc(100vh - 122px - 30px);
        }

        100% {
            height: 0vh;
        }
    }

    .main_copy_en {
        font-size: 14px;
    }

    .main_copy hr {
        width: 35px;
        height: 0.5px;
        margin-top: 12px;
        margin-bottom: 12px;
    }



    @keyframes myanime_line {
        0% {
            width: 0px;
        }

        50% {
            width: 5px;
        }

        100% {
            width: 35px;
        }
    }

    .about_section {
        width: 60vw;
    }

    .about_img {
        height: 700px;
        margin-bottom: 60px;
    }

    .siema div.slide-bg1 {
        height: 700px;
        background-image: url(../img/top_slide.jpg);

    }

    .siema div.slide-bg2 {
        height: 700px;
        background-image: url(../img/top_slide_2.jpg);

    }

 

    .card_img {
        height: 400px;
        background-image: url(../img/photography_list.jpg)
    }

    .card_img_2 {
        height: 400px;
        background-image: url(../img/videography_list.jpg)

    }

    .card_img_3 {
        height: 400px;
        background-image: url(../img/stock_list.jpg)

    }

    .work_img,
    .work_img_a,
    .work_img_2 {
        height: 400px;
    }

    picture.subject img {
        height: 400px;
    }

    .title_jpn {
        margin-bottom: 12px;
        padding-bottom: 40px;
    }

    .works_title {
        top: -50px;
        z-index: 10;
        /* background: #ffffff; */
        /* background: linear-gradient(156deg, rgba(46,46,46,1) 0%, rgba(0,0,0,1) 100%); */
        padding: 20px 25px;
        position: relative;
        width: 500px;
        /* width: max-content; */
        margin-left: 2.5vw;
        /* margin-right: 5vw; */
    }

    .works_title_btn {
        font-size: 12px;
        /* margin-top: 20px; */
        right: 30px;
        bottom: 20px;
    }

    .works_title_btn {
        font-size: 12px;
    }

    .paragraph_box {
width: calc(500px - 25px - 25px);   
     /* padding-right: 5vw; */
    }

    .btn_box {
        width: calc(500px - 25px - 25px);
    }

    .recruit_box, .project_box, .access_box{
width:100vw;

    }


    @media (prefers-color-scheme: dark) {

        /* #contact {
            background-color: #242424;
        }

        .project_box {
            background-color: #000000;
        }

        .recruit_box {
            background-color: #000000;
        }

        .access_box {
            background-color: #000000;
        }

        .footer_bottom {
            background-color: #242424;
        } */

        .fade_bg_copy {
            background-color: #fff;
        }
    
        .fade_bg_copy_2 {
            background-color: #fff;
        }
    
        .fade_bg_copy_3 {
            background-color: #fff;
        }
    
        .fade_bg_copy_4 {
            background-color: #fff;
        }
    
        .fade_bg_copy_5 {
            background-color: #fff;
        }
    }

    /* ul.slider li div.slide-bg1 {
        height: 700px;
        margin-bottom: 60px;
    }

    ul.slider li div.slide-bg2 {
        height: 700px;
        margin-bottom: 60px;
    }

    .about_section {
        width: 80vw;
        z-index: 100;
        padding-left: 10vw;
        padding-top: 40px;
        padding-right: 10vw;
    }

    h4.paragraph_title_jp{
        padding-left: 10vw;
        padding-right: 10vw;
    }

    h3.paragraph_title{
        margin-left: 10vw;
        margin-right: 10vw;
    }

    .card_paragraph{
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .title_onimg {
        position: absolute;
        top: -100px;
    }

    h3.section_title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    h3.section_title_sub {
        font-size: 14px;
    }

    .lead {
        margin-bottom: 30px;
    }

    .lead p {
        font-size: 25px;
        font-weight: 500;
    }

    p.explain {
        font-size: 16px;
        line-height: 2;
    }

    span.material-icons {
        font-size: 19px;
    }

    .card_flex_box {
        display: flex;
        flex-wrap: wrap;
        width: 90vw;
    }

    .card_half {
        margin-bottom: 80px;
    }

  eight: 50vw;
    }

    .fade_bg {
        height: 50vw;
    }

    .bg_cover_gray::after {
        top: 150px;
    }

    .card_max .card_paragraph {
        width: 100vw;
    }

    h3.paragraph_title {
        font-size: 38px;
        margin-top: 15px;
    }

    .card_paragraph p {
        font-size: 16px;
    }

    .slider_2 img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }


    .works_paralax {
        margin-bottom: -40px;
    }

    .works_title {
        width: 60%;
    }

  
    h3.title_jpn_text {
        font-size: 16px;
        line-height: 1;
    }

    h3.title_work_text {
        font-size: 38px;
        line-height: 1;
        margin-top: 15px;
    }

    .title_jpn {
        margin-bottom: 14px;
    }

    h3.title_jpn_text {
        display: flex;
        align-items: center;
    }

    .title_sub {
        display: flex;
        justify-content: space-between;
        font-size: 1.8vw;
        font-weight: 500;
        font-family: 'ROBOTO', sans-serif;
        margin-top: 5vw;
    }

    .title_jpn,
    .title_work,
    .title_sub {
        position: relative;
        z-index: 100;
        padding-left: 20px;
        padding-right: 20px;
    }

    .work_img_picture_2 {
        width: 90vw;
        padding-left: 15vw;
        padding-right: 5vw;
        height: auto;
    }

    .fade_bg_work_2 {
        width: 95vw;
    }

    .contact_img {
        width: 100vw;
        height: 650px;
        position: relative;
        margin-bottom: 60px;
    }

    ul.slider li div.slide-bg10 {
        height: 700px;
        margin-bottom: 60px;
    }

    ul.slider li div.slide-bg11 {
        height: 700px;
        margin-bottom: 60px;
    }

    .contact_section {
        width: 80vw;
        padding-left: 10vw;
        padding-top: 40px;
        padding-right: 10vw;
        padding-bottom: 30px;
        bottom: 20px;
    }

    .contact_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100vw;
        padding: 0 10vw;
    }

    .recruit_box {
        padding-left: 0vw;
        width: 45%
    }

    .project_box {
        width: 45%;
        padding-left: 0vw;

    }

    .contact_box .paragraph_box {
        padding-right: 0vw;
    }

    .img_box {
        height: 600px;
    }

    h5.contact_title {
        font-size: 25px;

    }

    .email p {
        margin-left: -15px;
    }

    .email span.material-icons {
        vertical-align: -5px;
        font-size: 24px
    }

    .contact_box .img_box {

        height: 250px;

        margin-top: 30px;
        width: 100%;
    }

    .contact_box .paragraph_box p {
        font-size: 16px;
        line-height: 2;
    }

    .contact_bg {
        margin-top: -400px;
        padding-top: 400px;

    }

    .link_btn{
        font-size: 16px;
    }

    .footer_bottom {
        font-size: 16px;
    }

    .page-top {
        right: 5vw;
        bottom: 10px;
        width: 40px;
        height: 40px;
    }


    .footer_bottom {
        height: 300px;
    }

    .footer_link {
        width: 5vw;
        height: 270px;
    }

    .footer_left p {
        font-size: 12px;
    }

    .footer_left {
        width: 95vw;
        height: 300px;
    }

    

    .footer_link_left ul {
        display: flex;
        width: 250px;;
        justify-content: space-between;
    } */

}


/* 1300以上設定 */

@media screen and (min-width: 1299px) {

    .nav {

        height: 80px;
    }

    .main_video {
        padding-top: 135px;
    }

    .fade_bg_main {
        height: 80vh;
        top: 135px;
    }


    @keyframes myanime {
        0% {
            height: 0vh;
        }

        80% {
            height: calc(100vh - 135px - 30px);
        }

        100% {
            height: 0vh;
        }
    }

    .main_copy {
        font-size: 60px;
        top: 90px;
    }

    .fade_bg_copy {
        background-color: #000;
        width: 366px;
        height: 80px;
        position: absolute;
        top: 8px;
        animation: myanime_copy 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_2 {
        background-color: #000;
        width: 360px;
        height: 80px;
        position: absolute;
        top: 110px;
        animation: myanime_copy_2 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_3 {
        background-color: #000;
        width: 496px;
        height: 80px;
        position: absolute;
        top: 205px;
        animation: myanime_copy_3 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_4 {
        background-color: #000;
        width: 240px;
        height: 15px;
        position: absolute;
        top: 326px;
        animation: myanime_copy_4 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    .fade_bg_copy_5 {
        background-color: #000;
        width: 200px;
        height: 15px;
        position: absolute;
        top: 350px;
        animation: myanime_copy_5 2s 4s both cubic-bezier(0.87, 0, 0.13, 1);
    }

    @keyframes myanime_copy {
        0% {
            width: 0px;
        }

        80% {
            width: 366px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_2 {
        0% {
            width: 0px;
        }

        80% {
            width: 360px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_3 {
        0% {
            width: 0px;
        }

        80% {
            width: 496px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_4 {
        0% {
            width: 0px;
        }

        80% {
            width: 240px;

        }

        100% {
            width: 0px;
        }
    }

    @keyframes myanime_copy_5 {
        0% {
            width: 0px;
        }

        80% {
            width: 200px;

        }

        100% {
            width: 0px;
        }
    }

    .main_copy_en {
        font-size: 16px;
    }

    .main_copy hr {
        width: 40px;
        height: 0.5px;
        margin-top: 15px;
        margin-bottom: 15px;
    }






    @keyframes myanime_line {
        0% {
            width: 0px;
        }

        50% {
            width: 5px;
        }

        100% {
            width: 40px;
        }
    }

    #main .link_button {
        left: 10vw;
    }

    .lead p {
        font-size: 25px;
    }

    p.explain {
        font-size: 17px;
    }

    .about_section {
        padding-left: 20vw;
        width: 50vw;
    }



    h2.section_title {
        margin-left: 20vw;
        font-size: 17px;
    }

    h3.paragraph_title {
        margin-left: 2.5vw;
        font-size: 30px;
    }

    h3.ly_right {
        margin-left: 2.5vw;
    }

    h4.paragraph_title_jp {
        padding-left: 2.5vw;
    }

    h4.ly_right {
        padding-left: 2.5vw;
    }

    .card_paragraph p {
        font-size: 17px;
    }

    .card_img {
        width: 32.5vw;
        margin-left: 0;
    }

    .card_img_2 {
        width: 50vw;
        margin-left: 0;
    }

    .card_img_3 {
        margin-left: 0;
    }

    .card_paragraph {
        width: 37.5vw;
        padding-left: 5vw;
    }

    .card_paragraph.ly_right {
        width: 30vw;

        padding-left: 2.5vw;
    }

    .card_max .card_paragraph {
        width: 30vw;
    }

    .card_flex_box {
        width: 95vw;
        margin-left: 17.5vw;
        display: flex;
        flex-wrap: wrap;
    }

    .card_half {
        width: 32.5vw;
    }


    .card_paragraph {
        padding-left: 2.5vw;
        padding-right: 0vw;
        width: 30vw;
    }

    h3.title_work_text {
        font-size: 30px;
    }

    h3.title_jpn_text {
        font-size: 17px;
    }

    .work_img_a {
        margin-left: 2.5vw;
        /* height: 600px; */
    }

    .work_img_2 {
        /* margin-left: 2.5vw; */
    }



    .works_title {
        margin-left: 20vw;
    }


    .works_title {
        margin-left: 5vw;
        width: 32.5vw;
    }

    .works_title.ly_right {
        margin-left: 2.5vw;
    }

    .works_selection_flex {
        display: flex;
        flex-wrap: wrap;
        width: 97.5vw;
        margin-left: 2.5vw;
    }

    .works_paralax {
        width: 100vw;
    }

    section.works_paralax.ly_half {
        width: 47.5vw;
    }

    section.works_paralax.right {
        width: 47.5vw;
        /* margin-left: 2.5vw; */
    }

    .work_img_a video {
        width: 97.5vw;
    }

    .work_img_2 video {
        width: 47.5vw;
    }



    .work_img_a img {
        width: 100vw;
    }

    .work_img picture.subject img {
        width: 50vw;
    }


    #contact {
        /* background-color: #dfdfdf; */
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .contact_box {
        display: flex;
        flex-wrap: wrap;
        width: 100vw;
    }

    .recruit_box {
        background-color: #ffffff;
        margin-left: 2.5vw;
        padding-top: 5vw;
        padding-bottom: 5vw;
        width: 47.5vw;
        font-size: 25px;
        margin-bottom: 0;
    }

    .project_box {
        width: 50vw;
        margin-left: 0vw;
        padding-left: 2.5vw;
        padding-top: 5vw;
        background-color: #ffffff;
        margin-bottom: 0;
    }

    .access_box{
        width: 97.5vw;
margin-left: 2.5vw;
padding-bottom: 5vw;
background-color: #ffffff;
    }

    .access_box .img_box_3{
       width: 60vw;
    margin-left: 12.5vw;
    height: 400px;
    }



    .contact_box h2.section_title {
        margin-left: 12.5vw;
        font-size: 17px;
    }

    .project_box h2.section_title {
        margin-top: 0;
        margin-left: 0vw;
    }

    h3.contact_title {
        margin-left: 12.5vw;
    }

    .project_box h3.contact_title {
        margin-left: 0;
    }

    .paragraph_box {
        margin-left: 12.5vw;
        /* margin-right: 17.5vw; */
        width: 27.5vw;
        height: 120px;
        
    }

    .project_box .paragraph_box {
        margin-left: 0;
    }

    .contact_box .paragraph_box p {
        font-size: 17px;
    }

    .paragraph_box span {
        font-size: 15px;
line-height: 1;
    }

    .btn_box {
        width: 40vw;
        /* margin-right: 17.5vw; */
        width: 27.5vw;
    }

    a.link_btn {
        margin-left: 12.5vw;
        /* margin-right: 17.5vw; */
    }

    .project_box a.link_btn {
        margin-left: 0;
    }

    .contact_box .img_box {
        width: 27.5vw;
        margin-left: 12.5vw;
    }

    .project_box .img_box_2 {
        width: 27.5vw;
        margin-left: 0;
    }

    .footer_bottom {
        background-color: #f1f1f1;
    }


    /* 
    .about_section {
        padding-left: 20vw;
        width: 87.5vw;
        padding-right: 60px;
    }

    h3.section_title {
        margin-left: 20vw;
    }

    h3.section_title_sub {
        margin-left: 20vw;
        font-size: 14px;
    }

    .card_flex_box {
        width: 95vw;
        margin-left: 5vw;
    }

    .card_half {
        width: 47.5vw;
    }

    .card_img {
        height: 30vw;
        width: 47.5vw;
        margin-left: 0;
    }

    h5.paragraph_title_jp {
        padding-left: 5vw;
        padding-right: 5vw;

    }

    h3.paragraph_title {
        font-size: 40px;
        margin-left: 5vw;
    }

    .card_paragraph {
        width: 45vw;
        padding-left: 5vw;
    }

    .card_max .card_paragraph {
        width: 92.5vw;
    }

    .card_img_2 {
        height: 30vw;
        width: 47.5vw;
        margin-left: 0vw;
    }

    .card_img_3 {
        height: 30vw;
        margin-left: 0;
    }


   

    .work_img {
        width: 100vw;
        height: 600px;
        margin-left: 0;
    }

    .work_img_a {
        width: 100vw;
        padding-left: 0vw;
        height: 600px;
    }

    .work_img_2 {
        width: 100vw;
        height: 600px;
    }

 


    .work_img_a video {
        width: 100vw;

        object-fit: cover;

    }

    .work_img_2 video {
        width: 100vw;
        object-fit: cover;
    }

    .work_img img {
        width: 100vw;
        object-fit: cover;
        height: 100%
    }

    .work_img_a img {
        width: 100vw;
        object-fit: cover;
        height: 100%;
    }

    .fade_bg_work {
        background-color: #696969;
        width: 75vw;
        height: 42.5vw;
        z-index: 100;
        position: absolute;
        margin-left: 5vw;
        top: 0;
    }

    .fade_bg_work_2 {
        background-color: #696969;
        width: 75vw;
        height: 47.5vw;
        z-index: 100;
        position: absolute;
        margin-left: 20vw;
        top: 0;
    }

    .fade_bg_work_3 {
        background-color: #696969;
        width: 95vw;
        height: 50vw;
        z-index: 100;
        position: absolute;
        margin-left: 0vw;
        top: 0;
    }

    .fade_bg_work_4 {
        background-color: #696969;
        width: 95vw;
        height: 50vw;
        z-index: 100;
        position: absolute;
        margin-left: 0vw;
        top: 0;
    }

    .work_img_2 .fade_bg_work {
        margin-left: 20vw;
    }

    .works_title {
        margin-left: 10vw;
        width: 50%;
    }

    .ly_right {
        margin-left: 45vw;
    }

    h3.title_jpn_text {
        font-size: 16px;
    }

    .title_sub {
        font-size: 1vw;
    }

    h3.title_work_text {
        font-size: 40px;
    }


    #contact .link_button {
        left: 20vw;
    }

    .contact_section {
        width: 82.5vw;
        padding-left: 20vw;
        bottom: 40px;
        padding-top: 50px;
        padding-right: 60px;
    }

    .slide-bg10 {
        background-size: 100%;
    }


    .contact_box {
        padding: 0 20vw;
    }

    .contact_box .img_box {
        height: 300px;

    }

    .footer_left .header_logo {
    }


    .page-top {
        width: 50px;
        height: 50px;
    }

    .footer_link_left ul{
        width: 250px;
    } */

    @media (prefers-color-scheme: dark) {

        #contact {
            background-color: #242424;
        }

        .project_box {
            background-color: #000000;
        }

        .recruit_box {
            background-color: #000000;
        }

        .access_box {
            background-color: #000000;
        }

        .footer_bottom {
            background-color: #242424;
        }

        .fade_bg_copy {
            background-color: #fff;
        }
    
        .fade_bg_copy_2 {
            background-color: #fff;
        }
    
        .fade_bg_copy_3 {
            background-color: #fff;
        }
    
        .fade_bg_copy_4 {
            background-color: #fff;
        }
    
        .fade_bg_copy_5 {
            background-color: #fff;
        }
    }

    

}


@media screen and (min-width: 1919px) {

    .header_logo {
        font-size: 40px;
    }

    .logo_small {
        font-size: 13px;
        padding-left: 15px;
    }

    .main_video {
        width: 2500px;
        padding-left: 5vw;
        margin-right: 0;
        z-index: -100;
    }

    .video {
        width: 2500px;
    }

    .fade_bg_main {
        /* background-color: #cecece; */
        width: 2500px;
        height: calc(100vh - 135px - 30px);
        z-index: 1;
        position: absolute;
        padding-left: 10vw;
        /* top: 140px; */
        /* animation: myanime 1s 1s both ease-out; */
    }





    /* .contact_section {
        width: 80vw;
    } */

    .slide-bg10 {
        background-size: 150%;
        background-position: center center;
    }



    /* .contact_box{
    display: flex;
    flex-wrap: wrap;
    width: 100vw;


}

.recruit_box {
width: 50vw;
}

.project_box{
    padding-left: 0vw;
    width: 40vw;
}

.project_box .title_box{
    padding-left: 0vw;
}

.paragraph_box{
    width: 50vw;
    padding-right: 0;
}

.project_box .paragraph_box{
    padding-left: 0vw;
    width: 25vw;
}

.project_box .btn_box{
    margin-left: 0vw;
}

.contact_box .img_box{
    width: 25vw;
    margin-left: 15vw;
}

.contact_box .project_box .img_box{
    margin-left: 0vw;
} */




}