@charset "UTF-8";


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background:#00a550;
	text-align:center;
	color:#fff;
}

/* Loadingバー中央配置　*/
#splash_text{
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 9999;
	width: 80%;
	transform: translate(-50%, -50%);
	color: #fff;
}

#splash .deco01 {
    width: 130px;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-56%, -155%);
}

#splash .deco01 img{
    animation: splashdeco 2.8s cubic-bezier(0.75, 0, 0.25, 1) forwards;
    opacity: 0;
}

@keyframes splashdeco {
	0% { transform: translate(0,100%); opacity: 0;}
	25% { transform: translate(0,-5%); opacity: 1;}
	50% { transform: translate(0,0%); opacity: 1;}
	75% { transform: translate(0,5%); opacity: 1;}
	100% { transform: translate(0,-100%); opacity: 0}
}


#mv,#header,#footer,#contents{
    opacity: 0;
    transition: .3s;
}

body.loaded #mv,
body.loaded #header,
body.loaded #footer,
body.loaded #contents{
    opacity: 1;
}


/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

/*--- mv --*/

#mv{
    /*background: url("../images/top/main.png") center top / 2500px no-repeat #adb7e8;*/
    background: #adb7e8;
    height: 100vh;
    min-height: 800px;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}
#mv::before,
#mv::after{
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 20;
}
#mv::before{
    background: #00a550;
    height: 20px;
}
#mv::after{
    background: #000;
    height: 2px;
}

#mv .mvInr{
    width: 100%;
    height: 100%;
    position: relative;
}




#mv .sukiwokatachini li{
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--w, auto);
  transform: translate(var(--tx, 0), var(--ty, 0));
  opacity: 0;
}

body.loaded #mv .sukiwokatachini li{
  animation: sukiwokatachini 3s ease forwards;
  will-change: transform, opacity;
}

#mv .sukiwokatachini li.su      { --w:224px; --tx:-491px; --ty: 111px; }
#mv .sukiwokatachini li.ki      { --w:200px; --tx:-333px; --ty:  41px; }
#mv .sukiwokatachini li.wo      { --w:218px; --tx:-198px; --ty: -38px; }
#mv .sukiwokatachini li.katachi { --w:380px; --tx: -55px; --ty:-222px; }
#mv .sukiwokatachini li.ni      { --w:219px; --tx: 260px; --ty:-307px; }


#mv .sukiwokatachini li.su{    animation-delay: 4s !important;}
#mv .sukiwokatachini li.ki{    animation-delay: 4.5s !important;}
#mv .sukiwokatachini li.wo{    animation-delay: 5s !important;}
#mv .sukiwokatachini li.katachi{    animation-delay: 5.5s !important;}
#mv .sukiwokatachini li.ni{    animation-delay: 6s !important;}

@keyframes sukiwokatachini{
  0%{
    transform: translate(calc(var(--tx) + 1198px), calc(var(--ty) - 690px));
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  100%{
    transform: translate(var(--tx), var(--ty));
    opacity: 1;
  }
}


body.loaded #mv .sukiwokatachini li.su .lettersInr,
body.loaded #mv .sukiwokatachini li.ki .lettersInr,
body.loaded #mv .sukiwokatachini li.wo .lettersInr,
body.loaded #mv .sukiwokatachini li.katachi .lettersInr,
body.loaded #mv .sukiwokatachini li.ni .lettersInr{
    animation: bounce 0.8s ease forwards;
    animation-delay: 9s;
}

body.loaded #mv .sukiwokatachini li.su img,
body.loaded #mv .sukiwokatachini li.ki img,
body.loaded #mv .sukiwokatachini li.wo img,
body.loaded #mv .sukiwokatachini li.katachi img,
body.loaded #mv .sukiwokatachini li.ni img{
    animation: bounce-interval 5s ease infinite;
    animation-delay: 15s;
}

body.loaded #mv .sukiwokatachini li.su img{ animation-delay: 13s;}
body.loaded #mv .sukiwokatachini li.ki img{ animation-delay: 13.4s;}
body.loaded #mv .sukiwokatachini li.wo img{ animation-delay: 13.8s;}
body.loaded #mv .sukiwokatachini li.katachi img{ animation-delay: 14.2s;}
body.loaded #mv .sukiwokatachini li.ni img{ animation-delay: 14.6s;}

@keyframes bounce-interval {
    /* 0%〜13.8%が元アニメーション部分 */
    0%, 2.76%, 7.31%, 13.79% {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0);
    }

    5.52%, 5.94% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    9.65% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -8px, 0) scaleY(1.03);
    }

    11.03% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0) scaleY(.95);
    }

    12.41% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }

    /* ↓ それ以降はずっと停止（インターバル 5秒） */
    13.8%, 100% {
        transform: translateZ(0) scaleY(1);
    }
}

#mv span.top-mv-bounce{
    display: block;
}
#mv .top-mv-bounce,
#mv .top-mv-fadein{
    opacity: 0;
}
body.loaded #mv .top-mv-bounce{
    animation: bounce02 1.2s ease forwards;
}
body.loaded #mv .top-mv-fadein{
    animation: fadein 1s ease forwards;
}



body.loaded #mv .parts02 .heart{
    display: block;
    animation: fuwafuwa01 3s ease infinite;
    animation-delay: 10s;
}

@keyframes fuwafuwa01 {
    from, to { transform: translate(0,0); }
	50% { transform: translate(0,-20%); }
}


#mv .parts{
    left: 50%;
    top: 50%;
    position: absolute;
}

#mv .beltBase{
    width: 2500px;
    transform: translate(-1250px,-872px);
    animation-duration: 2s !important;
}
#mv .parts01 {/*コンベヤの側面*/
    width: 250px;
    transform: translate(559px, -762px);
    opacity: 0;
    animation: fadein 1s ease forwards;
    animation-delay: 1.5s;
}
#mv .parts02{ /*手前ハート吸収マシン*/
    width: 236px;
    transform: translate(158px,-18px);
    z-index: 1;
}
#mv .parts02 .heart{ /*ハート*/
    width: 89px;
    position: absolute;
    display: block;
    left: 80px;
    top: 35px;
    z-index: 1;
}
#mv .parts03{/*エイリやんとアーム*/
    width: 328px;
    transform: translate(-93px,49px);
}
#mv .parts04{/*手前パチンコ玉*/
    width: 238px;
    transform: translate(-232px,321px);
}
#mv .parts05{/*手前大きめ緑マシン*/
    width: 442px;
    transform: translate(366px,-142px);
}
#mv .parts06{ /*トランプとコイン*/
    width: 251px;
    transform: translate(316px,-68px);
}
#mv .parts07{ /*コイン*/
    width: 89px;
    transform: translate(391px,243px);
}
#mv .parts08{ /*GEKIATSU*/
    width: 113px;
    transform: translate(482px,207px);
}
#mv .parts09{ /*麻雀*/
    width: 209px;
    transform: translate(498px,255px);
}
#mv .parts10{ /*肉*/
    width: 99px;
    transform: translate(651px,196px);
}
#mv .parts11{ /*フォルダ*/
    width: 120px;
    transform: translate(762px,60px);
}
#mv .parts12{ /*メール*/
    width: 405px;
    transform: translate(689px,188px);
}
#mv .parts13{ /*カバン*/
    width: 209px;
    transform: translate(856px,-122px);
}
#mv .parts14{ /*コーヒー*/
    width: 91px;
    transform: translate(977px,119px);
}
#mv .parts15{ /*書類*/
    width: 127px;
    transform: translate(1077px,189px);
}
#mv .parts16{ /*プレゼント小*/
    width: 193px;
    transform: translate(1069px,81px);
}
#mv .parts17{ /*カレンダー*/
    width: 244px;
    transform: translate(681px,-219px);
}
#mv .parts18{ /*天秤*/
    width: 447px;
    transform: translate(828px,-485px);
}


#mv .parts19{ /*パチンコ玉*/
    width: 514px;
    transform: translate(-190px,-551px);
}
#mv .parts20{ /*パチンコ台*/
    width: 550px;
    transform: translate(-411px,-485px);
}
#mv .parts21{ /*アーム*/
    width: 190px;
    transform: translate(-759px,-590px);
}
#mv .parts22{ /*コイン*/
    width: 239px;
    transform: translate(-759px,-387px);
}
#mv .parts23{ /*奥のマシン*/
    width: 536px;
    transform: translate(-1302px,-578px);
}
#mv .parts24{ /*奥のマシン*/
    width: 644px;
    transform: translate(-1286px,-303px);
}
#mv .parts25{ /*フルーツのコンベヤ*/
    width: 415px;
    transform: translate(-536px,-457px);
}
#mv .parts26{ /*スロットマシン*/
    width: 526px;
    transform: translate(-863px,-344px);
}
#mv .parts27{ /*コイン吸収マシン*/
    width: 534px;
    transform: translate(-1297px,-89px);
}
#mv .parts35{ /*コイン*/
    width: 239px;
    transform: translate(126px,-654px);
}
#mv .parts28{ /*ポーカーのコイン*/
    width: 182px;
    transform: translate(-271px,-586px);
}
#mv .parts29{ /*アームと箱とハート*/
    width: 385px;
    transform: translate(-758px,-589px);
}
#mv .parts30{ /*ハート*/
    width: 163px;
    transform: translate(875px,401px);
}
#mv .parts31{ /*歯車、箱、ハート*/
    width: 393px;
    transform: translate(227px,369px);
}
#mv .parts32{ /*脳汁マシン*/
    width: 211px;
    transform: translate(-33px,380px);
}
#mv .parts33{ /*777*/
    width: 298px;
    transform: translate(-323px,364px);
}
#mv .parts34{ /*コイン*/
    width: 239px;
    transform: translate(-509px,442px);
}

/*--- mv animation delay --*/

#mv .parts25 img{ animation-delay: 0.5s !important;}

#mv .parts03 img{ animation-delay: 0.75s !important;}

#mv .parts26 img{ animation-delay: 1s !important;}
#mv .parts04 img{ animation-delay: 1s !important;}
#mv .parts06 img{ animation-delay: 1s !important;}

#mv .parts20 img{ animation-delay: 1.25s !important;}
#mv .parts02 .bounce{ display: block; animation-delay: 1.25s !important;}

#mv .parts27 img{ animation-delay: 1.5s !important;}
#mv .parts05 img{ animation-delay: 1.5s !important;}

#mv .parts19 img{ animation-delay: 1.75s !important;}

#mv .parts22 img{ animation-delay: 2s !important;}
#mv .parts07 img{ animation-delay: 2s !important;}
#mv .parts10 img{ animation-delay: 2s !important;}

#mv .parts21 img{ animation-delay: 2.25s !important;}
#mv .parts24 img{ animation-delay: 2.25s !important;}
#mv .parts08 img{ animation-delay: 2.25s !important;}
#mv .parts11 img{ animation-delay: 2.25s !important;}

#mv .parts23 img{ animation-delay: 2.5s !important;}
#mv .parts09 img{ animation-delay: 2.5s !important;}
#mv .parts12 img{ animation-delay: 2.5s !important;}

#mv .parts30 img{ animation-delay: 2.6s !important;}
#mv .parts35 img{ animation-delay: 2.6s !important;}
#mv .parts31 img{ animation-delay: 2.7s !important;}
#mv .parts32 img{ animation-delay: 2.8s !important;}
#mv .parts33 img{ animation-delay: 2.9s !important;}
#mv .parts34 img{ animation-delay: 2.75s !important;}

#mv .parts17 img{ animation-delay: 3s !important;}
#mv .parts13 img{ animation-delay: 3s !important;}

#mv .parts14 img{ animation-delay: 3.1s !important;}
#mv .parts15 img{ animation-delay: 3.1s !important;}
#mv .parts16 img{ animation-delay: 3.2s !important;}
#mv .parts18 img{ animation-delay: 3.2s !important;}
#mv .parts28 img{ animation-delay: 3.2s !important;}
#mv .parts29 img{ animation-delay: 3.2s !important;}

/*--- message --*/

#contents #message {
    position: relative;
    padding: 145px 0 45px 0;
}
.belt{
    width: 100%;
    height: 106px;
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
    animation: moveBelt 1.5s linear infinite;
    background: url("../images/common/bg_conveyor_a.png") center calc(100% - 31px) / 78px repeat-x;
}
.belt::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 31px;
    width: 100%;
    background: url("../images/common/bg_conveyor_b.png") center top / 78px repeat-x;
}
#interview .belt::after{
    background: url("../images/common/bg_conveyor_d.png") center top / 78px repeat-x;
}

#message .title{
    width: 545px;
    margin: 0 auto 60px;
}
#message .messageText{
    text-align: center;
    color: #00893e;
    font-size: 16px;
    line-height: 2.2;
    font-weight: bold;
    margin-bottom: 60px;
}
#message .deco01{
    width: 112px;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
}

#message .marqueeMask{
  overflow: hidden;
}

#message .track{
  display: flex; 
  align-items: baseline;
    gap: 20px;
  width: max-content;
  animation: scroll var(--speed, 60s) linear infinite;
  will-change: transform;
}

#message .beltConveyor{
  display: flex;
  align-items: baseline;
  gap: 10px;
}

@keyframes scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } 
}

#message .deco02{
    width: 416px;
    right: -230px;
    bottom: 80px;
    z-index: -1;
}
#message .deco03{
    width: 185px;
}
#message .deco04,
#message .deco05{
    width: 567px;
}


/*--- common --*/

.head09{
    font-size: 36px;
    font-weight: 900;
    line-height: 1.4;
    display: block;
    position: relative;
    padding-left: 1.3em;
    margin-bottom: 20px;
}
.head09.green{ color: #07a587;}
.head09.purple{ color: #8f5ae1;}
.head09.pink{ color: #ff6695;}
.head09.white{ color: #fff;}
.head09.brown{ color: #42210b;}

.head09::before{
    content: "";
    display: block;
    width: 0.9em;
    height: 0.9em;
    background: url("../images/top/pachinko_ball.svg") center center / contain no-repeat;
    position: absolute;
    left: 0;
    top: .35em;
}

#contents .text{
    letter-spacing: 0.03em;
    font-weight: bold;
    line-height: 1.75;
}

#contents .section{
    position: relative;
}
#contents .sectionTitle{
    width: 900px;
    position: absolute;
    top: -224px;
    right: 47%;
    pointer-events: none;
}
#contents .contentsList ul{
    display: flex;
    flex-direction: column;
}
#contents .contentsList li{
    margin-bottom: 40px;
}
#contents .contentsList li:last-child{
    margin-bottom: 0;
}
#contents .contentsList.pattern01 li a{
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
    border: 2px solid #000;
}
#contents .contentsList.pattern01 li a .info{
    width: 50%;
    padding: 60px 40px 50px;
}
#contents .contentsList li a .info .title{
    color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
#contents .contentsList li a .info > *{
    position: relative;
    z-index: 2;
}
#interview .interviewList ul li .btn01,
#contents .contentsList li a .info .btn01{
    display: table;
    width: fit-content;
    min-width: 160px;
}
#interview .interviewList ul li .btn01 .btn01Inr,
#contents .contentsList li a .info .btn01 .btn01Inr{
    justify-content: space-between;
}
#contents .contentsList li a .info .title .jp{
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 5px;
}
#contents .contentsList li a .info .title .small{
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.5;
}
#contents .contentsList.pattern01 li a .image{
    width: 50%;
    border-radius: 0 30px 30px 0;
}
#contents .contentsList li.purple a{
    background: #8f5ae1;
}
#contents .contentsList li.purple a .image{
    background: #adb7e8;
}
#contents .contentsList li.green a{
    background: #00a550;
}
#contents .contentsList li.green a .image{
    background: #66dd9f;
}
#contents .contentsList li.kirin a{
    background: url("../images/top/kirin_01.jpg") center center / 576px repeat;
}


#contents .contentsList.pattern02 ul{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
#contents .contentsList.pattern02 li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#contents .contentsList.pattern02 li a .image{
    max-width: 300px;
    margin: 0 auto 10px;
}
#contents .contentsList.pattern02 li a .info .title{
    color: #000;
    text-align: center;
}

#contents .aliyan{
    width: 250px;
}

/*--- about --*/

#contents #about {
    overflow: hidden;
    padding-bottom: 0;
    margin-top: -1px;
}
#about .inner,
#special .inner{
    padding: 120px 0;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
#about .inner::before,
#special .inner::before{
    content: "";
    display: block;
    background: #fff;
    height: calc(100% - 160px - 160px);
    width: 100vw;
    border-radius: 50px 0 0 50px;
    position: absolute;
    left: 60px;
    top: 160px;
    z-index: -1;
}
#about .inner > .info,
#special .inner > .info{
    width: 50%;
    padding: 0 80px 0 120px;
    position: relative;
    z-index: 1;
}
#about .inner > .contentsList,
#special .inner > .contentsList{
    width: 50%;
}
#contents #about .contentsList li a .image{
    position: relative;
    z-index: 1;
    
}
#contents #about .contentsList li a .image img{
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 126.66%;
    display: block;
}


/*--- work --*/

#contents #work {
    padding-top: 230px;
    margin-top: -60px;
}
#work .deco01{
    left: calc(50% - 300px);
    top: -210px;
}
#work .inner,
#environment .inner,
#information .inner{
    padding: 80px 0;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    color: #fff;
}
#work .inner::before,
#environment .inner::before,
#information .inner::before{
    content: "";
    display: block;
    background: #00a550;
    height: 100%;
    width: 100vw;
    border-radius: 0 50px 50px 0;
    position: absolute;
    right: 150px;
    top: 0;
    z-index: -1;
}
#work .inner > .info{
    width: 40%;
}

#work .inner .contentsList{
    width: 55%;
}

#work .inner .contentsList li .image{
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/*--- interview --*/

#contents #interview {
    margin-top: -100px;
    padding-bottom: 18px;
}
#interview .inner {
    padding-top: 80px;
}
#interview .inner > .info{
    max-width: 960px;
    margin: 0 auto 60px;
    padding-left: 400px;
}
#interview .interviewList.swiper{
    overflow: visible;
}
#interview .interviewList ul{
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    width: 85%;
    flex-direction: row;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#interview .interviewList ul li{
    width: 23%;
}
#interview .interviewList ul li .image{
    max-width: 320px;
    position: relative;
}
#interview .interviewList ul li .image .deco{
    width: 47%;
    right: -20px;
    top: 20px;
}
#interview .deco01.aliyan {
    right: 53%;
    top: -220px;
}
#interview .interviewList ul li .btn01{
    margin: 10px auto 0;
}
#interview .interviewList ul li .department{
    display: table;
    padding: 6px 10px;
    border-radius: 50px;
    border: 2px solid #000;
    margin: 0 auto;
    line-height: 1;
    font-weight: bold;
    font-size: 12px;
    transform: translate(0,-50%);
}
#interview .interviewList ul li:nth-child(1) .department{ background: #ffa2b5;}
#interview .interviewList ul li:nth-child(2) .department{ background: #ffbb33;}
#interview .interviewList ul li:nth-child(3) .department{ background: #adb7e8;}
#interview .interviewList ul li:nth-child(4) .department{ background: #66dd9f;}

#interview .interviewList ul li .position{
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
    min-height: 4.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    margin: -3px auto 2px;
}
#interview .interviewList ul li .name{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
#interview .interviewList ul li .year{
    font-size: 12px;
    opacity: 0.5;
    text-align: center;
    font-weight: bold;
}
#interview .interviewList ul li::after{
    content: "";
    display: block;
    width: 100%;
    padding-top: 22.1%;
    background: #000;
    border-radius: 100%;
    transform: translateY(-20px);
    z-index: -1;
    position: relative;
}
#interview .deco02{
    left: calc(50% + 200px);
    bottom: 30px;
    z-index: -2;
}

#interview .swiper-button-next::after,
#interview .swiper-button-prev::after{
    display: none;
}


/*--- environment --*/
#environment{
    margin-top: 190px;
    position: relative;
    z-index: 2;
}
#contents #environment .sectionTitle{
    top: -290px;
}
#environment .inner,
#information .inner{
    flex-direction: column;
    padding: 100px 0 120px;
}
#environment .inner::before{
    right: 10%;
}
#environment .inner > .info,
#information .inner > .info{
    width: 100%;
    padding: 0 20% 0 30%;
}
#environment .inner .contentsList,
#information .inner .contentsList{
    width: 100%;
    justify-content: space-between;
}
#environment .deco01,
#information .deco01{
    top: -20px;
    left: calc(50% + 350px)
}
#environment .contentsList li,
#information .contentsList li{
    width: 31%;
    margin-bottom: 0;
}
#environment .contentsList li a .info .btn01,
#information .contentsList li a .info .btn01{
    margin-left: auto;
    margin-right: auto;
}
#environment .contentsList li a .title{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*--- special --*/

#contents #special {
    padding: 0;
    position: relative;
    z-index: 2;
}
#contents #special .sectionTitle{
    top: -330px;
}
#special .inner{
    color: #42210b;
    padding: 90px 0;
}
#special .inner::before{
    background: url("../images/top/kirin_02.jpg") center center / 868px auto repeat;
}


#special .head09{
    white-space: nowrap;
}

#contents #special .contentsList li a{
    align-items: stretch;
    overflow: hidden;
    border-radius: 30px;
}
#special .deco01{
    right: calc(50% + 30px);
    bottom: -50px;
}
#special .inner .head09 .nowrap br{
    display: none;
}
#special .inner .contentsList li a .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#special .inner .contentsList li a .image{
    min-height: 300px;
}
#special .inner .contentsList li a .image .inr{
    width: 100%;
    height: 100%;
}
#special .inner .contentsList li:nth-child(1) a .image .inr{
    background: url("../images/top/img_special_01.jpg") center center / cover no-repeat;
}
#special .inner .contentsList li:nth-child(2) a .image .inr{
    background: url("../images/top/img_special_02.jpg") center center / cover no-repeat;
}

/*--- special --*/
#contents #information {
    z-index: 2;
    padding-top: 265px;
    padding-bottom: 60px;
}
#contents #information .sectionTitle{
    top: -150px;
}
#information .inner{
    color: #000;
    padding-bottom: 150px;
}
#information .inner::before{
    background: #fff;
    right: 10%;
}
#information .deco01{
    top: 110px;
}
#information .inner .contentsList{
    margin-top: 60px;
}
#information .inner .contentsList ul{
    max-width: 960px;
}
#information .inner .contentsList li{
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    border: 2px solid #000;
    padding: 10px;
    width: 32%;
    margin-bottom: 0;
    position: relative;
}
#information .inner .contentsList li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    border: 2px solid #000;
    width: 100%;
    height: 100%;
    position: relative;
}
#information .inner .contentsList li a .image{
    max-width: 100px;
    margin: 0 auto;
}
#information .inner .contentsList li a .btn01{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,50%);
}

#information .inner .contentsList li:nth-child(1){    background: #07a587;}
#information .inner .contentsList li:nth-child(1) a{    background: #66dd9f;}
#information .inner .contentsList li:nth-child(2){    background: #8f5ae1;}
#information .inner .contentsList li:nth-child(2) a{    background: #bdc5ed;}
#information .inner .contentsList li:nth-child(3){    background: #ff6695;}
#information .inner .contentsList li:nth-child(3) a{    background: #ffb5c4;}


/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/



/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
    
    #contents #about .contentsList li a:hover .image img,
    #contents .contentsList.pattern02 li a:hover .image,
    #interview .interviewList ul li a:hover .image,
    #contents .contentsList.pattern02 li a:hover .image,
    #information .inner .contentsList li a:hover .image{
        animation: bounce 0.8s ease forwards;
    }
    
    #special .inner .contentsList li a .image{
        overflow: hidden;
    }
    #special .inner .contentsList li a .image .inr{
        transition: .4s;
    }
    #special .inner .contentsList li a:hover .image .inr{
        transform: scale(1.1);
    }
    
}



    
/*----------------------------------------------------
	☆UNDER 1300
----------------------------------------------------*/

@media screen and (max-width:1300px) {
    
    
    /*--- common --*/
    #contents .sectionTitle {
        right: auto;
        left: -200px;
    }
    
    /*--- about --*/
    #contents #about .contentsList li a .image img{
        bottom: auto;
    }
    
    /*--- special --*/
    #special .head09{
        white-space: normal;
    }
    
    /*--- environment --*/
    #environment .deco01,
    #information .deco01 {
        top: -20px;
        left: auto;
        right: 8%;
    }
    
}
/*----------------------------------------------------
	☆UNDER 1200
----------------------------------------------------*/

@media screen and (max-width:1200px) {
    
    /*--- common --*/
    #contents .aliyan {
        width: 200px;
    }
    
    /*--- about --*/
    #about .inner > .info {
        padding: 0 4% 0 80px;
    }
    #contents .contentsList.pattern01 li a .info {
        width: 50%;
        padding: 50px 30px 40px;
    }
    
    #about .inner::before,
    #special .inner::before{
        left: 0;
    }
    
    /*--- interview --*/
    #interview .inner > .info {
        max-width: 960px;
        margin: 40px auto 40px;
        padding: 0 5vw 0 420px;
    }
    #interview .deco01.aliyan {
        right: auto;
        top: -155px;
        left: 360px;
    }
    
    
}

/*----------------------------------------------------
	☆UNDER 1100
----------------------------------------------------*/

@media screen and (max-width:1100px) {
    
    /*--- mv --*/
    #mv{
        height: 600px;
    }
    #mv .mvInr{
        transform: scale(0.75);
    }
}

/*----------------------------------------------------
	☆UNDER 1000
----------------------------------------------------*/

@media screen and (max-width:1000px) {
    
    #contents .sectionTitle {
        width: 760px;
        top: -200px;
        left: -156px;
    }
    
    /*--- about --*/
    #about .inner,
    #special .inner{
        flex-direction: column;
    }
    #about .inner::before,
    #special .inner::before{
        top: 0;
        height: 100%;
    }
    #about .inner > .info,
    #special .inner > .info{
        width: 100%;
        padding: 0px 0 0 160px;
        margin-bottom: 60px;
        max-width: 600px;
    }
    #about .inner .contentsList,
    #special .inner .contentsList{
        width: 90%;
        padding: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    #contents #about .contentsList li a .image img{
        bottom: 0;
    }
    
    /*--- work --*/
    #work .deco01 {
        left: auto;
        top: -50px;
        right: 7%;
    }
    
    /*--- interview --*/
    #interview .deco01.aliyan {
        top: -177px;
        left: 300px;
    }
    
    /*--- special --*/
    #special .inner .head09 .nowrap br{
        display: inline;
    }
    
}

/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) { 
    
    /*--- mv --*/
    
    #mv{
        height: 70vw;
        min-height: 500px;
    }
    #mv .mvInr{
        transform: scale(0.5625);
    }
    
    /*--- message --*/
    #message .title {
        width: 55%;
        margin: 0 auto 40px;
    }
    #message .deco02 {
        width: 320px;
        right: -150px;
        bottom: 80px;
    }
    #message .deco03{
        width: 150px;
    }
    #message .deco04,
    #message .deco05{
        width: 480px;
    }
    
    /*--- common --*/
    #contents .aliyan {
        width: 160px;
    }
    #contents .sectionTitle {
        width: 640px;
        top: -170px;
        left: -130px;
    }
    .head09 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    #contents .contentsList li a .info .title .jp {
        font-size: 20px;
    }
    
    /*--- about --*/
    #about .inner > .info {
        width: 80%;
        margin-bottom: 40px;
    }
    #contents #about .contentsList li:nth-child(1) a .image img{
        transform: translate(0px, 14%);
    }
    #about .inner::before,
    #special .inner::before{
    }
    #about .inner,
    #special .inner {
        padding: 80px 0;
    }
    
    /*--- work --*/
    #contents #work {
        margin-top: 0;
        padding-top: 80px;
    }
    #contents #work .sectionTitle{
        top: -130px;
    }
    #work .deco01 {
        left: auto;
        top: -100px;
        right: 40px;
    }
    #work .inner,
    #environment .inner,
    #information .inner{
        flex-direction: column;
        padding: 80px 0;
    }
    #work .inner > .info{
        width: 100%;
        padding: 50px 7.5vw 20px 220px;
    }
    #work .inner .contentsList {
        width: 85%;
    }
    #contents #work .contentsList li{
        margin-bottom: 0;
    }
    #work .inner::before,
    #environment .inner::before,
    #information .inner::before{
        right: 0;
    }
    
    /*--- interview --*/
    #contents #interview {
        margin-top: -40px;
    }
    #interview .inner {
        padding-top: 30px;
    }
    #interview .deco01.aliyan {
        top: -137px;
        left: 256px;
    }
    #interview .inner > .info {
        padding: 0 7.5vw 0 340px;
    }
    
    #interview ul.swiper-wrapper{
        width: 100%;
    }
    #interview ul.swiper-wrapper li{
        width: 250px;
    }
    
    #interview .swiper-button-next,
    #interview .swiper-button-prev{
        width: 40px;
        height: 40px;
        position: absolute;
        margin: 0;
        display: block;
        top: var(--swiper-navigation-top-offset, 36%);
    }
    #interview .swiper-button-next{
        left: calc(50% + 190px - 40px);
        background: url("../images/common/next.svg") center center / contain no-repeat;
    }
    #interview .swiper-button-prev{
        left: calc(50% - 190px);
        background: url("../images/common/prev.svg") center center / contain no-repeat;
    }
    
    /*--- environment --*/
    #contents #environment .sectionTitle {
        top: -260px;
    }
    #environment .inner > .info,
    #information .inner > .info {
        width: 100%;
        padding: 0 7.5%;
    }
    #environment .inner .contentsList,
    #information .inner .contentsList{
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /*--- special --*/
    #contents #special .sectionTitle {
        top: -250px;
    }
    #interview .interviewList ul li .btn01,
    #contents .contentsList li a .info .btn01 {
        min-width: 120px;
    }
    #special .inner > .info {
        padding: 20px 0 0 220px;
        margin-bottom: 40px;
    }
    #special .inner .head09 .nowrap br{
        display: none;
    }
    
    #special .inner .contentsList li a .image{
        width: 40%;
        padding-top: 40%;
        min-height: 0;
        position: relative;
    }    
    #special .inner .contentsList li a .image .inr {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    #special .deco01 {
        right: 7%;
        bottom: auto;
        top: -140px;
    }    
    
    /*--- information --*/
    #contents #information {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    #contents #information .sectionTitle {
        top: -60px;
    }
    #information .inner > .info {
        padding: 40px 7.5% 0 300px;
    }
    #information .inner .contentsList li{
        padding: 3px;
    }
    #information .inner .contentsList li a .image {
        max-width: 70px;
    }
}

/*----------------------------------------------------
	☆高さが800px以下の時
----------------------------------------------------*/

@media screen and (max-height:800px) {
    
    /*--- mv --*/

    #mv{
        height: 100vh;
        min-height: 0;
    }
    #mv .mvInr{
        transform: scale(0.75);
    }
    
}

/*----------------------------------------------------
	☆高さが500px以下の時
----------------------------------------------------*/

@media screen and (max-height:500px) {
    
    /*--- mv --*/
    #mv .mvInr{
        transform: scale(0.6);
    }
    
}


/*----------------------------------------------------
	☆UNDER 800
----------------------------------------------------*/

@media screen and (max-width:800px) {
    
    /*--- mv --*/
    #mv{
        margin-top: 14px;
        max-height: 600px;
    }
    #mv .mvInr {
        transform: scale(0.48) translate(1%, 0px);
    }
}

/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    /*--- message --*/
    #contents #message {
        padding: 100px 0 33px 0;
    }
    #message .deco01 {
        width: 70px;
    }
    #message .deco02 {
        width: 200px;
        right: auto;
        bottom: 85px;
        left: calc(50% + 137px);
    }
    #message .deco03{
        width: 96px;
    }
    #message .deco04,
    #message .deco05{
        width: 320px;
    }
    #message .title {
        width: 78%;
        margin: 0 auto 40px;
        max-width: 500px;
    }
    #message .messageText {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 40px;
    }
    
    .belt {
        height: 80px;
        background: url(../images/common/bg_conveyor_a.png) center calc(100% - 21px) / auto 53px repeat-x;
        animation: moveBelt-sp 2s linear infinite;
    }
    .belt::after{
        height: 21px;
        background-size: auto 21px;
    }
    #interview .belt{
        background-size: auto 53px;
    }
    #interview .belt::after{
        height: 21px;
        background-size: auto 21px;
    }
    
    /*--- common --*/
    #contents .sectionTitle {
        width: 350px;
        top: -80px;
        left: -70px;
    }
    .head09 {
        font-size: 22px;
    }
    .btn01 .btn01Inr {
        padding: 10px 11px 8px 18px;
    }
    #contents .aliyan {
        width: 100px;
    }
    #contents .text {
        letter-spacing: 0.01em;
        font-weight: bold;
        line-height: 1.6;
    }
    #contents .contentsList li a .info .title .small{
        font-size: 10px;
    }
    
    #contents .contentsList.pattern01 li:not(:last-child){
        margin-bottom: 10px;
    }
    #contents .contentsList.pattern01 li a{
        border-radius: 18px;
    }
    #contents .contentsList.pattern01 li a .info {
        width: 60%;
        padding: 30px 20px 32px;
    }
    #contents .contentsList li a .info .title .jp {
        font-size: 18px;
        margin-bottom: 2px;
    }
    #contents .contentsList.pattern01 li a .image {
        width: 40%;
        border-radius: 0 18px 18px 0;
    }
    
    /*--- about --*/
    #about .inner,
    #special .inner {
        padding: 60px 0;
    }
    #about .inner > .info {
        margin: 50px 0 30px;
        padding-left: 0;
    }
    #about .inner::before, #special .inner::before {
        border-radius: 30px 0 0 30px;
    }
    #contents #about .contentsList li:nth-child(1) a .image img {
        transform: translate(0px, -50%);
        top: 50%;
    }
    #contents #about .contentsList li:nth-child(2) a .image {
        overflow: hidden;
        border-radius: 0 16px 16px 0;
        background: url("../images/top/img_about_02_sp.jpg") center center / cover no-repeat;
    }
    #contents #about .contentsList li:nth-child(2) a .image img {
        display: none;
    }
    
    /*--- work --*/
    #contents #work {
        padding-top: 60px;
    }
    
    #contents #work .sectionTitle {
        top: -60px;
    }
    #work .deco01 {
        top: -40px;
        right: 30px;
    }
    
    #work .inner,
    #environment .inner,
    #information .inner {
        flex-direction: column;
        padding: 60px 0;
    }
    
    #work .inner::before,
    #environment .inner::before,
    #information .inner::before {
        border-radius: 0 30px 30px 0
    }
    
    #work .inner > .info {
        width: 100%;
        padding: 66px 7.5% 20px;
    }
    #work .inner .contentsList {
        width: 95%;
    }
    #work .inner .contentsList ul{
       flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #contents #environment .inner .contentsList ul li:not(:last-child){
        margin-bottom: 20px;
    }
    #contents #work .inner .contentsList ul li a,
    #contents #environment .inner .contentsList ul li a{
        flex-direction: row;
        justify-content: space-between;
    }
    #contents #work .inner .contentsList ul li .image,
    #contents #environment .inner .contentsList ul li .image{
        width: 48%;
        margin: 0;
    }
    #contents #work .inner .contentsList ul li .info,
    #contents #environment .inner .contentsList ul li .info{
        width: 48%;
    }
    #contents #work .inner .contentsList ul li .info .title,
    #contents #environment .inner .contentsList ul li .info .title{
        text-align: left;
    }
    #work .inner .contentsList ul li:last-child{
        margin-bottom: 0;
    }
    #contents #work .contentsList.pattern02 li a .info .title,
    #contents #environment .contentsList.pattern02 li a .info .title{
        color: #fff;
    }
    #contents #work .contentsList.pattern02 li a .info .btn01,
    #contents #environment .inner .contentsList ul li .info .btn01{
        margin: 0;
    }
    
    /*--- interview --*/
    #contents #interview {
        padding-bottom: 5px;
    }
    #interview .inner > .info {
        padding: 40px 12vw 0;
    }
    #interview .deco01.aliyan {
        top: 36px;
        left: 240px;
    }
    #interview ul.swiper-wrapper li{
        width: 200px;
    }
    #interview .swiper-button-next{
        left: calc(50% + 160px - 40px);
    }
    #interview .swiper-button-prev{
        left: calc(50% - 160px);
    }
    
    
    /*--- environment --*/
    #contents #environment{
        padding-top: 0;
    }    
    
    #contents #environment .sectionTitle {
        top: -230px;
    }
    #environment .deco01, #information .deco01 {
        top: -88px;
        left: auto;
        right: 12%;
    }
    #contents #environment .contentsList.pattern02 ul{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
    #contents #environment .inner .contentsList ul li:not(:last-child){
        margin-bottom: 30px;
    }
    #contents #environment .contentsList.pattern02 ul li{
        width: 100%;
    }
    #contents #environment .inner .contentsList ul li .image{
        width: 40%;
    }
    #contents #environment .inner .contentsList ul li .info{
        width: 56%;
    }
    
    /*--- special --*/
    #contents #special .sectionTitle {
        top: -120px;
    }
    #special .inner::before {
        background-size: 500px auto;
    }
    #special .deco01 {
        right: 7%;
        top: -40px;
    }
    #special .inner > .info {
        padding: 70px 8% 0;
        margin-bottom: 20px;
    }
    #contents #special .contentsList li a {
        border-radius: 18px;
    }   
    #contents #special .contentsList.pattern01 li a .image {
        width: 40%;
        padding-top: 30%;
    }
    #contents #special .contentsList.pattern01 li a .info{
        width: 60%;
        padding-right: 5px;
    }    
    #special .inner .contentsList li:nth-child(2) a .image {
        background: url(../images/top/img_special_02_sp.jpg) center center / cover no-repeat;
    }
    
    #special .inner .contentsList li:nth-child(2) a .image .inr{
        display: none;
    }
    
    /*--- information --*/
    #contents #information {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    #contents #information .sectionTitle{
        top: -40px;
    }
    #information .deco01 {
        top: 90px;
        left: auto;
        right: 12%;
    }
    #information .inner > .info {
        padding: 90px 7.5% 0;
    }
    #information .inner .contentsList ul{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #information .inner .contentsList ul li{
        width: 70%;
    }
    #contents #information .inner .contentsList ul li{
        margin-bottom: 35px;
    }
    #information .inner .contentsList {
        margin-top: 20px;
    }
}

/*----------------------------------------------------
	☆UNDER 500
----------------------------------------------------*/

@media screen and (max-width:500px) {
    
    /*--- mv --*/
    #mv{
        max-height: 500px;
    }
    #mv .mvInr {
        transform: scale(0.38) translate(1%, 0px);
    }
}


/*----------------------------------------------------
	☆UNDER 480
----------------------------------------------------*/

@media screen and (max-width:480px) {
    
    #splash .deco01 {
        width: 85px;
        transform: translate(-56%, -175%);
    }
    
    /*--- mv --*/
    #mv {
        margin-top: 14px;
        height: 100vh;
        max-height: 560px;
        min-height: 400px;
    }
    
    #mv .mvInr {
        transform: scale(0.33) translate(1%, 0px);
    }
    
    #mv .parts13 {
        width: 209px;
        transform: translate(-20px, -870px);
    }
    #mv .parts14 {
        width: 100px;
        transform: translate(-63px, -768px);
    }
    #mv .parts15 {
        width: 130px;
        transform: translate(-190px, -890px);
    }
    #mv .parts27 {
        width: 580px;
        transform: translate(-10px, 340px);
        z-index: 3;
    }
    #mv .parts18 {
        width: 450px;
        transform: translate(-660px, -1140px);
    }
    #mv .parts24 {
        width: 650px;
        transform: translate(-540px, 510px);
        z-index: 2;
    }

}
    
/*----------------------------------------------------
	☆UNDER 400
----------------------------------------------------*/

@media screen and (max-width:400px) {
    
    /*--- special --*/
    #special .inner .contentsList li:nth-child(1) a .image {
        background: url(../images/top/img_special_01_sp.jpg) center center / cover no-repeat;
    }
    #special .inner .contentsList li:nth-child(1) a .image .inr{
        display: none;
    }
}



