@charset "utf-8";
/* CSS Document */

/*================ common ================*/

body {
	font-family:'YuGothic','Yu Gothic',Hiragino Sans,'ヒラギノ角ゴシック','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo', 'メイリオ', Verdana,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #333333;
	background: #fff;
	height: 100%;
	margin: 0;
}
ul,ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.read-wrap,
.summary-wrap,
.program-wrap {
    padding-bottom: 40px;
    width: 100%;
    margin: 0 auto;
}

.moderator-wrap{
    padding-bottom: 40px;
    margin: 0 auto;
    background-color: #0cc7d1;
}

.read-wrap h2,
.summary-wrap h2,
.program-wrap h2{
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 40px 0 15px;
}

.moderator-wrap h2{
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 40px 0;
}

.text-divider {
  display: flex;
  align-items: center;
  width: 25%;
  margin: 0 auto;
}
.text-divider::before,
.text-divider::after {
  content: '';
  height: 3px;
  background-color: #0cc7d1;
  flex-grow: 1;
}
.text-divider::before {
  margin-right: 1rem;
}
.text-divider::after {
  margin-left: 1rem;
}

.text-divider-wht {
  display: flex;
  align-items: center;
  width: 20%;
  margin: 0 auto;
}
.text-divider-wht::before,
.text-divider-wht::after {
  content: '';
  height: 3px;
  background-color: #fff;
  flex-grow: 1;
}
.text-divider-wht::before {
  margin-right: 1rem;
}
.text-divider-wht::after {
  margin-left: 1rem;
}

/*---------- btn ----------*/
.btn-wrap {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.btn-wrap p {
    padding-top: 16px;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.3;
}
.btn-wrap p span {
    color: #333333;
    font-size: 0.9rem;
    font-weight: normal;
}

.btn-close {
    background: #bdbdbd;
    text-align: center;
    display: block;
    width: 40%;
    margin: 0 auto;
    padding: 16px 0 14px;
    font-size: 1.4rem;
    border-radius: 10px;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}
p.deadline_wht {
    color: #fff;
}
.button {
    display: inline-block;
    width: 40%;
    text-align: center;
    text-decoration: none;
    outline: none;
    font-size: 1.5rem;
    padding: 4px;
    font-weight: bold;
  }
  .button::before,
  .button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
  }
  .button,
  .button::before,
  .button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .button {
    position: relative;
    z-index: 2;
    background-color: #dff500;
    border-top: 3px solid #dff500;
    border-bottom: 3px solid #dff500;
    color: #666;
    line-height: 50px;
    width: 45%;
  }
  .button:hover {
    background-color: #fff;
    border-color: #dff500;
    color: #94a200;
    letter-spacing: 9px;
  }
  .button::before,
  .button::after {
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #dff500;
  }
  .button::before {
    top: 0;
  }
  .button::after {
    bottom: 0;
  }
  .button:hover::before,
  .button:hover::after {
    height: 0;
    background-color: #dff500;
  }

/*================ header ================*/

header {
	background: url("../img/bg_main.png") center top repeat-x;
	width: 100%;
	background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 30px 0 40px;
}
header .logo {
    padding-bottom: 40px;
}
header .logo img {
    margin: 0 auto;
    width: 30%;
}
header h1 {
    font-size: 3.5rem;
    padding: 0 0 35px;
	line-height: 1.1;
    /*text-shadow: 2px 2px 3px rgb(0 0 0);*/
    text-shadow: 2px 2px 3px #333, -2px -2px 3px #333, -2px 2px 3px #333, 2px -2px 3px #333;
	font-feature-settings: "palt";
}
header h1 span {
    display: block;
    font-size: 1.7rem;
	padding-bottom: 20px;
}
header p {
    font-size: 1.6rem;
    font-weight: bold;
    /*text-shadow: 2px 2px 2px rgb(0 0 0);*/
    text-shadow: 2px 2px 3px #333, -2px -2px 3px #333, -2px 2px 3px #333, 2px -2px 3px #333;
}
header p.date {
    font-size: 1.6rem;
}
header p:last-of-type {
    padding-bottom: 30px;
}
.blur {
    backdrop-filter: blur(1.5px);
    width: 65%;
    margin: 0 auto;
	font-family: 'Noto Serif JP', serif;
}
.date span {
     font-size: 2.6rem;
}

/*================ main ================*/

/*---------- read ----------*/
.read-wrap p {
    max-width: 820px;
    margin: 0 auto;
}

/*---------- summary ----------*/
.summary-wrap .summary-box,
.program-wrap .program-box {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    box-sizing: border-box;
}

.sp_summary-table{
    display: none;
}

.summary-wrap .summary-box table,
.program-wrap .program-box table {
    border-collapse: collapse;
    width: 100%;
    line-height: 1.5;
}

.summary-wrap .summary-box th,
.program-wrap .program-box th {
    color: #ffffff;
    border-top: solid 1px #e9eef2;
    width: 15%;
    background-color: #0cc7d1;
    vertical-align: middle;
    text-align: center;
}

.summary-wrap .summary-box td,
.program-wrap .program-box td {
    overflow: hidden;
    padding: 12px 35px;
    border-top: solid 1px #fff;
    background-color: #eee;
    text-align: left;
    vertical-align: middle;
    word-break: break-all;
    word-wrap: break-word;
    line-height: 1.3;
    /*font-feature-settings: "palt";*/
}

.summary-wrap .summary-box td span {
    font-size: 0.8rem;
}

table.summary-table {
	width: 100%;
	margin: 0 auto;
	border-collapse: separate;
}

table.summary-table th,
table.summary-table td {
	padding: 10px;
	background-color: #fff;
}

table.summary-table th {
	background: #0cc7d1;
	vertical-align: middle;
	text-align: left;
	width: 100px;
	overflow: visible;
	position: relative;
	color: #fff;
}

table.summary-table th:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -8px;
    border: 10px solid transparent;
    border-left: 8px solid #0cc7d1;
}

table.summary-table td {
background: #e9eef2;
padding: 20px;
}

/*---------- moderator ----------*/
.moderator-wrap .moderator-area {
    max-width: 1000px;
    margin: 0 auto 40px;
    /*padding-top: 40px;*/
    background-color: #fff;
}
.moderator-wrap .moderator-area h3 {
    font-size: 1.2rem;
    border-bottom: 2px solid #0cc7d1;
    color: #0cc7d1;
    margin: 20px auto 4px;
}
/*.moderator-wrap .moderator-area h3 {
    padding-bottom: 10px;
	font-size: 1rem;
    border-bottom: 1px solid #333333;
    background: #0cc7d1;
    border-radius: 5px;
    display: inline-block;
    padding: 1px 5px;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
}*/
.moderator-wrap .moderator-area .moderator-box {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.moderator-box .moderator-list {
    padding: 16px 20px 40px;
    max-width: 480px;
    width: 100%;
}
.moderator-box .moderator-list p.company {
    margin-top: 16px;
}
.moderator-box .moderator-list .position-area {
    font-weight: bold;
}
.moderator-box .moderator-list .position-area .position {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 14px;
    line-height: 1.3;
}
.moderator-box .moderator-list .position-area .name {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.moderator-box .moderator-list .profile-area {
    display: flex;
    justify-content: flex-start;
}
.moderator-box .moderator-list .profile-area p {
    margin-left: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
	font-feature-settings: "palt";
}
.moderator-box .moderator-list .profile-area img {
	max-width: 100%;
    height: 194px;
}

.moderator-box .moderator-list h4 {
    color: #0cc7d1;
    font-weight: normal;
}
.pd {
    width: 92%;
    margin: 0 auto;
}

.company02 {
    margin: 16px 0 14px;
}

/*----- for Microsoft Edge -----*/
@supports (-ms-ime-align:auto) {
  .moderator-box .moderator-list .profile-area img {
    max-width: 160px;
    height: 194px;
  }
}

/*---------- program ----------*/
.program-wrap {
    border: none;
}
.program-wrap .program-box th span {
    display: block;
}
.program-wrap .program-box td h3 {
    font-size: 1rem;
    font-weight: normal;
    padding-bottom: 10px;
}
.name {
    font-weight: bold;
    padding-bottom: 8px;
}
.program-wrap .program-box td p span {
    /*font-weight: normal;*/
	font-size: 0.9rem;
}
.program-wrap .program-box td .session-list {
    padding-top: 12px;
}
.program-wrap .program-box .company {
    display: flex;
    justify-content: flex-start;
}

p span.company {
    font-weight: bold;
}
.summary-table p {
    line-height: 1.2;
}
/*.program-wrap .program-box .company .two-line {
    font-weight: normal;
	font-size: 0.9rem;
}*/


/*================ footer ================*/
footer {
    width: 100%;
    color: #ffffff;
    background-color: #0cc7d1;
    padding: 40px 0 10px;
    text-align: center;
}
footer h4 {
    font-size: 1.2rem;
}
footer .mail-link a {
    display: block;
    padding: 16px 0;
	color: #ffffff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ffffff;
    width: 40%;
    margin: 12px auto 30px;
}
footer .mail-link a:hover {
    background-color: #78f4fb6b;
    color:#fff;
    border:1px solid #fff
}
footer .mail-link a img{
    display: inline;
    vertical-align: middle;
    padding-right: 10px;
}

/*================ Adjustment ================*/

.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}



/* @media ================================================================*/

@media screen and (min-width:768px) and ( max-width:1023px) {
.read-wrap,
.summary-wrap,
/*.moderator-wrap,*/
.program-wrap {
    width: 90%;
}

.button{
    width: 80%;
}

.moderator-wrap .moderator-area{
    width:80%;
 }
.moderator-wrap .moderator-area .moderator-box{
    width:80%;
}
.btn-wrap{
    width: 55%;
}

}

@media screen and (min-width:560px) and ( max-width:1024px) {
    .moderator-wrap .moderator-area h3.pd{
        max-width: 440px;
        width: 100%;
    }
}



@media screen and (max-width:768px){

 .summary-table{display: none;}
 .sp_summary-table{display: table;}

.read-wrap,
.summary-wrap,
.moderator-wrap,
.program-wrap {
    padding: 0 12px 20px;
}
.read-wrap h2,
.summary-wrap h2,
.moderator-wrap h2,
.program-wrap h2{
    padding: 30px 0 20px;
    width:80%;
}
.btn-wrap a {
	width: 100%;
    font-size: 1.2rem;
}
.btn-wrap p {
    font-size: 1rem;
}
header {
    padding: 20px 0 30px;
}

header .blur{
    width:95%;
}

header h1 {
    font-size: 2.5rem;
    padding-bottom: 20px;
	padding: 0 10px;
}
header h1 span {
    font-size: 1.4rem;
}
header p {
    font-size: 1.4rem;
}
header .date span {
    font-size: 2.2rem;
}
header p:last-of-type {
    padding-bottom: 20px;
}
header p.date{
    font-size: 1.3rem;
    margin-top: 20px;
}

.read-wrap p {
    font-size: 0.9rem;
}
.summary-wrap .summary-box {
    font-size: 0.9rem;
}
.summary-wrap .summary-box th,
.program-wrap .program-box th {
	display: block;
    width: 100%;
	line-height: 1.3;
	padding: 10px 0;
}
.summary-wrap .summary-box td,
.program-wrap .program-box td {
	display: block;
    width: 100%;
    padding: 20px;
}
.moderator-box .moderator-list {
    padding: 20px;
}
.moderator-box .moderator-list .profile-area {
    display: block;
	margin-top: 10px;
}
.moderator-box .moderator-list .position-area .position {
    font-size: 0.8rem;
}
.moderator-box .moderator-list .profile-area img {
    margin:  0 auto;
}
.moderator-box .moderator-list .profile-area p {
    margin: 10px 0;
}
.program-wrap .program-box th span {
    display: inline;
}
.program-wrap .program-box td .space {
    display: none;
}
.program-wrap .program-box td .program-position {
    display: block;
	padding-bottom: 6px;
}
.program-wrap .program-box .company {
    display: block;
}
footer h4 {
    font-size: 1rem;
	padding: 0 12px;
}
footer .mail-link a {
    width: 90%;
    padding: 10px 0;
	margin: 10px auto 20px;
}
}

@media screen and (max-width:560px){
header .logo img {
    margin: 0 auto;
    width: 40%;
}

.moderator-wrap .moderator-area h3 {
    margin: 0 auto 4px;
}

.pd {
    width: 90%;
}

.button {
	width: 55%;
}

}

@media screen and (min-width: 769px){
	.sp_br {display: none; }
}
