@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Lato);

@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
}

/* @end */

/* @group Color */

.black {
	color: #494544;
}

.orange {
	color: #e9a944;
}

.green {
	color: #74d1c1;
}

/* @end */

/* @group Rayout - レイアウト定義 */

html {
	display: flex;
	flex-direction: column;
	background-color: #fcfcfc;
}

body {
	font-family: 'Lato','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}

nav {
	height: 60px;
}

.navbar {
	transition: 0.5s;
	color: rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.1);
}

.navbar-item img {
	height: 40px;
	width: auto;
	max-height: 100%;
}

.navbar-menu.is-active {
	background-color: transparent;
	border-top: 1px dashed #cacaca;
}

.header {
	background: url(img/background.jpg) center center;
	background-size: cover;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .container {
	margin-top: 52px;
}

.header h1 {
	text-align: center;
	font-weight: bold;
	font-size: 34px;
	color: white;
	text-shadow: 0 1px #101010;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1 1 auto;
	padding-top: 50px;
	padding-bottom: 50px;
}

.error, .information {
	font-size: 13px;
	background-color: white;
	border-style: dashed;
	margin-bottom: 20px;
	padding: 1em;
	border-width: 1px;
}

.error {
	color: #ff9090;
	border-color: #ff9898;
}

.information {
	border-color: #c6c6c6;
}

.information .warning {
	font-weight: bold;
	margin-bottom: 3px;
}

.information .warning:not(:first-child) {
	font-weight: bold;
	margin-top: 8px;
}

.information .warning:before {
	color: #fda400;
	font-family: 'Material Icons';
	content: "\e002";
	font-weight: normal;
	font-style: normal;
	margin-right: 2px;
	position: relative;
	top: 1px;
}

.information ul {
	font-size: 15px;
	font-weight: bold;
}

.information ul li {
	text-indent: -1.25em;
	padding-left: 1.25em;
}

.information ul li:before {
	font: 12px "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00c";
	margin-right: 8px;
	color: #bcbcbc;
}

.information ul li:not(:last-child) {
	margin-bottom: 0.5em;
}

/* @end */

/* @group Top */

.reg-btn .column {
	display: flex;
}

.reg-btn .card {
	text-align: center;
	width: 250px;
	margin-right: auto;
	margin-left: auto;
}

.card img {
	background-color: #ececec;
	padding: 20px;
	transition: 0.5s;
}

.card img:hover {
	padding: 5px;
	opacity: 0.5;
}

.deadline {
	font-size: 13px;
	margin-top: 10px;
	margin-bottom: 0;
}

.deadline .material-icons {
	font-size: 14px;
	position: relative;
	top: 2px;
	margin-right: 3px;
}

/* @end */

/* @group Session */

.session {
	background-color: white;
	padding: 1em;
}

.session:not(:last-child) {
	margin-bottom: 30px;
}

.acd-check {
	display: none;
}

.acd-label {
	display: block;
	margin-bottom: 1px;
	padding: 10px;
	transition: 0.3s;
	border-bottom: 1px dashed #c6c6c6;
	cursor: pointer;
}

.acd-label:after {
	font-family: 'Material Icons';
	content: "\e315";
	margin-left: 5px;
	position: relative;
	top: 2px;
}

.acd-label:hover:after {
	font-family: 'Material Icons';
	content: "\e313";
}

.acd-label:hover {
	background-color: #f4f4f4;
}

.acd-content {
	font-size: 14px;
	height: 0;
	opacity: 0;
	transition: 0.3s;
	visibility: hidden;
}

.acd-check:checked + .acd-label + .acd-content {
	height: 100%;
	opacity: 1;
	padding: 10px 0 20px 46px;
	visibility: visible;
}

/* @end */

/* @group Common */

.site-content h1 {
	color: #363636;
	font-size: 28px;
	font-weight: 400;
	text-align: center;
	padding: 0.5em 0.5em;
	margin-bottom: 25px;
}

.site-content h1 span {
	font-size: 20px;
	font-style: italic;
}

.site-content h1:after, .site-content h1:before {
	content: '';
	border-top: 1px solid;
	flex-grow: 1;
	display: block;
}

.site-content h2 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: bold;
}

h2 i.material-icons {
	position: relative;
	top: 4px;
	padding-right: 5px;
}

span:lang(en) {
	font-size: 80%;
	font-weight: normal;
	font-style: normal;
}

.site-content h1 span:lang(en):before, .site-content h2 span:lang(en):before {
	content: " / ";
}

.reg-info {
	font-size: 14px;
	margin-bottom: 10px;
	padding-right: 0.5em;
	padding-bottom: 5px;
	padding-left: 0.5em;
	border-bottom: 1px dashed #cfcfcf;
}

[class*="link-"]:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	margin-right: 2px;
	margin-left: 2px;
	position: relative;
	top: 2px;
}

a.link-ex:after {
	content: '\e89e';
}

a.link-pdf:after {
	content: '\e415';
}

a.link-download:after {
	content: '\e161';
}

a.link-mail:after {
	content: '\e0e1';
}

hr {
	height: 6px;
	background: url(img/hr.svg) center center repeat-x;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media all and (-ms-high-contrast: none) {
	hr {
		background: url(img/hr.png) center center repeat-x;
	}
}

.required {
	color: red;
}

.is-10pct {
	width: 10%;
}

.is-20pct {
	width: 20%;
}

.is-30pct {
	width: 30%;
}

.is-40pct {
	width: 40%;
}

.is-50pct {
	width: 50%;
}

.is-60pct {
	width: 60%;
}

.is-70pct {
	width: 70%;
}

.is-80pct {
	width: 80%;
}

.is-90pct {
	width: 90%;
}

/* @end */

/* @group Policy */

.policy h2:not(:first-child) {
	margin-top: 20px;
}

.plicy-list {
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 8px;
}

.plicy-list li {
	list-style-type: disc;
	margin-bottom: 8px;
}

.policy-btn {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 30px;
	font-weight: bold;
}

/* @end */

/* @group Form */

.table thead th {
	text-align: center;
}

th {
	background: #f7f7f7;
}

td:empty {
	background: url(img/na.png);
}

.table tbody th {
	width: 20%;
}

th span:lang(en) {
	line-height: 1em;
	display: block;
	border-top: 1px dashed #dbdbdb;
	margin-top: 5px;
}

.table th, .table td {
	vertical-align: middle;
}

th .required {
	font-weight: normal;
	font-style: normal;
	color: red;
	margin-left: 2px;
}

.flex-ai-center {
	display: flex;
	align-items: center;
}

.fee {
	margin-bottom: 0;
}

.fee caption {
	font-weight: bold;
	margin-bottom: 4px;
}

.fee th, .fee td {
	font-weight: normal;
	font-style: normal;
	white-space: nowrap;
}

.fee th {
	width: 70%;
}

.fee td {
	text-align: right;
	width: 30%;
}

input[type=text], input[type=radio], input[type=checkbox] {
	margin-right: 5px;
}

input[type=text]:not(:first-child), input[type=checkbox]:not(:first-child) {
	margin-left: 20px;
}

input[type="radio"][disabled]+label {
	color: silver;
}

.select:not(:last-child) {
	padding-right: 5px;
}

ul.eg {
	font-size: 14px;
	margin-top: 5px;
	color: #808080;
}

p.star, u {
	color: #fa6767;
}

ul.eg li:before, p.star:before {
	color: #e9a944;
	font-family: 'Material Icons';
	margin-right: 3px;
	position: relative;
	top: 2px;
}

ul.eg li:before {
	content: '\e88e';
}

p.star:before {
	content: '\e838';
}

.t-keyword th:nth-child(1), .t-affliation th:nth-child(1) {
	width: 4em;
	text-align: center;
}

.t-author tbody th:nth-child(1), .t-author tbody td:nth-child(2), .t-author tbody td:nth-child(3), .t-author tbody td:nth-child(7) {
	width: 4em;
	text-align: center;
}

.t-author-conf tbody th:nth-child(1), .t-author-conf tbody td:nth-child(5) {
	width: 4em;
	text-align: center;
}

th.no, td.no {
	background-color: #fff3cd;
}

.campaign-info {
	font-size: 14px;
	padding-top: 10px;
	padding-left: 20px;
}

.maru {
	font-family: 'ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}

:placeholder-shown {
	color: #d3d3d3;
}

::-webkit-input-placeholder {
	color: #d3d3d3;
}

:-moz-placeholder {
	color: #d3d3d3;
	opacity: 1;
}

::-moz-placeholder {
	color: #d3d3d3;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #d3d3d3;
}

.field {
	padding-top: 20px;
}

.button {
	color: white;
	border-style: none;
	padding-right: 1em;
	padding-left: 1em;
	transition: 0.5s;
}

.button[name=back] {
	background-color: #cfcfcf;
}

.button[name=next] {
	background-color: #0d4c81;
	box-shadow: 0 3px 15px rgb(0 90 101 / 30%);
	color: #ffffff;
}

.button[name=next] i, .button[name=payment] i {
	margin-left: 10px;
}

.button[name=del] {
	background-color: #fa7373;
}

.button[name=payment], .button[name=fup], .button[name=print] {
	background-color: #e9a944;
}

.button .material-icons {
	font-size: 18px;
}

.button .material-icons.lt {
	margin-right: 8px;
}

.button .material-icons.rt {
	margin-left: 8px;
}

.input:focus {
	background-color: #e6fefa;
}

.btns {
	border: 1px dashed silver;
	padding: 15px;
	display: flex;
	justify-content: center;
}

.button:hover {
	opacity: 0.5;
}

.mypage-btn .button {
	font-size: 14px;
	width: 150px;
}

/* @end */

/* @group Log in */

.box {
	margin-top: 50px;
	border-radius: 0px;
}

.avatar {
	margin-top: -70px;
	padding-bottom: 20px;
}

.avatar img {
	padding: 5px;
	background: #74d1c1;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 3px rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.1);
	box-shadow: 0 2px 3px rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.1);
	width: 100px;
	height: 100px;
}

.button.log-in {
	border-radius: 3px;
	transition: 0.3s;
}

/* @end */

/* @group File upload */

.article dt {
	float: left;
}

.uploadButton {
	font-size: 14px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	background: #74d1c1;
	color: #fff;
	text-align: center;
	line-height: 38px;
	width: 300px;
	cursor: pointer;
	transition: 0.5s;
}

.uploadButton .material-icons {
	font-size: 18px;
	position: relative;
	top: 3px;
	padding-right: 6px;
}

.uploadButton:hover {
	opacity: 0.5;
}

.uploadButton input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}

.uploadValue {
	display: none;
	background: rgba(255,255,255,0.2);
	border-radius: 3px;
	padding: 3px;
	color: #ffffff;
}

/* @end */

/* @group Receipt */

.receipt-no, .receipt-add, .receipt-fee {
	text-decoration: underline;
}

.receipt-no, .receipt-detail, .receipt-date {
	margin-bottom: 20px;
}

.receipt-no {
	text-align: right;
}

.receipt-add {
	margin-bottom: 40px;
}

.receipt-fee, .receipt-detail {
	text-align: center;
	padding-right: 40px;
	padding-left: 40px;
}

.receipt-fee {
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 10px;
}

.receipt-fee small {
	font-weight: normal;
	font-size: 64%;
}

.receipt-detail {
	font-size: 14px;
}

.receipt-date {
	
}

.iee-address {
	position: relative;
	display: inline-block;
	float: right;
	margin-bottom: 50px;
}

.iee-address img {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.receipt hr {
	clear: both;
}

div.list table td:empty {
	background-image: url(img/na.png);
}

/* @group Footer */

footer {
	background-color: silver;
	height: 100px;
	padding-top: 20px;
}

/* @end */

footer p {
	font-size: 13px;
	text-align: center;
}

/* @end */

/* @group Media Queries - メディアクエリ定義 */

@media screen and (max-width: 1080px) {
	.header>.container, .site-content>.container {
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media screen and (max-width: 768px) {
	div.flex-box {
		display: block;
	}
	
	.select, .input[class$="pct"] {
		width: 100%;
	}
	
	#hotel.input {
		width: calc(100% - 2em);
	}
	
	.input:not(:last-child) {
		margin-bottom: 5px;
	}
	
	span.select, select {
		width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.table {
		border-top: 1px solid #dbdbdb;
	}
	
	.table thead th, .table tbody th, .table tbody td {
		width: 100%;
		display: block;
	}
	
	.t-keyword th:nth-child(1), .t-affliation th:nth-child(1), .t-author tbody th:nth-child(1), .t-author tbody td:nth-child(2), .t-author tbody td:nth-child(3), .t-author tbody td:nth-child(7) {
		width: 100%;
	}
	
	.table th, .table td {
		border-top-style: none;
	}
	
	span:lang(en) br {
		display: none;
	}
	
	th span:lang(en) {
		line-height: 1em;
		display: inline;
		border-top-style: none;
		margin-top: 0;
	}
	
	th span:lang(en):before {
		content: " / ";
	}
	
	.t-author thead th:not(:nth-child(1)) {
		display: none;
	}
	
	.t-author tbody td:nth-child(2):before, .t-author tbody td:nth-child(3):before {
		font-family: 'ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
		content: attr(data-title);
		margin-right: 5px;
	}
	
	.fee {
		width: 100%;
	}
}

@media screen and (max-width: 320px) {
	.header {
		height: 200px;
	}
	
	.header h1 {
		font-size: 20px;
	}
	
	.flex-ai-center {
		display: block;
	}
}

/* @end */

/* @group Receipt Print */

@media print {
	.receipt .header, .receipt .navbar-brand, .receipt form, .receipt footer {
		display: none;
	}
	
	.iee-address {
		margin-bottom: 0;
	}
	
	.receipt hr {
		margin-top: 0;
		margin-bottom: 0;
		background: none;
	}
	
	.receipt div.site-content div.container {
		padding: 30px;
		border: 1px solid black;
	}
}

/* @end */


/*追加*/

.column {
	display: block;
	flex-basis: 0;
	flex-grow: 0;
	flex-shrink: 1;
	padding: 0.75rem;
}

@media screen and (min-width: 769px) {
	.columns:not(.is-desktop) {
		display: flex;
		justify-content: center;
	}
}


table.sanka_table , table.sanka_table td, table.sanka_table th {
	border: 1px solid #595959;
	border-collapse: separate;
	border-spacing: 10px;
	font-size: 14px;
}

table.sanka_table {
	width: 60%;
	border: 0px;
	margin: 0px auto;
}

table.sanka_table td {
	border: 0px;
	border-bottom: 1px dashed #363636;
}

table.sanka_table td, table.sanka_table th {
	padding: 3px;
	height: 25px;
	position: relative;
}

table.sanka_table th {
	background: #f3f2ec;;
	width: 25%;
	font-size: 16px;
}

table.sanka_table .even {
	background: #fbf8f0;
}

table.sanka_table .odd {
	background: #fefcf9;
}

table.sanka_table figure {
	width: 30px;
	height: 30px;
	display: inline-block;
}

table.sanka_table figure img {
	margin-top: 5px;
}

table.sanka_table th p {
	display: inline;
	position: absolute;
	top: 10px;
	left: 40px;
}

table.sanka_table td p {
	display: inline;
	position: absolute;
	top: 10px;
	left: 10px;
}

table.sanka_table th a {
	color: #363636;
	display: block;
}

table.sanka_table th a:hover {
	box-shadow: 0 0px 8px 8px rgba(238, 207, 85, 1);
	font-size: 18px;
	transition-duration: 300ms;
}

h6 {
	font-weight: bold;
	font-size: 15px;
}

.list {
	box-shadow: none;
}

table.faq_table {
	width: 90%;
	font-size: 14px;
}

table.faq_table td {
	padding: 0.5em;
}

table.faq_table td ol {
	padding-left: 1em;
}

table.faq_table td ol li {
	padding-left: 1em;
}

span.top_btn {
	background-color: rgba(15,146,173,0.4);
	color: #fff;
	padding: 10px 11px;
	border-radius: 60%;
	position: fixed;
	bottom: 3%;
	right: 5%;
}

span.top_btn a {
	display: block;
	color: #fff;
}

.sanka60 {
	width: 60%;
	margin: 0px auto;
}

@media screen and (max-width: 900px) {
	table.sanka_table {
		width: 100%;
	}
	
	.sanka60 {
		width: 100%;
	}
}
    
@media screen and (max-width: 600px) {
	table.sanka_table th, table.sanka_table td {
		display: block;
		width: 100%;
		height: 45px;
	}
}
    
    