@charset "utf-8";

.modaal-noscroll {
	overflow: hidden;
}
.modaal-accessible-hide {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}
.modaal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: 0;
}
.modaal-wrapper {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: auto;
	opacity: 1;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
	border: none;
	/*background: transparent;*/
	background-color: #009b85;
	padding: 0;
	-webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
	display: none;
	opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
	opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
	outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
	overflow: hidden;
}
.modaal-outer-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
	display: block;
}
.modaal-inner-wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	position: relative;
	vertical-align: middle;
	text-align: center;
	padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
	padding: 0;
	display: block;
	vertical-align: top;
}
.modaal-container {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: auto;
	text-align: left;
	color: #000;
	max-width: 1000px;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: auto;
}
.modaal-container.is_loading {
	height: 100px;
	width: 100px;
	overflow: hidden;
}
.modaal-fullscreen .modaal-container {
	max-width: none;
	height: 100%;
	overflow: auto;
}
.modaal-close {
	position: fixed;
	right: 20px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
	.modaal-close { top: 20px; }
}
@media screen and (max-width: 768px) {
	.modaal-close { bottom: 20px; }
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	background: #fff;
}
.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #b93d0c;
}
.modaal-close span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}
.modaal-close:before,
.modaal-close:after {
	display: block;
	content: " ";
	position: absolute;
	top: 14px;
	left: 23px;
	width: 4px;
	height: 22px;
	border-radius: 4px;
	background: #fff;
	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}
.modaal-close:before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.modaal-close:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
	background: #afb7bc;
	right: 10px;
	top: 10px;
}
.modaal-content-container {
	padding: 30px;
}


/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
	width: 100%;
	display: none;
}
.modaal-content-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.modaal-content-container .sec-pct  { width: 176px; display: block; box-sizing: border-box; }
.modaal-content-container .sec-desc { width: calc(100% - 176px); padding: 0 0 0 40px; box-sizing: border-box;}


.modaal-content-container .sec-desc h1 em {
	color: #000;
	font-size: 1.15rem;
    font-style: normal;
    line-height: 1.5;
}
.modaal-content-container .sec-desc h1 {
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.85rem;
    color: #0ba29a;
}
.modaal-content-container .sec-desc p.position {
	margin: 5px 0 0 0;
	font-size: 0.85rem;
	line-height: 1.6;
}
.modaal-content-container .sec-desc .sec-profile {
	margin: 20px 0 0 0;
	border-top: 1px dashed #ccc;
}
.modaal-content-container .sec-desc .sec-profile h2 {
	margin: 10px 0;
	font-family: montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1rem;
	color: #0ba29a;
}
.modaal-content-container .sec-desc .sec-profile p {
	font-size: 0.85rem;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.modaal-content-container .sec-pct { display: none; }
	.modaal-content-container .sec-desc { width: 100%; padding: 0; }
	.modaal-content-container .sec-desc .sec-profile { font-size: 1rem; }
}


/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before { background: #fff;	}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before { background: #009b85; }


.info-list {
	margin-top: 5px;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
}


/* ---------------------
	Session 
-------------------- */

.session-container {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}

/* sec-date */
.session-container .sec-date { margin-bottom: 10px; }
.session-container .sec-date ul.session-date {
	margin: 0 0 30px 0;
	padding: 0;
}
.session-container .sec-date ul.session-date li {
	display: inline-block;
}
.session-container .sec-date .session {
	font-family: montserrat, sans-serif;
	padding: 10px 40px;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 400;
	font-style: normal;
	background-color: #009c84;
}
.session-container .sec-date ul.session-date li:nth-child(2) {
	font-family: montserrat, sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	font-style: normal;
	padding-left: 10px;
}
@media screen and (max-width: 768px) {
	.session-container { padding: 0; }
	.session-container .sec-date ul.session-date li { display: block; }
	.session-container .sec-date .session { margin-bottom: 15px; }
	.session-container .sec-date ul.session-date li:nth-child(2) { margin-top: 20px; padding-left: 0; }
}

/* sec-ttl */
.session-container .sec-ttl {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #009c84;
}
.session-container .sec-ttl h1 {
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.session-container .sec-ttl h1 { font-size: 1.4rem; }
}


/* sec-body */
.session-container .sec-body ul.profile {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.session-container .sec-body ul.profile li {
	width: 22%;
}
.session-container .sec-body ul.profile li img { width: 100%; height: auto; }
.session-container .sec-body ul.profile li h2 {
	margin: 10px 0 5px 0;
	font-size: 1.15rem;
}
.session-container .sec-body ul.profile li p {
	font-size: 0.8rem;
    line-height: 1.3;
}

@media screen and (max-width: 1050px) {
	.session-container .sec-body ul.profile li { width: 44%; margin-bottom: 20px; }
	.session-container .sec-body ul.profile li h2 { font-size: 1rem; }
}



/* ---------------------
	Session 
-------------------- */

.pitch-container {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.pitch-container { padding: 0; }
}

.pitch-container .sec-ttl h2 {
	font-family: montserrat, sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.pitch-container .sec-ttl h2 { font-size: 1.4rem; }
}

.pitch-container .sec-body ul.pitch-list {
	width: 100%;
	margin-top: 30px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.pitch-container .sec-body ul.pitch-list li {
	width: 47%;
}

.pitch-container .sec-body ul.pitch-list li img { width: 100%; height: auto; }
.pitch-container .sec-body ul.pitch-list li p { margin-top: 10px; font-size: 0.85rem; }

.pitch-container .sec-body ul.pitch-list table tr { margin: 10px 0; }
.pitch-container .sec-body ul.pitch-list table th { width: 20%; border: 1px solid #efefef; padding: 10px; box-sizing: border-box; }
.pitch-container .sec-body ul.pitch-list table td { /*width: 80%;*/ padding-left: 20px; vertical-align: middle; }

@media screen and (max-width: 768px) {
	.pitch-container .sec-body ul.pitch-list li { width: 100%; }
}

