<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*------------------------------------------------
  base
------------------------------------------------*/
html {
    font-size: 62.5%; /* 10px */
}
body {
    font-size: 1.6em;
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
    line-height: 1;
    background-color: #fff;
}
img{
    outline: none;
    border-style: none;
}
a {
    color: #2b2c2a;
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
	cursor: pointer;
}
a:hover, button:hover {
    cursor:pointer;
    opacity:0.7;
}
p {
    line-height: 1.8;
    margin-bottom: 20px;
}
ul li, ol li {
    line-height: 1.8;
}
main a {
    color: #2b2c2a;
    text-decoration: underline;
}
main a:hover {
    text-decoration: none;
}
h1 {
    font-size: 4.3rem;
    line-height: 1.6;
}
h2 {
    font-size: 4.0rem;
    line-height: 1.6;
}
h3 {
    font-size: 2.6rem;
    line-height: 1.4;
}

@media screen and (max-width: 1024px) {
    p {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    h1 {
        font-size: 3.0rem;
    }
    h2 {
        font-size: 2.8rem;
    }
    h3 {
        font-size: 2rem;
    }
    .Pc_Only {
        display: none; /*PCのみ表示・改行*/
    }
}

@media screen and (max-width: 767px) {
    .Pc-Tb_Only {
        display: none; /*PC・タブレットのみ表示・改行*/
    }
}

@media screen and (min-width: 1025px) {
    .Tb-Sp_Only {
        display: none; /*タブレット・スマホのみ表示・改行*/
    }
}

@media screen and (min-width: 767px) {
    .Sp_Only {
        display: none; /*スマホのみ表示・改行*/
    }
}

/* フェードイン アニメーション ------------------------- */
.FadeinUp {
  opacity: 0;
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.FadeinUp.Scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}


/*------------------------------------------------
  header
------------------------------------------------*/
/* ヘッダー */
.SiteHeader {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.2);
}
.SiteHeader__Inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    width: 100%;
    height: 100px;
    position: relative;
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: .3s;
}
/* ヘッダー スクロール時 切り替えアニメーション */
.SiteHeader__Inner.Transform {
    height: 70px;
}
/* ロゴ */
.SiteHeader__Logo img {
    height: 36px;
    width: 138px;
}
/* グローバルメニュー */
.SiteHeader__GNav__Menu {
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.SiteHeader__GNav__Menu__Item {
    font-weight: 500;
    margin-right: 30px;
    font-size: 20px;
}
.SiteHeader__GNav__Menu__Item:last-child {
    margin-right: 0px;
}
.SiteHeader__GNav__Menu__Item a {
    text-decoration: none;
}
.SiteHeader__GNav__Menu__Item_Style_Btn a {
    display: block;
    color: #fff;
    background: #23b5af;
    border: 1px solid #23b5af;
    padding: 0 25px;
    border-radius: 18px;
    height: 36px;
    line-height: 36px;
}
/* スマホ時 グローバルメニュー非表示 */
.SiteHeader__GNavSp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .SiteHeader__Inner {
        height: 70px;
    }
    .SiteHeader__Logo img {
        height: 26px;
        width: 100px;
    }
    .SiteHeader__GNav__Menu__Item {
        margin-right: 25px;
        font-size: 15px;
    }
}

@media screen and (max-width: 900px) {
    /* PC時 グローバルメニュー非表示 */
    .SiteHeader__GNav {
        display: none;
    }
    /* スマホ時 グローバルメニュー */
    .SiteHeader__GNavSp {
        display: block;
    }
    /* ハンバガーメニュー */
    .SiteHeader__GNavSp__Toggle {
        position: absolute;
        top: 22px;
        right: 20px;
        width: 32px;
        height: 26px;
    }
    .SiteHeader__GNavSp__Toggle span {
        width: 100%;
        height: 3px;
        display: block;
        background: #2b2c2a;
        position: absolute;
        left: 0;
        transition: transform .5s ease-in-out, top .5s ease;
    }
    .SiteHeader__GNavSp__Toggle span:nth-child(1) {
        top: 0px;
    }
    .SiteHeader__GNavSp__Toggle span:nth-child(2) {
        top: 11.5px;
    }
    .SiteHeader__GNavSp__Toggle span:nth-child(3) {
        top: 23px;
    }
    /* ハンバガーメニュー → バツボタン 切り替えアニメーション */
    .open .SiteHeader__GNavSp__Toggle span:nth-child(1) {
        -webkit-transform: translateY(11px) rotate(135deg);
        -moz-transform: translateY(11px) rotate(135deg);
        transform: translateY(11px) rotate(135deg);
    }
    .open .SiteHeader__GNavSp__Toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open .SiteHeader__GNavSp__Toggle span:nth-child(3) {
        -webkit-transform: translateY(-11px) rotate(-135deg);
        -moz-transform: translateY(-11px) rotate(-135deg);
        transform: translateY(-11px) rotate(-135deg);
    }
    /* メニュー */
    .SiteHeader__GNavSp__Menu {
        font-size: 1.4rem;
        background: #e3d9bb;
        box-shadow: 0px 5px 0 #c7b98f;
        padding: 10px;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        bottom: auto;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity .5s ease, visibility .5s ease;
    }
    .SiteHeader__GNavSp__Menu__Item {
        display: block;
        width: 100%;
        background: #fff;
        position: relative;
    }
    .SiteHeader__GNavSp__Menu__Item a {
        display: block;
        width: 100%;
        border-bottom: 1px solid #e3d9bb;
        font-weight: 500;
        text-decoration: none;
        padding: 15px;
    }
    .SiteHeader__GNavSp__Menu__Item:last-child a {
        border-bottom: none;
    }
    .SiteHeader__GNavSp__Menu__Item a:before {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        width: 9px;
        height: 9px;
        margin-top: -4.5px;
        border-top: 2px solid #c7b98f;
        border-right: 2px solid #c7b98f;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    /* メニュー非表示→表示へ切り替え */
    .open {
        overflow: hidden;
    }
    .open .SiteHeader__GNavSp__Menu {
        visibility: visible;
        opacity: 1;
    }
}

/*------------------------------------------------
  footer
------------------------------------------------*/
#CrFooter {
    width: 100%;
    background: #212121
}

.CrFooter__Inner {
    max-width: 1064px;
    margin: 0 auto;
    padding: 100px 20px;
    width: 100%;
    text-align: center;
}

.CrFooter__Inner img {
    width: 114px;
    height: 30px;
    margin-bottom: 20px;
}

.CrFooter__Copyright {
    color: #555656;
    font-size: 1.4rem;
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .CrFooter__Inner {
        padding: 30px 20px;
    }
    .CrFooter__Copyright {
        font-size: 1rem;
    }
}


/*------------------------------------------------
  main 販社様向け情報共有プラットフォーム
------------------------------------------------*/

/* -------- Main 基本レイアウト -------- */

.Main_Inner {
	width: 100%;
	margin: 0 auto;
}

h2 {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	display: block;
	position: relative;
}

h2:after {
	content: '';
	display: block;
	margin: 0 auto;
	bottom: -5px;
	width: 200px;
	border-bottom: solid 7px #29a7e1;
}

h3 {
	font-weight: bold;
	text-align: center;
	display: block;
	position: relative;
	margin: 35px auto 10px;
	background-color: #43729a;
	line-height: 150%;
	height: 60px;
	padding: 10px 20px;
	color: #FFF;
}

.alC {
	text-align: center;
}

.paragraph01 {
	margin-top: 1em;
}

.paragraph02 {
	margin-top: 2em;
}


/* -------- TitleVisual タイトルビジュアル -------- */

.Title_Visual {
	display: block;
	position: relative;
	width: 1366px;
	height: 450px;
	margin: 0 auto 40px;
	background-image: url('../img/epswebinarMV.png');
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	background-size: cover;
}

.Title_Text {
	display: block;
	position: relative;
	top: 140px;
	text-align: center;
	font-size: 42px;
	font-weight: bold;
}

.Title_Date {
	display: block;
	position: relative;
	top: 365px;
	text-align: center;
	font-size: 46px;
	font-weight: bold;
	color: white;
}

/* -------- Overview イベント説明 -------- */

#Overview p {
	width: 768px;
	margin-left: auto;
	margin-right: auto;		
}

#Overview p:first-of-type {
	margin-top: 80px;
	margin-bottom: 40px;
}

#Overview p:last-of-type {
	margin-top: 40px;
	margin-bottom: 80px;
}


/* MediaQuery */
	@media screen and (max-width: 768px) {
		#Overview p {
			width: 90%;
		}

		#Overview .preopen {
			font-size: 20px;
		}

		#Overview p:first-of-type {
			margin-top: 40px;
			margin-bottom: 20px;
		}

		#Overview p:last-of-type {
			margin-top: 20px;
			margin-bottom: 40px;
		}
	}
/* MediaQuery End */


/* -------- Outline 開催概要 -------- */

#Outline table {
	margin: 60px auto;
	width: 800px;
}


#Outline table th,
#Outline table td {
	padding: 20px;
	border-top: 1px solid #464646;
	background-color: #f8f8f8;
	line-height: 28px;
}

#Outline Table th {
	width: 200px;
	font-weight: bold;
}

#Outline table th:last-of-type,
#Outline table td:last-of-type {
	border-bottom: 1px solid #464646;
}


/* -------- Session セッション -------- */


#Session h2 {
	margin-bottom: 80px;
}

.Switch_Tab {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: no-wrap;
	justify-content: center;
	margin-top: 60px;
	border-bottom: 4px solid #CF142B;
}

.Session_Tab_Selected {
	position: relative;
	top: 4px;
	width: 200px;
	height: 55px;
	margin: 0 10px;
	text-align: center;
	color: #2E0106;
	font-size: 20px;
	font-weight: bold;
	line-height: 55px;
	background: #ECECEC;
	box-shadow: 0px 1px 10px #000000A6;
	border: 4px solid #CF142B;
	border-bottom: 0px;
	border-radius: 10px 10px 0 0;
	z-index: 1;
}

.Session_Tab_NotSelected {
	position: relative;
	top: 4px;
	width: 200px;
	height: 55px;
	margin: 0 10px;
	text-align: center;
	color: #2E0106;
	font-size: 20px;
	font-weight: bold;
	line-height: 55px;
	background: #FFF;
	box-shadow: 0px 1px 10px #000000A6;
	border: 1px solid #707070;
	border-bottom: 0px;
	border-radius: 10px 10px 0 0;
	border-bottom: 4px solid #CF142B;
	z-index: 1;
}

.Session_Tab_NotSelected a {
	display: block;
	text-decoration: none;
}

.fontSS {
	font-size: 16px;
}


#Switch_Tab02,
#Switch_Tab03,
#Switch_Tab04,
#Switch_Tab05,
#Switch_Tab06,
#Session_Tab02,
#Session_Tab03,
#Session_Tab04,
#Session_Tab05,
#Session_Tab06 {
	display: none;
}

.Session_Tab_Detail {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
}

.Session_Flex_Wrap {
	width: 100%;
	margin: 0 auto;
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
}

.Session_Movie_Section {
	width: 100%;
	padding: 20px 0;
	background-color: #ECECEC;
}

.Session_Program {
	position: relative;
	width: 1000px;
	margin: 30px auto;
	padding: 30px 30px;
	background-color: #fff;
	flex-wrap: nowrap;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .5);
}

.Session_Icon_Movie {
	display: inline-block;
	width: 140px;
	height: 36px;
	margin-bottom: 1em;
	text-align: center;
	font-size: 18px;
	line-height: 36px;
	font-weight: bold;
	color: #fff;
	background: #1570fd;
	border-radius: 20px;
}

.Session_Icon_Name {
	display: inline-block;
	width: 100px;
	height: 30px;
	margin-bottom: 1em;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
	color: #fff;
	background: RoyalBlue;
	margin-left: 20px;
	border-radius: 4px;
}


.Session_Icon_Document {
	display: block;
	width: 200px;
	height: 40px;
	margin-bottom: 1em;
	text-align: center;
	font-size: 18px;
	line-height: 36px;
	font-weight: bold;
	color: #CF142B;
	border: solid 3px #1570fd;
	border-radius: 20px;
}

.Session_Icon_Link {
	display: block;
	width: 140px;
	height: 36px;
	margin-bottom: 1em;
	text-align: center;
	font-size: 18px;
	line-height: 36px;
	font-weight: bold;
	color: #fff;
	background: #1570fd;
	border-radius: 20px;
}


.Session_Title {
	margin-top: 3em;
	display: block;
	width: 100%;
	font-weight: bold;
	font-size: 19px;
	line-height: 30px;
	margin-bottom: 5px;
}

.Session_Title:first-of-type {
	margin-top: 0;
}

.Session_Title img {
	border: 1px solid #999;
	max-width: 100%;	
}


.Session_Title_Name {
	margin-top: 0;
	font-weight: bold;
	font-size: 16px;
}

.Session_Title_Text {
	max-width: 640px;
	margin: 30px auto 10px;
}

.annotation {
	width: 100%;
	max-width: 1200px;
	margin: 25px auto 15px;
	padding-right: 15px;
	text-align: right;
}

.Session_Program_Wrapper {
	display: flex;
	min-height: calc(200px + 3em);
}

.Session_Download_Wrapper {
	position: relative;
	display: flex;
	margin-top: 3em;
}


.Session_Program_LeftBox {
	width: 570px;
}

.Session_Program_Thumb {
	position: absolute;
	right: 30px;
	width: 352px;
	height: 198px;
	margin: 0 auto 30px;
	background-repeat: no-repeat;
	background-position: center;
	border: 1px solid #999999;
}

.Session_NoOpen_Thumb {
	position: absolute;
	right: 30px;
	width: 352px;
	height: 198px;
	margin: 0 auto 30px;
	background-repeat: no-repeat;
	background-position: center;
	border: 1px solid #999999;
}

.Session_Program_Thumb3x2 {
	position: absolute;
	top: 0px;
	right: 20px;
/*	width: 350px;
	height: 197px; */
	width: 300px;
	height:169px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.Session_Program_Thumb:hover,
.Session_Program_Thumb3x2:hover {
	cursor: pointer;
	opacity: 0.7;
}

.Thumb1_01 {
	background-size: cover;
	background-image: url(../contents/img/thumb1_01.jpg);
}

.Thumb1_02 {
	background-size: cover;
	background-image: url(../contents/img/thumb1_02.jpg);
}

.Thumb1_03 {
	background-size: cover;
	background-image: url(../contents/img/thumb1_03.PNG);
}

.Thumb2_01 {
	background-size: cover;
	background-image: url(../contents/img/thumb2_01.PNG);
}

.Thumb2_02 {
	background-size: cover;
	background-image: url(../contents/img/thumb2_02.PNG);
}

.Thumb2_03 {
	background-size: cover;
	background-image: url(../contents/img/thumb2_03.PNG);
}

.Thumb2_04 {
	background-size: cover;
	background-image: url(../contents/img/thumb2_04.PNG);
}

.Thumb3_01 {
	background-size: cover;
	background-image: url(../contents/img/thumb3_01.PNG);
}

.Thumb4_01 {
	background-size: cover;
	background-image: url(../contents/img/thumb4_01.PNG);
}

.Thumb5_01 {
	background-size: cover;
	background-image: url(../contents/img/ThumbCSA.PNG);
}

.Thumb6_01 {
	background-size: cover;
	background-image: url(../contents/img/ThumbJichitai.PNG);
}

.Session_Program_Link {
	text-align: center;
	margin-top: 20px;
}

.Session_Program_Link a {
	text-decoration: none;
}

.Session_Program_Button {
	width: 280px;
	height: 40px;
	margin: 0 auto;
	border-radius: 5px;
	background-color: #1b4ffb;
	color: #fff;
	text-align: center;
	line-height: 40px;
	font-weight: bold;
}

.Session_Program_Button:hover {
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

.Session_Download_Annotation {
	margin-top: 30px;
}

.Session_Download_Section {
	padding-top: 15px;
}

.Session_Download_Button a {
	display: block;
	width: 600px;
	height: 50px;
	margin: 50px auto 0;
	border-radius: 5px;
	background-color: #1b4ffb;
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 50px;
	text-decoration: none;
}

.Session_Download_Button a:hover {
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

.Session_NoOpen_Button {
	display: block;
	width: 600px;
	height: 80px;
	margin: 50px auto 0;
	padding: 10px 0;
	border-radius: 5px;
	background-color: red;
	color: #fff !important;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
	text-decoration: none;
}


li {
	font-weight: bold;
}

ul p {
	text-indent: -1em;
	padding-left: 2em;
}


/* -------- Entry Button エントリーボタン -------- */

.Entry_Btn {
	margin: 50px auto;
	text-align: center;
	background: #fff;
}


.Entry_Btn a {
	display: inline-block;
	color: #fff;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: 500;
	width: 100%;
	max-width: 580px;
	background: #1b4ffb;
	padding: 19px 10px 11.8px;
	border-radius: 37.5px;
	text-decoration: none;
}

.Entry_Btn a:hover {
	border-radius: 35px;
	box-shadow: none;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}


/* MediaQuery */
	@media screen and (max-width: 768px) {
		.Entry_Btn {
			margin: 40px auto 60px;
		}

		.Entry_Btn a {
			width: 80%;
		}
	}
/* MediaQuery End */


/* -------- 動画視聴ページ -------- */

.Movie_Header_Inner {
	width: 100%;
	max-width: 1064px;
	margin: 0 auto;
	padding: 20px 20px;
	position: relative;
}

.Movie_Inner {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}

.Movie_Wrapper {
	width: 940px;
	height: 529px;
	margin: 0 auto;
	position: relative;
}

.Movie_Title {
	margin-top: 40px;
	color: #2E0106;
	font-size: 20px;
	font-weight: bold;
	line-height: 150%;
}

.Movie_speaker {
	margin: 20px 15px;
	color: #000;
	font-weight: bold;
	font-size: 18px;
}

.Movie_content {
	background-color: #EFEFEF;
	padding: 1em;
	margin-bottom: 30px;
}

.Movie_content p {
	margin-top: 1em;
	margin-bottom: 0;
}

.Movie_content p:first-of-type {
	margin-top: 0;
}

.Movie_Btn {
	display: block;
	width: 550px;
	height: 50px;
	margin: 40px auto 40px;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
}

/* ---------------------------------------
  inquiry
--------------------------------------- */
.common__inner {
  width: 980px;
  margin: 0 auto;
  padding: 100px 20px 165px;
  position: relative;
}

.webinar .common__inner, .inquiry .common__inner {
  padding: 50px 20px;
}

.inquiry {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
  background: linear-gradient(to bottom, #fff, #ddd);
  text-align: center;
}

  .common__headingL {
    font-size: 3.2rem;
  }

.fontNoto {
  font-family: 'Noto Sans JP', sans-serif;
}

.common__balloon {
  color: #555;
  font-size: 2.2rem !important;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 0 45px;
}

.common__balloon::before {
  content: '';
  position: absolute;
  top: 47%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #555;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  left: 0;
}

.common__balloon::after {
  content: '';
  position: absolute;
  top: 47%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #555;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
  right: 0;
}

.common__btn {
  text-align: center;
  margin-bottom: 20px;
}

.common__btn a {
  display: inline-block;
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 560px;
  padding: 19px 30px 17px;
  background: #004097;
  border-radius: 6px;
  text-decoration: none;
}

.common__btn--S a {
  font-size: 1.6rem;
  max-width: 390px;
  padding: 15px 30px 12px;
}

.common__btn span {
  vertical-align: middle;
}

.common__btn i {
  font-size: 1.2em;
  padding-left: 10px;
  vertical-align: middle;
}

/* -------- カラー変更部分 -------- */

h2:after {
	border-bottom: solid 7px #0071bc;
}

.Session_Icon_Movie {
	background: #1f47db;
}

.Session_Icon_Document {
	border: solid 3px #1570fd;
}

.Session_Icon_Link {
	background: #1570fd;
}

.Session_Program_Button {
	background-color: #29a7e1;
}

.Session_Download_Button a {
	background-color: #29a7e1;
}

.Entry_Btn a {
	color: #fff;
	background: #0071bc;
}

.Movie_Btn {
	background-color: #29a7e1;
}
</pre></body></html>