@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　　　　　#0900BC
グリーン　　　　　　　　　　#75BC00
背景あいじろ　　　　　　　　#ebf6f7
オレンジ　　　　　　　　　　#F4A43B
ピンク　　　　　　　　　　　#F43BD2

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

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

--------------------------------------------------*/
/*------------------------------
演題募集
--------------------------------*/

/*募集期間*/
.period_block {
	margin: 40px 0;
}
.period {
	font-size: 16px;
	font-weight: 600;
}
.period span {
	font-size: 24px;
}

/*----------------------------------------
会員番号・会員登録に関するお問い合わせ
------------------------------------------*/
.contact_block {
	display: inline-block;
	margin: 10px;
	padding: 10px;
	border: 1px solid #9B9B9B;
	border-radius: 8px;
	background-color: #DBDBDB;
}
.contact_title {
	margin-top: 0;
	padding-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
	color: #1110D0;
	text-align: center;
	border-bottom: 1px solid #757575;
}
.contact_contents {
	font-size: 15px;
}
.contact_name {
	font-size: 16px;
	font-weight: 600;
}
.contact_address {
	padding-left: 10px;
	border-left: 6px solid #5C5C5C;
}

/*--------------------------------------
登録セッションブロック
--------------------------------------*/
.abstracts_flex {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}
.abstracts_name {
	font-weight: 600;
	line-height: 1.5em;
	flex: 1;
}
.purport_button {
	position: relative;
	display: inline-block;
	padding: 2px 20px 2px 8px;
	background-color: #00A9BC;
	color: white;
	font-size: 13px;
	border-radius: 4px;
	cursor: pointer;
}
.purport_button::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 12px;
	background-color: white;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	top: 8px;
	right: 6px;
	transform: rotate(0);
	transition: transform 0.3s ease;
}
/*--------------------------------
演題募集アコーディオン
----------------------------------*/
.acd-plus {
	
}
.acd-check{
    display: none;
}
.acd-label{

}
.acd-label::after{

}
.acd-content{
    display: block;
    height: 0;
	max-height: 0;
	margin: 0 10px 0 0;
	padding: 0 10px;
    opacity: 0;
	border-top: 1px dashed #838383;
    visibility: hidden;
	font-weight: 500;
	line-height: 1.5em;
	text-align: justify;
	transition: all 0.3s;
	/*
	transition-property: height, opacity;
    transition-duration: 0.5;
    transition-delay: 0.3s, 0.1s;
	transition-timing-function: ease-in;/*アニメーションがゆっくり開始される*/
	
}
.acd-check:checked ~ .abstracts_flex .purport_button::after {
	transform: rotate(90deg);
	/*ransform-origin:25%;*/
}


.acd-check:checked ~ .acd-content {
	height: auto;
	max-height: 100vh;
    opacity: 1;
	margin: 10px 10px 10px 0;
    padding: 10px 10px;
    visibility: visible;
}

/*--------------------------------------
演題登録に関するお問い合わせ
-----------------------------------------*/
.abstract_contact_title {
	padding-bottom: 6px;
	font-size: 17px;
	font-weight: 600;
	color: #1948BC;
	border-bottom: 1px dashed #CBCBCB; 
}
.abstract_contact_address {
	padding-left: 10px;
}
.abstract_contact_address .name {
	font-weight: 600;
	margin-bottom: 6px;
}
.abstract_contact_address .address {
	margin-top: 6px;
}