
body{
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.6;
    color: #fff;
    background-color: #f8f9fa;


}

p{
    font-size: 14px;
}

.slider{
    margin: 0 10px;
}
.event-header{
    margin: 0;
    width: 100%;
    background-color: #000;
    height: 60px;
    display: flex;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;


}
footer{
    background-color: #000;
    max-width: 450px;
    margin: 0 auto;


}
.even-header-logo{
    margin: 0 15px;
    height: 40px;
}

/* CTA */
.cta{
    display: flex;
    flex-flow: column;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    margin: 20px auto 20px;
    max-width: 450px;
    text-align: center;
    line-height: 1.1;
    
}


.fix-cta{
    width: calc(100% - 40px);
    position:fixed; /*配置設定-fixed指定で追従*/
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-flow: column;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    margin: 0 auto;
    padding: 10px 20px;
    max-width: 450px;
    text-align: center;
    line-height: 1.1;   
    background-color: rgba(0, 0, 0, 0.5);
}

.floating-cta{
	display: none;
}
.floating-cta:hover{
	display: block;
}


/* マイクロCTA */
.microcta{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px auto;
    font-weight: 600;
    font-size: 20px;
}
.microcta-black{
    color: #333;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px auto;
    font-weight: 600;
    font-size: 20px;
}

.microcta-accent{
    background: linear-gradient(#FF2E2E 0%, #C62C2C 100%);    
    color: #fff;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 0 5px;
}

/* CTAボタン部分 */
.cta-button{
    margin: 0;
    background: linear-gradient(160deg, #F8722D 0%, #FF2F2E 100%);    
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px #fff;
}

/* アイコンのスタイル */
.cta-button::before{
  content: '';
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 20px;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 30px;
  background-color: #fff;
}
.cta-button::after{
  content: '';
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 28px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 7px solid transparent;
  border-right: 0 solid transparent;
  border-left: 10px solid #F8722D;
  border-bottom: 7px solid transparent;
  box-sizing: border-box;
}




.cta-animation {
position: absolute;
content: '';
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
transform: skewX(-45deg);
animation: cta-button-wrap 2s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}
@keyframes cta-button-wrap {
0% {
left: -100%;
}
25% {
left: 100%;
}
100% {
left: 100%;
}
}





.es-menjo{
    border: 2px solid #fff;
    margin: 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    position: absolute;
    left: 10px;
    background: linear-gradient(#FF2E2E 0%, #C62C2C 100%);    

}

.cta-text{
    position: relative;
    margin: 10px auto;
    justify-content: center;
    text-align: center;
    font-size: 20px;

}








.event-main{
    max-width: 450px;
    margin: auto;
}


/* ファーストビュー */
.event-fv{
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    padding: 10px 20px;

    background-image: url('../img/bg.png');
    background-size: auto 100%;
    background-position: center;

}


.event-fv-title{
    font-weight: 900;
    margin: 0;

}

.event-fv-title-microcopy{
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
}

.event-fv-title-accent{
    font-size: 25px;
    background: linear-gradient(#FF2E2E 0%, #C62C2C 100%);    

    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 20px;
    border-radius: 5px;

}

.event-fv-title-maincopy{
    font-size: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.event-fv-area{
    color: #000;
    font-size: 18px;
    background-color: #fff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin: 0;
}

.event-fv-copy{
    font-size: 18px;
    margin-top: 15px;
    font-weight: 600;
    line-height: 1.5;
}





/* ファーストビューリスト */
.event-fv-grid-parent{
    width:100%;
    height:auto;
    margin: auto;

    max-width: 450px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.event-fv-grid-child{
    width: 49%;
    background: linear-gradient(-20deg, #240342ee 0%, #181e73ee 100%);    
    /* border:1px solid #ccc;装飾用 */
    /* box-sizing:border-box;装飾用 */

    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 5px;
    height: 50px;
    margin-bottom: 5px;
}


.list-wrap{
    width: 100%;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.list-icon-wrap{
    display: flex;
    width: 40px;
}

.list-icon{
    height: 100%;
}


.event-fv-grid-child-text-1{
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    text-align: left;
}
.event-fv-grid-child-text-2{
    
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    text-align: left;
}




.company-logo{
    width: 100%;
}

.event-main h2{
    text-align: center;

}

.companylist{
    background-color: #000;
    padding: 40px 20px;
}
.about{
    background-color: #212121;
    padding: 40px 20px;
}

h2{
    font-size: 24px;
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
    border-bottom:2px solid #FF2E2E;
    /* line-height: 1.4; */


}

.section-border{
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 5px;
}

.img{
    width: 100%;
}

.text-accent{
    color: #FF0;
    font-weight: 600;
}

.recommend{
    background-image: url('../img/bg-white.png');
    /* background-attachment: fixed; */
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
}

.recommend h2{
    color: #333;
}

.fukidashi-01{
    background-color: #261834;
    padding: 10px 20px;
    border-radius: 5px;
}
.fukidashi-01 p{
    margin: 0;
    text-align: center;
    font-size: 18px;
}

.fukidashi-02{
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.fukidashi-02 p{
    color: #333;
    margin: 0;
}

.osusume-img{
    width: 60px;
    height: 60px;
    margin: 0 20px -25px auto;

}

.osusume-img img{
    width: 100%;
}
.osusume-img-left{
    width: 60px;
    height: 60px;
    margin: 0 0 -25px 20px;

}
.osusume-img-left img{
    width: 100%;
}
.triangle {
    margin: -1px auto -5px;
    background: #261834;
    height: calc(50px / 2);
    width: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}



/* 参加特典 */
.offer{
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    background: linear-gradient(#111 0%, #333 100%);    

}
.offer-accent{
    font-size: 24px;
    background: linear-gradient(#FF2E2E 0%, #C62C2C 100%);    

    display: flex;
    flex-flow: column;
    margin-bottom: 0;
    padding: 2px 20px;
    border-radius: 5px;
}

.offer-wrap{
    background: linear-gradient(160deg, #151A3E 0%, #261834 100%);
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.offer h3{
    font-size: 20px;
    text-align: center;
    margin: 0;
}
.offer-accent-h3{
    font-size: 20px;
    background: linear-gradient(#FF2E2E 0%, #C62C2C 100%);    

    display: flex;
    flex-flow: column;
    margin-bottom: 0;
    padding: 2px 20px;
    border-radius: 5px;
}
.offer-wrap p{
    margin: 0;
}
.offer-img{
    width: 100%;
    margin: 15px auto;
}


/* 参加者の声 */
.review{
    padding: 40px 20px;
    background-color: rgba(50, 50, 100);
}
.review-wrap{
    color: #000;
    background-color: #fff;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;

}
.review-img-wrap{
    width: 400px;
    margin-right: 10px;

}
.review-img{
    width: 100%;
}
.review-wrap p{
    margin: 0;
}

/* イベントスケジュール */
.schedule{
    padding: 40px 20px;
    background: linear-gradient(#000 0%, #333 100%);    
}
.schedule-wrap{
    background: linear-gradient(160deg, #3E79B3ee 0%, #9C3E99cc 100%);
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.schedule-wrap2{
    margin-bottom: 20px;
}
.schedule-wrap2 p{
    font-size: 12px;
    margin: 5px 0;
}


.schedule-wrap p{
    margin: 0;
}


.schedule-img{
    width: 100%;
    margin: 5px auto;
}
.schedule-time{
    margin-right: 20px !important;
}
.schedule-headline{
    font-size: 18px;
    border-bottom: #fff 2px solid;
    margin-bottom: 5px;
}


/* ご参加までの流れ */
.how-to-apply{
    padding: 40px 20px;
    background: linear-gradient(160deg, #151A3E 0%, #261834 100%);
    
}
.how-to-apply h3{
    font-size: 22px;
    background-color: #fff;
    color: #333;

    display: flex;
    flex-flow: column;
    margin-bottom: 20px;
    padding: 2px 20px;
    border-radius: 5px;
}
.how-to-apply p{
    margin: 0;
}
.triangle-white {
    margin: 20px auto;
    background: #fff;
    height: calc(25px / 2);
    width: 25px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* アクセス */
.access{
    padding: 40px 20px;
    background-color: #212121;    
}
.access-route{
    font-size: 10px;
}
/* よくある質問 */
.faq{
    padding: 40px 20px;
    background-color: #000;    
}

.faq-q{
    background-color: #2D2D2D;
    padding: 20px 40px 20px 20px;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;

    &:before {
      position: absolute;
      content: "";
      display: block;
      width: 15px;
      height: 2px;
      background-color: #fff;
      right: 15px;
      top: 50%;
      transform: translate(0, -50%);
    }

    &:after {
      position: absolute;
      content: "";
      display: block;
      width: 15px;
      height: 2px;
      background-color: #fff;
      right: 15px;
      top: 50%;
      transform: translate(0, -50%) rotate(90deg);
    }

}
.faq-q.active {
    &:after {
        display: none;
    }
}
.faq-a{
    background-color: #575757;
    padding: 10px 20px 20px 20px;
    margin: 0 0 10px 0;
    display: none;
    font-size: 12px;
}


/* フッター */
.footer{
    height: 60px;

}

.footer-logo{
    height: 40px;
    display: flex;
    margin: 0 auto;

}
.footer-copyright{
    font-size: 8px;
    font-weight: 200;
    text-align: center;
    margin: 0;
}





#area {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 9999;

}

#area.active {
    transform: translateX(0);
}

#area .content-wrap-head {
    background-color: #000;
    padding: 40px 20px 20px;
    max-width: 400px;
    margin: 0 auto;
}

#area .content-wrap {
    color: white;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}


#area .content {
    background-color: #fff;
    padding: 20px;
    text-decoration: none;
    border-radius: 5px;

}


#area a{
    margin: 0;
    color: #333;
    font-weight: 600;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;

}
/* CTAボタン部分 */
.area-button{
    margin: 0;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px #888;
}

/* アイコンのスタイル */
.area-button::before{
  content: '';
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 20px;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 30px;
    box-shadow: 0 1px 5px #888;

}
.area-button::after{
  content: '';
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 29px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 7px solid transparent;
  border-right: 0 solid transparent;
  border-left: 10px solid #FF2E2E;
  border-bottom: 7px solid transparent;
  box-sizing: border-box;
}

.area-text-01{
    border-left: #138dff solid 4px;
    padding-left: 15px;
}
.area-text-02{
    border-left: rgb(255, 124, 124) solid 4px;
    padding-left: 15px;
}

#closeBtn{
    background-color: #fff;
    border: none;
    outline: none;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 0 2px 5px #888;
    color: #000;

}