@charset "utf-8";

/********************　SP DESIGN DARIUS　********************/
.pc {
    display: none !important;
}
.sp {
    display: block !important;
}
@media screen and (min-width:750px){
 .pc {
    display: block !important;
 }
.sp {
    display: none !important;
}
}
a img:hover {
    opacity: 0.6;filter: alpha(opacity=60);
    -webkit-transition: 0.6s;transition:0.6s;
}
.clearfix:after {
    background: #ffffff;
    content: " ";
    display: block;
    clear: both;
}

html {
    font-size: 62.5%;
}
body {
    margin: 0;
    font-family: 'Roboto Condensed', Helvetica, Arial, 'Noto Sans JP', sans-serif;
    margin-bottom: 0 !important;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.outer {
    background: #000;
}
.wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

/********************　cta　********************/
.cta {
    position: relative;
    background: #000;
    text-align: center;
}
.cta img {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    animation: 3s ctamotion infinite;
}
@keyframes ctamotion {
    0%, 100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(10px);
    }
}

/********************　slider　********************/
#producers {
    position: relative;
}

#producers .slider_01 {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 8.5%;
}
.slider_01 .slider img {
    width: 90% !important;
    margin: 0 auto;
}
.prev.slick-arrow {
    position: absolute;
    width: 10%;
    left: 5%;
    top: 15%;
    z-index: 1;
}
.next.slick-arrow {
    position: absolute;
    width: 10%;
    right: 5%;
    top: 15%;
    z-index: 1;
}
.slick-slide {
    height: auto !important;
    outline: none;
}

/********************　youtube video　********************/
#project {
    position: relative;
}
.video1 {
    position: absolute;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    top: 87.5%;
}
.video2 {
    position: absolute;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    top: 92%;
}
.video1 iframe,
.video2 iframe {
    width: 100%;
}
@media all and (min-width:0px) and (max-width:749px) {
    .video1 iframe,
    .video2 iframe {
        height: 40vw;
    }
}

/********************　動画　********************/
.interactive {
    width: 100%;
    padding: 32px 0 32px;
}
.frame {
    width: 90%;
    margin: 0px auto 20px;
    padding: 8px;
}
.video {
    background: #ffffff;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.video iframe {
    background: #ffffff;
    position:absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/********************　step　********************/
#step-tab {
    position: relative;
}
.step_tab {
    position: absolute;
    top: 0.2%;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 5.5%;
    box-sizing: border-box;
}
.step_tab li {
    display: block;
    width: 49%;
    cursor: pointer;
}
.step_tab li .tab-on {
    display: none;
}

.step_tab li .tab-off {
    display: block;
}

.step_tab li.on .tab-on {
    display: block;
}

.step_tab li.on .tab-off {
    display: none;
}
.step_cont li {
    display: none;
}
.step_cont li.on {
    display: block;
}

/********************　floating　********************/
.floating {
    width: 130px;
    position: fixed;
    bottom: 1.4%;
    right: 6.2%;
    z-index: 15;
}

/********************　footer NieR　********************/
footer {
    background-color: #000;
    text-align: center;
    margin: 0 auto;
    padding: 30px 0 150px;
    color: #fff;
    font-size: 14px;
    line-height: 2;
}
@media screen and (max-width:750px) {
 footer {
    font-size: 12px;
}
}

ul.footer li {
    display: inline;
    text-align: center;
}
footer a {
    color: #fff;
    line-height: 5;
    text-decoration: none;
    padding: 5px 10px;
}
@media screen and (max-width:750px) {
footer a {
    line-height: 3.5;
}
}

footer a:hover {
    background: #fff;
    padding: 5px 10px;
}
footer span {
    font-size: 10px;
    line-height: 5;
}
@media screen and (max-width:750px) {
footer span {
    line-height: 3.5;
}
}

/* Q&A toggle */
.qa_list {
    color: #fff;
    margin: 0 6% 10%;
}
.qa_list li {
    list-style-type: none;
}
.qa_list li + li {
    margin-top: 10%;
}
.qa_item {
    font-size: 14px;
    line-height: 1.5;
}
.qa_item > dt {
    position: relative;
    padding: 0 10% 3% 7%;
    margin-bottom: 3%;
    font-weight: bold;
    color: #01ffff;
    border-bottom: 1px solid #01ffff;
    box-sizing: border-box;
    cursor: pointer;
}
.qa_item > dt::before {
    content: 'Q';
    position: absolute;
    top: -6%;
    left: 0;
    font-size: 18px;
}
.qa_item > dt:after {
    content: '';
    width: 10px;
    height: 10px;
    border-left: 3px solid #01ffff;
    border-bottom: 3px solid #01ffff;
    transform: rotate(-45deg);
    transform-origin: 25% 65%;
    transition: all .5s;
    position: absolute;
    top: 0;
    bottom: 20%;
    right: 2%;
    margin: auto;
}
.qa_item.is-active > dt:after {
    transform: rotate(135deg);
}
.qa_item > dt span {
    display: inline-block;
}
.qa_item > dd {
    display: none;
    color: #fff;
}
.qa_item_ans {
    position: relative;
    padding-left: 7%;
}
.qa_item_ans:before {
    content: 'A';
    position: absolute;
    top: -4px;
    left: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff3cff;
}
.qa_item_adtype {
    margin: 4% 0;
}
.qa_item_adtype > dt {
    font-weight: bold;
    color: #ff3cff;
}
.qa_item_adtype > dd {
    color: #fff;
}
.qa_note {
    margin-top: 4%;
    padding-left: 1em;
}
.qa_item_adtype .qa_note {
    margin-top: 0;
}
.qa_note li {
    text-indent:-1em;
}
.qa_note li + li {
    margin-top: 2%;
}

@media screen and (min-width:750px){
    .qa_list {
        margin: 0 4%;
    }
    .qa_item {
        font-size: 24px;
    }
    .qa_item > dt {
        padding-left: 5%;
        padding-bottom: 2%;
        margin-bottom: 2%;
    }
    .qa_item > dt:after {
        top: -30%;
    }
    .qa_item > dt::before {
        font-size: 28px;
    }
    .qa_item_ans {
        padding-left: 5%;
    }
    .qa_item_ans:before {
        font-size: 28px;
    }
}

/* recrui */
#recruitment {
    position: relative;
}
.recruit_list {
    position: relative;
    color: #fff;
    margin: 0 6% 10%;
}
.recruit_list li {
    list-style-type: none;
}
.recruit_item {
    font-size: 14px;
    line-height: 1.5;
}
.recruit_item + .recruit_item {
    margin-top: 10%;
}
.recruit_item dt {
    margin-bottom: 4%;
    padding: 2% 0;
    color: #a0ff46;
    border: 1px solid #a0ff46;
    font-weight: bold;
    text-align: center;
}
.recruit_item dd + dd {
    margin-top: 6%;
}
.recruit_note {
    padding-left: 1em;
}
.recruit_note li {
    text-indent:-1em;
}
.recruit_note li + li {
    margin-top: 2%;
}

.recruit_list.is-hide {
    height: 330px;
    overflow: hidden;
}
.recruit_list.is-hide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 15%, rgba(0,0,0,0) 60%);
}
.recruit_more {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    display: block;
    width: 130px;
    height: 36px;
    margin: 0 auto;
    padding-right: 15px;
    padding-top: 9px;
    box-sizing: border-box;
    color: #a0ff46;
    border: 2px solid #a0ff46;
    border-radius: 18px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease-out;
}
.recruit_more:after {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid #a0ff46;
    border-bottom: 2px solid #a0ff46;
    transform: rotate(-45deg);
    transform-origin: 25% 65%;
    transition: all .5s;
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 15px;
    margin: auto;
}
.recruit_more:hover {
    opacity: 0.6;
}
@media screen and (min-width:750px){
    .recruit_list {
        margin: 0 4%;
    }
    .recruit_list.is-hide {
        height: 600px;
    }
    .recruit_item {
        font-size: 24px;
    }
    .recruit_more {
        width: 250px;
        height: 60px;
        padding-top: 14px;
        font-size: 28px;
        border-radius: 30px;
        padding-right: 30px;
    }
    .recruit_more:after {
        width: 12px;
        height: 12px;
        border-left: 3px solid #a0ff46;
        border-bottom: 3px solid #a0ff46;
        right: 30px;
    }
}

/* check */

.checklist-main {
    position: relative;
    text-align: center;
}

    .checklist-container {
    top: -40px;
    left: 6%;
    position: absolute;
    padding: 0px;
    text-align: left;
    max-width: 100%;
    height: auto;
    }
    @media screen and (max-width: 750px) {
	.checklist-container {
        top: -26px;
        left: 0%;
        padding: 10px 20px;
        max-width: 100%;
	}
}


    .checklist-container p {
    color: #ffffff;
    font-size: 30px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin-top: 10px;
    text-align: center;
    }
    @media screen and (max-width: 750px) {
	.checklist-container p  {
        font-size: 18px;
	}
}


.ECM_CheckboxInput {
    margin: 0px 0;
    padding: 9px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #f8050500; /* 初期背景色 */
    border-radius: 10px;
    }
    @media screen and (max-width: 750px) {
	.ECM_CheckboxInput {
        margin: 5px 0;
        padding: 0px 9px;
	}
}

    .ECM_CheckboxInput-Input {
    margin: 0;
    width: 0;
    opacity: 0;
    }
    .ECM_CheckboxInput:hover {
    background: rgba(234, 255, 0, 0.371) !important; /* マウスオーバー時の背景色 */
    }
    .ECM_CheckboxInput-Input:focus + .ECM_CheckboxInput-DummyInput {
    border: dashed 3px #333333;
    }
    .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
    background: #c4ff40; /* チェック時の背景色 */
    }

    .ECM_CheckboxInput-Input + .ECM_CheckboxInput-DummyInput::before,
    .ECM_CheckboxInput-Input + .ECM_CheckboxInput-DummyInput::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 2px;
    background: #ffffff; /* チェック前のチェックマークの色 */
    }

    .ECM_CheckboxInput-Input + .ECM_CheckboxInput-DummyInput::before {
    top: 56%;
    left: 50%;
    width: 40%;
    height: 4px;
    transform: translate(-100%, -50%) rotateZ(-130deg);
    }
    .ECM_CheckboxInput-Input + .ECM_CheckboxInput-DummyInput::after {
    top: 50%;
    left: 60%;
    width: 60%;
    height: 4px;
    transform: translate(-50%, -50%) rotateZ(-45deg);
    }
    .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before,
    .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
    background: #000000; /* チェック時のチェックマークの色 */
    }
    .ECM_CheckboxInput-DummyInput {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
    height: 60px;
    border: solid 2px transparent;
    background: #747474;
    border-radius: 50%;
    }
    @media screen and (max-width: 750px) {
        .ECM_CheckboxInput-DummyInput{
            width: 30px;
            height: 30px;
        }
    }


    .ECM_CheckboxInput-LabelText {
    color: #ffffff;
    margin-left: 10px;
    display: block;
    font-size: 38px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    }

    @media screen and (max-width: 750px) {
	.ECM_CheckboxInput-LabelText {
        margin-left: 6px;
        display: block;
        font-size: 21px;
        font-weight: 900;
	}
}

/*solo_ctaの設定*/

.solo_cta_btn {
    position: absolute;
    bottom: 1%;
    left: 0%;
    /* animation: updown 1.5s linear infinite; */
    z-index: 11;
    width: 100%;
    /* margin-bottom: 50px; */
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}

@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }

@media screen and (min-width: 375px) and (max-width: 750px) {
    .solo_cta_btn {
        left: 0%;
        width: 100%;
        bottom: 0%;
    }
}
.solo_cta__wrap {
    position: relative;
}
.solo_cta_btn img {
    display: table;
}
