@charset "UTF-8";
/*--------------------------------------------------

カラー設定
メインカラー（グリーン）	#00A593
サブカラー（グレー）	#63666A
サブカラー（グレー） #DADADA
サブカラー（黄緑）	#97D700
サブカラー（黄緑）	#C3DD88

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

タブレット（通常795px）
@media screen and (max-width: 970px) {

}

@media screen and (max-width: 420px) {

}


--------------------------------------------------*/


/*------------------------------------------
共催申込のご案内
------------------------------------------*/

/*各種募集内容*/
.sponsor_items {
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	gap: 40px;
}
/*スポンサーアイテムブロック*/
.sponsor_item {
	max-width: 300px;
	width: 100%;
	padding: 0;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}
/*カテゴリー名*/
.category {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 8px;
	border-radius: 8px 8px 0 0;
}
.category p {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	color: white;
}
/*セミナーカラー*/
.seminar_color {
	background-color: #717171;
}
/*展示カラー*/
.exhibit_color {
	background-color: #717171;
}
/*広告掲載*/
.ad_color {
	background-color: #717171;
}

/*募集項目*/
.sponsor_name {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 104px;
	margin: 0;
	padding: 8px;
}
.sponsor_name p {
	margin: 0;
	padding: 0;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
}

/*申込締切日*/
.time_limit {
	width: 100%;
	padding-bottom: 8px;
	border-bottom: 1px solid #B6B6B6;
}

.time_limit p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}
.time_limit p span {
	font-size: 21px;
}

.limit_word {
  display: flex;                /* Flexboxを有効化 */
  align-items: center;          /* 垂直方向の中央揃え */
  text-align: center;           /* テキストを中央に */
  font-size: 12px;              
}

.limit_word::before,
.limit_word::after {
  content: "";                  /* 疑似要素に必須 */
  flex-grow: 1;                 /* 線の長さを自動調整（残りの幅を埋める） */
  height: 1px;                  /* 線の太さ */
  background-color: #B6B6B6;       /* 線の色 */
}

.limit_word::before {
  margin-right: 15px;           /* 文字と左線の間隔 */
}

.limit_word::after {
  margin-left: 15px;            /* 文字と右線の間隔 */
}

/*申込フォームボタン*/
.sponsor_btn_block {
	width: 100%;
	padding: 20px 0;
}
.sponsor_btn {
	margin: 0 auto;
	width: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 46px;
	border-radius: 23px;
	background-color: #009990;
	color: white;
	font-size: 15px;
	text-align: center;
	box-shadow: 0px 2px 0px rgba(73,96,86,0.30);
	top: 0px;
	transition: ease 0.3s;
	outline: 1px solid #BEE8E6;
    outline-offset: -4px;
}


@media (hover: hover) and (pointer: fine) {
	.sponsor_btn:hover {
		background-color: #008375;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 2px;
	}
}
@media (hover: none) {
	.sponsor_btn:active {
		background-color: #009990;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 2px;
	}
}
@media screen and (max-width: 420px) {
	.sponsor_btn {
		font-size: 14px;
	}
}
.sponsor_btn a {
	display: block;
	width: 100%;
	color: white;
}

/*お問い合わせ*/
.contact_role {
	font-size: 17px;
	font-weight: 600;
}
.contact_name {
	margin-top: 20px;
	font-size: 17px;
	font-weight: 500;
}
.contact_address {
	font-size: 14px;
}
