@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 基本レイアウト -------- */

article {
	/*width: 1220px;*/
	margin: 0 auto;
	/*background-color: #89ccbc;*/
}

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

h2 {
	/*width:1200px;*/
	width: 100%;
	margin: 0 auto 40px;
	height: 70px;
	line-height: 70px;
	font-size: 30px;
	text-align: center;
	background-color: #415c87;
	font-weight: bold;
	color:#FFF;
}

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, .Title_Visual02 {
	display: block;
	position: relative;
	/*width: 1200px;*/
	width: 100%;
	height: 400px;
	margin: 105px auto 0 auto;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	background-size: cover;
	border: 2px solid #555;
}

.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: #000;
}

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

#Overview {
	padding: 80px 0 60px;
}

#Overview p {
	/*width: 1000px;*/
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	border-radius: 16px;
	padding: 40px;
}

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

#Overview p:last-of-type {
	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: 0 auto;
	width: 1200px;
}


#Outline table th,
#Outline table td {
	padding: 30px;
	line-height: 24px;
/*	border-top: 1px solid #464646;
	border-bottom: 1px solid #464646; */
	background-color: #ececec;
}

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

#Outline table th:last-of-type,
#Outline table td:last-of-type {
}


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


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

.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: 1200px;
	margin: 0 auto;
	padding-bottom: 60px;
	z-index: 2;
	background-color: #ECECEC;
}

.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 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}

.Session_Program {
	position: relative;
	border-left: 0.5em solid #ea5550;
	margin: 20px auto;
	background-color: #fff;
	flex-wrap: nowrap;
/*	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .5); */
/*	border: 1px #999 solid; */
}

.col_1 {
	width: 1000px;
}

.col_3 {
	width: 300px;
}

.Session_Program_Inner {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
}

.Session_Icon_Movie {
	display: inline-block;
	width: 170px;
	height: 30px;
	text-align: center;
	font-size: 21px;
	line-height: 30px;
	font-weight: bold;
	color: #fff;
	background: #1570fd;
/*	border-radius: 20px; */
}

.Session_Icon_Pbtn {
	width: 170px;
	height: 90px;
	background: #fffff;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../session/img/btn_play.png);
}

.icon01, .icon02, .icon03, .icon04, .icon05,
.icon06, .icon07,  .icon08, .icon09 {
	width: 170px;
	color: #fff;
	text-align: center;
	line-height: 38px;
	font-weight: bold;
	font-size: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #da7022;
	border-right: 1px solid #fff;
}

.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 {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 20px;
	font-weight: bold;
	font-size: 20px;
	padding-left: 10px;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
	background-color: #ccc;
}

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

.Session_Title_Div {
	width: 100%;
}

.Session_Title_Name {
	padding: 10px 40px;
	font-size: 18px;
	font-weight: bold;
	min-height: 30px;
	background: #ccc;
}

.Session_Title_Body {
	padding: 10px 30px;
	line-height: 20px;
}

.annotation {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 1.5em;
	text-indent: -1.5em;
	text-align: left;
}

.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(../session/img/thumb1_01.JPG);
}

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

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

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

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

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

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

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

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

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

.Thumb6_01 {
	background-size: cover;
	background-image: url(../session/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: 50px;
	margin: 50px auto 0;
	border-radius: 5px;
	background-color: #999999;
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 50px;
	text-decoration: none;
}

/*
li {
	font-weight: bold;
}
*/

div .indent {
	margin-bottom: 0;
	padding-left: 1em;
	text-indent: -1em;
}


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


.Entry_Form {
	padding-top: 40px;
	background-color: #ececec;
	width: 1200px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.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);
}

.Entry_Btn a:before {
	display: inline-block;
	content: "";
	width: 0.7em;
	height: 0.7em;
	background: url(../img/icon_arrow_white.svg) no-repeat;
	background-size: 0.7em 0.7em;
	background-position: left top;
	padding-left: 1.2em;
}


/* 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_Body {
	background-color: #fff;
}

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

.Movie_Wrapper {
	width: 960px;
	height: 540px;
	margin: 0 auto;
	position: relative;
	border: 1px solid #ececec;
}

.Movie_Title {
	margin-top: 20px;
	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;
	line-height:2rem;
}

/*
.Movie_content p {
	margin-top: 0;
	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;
}

.Enq_Btn {
	display: block;
	width: 340px;
	height: 40px;
	margin: 20px 0px 10px 0px;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
	background-color: #ab1e3e;
}

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

h2:after {
	border-bottom: solid 7px #223f78;
}

.Session_Icon_Movie {
	background: #a1b1ca;
}

.Session_Icon_Document {
	border: solid 3px #a1b1ca;
}

.Session_Icon_Link {
	background: #01a89e;
}

.Session_Program_Button {
	background-color: #a1b1ca;
}

.Session_Download_Button a {
	background-color: #666666;
}

.Entry_Btn a {
	color: #fff;
	background: #666666;
}

.Movie_Btn {
	background-color: #666666;
}

.mainText p {
	font-size: 20px;
}

.Title_Visual {
	background-image: url('../img/mv_partner2506.png');
	background-size:contain;
	/* border: solid 2px #2fd498; */
}

.Title_Visual02 {
	background-image: url('../img/mv_partner2506.png');
	/* border: solid 2px #2fd498; */
}

@media screen and (max-width: 768px) {
	.Title_Visual {
		background-image: url('../img/mv_partner2506_sp.png');
		/* border: solid 2px #2fd498; */
	}

	.Title_Visual02 {
		background-image: url('../img/mv_partner2506_sp.png');
		/* border: solid 2px #2fd498; */
	}
}

.indent1 {
	font-weight: normal;
	padding-left:1em;
	text-indent:-1em;
	margin-bottom: 0.5em;
}

.indent2 {
	font-weight: normal;
	padding-left:2em;
	text-indent:-1em;
	margin-bottom: 0.5em;
}

.icon02 {
	background-image: url('../img/session02.png');
}

.icon03 {
	background-image: url('../img/session03.png');
}

.icon04 {
	background-image: url('../img/session04.png');
}

.icon05 {
	background-image: url('../img/session05.png');
}

.icon06 {
	background-image: url('../img/session06.png');
}

.icon07 {
	background-image: url('../img/session07.png');
}

.icon08 {
	background-image: url('../img/session08.png');
}

.icon09 {
	background-image: url('../img/session09.png');
}


/* -------- 追加調整用 sytle ------- */

article {
    max-width: 1200px;
}

.Title_Visual, .Title_Visual02 {
  border:none;
}

#Overview {
  padding:25px 60px 35px;
}

#Overview p {
  background:none;
  border-radius: 0;
  padding:0;
  color:#000;
}

.mainText p {
  font-size: 18px;
  line-height: 1.7;
}

.Session_Tab_Detail {
  background-color: #F0F0F0;
}

.Session_Tab_Detail h2 {
  font-size:40px;
}

.Session_Movie_Section a {
  text-decoration: none;
}

.Session_Program {
  margin:15px auto;
}

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

.Session_Icon_Movie,
.Session_Title {
  display:flex;
  justify-content: center;
  align-items: center;
  height:initial;
  line-height:initial;
  min-height:60px;
  line-height:3rem;
}

.Session_Title {
  justify-content: left;
  font-size:18px;
  padding:5px 30px;
}

.Session_Title font {
  text-decoration:underline;
}

@media screen and (max-width: 768px) {
  .Session_Icon_Movie,
  .Session_Title {
    min-height:initial;
  }
}

