@charset "UTF-8";
/*==================================================
オープニング
==================================================*/
.opening_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
}
body.visited .opening_wrap{
    display: none;
}
.whats_op {
    position: absolute;
    width: min(80%,700px);
    aspect-ratio: 300 / 108;
    z-index: 100;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
     animation: openingLogo 2000ms cubic-bezier(0.83, 0, 0.17, 1) 500ms forwards;
    transform: scale(0);
}
.shutters_op {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f4f0ee;    
     animation: shuttersColor 1200ms linear 2700ms forwards;
}
.shutter {
    background: #f4f0ee;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 65%);
}
.shutter_down {
    transform: rotate(180deg);
    transform-origin: center;
     animation: shuttersDown 1200ms linear 3000ms forwards;
}
.shutter_up {
     animation: shuttersUp 1200ms linear 3000ms forwards;
}
@keyframes openingLogo{
    0%{transform: scale(0);}
    20%{transform: scale(1);animation-timing-function:linear;}
    90%{transform: scale(1.1);opacity: 1;}
    100%{transform: scale(10);opacity: 0;}
}
@keyframes shuttersColor{
    0%{background: #f4f0ee;}
    25%{background: #fd343e;}
    77%{background: #fd343e;}
    78%{background: none;}
    100%{background: none;}
}
@keyframes shuttersUp{
    0%{background: #f4f0ee;}
    25%{background: #fd343e;}
    78%{background: #fd343e;transform:translateY(0);}
    100%{transform:translateY(-100vh);}
}
@keyframes shuttersDown{
    0%{background: #f4f0ee;}
    25%{background: #fd343e;}
    78%{background: #fd343e;transform:rotate(180deg)translateY(0);}
    100%{transform:rotate(180deg) translateY(-100vh);}
}
/*==================================================
もっと見る系リンク
==================================================*/
.viewmore_link_wrap {
    margin-top: min(10vw, 45px);
    text-align: right;
    position: relative;
    width: fit-content;
}
.viewmore_link {
    line-height: 1;
    display: flex;
    justify-content: flex-end;
    font-weight: 700;
    padding: 0 0 min(2vw, 12px);
    position: relative;
    z-index: 2;
    font-size: min(5vw, 22px);
}
.viewmore_link::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    right: 0;
}
.viewmore_link:hover::before {
    width: min(4vw,20px);
}
.viewmore_link::after {
    content: "";
    display: block;
    width: min(4vw,20px);
    aspect-ratio: 1 / 1;
    background: url(../img/cmn/arw_mini.svg) no-repeat center / contain;
    margin-left: 15px;
}
.viewmore_link_wrap::after {
    content: "";
    display: block;
    position: absolute;
    background: #fd343e;
    z-index: 0;
    width: min(16vw,100px);
    height: min(16vw,100px);
    border-radius: 50%;
    top: max(-40px,-6.4vw);
    right: max(-40px,-6.4vw);
    transition: all ease 300ms;
    transform: scale(0);
}
.viewmore_link_wrap:hover::after {
    transform: scale(1);    
}
/*==================================================
First View　sec_topfv
==================================================*/
.sec_topfv{
    width: 100%;
    max-height: 100vh;
    padding: 110px 0 min(10vw, 160px);
}
.fv_ttl_wrap {
    position: relative;
    z-index: 5;
}
.fv_subttl_wrap,
.fv_bigttl {
    width: 90%;
   margin: 0 auto;
}
.fv_subttl_wrap {
    padding: 0 5vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
}
.fv_copy_wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.fv_copy {
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-weight: bold;
    font-size: min(8vw, 40px);
    background: #f00;
    padding: min(3vw, 20px) min(2vw, 12px);
    margin: 0 min(1vw,4px);
    line-height: 1;
}
.topfv_subttl {
    font-size: min(7.5vw, 50px);
    font-weight: bold;
    line-height: 150%;
}
.fv_bigttl {
    padding-left: 5vw;
}
.umai{
    color: #fd343e;
}
.passion{
    color: #fff;
}
.fv_wave {
    position: absolute;
    top: max(-5vw, -30px);
    left: -8%;
    width: 67%;
    z-index: 1;
}

.scroll_guide {
    position: absolute;
    bottom: max(-8vw, -50px);
    left: 3%;
    color: #fd343e;
}
.scroll_link {
    line-height: 140%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    overflow: unset;
    width: fit-content;
    z-index: 6;
    position: relative;
}
.scroll_link::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/cmn/arw.svg) no-repeat center / contain;
    transition: all ease 250ms;
}
.scroll_link:hover::after {
    transform: translateY(10px);
}
.scroll_guide_frame {
    display: block;
    border: 1px solid;
    width: min(40vw,320px);
    aspect-ratio: 1 / 1;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: max(-15vw,-120px);
    top: max(-12vw,-120px);
    transition: all ease 250ms;
}
.scroll_link:hover ~ .scroll_guide_frame{
    transform: scale(1.2);
}
@media (max-width:1080px){
.scroll_guide {
    position: relative;
}
.scroll_link {
    z-index: 1;
}
}
@media (max-width:760px){   
.sec_topfv {
    padding: 70px 0;
    margin-bottom: 70px;
    height: 100svh;
    min-height: 100svh;
}
.art_topfv {
    height: 100%;
}
.fv_bigttl {
        width: 107%;
}
.fv_subttl_wrap {
    flex-direction: column;
    align-items: unset;
    width: 100%;
        height: 80%;
    padding: 0 5vw;
}
.fv_ttl_wrap {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fv_wave {
    width: 115%;
    left: -20%;
        bottom: 20vh;
    top: auto;
}
    .scroll_guide{
        display: none !important;
    }
}

/*OP演出用*/
.fv_ttl_wrap {
    transition: all ease 200ms;
    transform: scale(1.5);
    opacity: 0;
}
body.visited .fv_ttl_wrap {
    transform: scale(1);
    opacity: 1;
}
/*==================================================
bg_photoanime_wrap
==================================================*/
.bg_photoanime_wrap {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
}
.bg_photoanime{
    position: absolute;
    display: flex;
}
.bg_photoanime.set1 {
    left: 54vw;
}
.bg_photoanime.set2 {
    top: -25px;
    left: 30vw;
}
.bg_photoanime.set3 {
    left: 49vw;
    flex-direction: row-reverse;
}
.photoanime.img01{
    width: 12.7vw;    
}
.photoanime.img02 {
    width: 12.7vw;
    margin: 5.7vw 0 0 -2.1vw;
}
.photoanime.img03{
    width: 10vw;
}
.photoanime.img04 {
    width: 12.7vw;
    margin: 8.5vw 0 0 -2.1vw;
}
.photoanime.img05{
    width: 12.7vw;
    margin: 0 0 0 -4.2vw;
}
.photoanime.img06{
    width: 14.7vw;
    margin-top: 10vw;
}
.photoanime{
    transition: all 550ms cubic-bezier(0.83, 0, 0.17, 1);
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    transform: scale(0.8);
}
.animation .photoanime{
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    transform: scale(1);
}
.photoanime img{
    transition: all ease 550ms;
}
.animation .photoanime img{
 animation: crossopen 3s linear 0.5s infinite;
}
@keyframes crossopen{
    0%{transform: scale(1);}
    100%{transform: scale(1.05);}
}
@media (max-width:760px){
.bg_photoanime[class*="set"]{
    top: 0;
    left: 5vw;
}
.photoanime[class*="img"] {
    width: 45vw;
}
    .photoanime.img02,
     .photoanime.img04,
    .photoanime.img05{
        margin-top: 20vw;
        margin-left: -8vw;
    }
    .photoanime.img06{
        margin-top: 0;
    }
}
/*==================================================
ニットーって知ットー？　sec_whats
==================================================*/
.art_whats {
    padding-top: 1px;
}
.whats_pop,
.whats_flex{
    position: relative;
    z-index: 2;
}
.whats_pop_wrap{
    width: min(94%, 1600px);
    margin: 9vw auto 0;
}
.whats_pop {
    width: min(87.5%, 880px);
}
.whats_flex {
    display: flex;
    width: 97%;
    margin-left: max(3%,calc(calc(97% - 1600px) / 2));
}
.whats_data {
    color: #fff;
    margin-top: min(5vw, 60px);
}
.whats_txt {
    font-size: min(4.5vw, 20px);
    line-height: min(8vw, 240%);
}
.whats_img_wrap {
    width: calc(50% + min(5vw,120px));
    min-width: calc(50% + min(5vw,120px));
    padding-left: min(5vw,120px);
}
.whats_txtslider_outer {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
}
.whats_txtslide {
    color: #fff;
    font-size: 11vw;
    line-height: 100%;
    white-space: nowrap;
    font-weight: 800;
}
.whats_fish {
    position: absolute;
    z-index: 1;
    width: min(20vw,140px);
    right: 2%;
    top: 20vw;    
    animation-name: yure;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes yure{
	20% { transform:translate(0%, 0%); }
    24% { transform:scale(1) rotate(0.04turn); }
	28% { transform:translate(0%, 0%); }
	32% { transform: scale(1) rotate(0.04turn); }
	36% { transform:translate(0%, 0%); }
  100% { transform:translate(0%, 0%); }
}
.art_whats::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 75%;
    height: 70%;
    background: #fd343e;
    left: 0;
    top: calc(10vw + min(6vw, 60px));
}
@media (max-width:860px){
.art_whats::before {
    width: 100%;
}
.whats_flex {
    flex-wrap: wrap;
}
    .whats_data{
        width: 97%;
    }
.whats_img_wrap {
    width: 97%;
    margin:min(5vw,40px) 0 0 auto;
}
}
/*==================================================
ニットーのモットー　sec_motto
==================================================*/
.sec_motto{
    padding: min(20vw,166px) 0 min(15vw,110px);
}
.motto_flex {
    display: flex;
    width: min(94%, 1600px);
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.motto_shacho_wrap{
    width: 42%;
}
.shacho_name {
    width: 50%;
    position: relative;
    z-index: 2;
    margin-top: max(-10vw, -80px);
    margin-left: auto;
}
.motto_data {
    width: 54%;
}
.motto_pop {
    width: 87.5%;
    margin-bottom: min(5vw, 60px);
}
.motto_txt {
    line-height: min(8vw, 220%);
    width: min(100%, 640px);
}
.motto_bg {
    color: #e6e1da;
    line-height: 1;
    font-size: 25vw;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.motto_bg_subname {
    font-size: 50%;
    margin-right: auto;
}
.motto_bg_name {
    line-height: 80%;
}
.motto_wave,
.motto_crab,
.motto_fish{
    position: absolute;
    z-index: 1;
}
.motto_wave {
    width: 26%;
    top: -5vw;
    right: 5%;
}
.motto_crab {
    width: min(19vw,124px);
    top: 1.5vw;
    right: 10%;
    animation-name: yure;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.motto_fish {
    width: 114px;
    left: 5%;
    bottom: 0;
    animation-name: yure;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.motto_link_wrap {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: min(6vw, 90px) auto 0;
}
.motto_link {
    display: flex;
    width: min(80%, 717px);
    border: min(0.7vw, 4px) solid #fd343e;
    border-radius: min(4vw, 6px);
    background: #fff;
    justify-content: center;
    color: #fd343e;
    font-weight: 700;
    font-size: min(4vw, 25px);
    line-height: 1;
    padding: min(4vw, 25px);
    position: relative;
    margin: 0 auto;
}
.motto_link::after{
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/cmn/arw.svg) no-repeat center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 5%;
    transition: all ease 250ms;
    transform: rotate(-90deg);
}
.motto_link:hover {
    background: #fd343e;
    color: #fff;
}
.motto_link:hover::after{
    right: 1%;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
@media (max-width:860px){
.motto_flex {
    flex-direction: column;
}
.motto_shacho_wrap {
    width: 60%;
    margin-bottom: 3vw;
}
.shacho_name {
    width: 70%;
}
.motto_data{
    width: 100%;
}
.motto_wave {
    width: 60%;
    top: -18vw;
    right: 0;
}
.motto_crab {
    top: 0;
    right: 5%;
}
.motto_fish{
    width: 60px;
    bottom: max(-12vw, -110px);
}
}
/*==================================================
ニットーはたーんと！　sec_lot
==================================================*/
.sec_lot {
    padding-top: min(30vw, 150px);
    background: #fd343e;
}
.lot_flex {
    display: flex;
    width: min(94%, 1600px);
    margin-left: auto;
    margin-right: auto;
}
.lot_data {
    color: #fff;
}

.lot_pop_wrap {
    width: 121%;
    z-index: 2;
    position: relative;
    margin-bottom: min(6vw, 45px);
    margin-left: -3%;
}
.nitto_ttl {
    font-size: min(5.5vw, 32px);
    line-height: min(9vw,180%);
    width: min(94%, 840px);
    margin-bottom: min(4vw, 20px);
}
.nitto_txt {
    line-height: min(8vw, 220%);
    width: min(100%, 840px);
}

.lot_fader_wrap{
    width: calc(44% + min(5vw,85px));
    min-width: calc(44% + min(5vw,85px));
    padding-left: min(5vw,85px);
}
.lot_slider{
background: linear-gradient(to bottom,  rgba(244,240,238,0) 0%,rgba(244,240,238,0) 50%,rgba(244,240,238,1) 50.1%,rgba(244,240,238,1) 100%);

}
.lot_slide{
    margin-right: min(1vw,8px);
}
.lot_slide:nth-of-type(2n-1){
    margin-top: min(4vw,35px);
}
.lot_txtslide {
    color: #d7343e;
    font-size: 9.65vw;
    line-height: 130%;
    white-space: nowrap;
    font-weight: 800;
}

.sec_lot .viewmore_link:not(:hover)::after{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.sec_lot .viewmore_link:not(:hover)::before,
.sec_lot .viewmore_link_wrap::after{
    background: #fff;
}
.sec_lot .viewmore_link:hover{
    color: #000;
}
@media (max-width:860px){
.lot_flex {
    flex-direction: column-reverse;
}
.lot_fader_wrap {
    width: min(100%,760px);
    margin: 0 auto min(5vw,30px);
    padding-left: 0;
}
.lot_pop_wrap {
    width: min(90%, 640px);
    margin: 0;
    position: absolute;
    top: -15vw;
}
}
/*==================================================
RECRUIT
==================================================*/
.sec_recruit {
    padding: min(15vw, 140px) 0 min(20vw, 134px);
}
.art_recruit {
    min-height: 52vw;
}
.recruit_subttl {
    position: absolute;
    font-size: min(5vw, 25px);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    top: 0;
    bottom: 0;
    margin: auto;
    height: min(5vw, 25px);
    width: 100%;
}
.recruit_ttl_circle{
    color: #fd343e;
    position: relative;
    margin-right: min(5vw, 35px);
}
.circleText {
    overflow: visible;
    width: min(25vw, 190px);
    height: min(25vw, 190px);
    animation: rotation 10s linear 0.5s infinite;
}
@keyframes rotation{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.circleText__circle{
    fill:none; 
}
.circleText__text {
    fill: #fd343e;
    font-weight: 100;
    font-size: min(2.5vw, 9.1px);
    line-height: 1;
}
.recruit_data {
    position: relative;
    z-index: 2;
    margin-right: 4%;
}
.recruit_ttl_wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: min(7vw, 50px);
}
.recruit_ttl {
    font-size: min(12vw, 120px);
    font-weight: 700;
    line-height: 1;
}
.recruit_txt_wrap {
    width: min(100%, 260px);
    margin-left: auto;
}
.recruit_txt {
    line-height: min(8vw, 220%);
}
.recruit_flex {
    display: flex;
    flex-direction: row-reverse;
    min-height: calc(calc(calc(90vw - 260px) / 3 - 10px) / 357* 785 + min(15vw, 110px));
}
.recruit_photowrap {
    position: absolute;
    width: calc(90% - 260px);
    left: 0;
    top: min(15vw, 110px);
}
.recruit_photolist {
    display: flex;
    width: 100%;
}
.r_photoitem {
    width: calc(100% / 4 - min(1vw, 10px));
    margin-right: min(1vw, 10px);
    height: auto;
    aspect-ratio: 27 / 71;
}
.recruit_crab {
    width: min(24vw, 124px);
    position: absolute;
    bottom: 0;
    right: 0;
    animation-name: yure;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.recruit_crab img {
    transform: rotateY(180deg);
}

@media (max-width:840px){
.recruit_data {
    margin-left: 4%;
}
.recruit_flex {
    flex-direction: column;
}
.recruit_photowrap {
    width: 94%;
    top: min(25vw, 190px);
    left: 4%;
}
.recruit_ttl_wrap {
    justify-content: flex-end;
}
.recruit_txt_wrap {
    width: 100%;
    margin-top: 75vw;
}
}
/*==================================================
COMPANY
==================================================*/
.sec_company{
    color: #fff;
    position: relative;
    overflow: hidden;
}
.company_bg {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: url(../img/top/company_bg.webp) no-repeat top left / auto 100vh;
}
:where(.company_bg).widewindow {
    background-size: 100% auto;
}
:where(.reach_company).company_bg{
    background-attachment: fixed;
}
@media (max-width:640px){
.company_bg {
    background-position: center;
    background-size: cover;
    background-attachment: inherit;
        height: 100vh;
}
.company_bg.reach_company {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
}
.comapny_inr {
    padding: 1px 0;
    position: relative;
    z-index: 2;
    padding-top: 150vh;
    transition: all ease 300ms;
}
.art_company {
    margin-top: min(20vw, 180px);
}
.company_wrap {
    width: min(94%, 1080px);
    margin: 0 auto min(12vw, 80px);
    display: flex;
    justify-content: space-between;
    position: relative;
}
.company_data {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.company_ttl {
    font-size: min(12vw, 120px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: min(5vw, 60px);
}
.company_txt {
    width: min(100%, 386px);
    line-height: min(8vw, 220%);
}
.company_img {
    width: min(49%, calc(100% - 386px));
    margin-left: auto;
}

.art_movie {
    text-align: center;
    padding: min(12vw, 80px) 0  min(15vw, 120px);
}
.movie_ttl{
    font-size: min(6vw, 30px);
    font-weight: 400;
    margin-bottom: min(6vw,40px);
}
iframe.youtube {
    aspect-ratio: 16 / 9;
    display: block;
    width: min(90%, 880px);
    margin: 0 auto;
}

.sec_company .viewmore_link:not(:hover)::after{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.sec_company .viewmore_link:not(:hover)::before{
    background: #fff;
}

@media (max-width:840px){
.company_wrap {
    flex-wrap: wrap;
}
.company_data,
.company_img{
    position: relative;
    width: 100%;
}
.company_img {
    margin-top: max(-30px, -7vw);
    width: 64%;
}
}
/*==================================================
NEWS お知らせ
==================================================*/
.sec_news {
    padding: min(12vw, 90px) 0;
    background: #fff;
}
.art_news {
    width: min(94%, 1000px);
    margin: 0 auto;
}
.news_ttl_wrap {
    display: flex;
    align-items: flex-end;
    margin-bottom: min(4vw, 30px);
}
.news_ttl {
    font-weight: 700;
    font-size: min(12vw, 50px);
    line-height: 1;
    margin-right: min(4vw, 35px);
}
.news_subttl {
    font-size: min(3.5vw, 24px);
    line-height: 1;
}
.art_news .viewmore_link_wrap{
    margin-left: auto;
}
/*==================================================
moved
==================================================*/
.nitto_pop.move{
    opacity: 0;
    transform: scale(1.5);
    transition: all ease 200ms;
}
.nitto_pop.moved{
    opacity: 1;
    transform: scale(1);
}
.art_whats.move::before{
    width: 0;
    transition: all ease 250ms;
    transition-delay: 500ms;
}
.art_whats.moved::before{
    width: 75%;
}
.motto_shacho_wrap.move .shacho_img{
    transition: all ease 400ms;
    transition-delay: 200ms;
    transform: translateX(200px);
    opacity: 0;
}
.motto_shacho_wrap.moved .shacho_img{
    transform: translateX(0);
    opacity: 1;
}
.motto_shacho_wrap.move .shacho_name{
    transition: all ease 200ms;
    transition-delay: 600ms;
    transform: scale(1.5);
    opacity: 0;
}
.motto_shacho_wrap.moved .shacho_name{
    transform: scale(1);
    opacity: 1;
}
@media (max-width:800px){
.art_whats.moved::before{
    width: 100%;
}
}