@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');


/* base ******************************************************************************/

body {
    position: relative;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #151515;
    font-family: 'Abel', Arial, "游ゴシック Medium", "Yu Gothic Medium", YuGothicM, 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: break-word;
    background-color:#fff;
}


.container {
width: 100%;
position:relative;
background: linear-gradient(90deg, #0237a2, #9b26e8);
}


.container-fluid {
max-width: 1200px;
margin: 0 auto;
padding:0 !important;
background:transparent;
}

.container-fluid a{
color:#f4593f;
}

#social_bkm_wrap_top {
margin-bottom: 0;
height: auto;
border: none;
}



/* header ******************************************************************************/



@keyframes slide{
0% {
width:0;
}
100% {
width:100%;
}
}



.event-header{
width:100%;
height:1000px;
padding:0;
position:relative;
}

.event-header::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:url(/info/event/security/202502/media/img_kv.jpg) center center no-repeat;
animation: fade-expansion 10s linear 0s forwards;
}

.event-header::after{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
}


@keyframes fade-expansion{
0% {
opacity: 1;
transform:scale(1,1);
}

100% {
opacity: 0.8;
transform:scale(1.2,1.2);
}
}


.event-header .header-inner{
max-width:100%;
height:700px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
margin: 0 auto;
position:relative;
z-index:10;
}


.event-header .ttl-headline{
font-size: 5.5rem;
font-family: 'Abel', sans-serif;
color:#fff;
margin:0 auto;
padding:2px 15px;
width:fit-content;
font-weight:bold;
text-align:center;
line-height:1.3;
text-shadow:0 5px 20px #151515;
position:relative;
z-index:1;
}

.event-header .ttl-headline span.text1{
color:#cc3bf6;
/*background:linear-gradient(90deg, #cc3bf6;, #6935fc);
-webkit-background-clip:text;
-webkit-text-fill-color: transparent;*/
}

.event-header .ttl-headline span.text2{
color:#1776f6;
/*background:linear-gradient(90deg, #cc3bf6;, #6935fc);
-webkit-background-clip:text;
-webkit-text-fill-color: transparent;*/
}



.event-header .ttl-headline::before{
content:"";
position:absolute;
top:0;
left:0;
width:0;
height:100%;
z-index:-1;
animation: slide 0.5s ease-out 0.3s forwards;
}


.event-header h1{
position: relative;
z-index:100;
font-size:1.75rem;
color:#fff;
line-height:1.6;
text-align:center;
width:fit-content;
margin:25px 0;
text-shadow:0 5px 20px #151515;
font-feature-settings: "palt" 1;
}


.info-date {
border-top:1px solid #fff;
margin:0;
padding: 15px;
font-size: 1.25rem;
font-weight:bold;
font-family: 'Abel', Arial, "游ゴシック Medium", "Yu Gothic Medium", YuGothicM, 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
color:#fff;
line-height:1.4;
text-align:center;
width:fit-content;
position:relative;
z-index:1000;
}

/*.info-date::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
border:1px solid #fff;
z-index:-1;
}*/

.info-date span{
font-size:200%;
font-weight:bold;
}



/* 星空の背景のスタイル */
.stars {
  position: relative;
  width: 100%; /* 星空の横幅 */
  /*height: 100vh; */
  overflow: hidden; /* 星が枠外にはみ出すのを防ぐ */
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(#fff, 0.2); /* 星の影 */
  opacity: 0;
  animation: twinkle 3s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}


.event-summary{
width:100%;
position:absolute;
bottom:0;
padding:20px 0;
/*background:rgba(0,0,0,0.2);*/
backdrop-filter: blur(5px);
z-index:10;
}


.event-summary p {
margin:0 auto;
font-size: 1rem;
line-height: 1.8;
padding: 10px;
color:#fff;
font-family:"游ゴシック Medium", "Yu Gothic Medium", YuGothicM, 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
position:relative;
z-index:10;
}




/* 開催概要 ******************************************************************************/


.event-outline{
padding-bottom:40px;
text-align: center;
position:relative;
}

.information {
display:flex;
flex-wrap: wrap;
justify-content:space-around;
color:#fff;
margin:0 auto;
padding:30px 0 0;
font-size: 16px;
position:relative;
z-index:100;
}


.information dt {
float:none !important;
display:flex;
align-items:center;
background:rgba(0,0,0,0.4);
border:1px solid #fff;
color:#fff;
font-weight:normal;
width:24%;
text-align:left;
padding:10px 15px;
position:relative;
backdrop-filter: blur(5px);
}


.information dd {
/*margin: 0 0 16px 12em;*/
background:rgba(0,0,0,0.4);
border:1px solid #fff;
color:#fff;
font-weight:normal;
width:74%;
margin:0 0 10px !important;
padding:15px;
text-align:left;
backdrop-filter: blur(5px);
}


.event-outline .notice{
text-align:center;
font-size:16px;
color:#fff;
margin:20px auto;
position:relative;
z-index:1000;
}



/* 見出し ******************************************************************************/


h2 {
text-align:center;
margin:0 auto;
padding:40px 0;
color: #fff;
font-family: 'Abel', Arial, "游ゴシック Medium", "Yu Gothic Medium", YuGothicM, 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
font-size: 6rem;
font-weight:normal;
border: none;
width:fit-content;
position: relative;
z-index:10;
}


h2 span{
font-size:1.5rem;
margin:0 auto;
padding-top:15px;
/*border-top:1px solid #fff;*/
font-weight:normal;
display:block;
position:relative;
width:fit-content;
}

h2 span::before{
content:"";
position:absolute;
bottom:-15px;
left:0;
width:100%;
height:2px;
background: linear-gradient(90deg, #1776f6, #cc3bf6);
border-radius:5px;
}

h2.black{
color:#151515;
}





/* 講演内容 ******************************************************************************/


.event-session{
padding:0 0 45px 0;
position:relative;
/*background-color:#f5f4f4;*/
/*background: linear-gradient(90deg, #0240bd, #9b26e8);*/
z-index:1;
}


.event-session::before{
content:"";
position:absolute;
top:0;
left:0;
background: linear-gradient(90deg, #0240bd, #9b26e8);
opacity:0.5;
width:100%;
height:100%;
}


.event-session::after{
content:"";
position:absolute;
top:0;
right0;
background:url(/info/event/security/202502/media/img_parts.png) center top repeat-y;
width:100%;
height:100%;
}


.event-session .container-fluid{
max-width:1150px;
}


.event-session .parts-left{
position:absolute;
top:10%;
left:0;
text-align:left;
}

.event-session .parts-left_bottom{
position:absolute;
bottom:-30%;
left:0;
text-align:left;
}

.event-session .parts-right{
position:absolute;
top:50%;
right:0;
text-align:right;
}



.session-program{
margin:45px auto;
padding:0;
position:relative;
z-index:10;
}


.session-program table{
margin:5% auto;
border:1px solid #fff;
background:rgba(132,170,246,0.3);
/*background:rgba(23,118,246,0.2);*/
box-shadow:0 0 40px #252525;
position:relative;
transform:translateY(40px);
opacity:0;
transition:0.5s ease;
z-index:10;
}
.session-program table:nth-of-type(odd){
background:rgba(210,152,250,0.3);
/*background:rgba(204,59,246,0.2);*/
}

.session-program table.fade-in{
transform:translateY(0);
opacity:1;
}


.session-program th,
.session-program td {
border:none !important;
}


.session-program th {
width: 10%;
text-align: center;
font-weight:normal;
padding:0;
background:none;
}

.session-program td {
padding:5%;
position: relative;
line-height: 1.3 !important;
}


.session-program .session-time{
color:#fff;
margin:0;
padding:0 45px;
text-align:center;
font-size:1.75rem;
/*background:rgba(0,0,0,0.25);*/
/*position:absolute;
top:-70px;*/
}


.session-program .session-label{
background-color:#0384fc;
color:#fff;
font-size:14px;
margin:0;
padding:3px 10px;
width:fit-content;
}
.session-label.keynote{background-color:#daee00; color:#151515;}
.session-label.special{background-color:#cc3bf6; color:#fff;}


.session-program td.session .session-title {
margin: 25px 0;
padding: 0 0 10px 0;
border-bottom:1px dotted #fff;
font-size: 2.25rem;
/*font-weight:bold;*/
line-height:1.5;
color:#fff;
font-feature-settings: "palt" 1;
}


.session-program td .session-title small {
display: block;
font-size: 70%;
font-weight: normal;
}



.session-program td.session .session-summary {
letter-spacing: 0;
color:#fff;
font-size:1rem;
padding-bottom:25px;
line-height:1.6;
}



.session-program td.session .session_profile {
margin:0;
padding: 25px 0;
clear: both;
font-size:1.25rem;
color:#fff;
display:flex;
flex-shrink: 0;
overflow: hidden;
}


.session-program td.session .progress-label,
.session-program td.session .speaker-label,
.session-program td.session .listener-label{/*話し手 聞き手*/
    width: fit-content;
    margin:0 0 15px;
    padding: 5px;
    background-color: #fff;
color:#151515;
    text-align: center;
font-size:13px;
font-weight:normal;
    line-height: 1;
display:block;
}



.session-program td.session .profile_thumb {
margin: 0 24px 4px 0;
/*width:200px;
height:200px;*/
flex-shrink: 0;
}

.session-program td.session .profile_thumb img{
/*box-shadow:0 0 20px #e5e5e5;*/
/*border:1px solid #d5d5d5;*/
border:2px solid #fff;
display:block;
}

.session-program td.session .profile_name {
line-height: 1.5;
font-size:1rem;
}

.session-program td.session .profile_name strong{
font-size:120%;
font-weight: bold;
padding-top:4px;
display:block;
}

.session-program td.session .profile_name .profile_accordion {
margin: 3px 0 0 0;
line-height: 1.6;
}

.session-program td.session .profile_name .js-profile-trigger {
position: relative;
display: inline-block;
font-size:0.85rem;
font-weight:normal;
margin:10px 0 0 0;
padding:2px 5px;
background:rgba(0,0,0,0.2);
border:1px solid #fff;
color: #fff;
cursor: pointer;
width:fit-content;
font-feature-settings:"palt";
}
.session-program td.session .profile_name .js-profile-trigger:hover{
background:rgba(0,0,0,0.6);
color:#fff;
transition:0.3s;
}

.session-program td.session .profile_name .js-profile-detail {
padding-top: 10px;
font-size:0.8rem;
font-weight:normal;
line-height:1.6;
display:block;
color:#fff;
}

.event-session .notice{
text-align:center;
font-size:13px;
color:#fff;
position:relative;
z-index:1000;
}





/* 申し込み ******************************************************************************/


/* 参加特典 */

.benefits-area{
border:5px solid #fff;
color:#fff;
margin:0 auto 30px;
padding:45px 25px 25px;
max-width:1150px;
background:rgba(0,0,0,0.4);
box-shadow:0 0 40px #252525;
box-sizing:border-box;
position:relative;
z-index:1000;
}

.benefits-area::before{
content:"参加特典";
position:absolute;
top:-40px;
left:calc(50% - 130px);
width:260px;
height:auto;
padding:15px;
background-color:#fff;
border-radius:50px;
color:#151515;
text-align:center;
font-size:1.5rem;
font-weight:bold;
}


.benefits-area p{
margin:25px 15px;
font-size:0.9rem;
}

.benefits-area p strong{
color:#daee00;
font-size:120%;
}

.benefits-area p a{
color:#daee00;
}

.benefits-area p a:hover{
color:#fff !important;
}




.event-entry{
position:relative;
padding-top:5%;
}

.event-entry::before{
content:"";
position:absolute;
top:0;
left:0;
background: linear-gradient(-90deg, #0240bd, #9b26e8);
opacity:0.5;
width:100%;
height:100%;
}


.privacy-note {
margin:0 auto 45px;
padding: 30px;
background-color:#fff;
/*border:1px solid #151515;*/
color:#151515;
font-size: 12px;
text-align:left;
max-width:1000px;
position:relative;
z-index:10;
}

.privacy-note p a{
color:#9b26e8;
font-weight:bold;
}




/*btn default setting*/



.btn-register {
width: 100%;
margin: 0 auto;
padding:25px 0;
text-align:center;
position:relative;
z-index:10;
}


.btn {
display: inline-block;
box-sizing: border-box;
margin:30px auto;
padding: 20px;
font-weight: bold;
font-size: 20px;
line-height: 20px;
background:#daee00;
border:3px solid #daee00;
color: #151515 !important;
text-align: center;
border-radius: 50px;
cursor: pointer;
position:relative;
z-index:100;
}

.btn:hover{
background-color:#151515;
border:3px solid #daee00;
color: #fff !important;
transform:translateY(-5px);
transition:0.3s;
}




.btn::before,
.btn::after {
position: absolute;
z-index: -1;
display: block;
content: '';
}
.btn,
.btn::before,
.btn::after {
box-sizing: border-box;
transition: all .3s;
}


.btn span{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-weight:bold;
}



/*btn size setting*/

.large{
width: 80%;
height: 60px;
}

.small{
width: 30%;
height: 90px;
}




/* sponsor logo ******************************************************************************/


.event-sponsor {
padding:0;
background-color: #fff;
position:relative;
z-index:10;
}

.event-sponsor h3 {
margin: 0 auto;
text-align: center;
color: #151515; 
border-bottom:2px solid #e5e5e5;
padding-bottom:5px;
font-size: 1.5rem;
font-weight:normal;
width:fit-content;
}

.event-sponsor ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
margin:0 0 30px 0;
}
.event-sponsor li {
  width: 20%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
margin:35px 25px;
}




.privacy-area {
    border: 1px solid #ccc;
    margin: 50px auto 0;
    padding: 16px;
    height: 150px;
    overflow: auto;
}
.privacy-area p.content {
    font-size: 80%;
    margin: 15px auto;
    text-align: center;
}
.privacy-area p {
    font-size: 50%;
    line-height: 2.0;
}



/* inquiry */

.event-inquiry{
text-align:center;
padding-bottom:45px;
/*background-color:#151515;*/
color:#fff;
}

.event-inquiry p{
position:relative;
z-index:10 !important;
margin:10px 0 0 0;
}

.event-inquiry p a{
color:#d298fa;
font-weight:bold;
}

footer{
margin-top:0;
position:relative;
z-index:10;
}





/* responsive 
------------------------------------------------------------------------------- */



@media (max-width: 960px) {


.event-header{
height:900px;
}

.event-header::after{
top:0;
}

.event-header .header-inner{
height:500px;
}

.event-header .ttl-headline{
font-size:3.5rem;
}


.event-header h1{
font-size:1.5rem;
}



.info-date {
font-size:1rem;
}


h2 {
font-size: 3.5rem;
padding:20px 0 40px;
}


.large, .small{
width:70% !important;
margin:30px auto;
}



.sponsor li {
  width: 100%;
  margin-bottom: 24px;
}


.event-session{
padding:15px 15px 45px;
}


.session-program .session-time{
padding:0 20px;
}


.event-entry{
padding:10% 15px 15px;
}




}



@media (max-width: 640px) {


.container-fluid {margin: 0;}

.event-header{
height:850px;
}

.event-header .header-inner{
height:350px;
padding:10px;
}




.event-header .ttl-headline{
font-size:2.5rem;
}

.event-header h1{
font-size: 1rem;
}


.info-date {
font-size:0.85rem;
/*background:rgba(255,255,255,0.6);*/
}


.event-summary{
padding:15px;
}

.event-summary p{
padding:0;
}


.information {
display:block;
}


.information dt,
.information dd{
font-size: 1rem;
margin: 0 0 10px;
width: auto;
}



.information{
padding:10px;
}

.session-program th,
.session-program td {
width:100%;
display:inline-block;
}


.session-program td.session{
padding:15px;
}

.session-program .session-time::before{
display:none;
}

.session-program .session-time{
padding:15px;
font-size:1.5rem;
}

.session-program td.session .session-title{
font-size:1.5rem;
}

.session-program .session-time{
font-size:1.25rem;
}


.session-program td.session .session-label,
.session-program td.session .profile_name,
.session-program td.session .profile_detail,
.session-program td.session .session_profile{
font-size: 13px;
}


.session-program td.session .profile_thumb{
width:130px;
height:130px;
}


.event-sponsor ul {
display:block;
margin:0 auto;
}


.event-sponsor li{
width:100%;
margin:0 auto;
}


.large, .small{
width:100% !important;
margin:30px auto;
}


}





/*************** login page & video page ***************/


.event-header.webinar-header{
height:300px;
}
.event-header.webinar-header .header-inner{
  height: 300px;
position:relative;
}


.event-header.webinar-header .ttl-headline {
  font-size: 3rem;
}

.event-header.webinar-header h1{
  font-size: 1.5rem;
}


.event-entry.webiner-block{
padding:0;
}


.video_block{
position:relative;
}

.video_block::before{
content:"";
position:absolute;
top:0;
left:0;
background: linear-gradient(90deg, #0240bd, #9b26e8);
opacity:0.5;
width:100%;
height:100%;
}


.video {
  width:100%; 
  margin: 40px auto 20px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
z-index:100;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video_block p{
position:relative;
z-index:100;
}


.video_block p a{
color:#d298fa;
font-weight:bold;
}


.enq-text{
color:#fff;
padding:20px 10px;
font-size:1.25rem;
}

.support{
text-align:center;
color:#fff;
padding:20px 0;
}


.closed-text{
color: #fff;
font-weight: bold;
text-align:center;
padding: 40px 0;
text-align:center;
position:relative;
z-index:10;
}





@media (max-width: 640px) {


.enq-text{
color:#fff;
padding:20px 10px;
font-size:1rem;
}


.event-header.webinar-header .ttl-headline {
  font-size: 2rem;
}


.event-header.webinar-header h1{
  font-size: 1.25rem;
}




}









/* ヘッダー＆フッター広告表記 2024～
-------------------------------------------------------------------------------------------------------*/

.header_sponsored_area{
    width:100%;
    background-color:#fff;
    color:#000;
    font-size:14px;
    text-align:right;
    padding:15px 20px;
    position:relative;
    z-index:1000;
}

.header_sponsored_area span{
    margin:0;
    line-height:1.3;
    display:block;
}


.block_sponsored_area{
    clear:both;
    background-color:#fff;
    color:#000;
    font-size:14px;
    border:1px solid #000;
    margin:25px auto;
    padding:15px 15px 10px;
    max-width:760px;
    position:relative;
    z-index:1000;
}

.block_sponsored_area span{
    margin:5px 0;
    text-align:left;
    display:block;
}


.block_sponsored_area:before{
    display: block;
    content: "PR";
    position: absolute;
    top: -12px;
    left: 30px;
    width: 40px;
    height: 30px;
    text-align: center;
    background-color: #fff;
}


@media screen and (max-width: 800px) {

.block_sponsored_area{
margin:25px;
}


}

