@charset "utf-8";

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base layout
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

.wrapper {
    width: 100%;
}

.main > div {
    width: min(92%, 960px);
    margin: 0 auto;
}
@media (min-width: 768px) {
    .main > div {
        display: flex;
        flex-direction: row-reverse;
    }
}

.contents {
    width: 100%;
}
@media (min-width: 768px) {
    .contents {
        width: 730px;
    }
}

.nav_secretariat {
    width: 100%;
}
@media (min-width: 768px) {
    .nav_secretariat {
        width: 230px;
    }
}

.contents.home {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
            "society-title"
            "society-outline"
            "society-theme"
            "society-committee"
            "news";
            align-content: flex-start;
}
.iten{
	position: relative;
}
.iten .text{
	position: absolute;
	bottom: 225px;
	left: 30px;
	background:rgba(255,255,255,0.8);
	border: 4px solid var(--key-color);
	border-radius: 7px;
	padding: 20px;
}
@media (max-width: 768px) {
	.iten div.text {
		bottom: 150px;
		left: 0;
		line-height: 1.3;
		padding: 10px;
	}
	.iten div.text p {
		font-size: 12px!important;
	}
}

/* サイドバナー */
.side_banner{
	margin:30px auto;
}
.side_banner a{
	display:block;
	max-width:220px;
	margin:10px auto;
}
.side_banner a:hover{
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}
.side_banner img{
	max-width:220px;
	margin: 10px auto;
}

.society-title {
    grid-area: society-title;
}

.society-outline {
    grid-area: society-outline;
}

.society-theme {
    grid-area: society-theme;
}

.news {
    grid-area: news;
}

.page-contents {
    grid-area: page-contents;
}

.nav_secretariat {
    width: 100%;
}
@media (min-width: 768px) {
    .nav_secretariat {
        width: 230px;
    }
}

.footer > div {
    width: min(92%, 960px);
    margin: 0 auto;
}

/* バナー */
.top_bnr{
	display: flex;
}
.top_bnr li{
	margin-right: 10px;
}
.top_bnr li img{
	max-width: 250px;
}
.top_bnr li img:hover{
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}

@media (min-width: 768px) {
	.top_bnr{
		width: 510px;
		margin: 0 auto;
	}
	.top_bnr li{
		display: block;
	}
	.top_bnr li img{
		margin: 10px auto;
	}
}

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base module & style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
	--key-color: #003476;
	--sub-color: #00A2E1;
	--point-color: #E85A9A;
	box-sizing: border-box;
    --space-s: 0.5em;
    --space-m: 1em;
    --space-l: 2em;
}

/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */
}
@media (min-width: 768px) {
	.sp_on {
        display: none;
    }
}

.pc_on {
    display: none;
}
@media (min-width: 768px) {
	.pc_on {
        display: block; /* PCのみ表示 */
    }
}

a {
    color: #0000FF;
    text-decoration: none;
}

a:hover {
    filter: brightness(90%) contrast(110%);
    transition: all 1s;
    text-decoration: none;
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 70px;
    position: fixed;
    border: 1px solid var(--point-color);
    background: var(--point-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
@media (min-width: 768px) {
    .page_top {
        right: 20px;
        bottom: 20px;
    }
}
.page_top::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-45deg);
}

/* @group メインエリア
------------------------------------------------------*/

.main {
    background-image: linear-gradient(var(--key-color), var(--key-color)), linear-gradient(#D3EBFA, #D3EBFA), linear-gradient(to top, #FFFFFF 0%, #D3EBFA 40%);
    background-position: center top, center top, center 205px;
    background-repeat: no-repeat;
    background-size: 100% 5px, 100% 205px, 100% 630px;
}
@media (min-width: 768px) {
    .main {
        background-image: linear-gradient(var(--key-color), var(--key-color)), linear-gradient(to top, #FFFFFF 0%, #D3EBFA 73%);
        background-position: center top, center top;
        background-size: 100% 5px, 100% 1015px;
    }
}

@media screen and (max-width:767px) {
    .contents {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
    }
}


/* @group ナビゲーション、運営事務局エリア
------------------------------------------------------*/

.logo {
    position: absolute;
    transform: translateX(calc(-50%));
    top: 15px;
    left: 50%;
}
@media (min-width: 768px) {
    .logo {
        position: relative;
        width: 230px;
        height: 100px;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.secretariat {
    margin-top: 0px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .secretariat {
        margin-top: 170px;
    }
}

/* @media screen and (max-width:767px) {
    .secretariat h3 {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
    }
} */

.secretariat h3 {
    height: 30px;
    background-color: var(--key-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.secretariat h3 span {
    margin-top: 2px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #FFFFFF;
}

.secretariat dl {
    margin-left: 10px;
    color: var(--key-color);
}

.secretariat dt {
    margin-bottom: 3px;
    font-size: 13px;
    font-weight: bold;
}

.secretariat dd {
    font-size: 12px;
    line-height: 1.3;
}


/* @group フッターエリア
------------------------------------------------------*/

.footer {
    height: 70px;
    background-color: var(--key-color);
}
@media (min-width: 768px) {
    .footer {
        height: 30px;
    }
}

.footer-copyright p {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .footer-copyright p {
        height: 30px;
    }
}

.footer-copyright p span {
        text-align: center;
}
@media (min-width: 768px) {
    .footer-copyright p span {
        text-align: left;
    }
}

/* @group トップページ
------------------------------------------------------*/

.society-title {
    padding-top: 80px;
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    .society-title {
        padding-top: 30px;
    }
}

.society-title img {
    width: 100%;
    height: auto;
}
@media (min-width: 768px) {
    .society-title img {
        width: calc(1244px / 2);
    }
    .society-title.child img {
        width: calc(1244px / 2.5);
    }
}

.society-outline {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #012145;
}
@media (min-width: 768px) {
    .society-outline {
        display: flex;
        justify-content: center;
        border-top: none;
        padding-top: 0px;
    }
}

.society-theme {
    margin-top: 24px;
}

@media screen and (max-width:767px) {
    .society-theme {
        margin-left: -4%;
        margin-right: -4%;
    }
}

.society-theme img {
    width: 100%;
    height: auto;
}
@media (min-width: 768px) {
    .society-theme img {
        width: calc(1460px / 2);
    }
}

.society-committee {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
@media (min-width: 768px) {
    .society-committee {
        margin-top: -105px;
    }
}

@media screen and (max-width:767px) {
    .news,
    .news h2 {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
    }
}

.news {
    margin-top: 25px;
    background-color: #FFFFFF;
}
@media (min-width: 768px) {
    .news {
        width: 730px;
        margin-top: 34px;
        margin-bottom: 50px;
    }
}

.news h2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .news h2 {
        margin-bottom: 30px;
    }
}
.news h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 30px;
    background-image: linear-gradient(#00A1AA, #00A1AA), linear-gradient(var(--key-color), var(--key-color));
    background-position: left bottom, right bottom;
    background-repeat: no-repeat;
    background-size: 50px 5px, 50px 5px;
}

.news h2 span {
	color: var(--key-color);
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-list {
    height: 150px;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .news-list {
        width: 510px;
        height: 110px;
        margin-right: auto;
        margin-left: auto;
    }
}

.news-list li {
    display: flex;
    font-size: 12px;
}

.date {
    width: 90px;
    font-weight: bold;
    color: #00A1AA;
}
@media (min-width: 768px) {
    .date {
        width: 85px;
    }
}

.excerpt {
    flex: 1;
    color: #4D4D4D;
}

/* @group ページ共通
------------------------------------------------------*/

@media screen and (max-width:767px) {
    .page-contents {
        min-height: 680px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
    }
}

.page-contents {
    min-height: 500px;
    padding: 20px 20px;
    margin-top: 15px;
    background-color: #FFFFFF;
    border-radius: 0 6px 0 0;
}
@media (min-width: 768px) {
    .page-contents {
        min-height: 1000px;
        margin-top: 25px;
    }
}

/* 既存の垂直マージンを削除 */
.page-contents > * {
	margin-top: 0;
	margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-contents > * + * {
	margin-top: var(--space, 2rem);
}

.page-title {
    position: relative;
    margin-top: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    padding: .3em 0 .2em 2em;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--key-color);
    color: var(--key-color);
}

.page-title::before {
    position: absolute;
    top: 0;
    left: .5em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: var(--sub-color);
    content: '';
}

.page-title::after {
    position: absolute;
    transform: rotate(15deg);
    top: .7em;
    left: 0;
    height: 8px;
    width: 8px;
    background: var(--key-color);
    content: '';
}

.page-title > span {
	font-size: clamp(1.125rem, 1.011rem + 0.485vw, 1.375rem);
	font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: var(--space, 2em);
}

.page-body>section>* {
    margin-top: 0;
    margin-bottom: 0;
}

.page-body>section>*+* {
    margin-block-start: var(--space, 1em);
}

.heading_h3 {
    height: 24px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, var(--key-color), var(--sub-color));
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 7px 100%;
    margin-bottom: 15px;
}

.heading_h3>span {
    margin-left: 10px;
    font-size: clamp(1rem, 0.943rem + 0.242vi, 1.125rem);
    font-weight: bold;
    line-height: 1.4;
}

.heading_h4 {
    margin-bottom: 10px;
}

.heading_h4 > span {
    font-size: clamp(1rem, 0.933rem + 0.308vw, 1.125rem);
    font-weight: bold;
}
.heading_h4-02 {
	margin-top: 10px;
	margin-bottom: 10px;
	background: linear-gradient(to right, var(--key-color), #fff);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 100% 2px;
	padding-left: 0.1em;
}
.heading_h4-02 > span {
	font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
	font-weight: bold;
	color: var(--sub-color);
}
.heading_h4.border,
.heading_h4.borders{
	border-bottom: 1px solid #ccc;
}
.heading_h4.borders span{
	font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1rem) 
}
.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* 米印インデント */

.kome_ja {
    padding-left: 0.6em;
    text-indent: -0.6em;
}

.kome_ja_num > li {
    padding-left: 2.1em;
    text-indent: -2.1em;
}

/* アイコン
--------------------------*/

.exlink::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}


.download:before {
    content: '\f019';
    /* ダウンロードのアイコン */
    font-family: FontAwesome;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf-o） */
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word-o） */
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint-o） */
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f003';
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: FontAwesome;
    margin-right: .5em;
}

.check::before {
    content: '\f046';
    font-family: FontAwesome;
    margin-right: .3em;
}

/*罫線*/

hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}

.inline {
    display: inline;
}

/*文字詰め*/

.feature {
    font-feature-settings: "palt";
}

/*囲み*/

.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}


/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.5em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}
.ol_part1{
	margin-left:2em;
}
.ol_part1 li{
	list-style-type:none;
	counter-increment:cnt;
}
.ol_part1 li::before{
	content:counter(cnt)")";
	display:inline-block;
	margin-left:-1.5em;
	width:1.5em;
}       

/*※入り*/
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

.asterisk li::before {
    content: '※';
    margin-right: .3em;
    position: relative;
    bottom: 1px;
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    background-color: #DDD;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}

/* ボタン */

.btn_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn_wrap.w220 a {
	min-width: 220px;
	width: 220px;
}
@media (min-width: 768px) {
    .btn_wrap {
        flex-direction: row;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .btn_wrap a,
		.btn_wrap.w220 a{
			width: 100%;
			margin: 10px auto;
    }
}



.btn a {
    width: 100%;
    background: linear-gradient(to bottom, var(--key-color), var(--key-color));
    background-repeat: no-repeat;
    background-position: left top;
    box-shadow: 0 3px #000;
    position: relative;
    display: inline-block;
    top: -2px;
    padding: 15px 0;
    border-radius: 6px;
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    display: block;
    transition: background .5s, box-shadow .5s, top .5s;
}
.btn.line2 a{
	line-height: 1.2;
	padding: 9px 0;
}
@media (min-width: 768px) {
    .btn a {
        min-width: 300px;
    }
}

.btn a:hover {
    background: linear-gradient(to bottom, var(--key-color), var(--key-color));
    box-shadow: 0 1px #000;
    top: 1px;
}

/* 会長挨拶 */
.chairman {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    text-align: right;
}
@media screen and (max-width:767px) {
    .chairman {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}

.chairman img {
    width: 170px;
    height: auto;
}

.chairman span {
    font-size: 1.2em;
}

.salutation p {
    text-indent: 1em;
    line-height: 1.7;
	font-size:13.5px;
    padding: 0 .5em;
    margin-bottom: 0.75em;
}
.salutation p i{
	font-style:italic;
}


/* 開催概要 */
.outline_style {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    font-feature-settings: "palt";
}
@media (min-width: 768px) {
    .outline_style {
        flex-direction: row;
        gap: 0;
        margin-left: 10px;
        margin-bottom: 30px;
        font-feature-settings: "palt";
    }
}

.outline_style dt {
    width: 100%;
}
@media (min-width: 768px) {
    .outline_style dt {
        width: 120px;
    }
}

.outline_style dt > span {
    height: 30px;
    display: flex;
    align-items: center;
    background: var(--sub-color);
    color: #fff;
    font-weight: bold;
    padding-left: 1em;
}
@media (min-width: 768px) {
    .outline_style dt > span {
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
}

.outline_style dd {
    flex: 1;
    margin-left: 10px;
    padding: 3px 7px;
    border-bottom: 1px rgba(41, 169, 224, 0.2);
    border-style: solid;
}
.twitter-timeline{
	margin:30px auto!important;
}
@media (min-width: 768px) {
    .outline_style dd {
        margin-left: 20px;
    }
	.twitter-timeline{
		margin:30px 3px 30px 0!important;
	}
}

.outline_style dd > ul > li {
    margin-bottom: 3px;
}

.outline_style dd > ul > li > span {
    display: inline-block;
}

/* 協賛のお願い */

.entry_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.entry_btn a {
    width: 100%;
    max-width: 220px;
    background-color: var(--point-color);
    border-radius: 3px;
    padding: 3px 6px;
    text-align: center;
    text-decoration: none;
    color: var(--key-color);
    transition: all 0.5s;
    line-height: 1.2;
}

/* 開催概要 */
.outline-detail {
    display: grid;
    row-gap: 5px;
    line-height: 1.7;
    margin-left: 0.25em;
}
@media (min-width: 768px) {
    .outline-detail {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 10px;
        margin-left: 0.5em;
    }
}

.outline-detail dt {
    width:100%;
    font-weight: bold;
    color: var(--key-color);
}
@media (min-width: 768px) {
    width:100px;
}

@media (min-width: 768px) {
    .outline-detail dt {
        width:130px;
        flex-shrink: 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: baseline;
        justify-content: space-between;
    }
}

.outline-detail dt span::before {
    content: "\f14b";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-size: 0.8em;
    position: relative;
    bottom: 1px;
    color: var(--point-color);
}

.outline-detail dd {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5em;
}
@media (min-width: 768px) {
    .outline-detail dd {
        width: calc(100% - 130px - 10px);
        padding-bottom: 0.5em;
    }
}

.organization-list {
    display: grid;
    align-items: start;
    gap: 5px;
}

.organization-list li {
    display: grid;
    align-items: center;
    color: var(--sub-color);
}
@media (min-width: 768px) {
    .organization-list li {
        grid-template-columns: 90px 1fr;
        align-items: baseline;
    }
}

.organization-list li > span {
    font-weight: normal;
    color: #333;
}

/* ご挨拶
--------------------------*/
.presidentBox {
	margin:0 auto;
	padding:10px 15px;
	position:relative;
	border-bottom:1px solid #ccc;
}
.presidentBox img{
	width:150px;
	margin: 10px auto;
}
.presidentBox p {
	text-align:center;
}
.mainTxt02 {
	line-height:180%;
	margin:1em auto;
	text-indent:1em;
}
@media (min-width: 768px) {
	.presidentBox img{
		float:right;
	}
	.presidentBox p {
		text-align:right;
		position:absolute;
		top:145px;
		right:185px;
	}
}

/* 演題登録
--------------------------*/
.pro_sub{
color: var(--key-color);
	font-weight: bold;
	font-size: 16px;
}

/* 会場までのご案内
--------------------------*/
.accessmap{
	width: 100%;
}
@media (min-width: 768px) {
	.accessmap{
		max-width: 680px;
	}
}

/* プログラム
--------------------------*/

.program_wrap {
    font-feature-settings: "palt";
}

.program_wrap > * + * {
    margin-top: 10px;
}

.program_title {
    border-bottom: 1px dotted #ccc;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--key-color);
}

.program_title span {
    display: block;
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}
@media (min-width: 768px) {
    .program_title span {
        display: inline-block;
    }
}
.program_title span::before {
    content: "\f017";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-size: 0.85em;
    position: relative;
    bottom: 1px;
    color: var(--point-color);
}

.program_organized {
    font-weight: bold;
    color: var(--point-color);
}

.program_subtitle {
    font-weight: bold;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.pro_venue{
	background: var(--sub-color);
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding: 7px;
	margin: 20px 0 10px;
}
.endai{
	font-weight: bold;
}
.program_speaker {
    display: flex;
    gap: 10px;
}

.program_speaker dt {
    min-width: 30px;
    font-weight: bold;
    color: var(--sub-color);
}

.program_speaker dd {
    flex: 1;
    border-left: 1px dotted #ccc;
    padding-left: 10px;
    font-size: 14px;
    color: #666;
}

.program_speaker dd > * + * {
    margin-top: 5px;
}

.program_speaker dd ul {
    display: flex;
    flex-direction: column;
	margin-top: 0;
	margin-bottom: 0;
}
@media (min-width: 768px) {
    .program_speaker dd ul {
        flex-direction: row;
        gap: 10px;
    }
}

.program_speaker dd > * + * {
    margin-top: 10px;
}

.program_speaker dd ul li:first-child {
    min-width: 60px;
}

.program_speaker dd ul li:last-child {
    flex: 1;
    font-size: 0.8em;
}


/* 参加者へのご案内 */
.schedule_list {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.schedule_list dt {
	width: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.schedule_list dt span {
	width: 80px;
	text-align: center;
	padding: 2px 5px;
	background-color: var(--key-color);
	color: #fff;
}
.schedule_list dd.lh2 {
	line-height: 2;
}
.sp_ml100{
	margin-left: 100px;
}
.indent1em{
	text-indent: -1em;
	padding-left: 1em;
}
.indent15em{
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.indent2em{
	text-indent: -2em;
	padding-left: 2em;
}
.indent25em{
	text-indent: -2.4em;
	padding-left: 2.4em;
}
.indent3em{
	text-indent: -3em;
	padding-left: 3em;
}
.indent4em{
	text-indent: -4em;
	padding-left: 4em;
}
.indent5em{
	text-indent: -5em;
	padding-left: 5em;
}
.indent6em{
	text-indent: -6em;
	padding-left: 6em;
}

@media (max-width: 768px) {
	.sp_ml100{
		margin-left: 0;
	}
}

/* TOP案内 */
.top_info {
	max-width: 650px;
	background: #fff;
	border: 3px solid #cc0700;
	padding: 20px;
	margin: 0 auto 30px;
}

/* 市民フォーラムチラシ */
.citizens-forum {
	display: block;
	width: 300px;
	background: linear-gradient(to bottom, #bc0b21, #bc0b21);
	background-repeat: no-repeat;
	background-position: left top;
	box-shadow: 0 3px #000;
	border-radius: 6px;
	text-decoration: none;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	padding: 15px 0;
	margin: 20px auto;
}
.citizens-forum:hover {
	filter:alpha(opacity=65);
	-moz-opacity:0.65;
	-khtml-opacity: 0.65;
	opacity:0.65;
	cursor:pointer;
}
.shimin_ryakureki figure {
	float: right;
  margin: 0 0 15px 15px;
  width: 30%;
}
.shimin_ryakureki figure img {
	max-width: 100%;
}
.shimin_ryakureki p {
	margin-bottom: 15px;
  line-height: 1.6em;
}

/*囲みピンク*/
.border_pink{
	border: 3px solid rgba(245, 200, 200, 0.4);
	background: rgba(245, 200, 200, 0.1);
	padding: 1em 2em;
}
/*囲み青*/
.border_blue{
	border: 3px solid rgba(199, 222, 245, 0.4);
	background: rgba(199, 222, 245, 0.1);
	padding: 1em 2em;
}

@media (max-width: 768px) {
	.citizens-forum{
		width: 100%;
	}
}


















