@charset "utf-8";

#wrap {
	padding-bottom: 30px;
}

#wrap_l {
	width: 280px;
	order: 1;
	border-radius: 0 12px 0 12px;
	background: var(--green-color4);
}

#wrap_r {
	width: 810px;
	order: 2;
	position: relative;
}

@media screen and (max-width:768px) {

#wrap {
	padding-bottom: 15px;
}

#wrap_l {
	width: 100%;
}

#wrap_r {
	width: 100%;
	box-shadow: none;
}

}


/***** 見出し *****/

/* ページタイトル */
#page_ttl {
	margin-bottom: 20px;
	padding: 25px;
	/*background: var(--green-color4);*/
	background: url("../images/page_ttl_bg.png") no-repeat;
	background-size: cover;
	border-radius: 0 12px 0 12px;
    box-shadow: 0px 0px 15px -5px #fff;
}
#page_ttl h2 {
	color: #fff;
	font-size: 2.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
    line-height: 1.6em;
}
#page_ttl h2 span {
	font-size: 2.5rem;
}

/* 見出し */
/*.ttl {
	margin-bottom: 20px;
	padding: 10px 17px;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: var(--green-color1);
	border-radius: 0 12px 0 12px;
}*/

.ttl {
	margin-bottom: 15px;
	padding: 1.5% 2.5% 1.9% 2.5%;
	background: #c1e5ee;
	border-radius: 0 10px 0 10px;
}

.ttl span{
	padding-bottom: 3px;
	padding-top: 0px;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
	background: url("../images/leaf_icon.svg") no-repeat left center;
	padding-left: 4.6%;
	background-size: 20px;
    line-height: 1.4em;
}


.caption {
	margin-bottom: 15px;
	padding-left: 10px;
	padding-bottom: 6px;
	font-size: 1.8rem;
	font-weight: bold;
	border-left: 5px solid;
	border-bottom: 1px solid;
	border-color: var(--green-color4);
}
.sub_caption {
	margin: 0 0 6px;
	font-weight: bold;
	color: var(--green-color1);
}
.sub_caption2 {
	margin: 0 0 10px;
	font-weight: bold;
	color: var(--green-color1);
	padding: 1% 2% 1.2% 2%;
	border-radius: 4px;
	background: #f5f5f5;
	border-bottom: 2px solid #cfd3d5;
}


@media screen and (max-width:768px) {
	#page_ttl {
		margin: 14px 10px 13px 10px;
		padding: 10px;
	}	
	#page_ttl h2 {
		font-size: 1.9rem;
		text-align: center;
		background: none;
		padding-left: 0;
	}
    #page_ttl h2 span {
        font-size: 1.6rem;
    }
	#page_ttl h2:before {
		content: '';
        display: inline-block;
        width: 27px;
        height: 27px;
        background: url("../images/smileicon.svg") no-repeat left center;
        background-size: contain;
        vertical-align: middle;
		margin-bottom: 5px;
		margin-right: 7px;
	}
	.cate_ttl {
		margin-bottom: 15px;
		padding: 10px;
        font-size: 2rem;
	}
	.ttl {
		margin-bottom: 15px;
	}
    .ttl span{
        font-size: 1.8rem;
		padding-left: 7%;
		background-size: 16px;
    }
	.caption {
		padding-left: 7px;
        font-size: 1.6rem;
	}
	.sub_caption {
		margin: 15px 0 7px;
	}
}

/***** ボックス *****/
#contents {
	padding: 0 15px 0 5px;
}
#column {
	min-height: 740px;
	height: auto !important;
	height: 1000px;
	padding: 30px;
	background-color: #fff;
	border-radius: 0 12px 0 12px;
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
	word-break: normal;
    box-shadow: 0px 0px 15px -5px #bcd3c1;
}
#under {
	margin: 100px 0 0 100px;
}
.inner {
	margin-bottom: 40px;
}
.inner_item {
	margin-bottom: 30px;
}
.inner .inner_item:last-child {
	margin-bottom: 0;
}
.box {
	margin: 20px 0;
	padding: 20px;
}
.box_bk_gry {
	background-color: #f5f5f5;
}
.box_bk_red {
	background-color: #ffecec;
}
.box_bd_red {
	border: #cc0000 3px solid;
}
.box_bd_blue {
	border: var(--point-color) 3px solid;
}

@media screen and (max-width:768px) {
	#contents {
		padding: 0;
	}
	#column {
		min-height: auto;
		height: auto !important;
		margin: 0 10px;
		padding: 15px;
	}
	#under {
		margin: 100px 0;
		text-align: center;
	}
	.box {
		padding: 15px;
    }
}

/***** スマホテーブル *****/
@media screen and (max-width:768px) {
	.js-scrollable {
		overflow-x: scroll;
		width: 100%;
	}
}
/***** ページリンク *****/
.page_link {
	padding: 20px 20px 15px;
	display: flex;
	flex-wrap: wrap;
	background-color: #f5f5f5;
	border-radius: 5px;
}
.page_link li {
	margin: 0 20px 5px 0;
	padding-left: 15px;
	position: relative;
}
.page_link li::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #d5b45c;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.page_link li a {
	font-size: 1.5rem;
	color: #000;
}
/***** 画像 *****/
.fig {
	margin-top: 20px;
	margin-bottom: 20px;
}
.inner > .fig:first-child, .inner_item > .fig:first-child {
	margin-top: 0;
}
.inner > .fig:last-child, .inner_item > .fig:last-child {
	margin-bottom: 0;
}
.fig_full {
	width: 100%;
}
.fig_full img {
	width: 100%;
}
.fig_medium {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.fig_medium img {
	width: 100%;
}
.fig_half {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}
.fig_half img {
	width: 100%;
}
.fig_half a {
	transition: 0.5s;
}
.fig_half a:hover {
	opacity: 0.7;
}



/***** 会長挨拶 *****/
.greeting_ttl {
	margin: 50px 0 30px;
	padding: 15px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background-color: #99559f;
}
.greeting_fig img {
	width: 100%;
}
#greeting_box {
	width: 100%;
	height: 180px;
	margin-bottom: 30px;
	position: relative
}
#greeting_box h3 {
	font-size: 1.8rem;
	font-weight: bold;
}
#greeting_box dl {
	text-align: right;
	position: absolute;
	right: 170px;
	/*right: 0;*/
	bottom: 0;
}
#greeting_box dl strong {
	font-size: 1.8rem;
}
#greeting_box figure {
	width: 150px;
	position: absolute;
	right: 0;
	bottom: 0;
}
#greeting_box figure img {
	width: 100%;
}
.greeting_com {
	line-height: 1.8;
	text-indent: 1em;
}
@media screen and (max-width:768px) {
	.greeting_ttl {
		margin-bottom: 20px;
		padding: 10px;
		font-size: 1.8rem;
	}
	#greeting_box {
		height: auto;
		position: static;
	}
	#greeting_box dl {
		margin-top: 15px;
		text-align: center;
		position: static;
	}
	#greeting_box figure {
		margin: 20px auto 0;
		position: static;
	}
	.greeting_com {
		line-height: 1.7;
	}
}

/***** 開催概要 *****/
.general_dl {
	width: 100%;
	margin-bottom: 20px;
	display: table;
	border-bottom: 4px dotted;
	border-color: #d5d5d5;
}
.general_dl dt {
	width: 130px;
	padding-bottom: 20px;
	display: table-cell;
	font-size: 1.7rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
}
.general_dl dd {
	padding: 0 0 20px 20px;
	display: table-cell;
}

@media screen and (max-width:768px) {
	.general_dl {
		margin-bottom: 15px;
		display: block;
	}
	#contents_in .general_dl:nth-last-child(1) {
		margin-bottom: 0;
	}
	.general_dl dt {
		width: 100%;
		margin-bottom: 0;
		padding: 0 0 7px;
		display: block;
	}
	.general_dl dd {
		padding: 0 0 10px 0;
		display: block;
		border: none;
	}
}


/***** 演題募集 *****/

.abstract_tb {
	width: 100%;
}
.abstract_tb th {
	padding: 10px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	border: #ddd 1px solid;
	background-color: var(--green-color4);
}
.abstract_tb td {
	padding: 10px;
	font-size: 1.5rem;
	border: #ddd 1px solid;
}
.abstract_tb tr th:nth-child(1) {
	width: 40%;
}
.abstract_tb tr th:nth-child(2) {
	width: 20%;
}
.abstract_tb tr th:nth-child(3) {
	width: 40%;
}

.abstract_tb2 {
	width: 100%;
}
.abstract_tb2 th {
	padding: 10px;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	border: #ddd 1px solid;
	background-color: var(--green-color4);
}
.abstract_tb2 td {
	padding: 10px;
	font-size: 1.5rem;
	border: #ddd 1px solid;
}
.abstract_tb2 tr td:first-child {
	width: 16%;
}
.abstract_tb2 tr td:nth-child(2) {
	width: 33%;
}
.abstract_tb2 tr td:nth-child(3) {
	width: 51%;
}
.abstract_tb2 tr:nth-child(3) > td:nth-child(3) {
	width: 27%;
}

.abstract_tb2 .tb_bg_gray{
	background: #d7f3e7;
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width:768px) {
	
    .abstract_tb2 {
        width: 800px;
    }
	
}

/***** 倫理指針 *****/
.rinri-arrow {
  display: inline-block;
  width: 45px;
  height: 40px;
  background: #cc0000;
  clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
  margin: 15px 0 15px 20px;
}

.rinri_list dl {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
.rinri_list dl dt {
	width: 20%;
}
.rinri_list dl dd {
	width: 80%;
}
.rinri_movie{
	display: block;
	margin: 0 auto;
	width: 500px;
}

@media screen and (max-width:768px) {
.rinri_list dl {
	display: block;
}
.rinri_list dl dt {
	width: 100%;
}
.rinri_list dl dd {
	width: 100%;
}
.rinri_movie{
	width: 90%;
}
		
}


/***** 協賛申込 *****/
.sponsor_tb {
	width: 100%;
}
.sponsor_tb th {
	padding: 10px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	border: #ddd 1px solid;
	background-color: var(--green-color4);
}
.sponsor_tb td {
	padding: 10px;
	font-size: 1.5rem;
	border: #ddd 1px solid;
}
.sponsor_tb tr td:nth-child(1) {
	font-weight: 500;
}
.sponsor_tb tr td:nth-child(2) {
	font-weight: 500;
}
.sponsor_tb tr td:nth-child(3) {
	font-weight: 500;
	text-align: center;
}
.sponsor_tb tr td:nth-child(4) {
	width: 20%;
	text-align: center;
}
.sponsor_tb .sponsor_tb_btn a {
	padding: 3px 0;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background-color: var(--green-color4);
	display: block;
	border: 1px solid;
	border-color: var(--green-color4);
	transition: 0.5s;
	border-radius: 20px;
}
.sponsor_tb .sponsor_tb_btn a:hover {
	color: var(--green-color4);
	background-color: #fff;
}
.sponsor_tb .sponsor_tb_btn span.no_link {
	padding: 3px 0;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background-color: #cdcdcd;
	display: block;
	border: 1px solid;
	border-color:  #cdcdcd;
	transition: 0.5s;
	border-radius: 20px;
}
.company_icon {
	margin-right: 5px;
	padding: 3px 8px;
	font-size: 1.3rem;
	font-weight: bold;
	color: #7f3585;
	background-color: #fff7a4;
}
@media screen and (max-width:768px) {
	.sponsor_tb {
		width: 800px;
	}
	.sponsor_tb tr td:nth-child(1) {
		width: 18%;
	}
	.sponsor_tb tr td:nth-child(4) {
		width: 16%;
	}
	.sponsor_tb .sponsor_tb_btn a {
		padding: 5px 0;
	}
	.sponsor_tb .sponsor_tb_btn span.no_link {
		padding: 5px 0;
	}
}




/***** 宿泊のご案内 *****/
.accommodation_tb {
	width: 100%;
}
.accommodation_tb th {
	padding: 10px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	border: #ddd 1px solid;
	background-color: var(--base-color);
}
.accommodation_tb td {
	padding: 10px;
	font-size: 1.5rem;
	border: #ddd 1px solid;
}
.accommodation_tb tr td:nth-child(1) {
	font-weight: 500;
}
.accommodation_tb tr td:nth-child(2) {
	font-weight: 500;
}
.accommodation_tb tr td:nth-child(3) {
	font-weight: 500;
}
.accommodation_tb tr td:nth-child(4) {
	font-weight: 500;
}
.accommodation_tb .accommodation_tb_btn a {
	padding: 3px 0;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background-color: var(--point-color);
	display: block;
	border: 1px solid;
	border-color: var(--point-color);
	transition: 0.5s;
	border-radius: 20px;
}
.accommodation_tb .accommodation_tb_btn a:hover {
	color: var(--point-color);
	background-color: #fff;
}
@media screen and (max-width:768px) {
	.accommodation_tb {
		width: 800px;
	}
	.accommodation_tb tr td:nth-child(1) {
	}
	.accommodation_tb tr td:nth-child(4) {
	}
	.accommodation_tb .accommodation_tb_btn a {
		padding: 5px 0;
	}
}



/***** リンク *****/
.link_dl dt {
	padding-left: 15px;
	font-weight: bold;
	position: relative;
}
.link_dl dt::before {
	content: "";
	display: inline-block;
	border-style: solid;
	border-width: 5px 0 5px 7px;
	border-color: transparent;
	border-left-color: var(--point-color); 
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.link_dl dd {
	margin: 5px 0 20px;
	padding: 0 0 20px 20px;
	border-bottom: #603b6c 1px dotted;
}

@media screen and (max-width:768px) {
	.link_dl dt {
		padding-left: 15px;
	}
	
	.link_dl dt::before {
		border-width: 4px 0 4px 7px;
	}	
	.link_dl dd {
		margin: 5px 0 15px;
		padding: 0 0 15px 15px;
		border-bottom: #603b6c 1px dotted;
	}
	.link_dl dd:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
}



/***** 会場のご案内（アクセス） *****/
.access_arrow {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 62px;
}

.access_arrow::before,
.access_arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 45px;
  height: 4px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 2px) 50%;
}

.access_arrow::before {
  transform: rotate(45deg);
}

.access_arrow::after {
  transform: rotate(-45deg);
}


/***** Highlight Programのご案内 *****/

.hlpro_box {
	display: flex;
	justify-content: flex-start;
}

.hlpro_box figure {
	max-width: 140px;
	margin-right: 25px;
}

.hlpro_box figure img {
	width: 100%;
}

@media screen and (max-width:768px) {

.hlpro_box {
	display: block;
}

.hlpro_box figure {
	max-width: 100px;
	margin: 0 0 20px 0;
}

}
