@charset "utf-8";

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

.wrapper {
    width: 100%;
	margin: 0 auto;
	background: none;
}
@media (min-width: 768px) {
	.wrapper {
    	width: 100%;
		margin: 0 auto;
		background: url("../images/bg-body2.png") center top no-repeat;
	}
}

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

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

.nav_secretariat {
    width: 100%;
	background: var(--sub-color);
	padding-top: 5px;
	margin-top: 0px;
}
@media (min-width: 768px) {
    .nav_secretariat {
        width: 230px;
		margin-top: 38px;
		padding-top: 0px;
		background-color: rgba(255,255,255,0.5);
    }
}

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


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

:root {
	--key-color: #3c87b3;
	--sub-color: #ffffff;
	--point-color: #1d628a;
	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: 55px;
    position: fixed;
    border: 1px solid var(--sub-color);
    background: var(--point-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
@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 ヘッダーエリア
------------------------------------------------------*/

.header {
    background: url(../images/bg.png) left top repeat-x, #fff;
}

@media (min-width: 768px) {
    .header.home {
        min-height: 650px;
    }
}

.header > * {
    width: min(92%, 1200px);
    margin-left: auto;
    margin-right: auto;
}


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

.main {
    width: 100%;
    /*background-image: linear-gradient(var(--key-color), var(--key-color)), url(../images/bg_sp.png);*/
    /*background-position: center top, left 5px;*/
    /*background-repeat: repeat-x;*/
    /*background-size: 100% 5px, 10px 705px;*/
	box-shadow: 0 8px 3px -3px #3A4C64 inset;
}
/* @media (min-width: 768px) {
    .main {
        background-image: linear-gradient(var(--key-color), var(--key-color)), url(../images/bg.png);
		background-image: url("../images/bg-main.png");
		background-position: left top;
		background-repeat: repeat-x;
    }
} */

/* @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%);
    }
} */

@media (min-width: 768px) {
    .contents {
        position: relative;
		padding-bottom: 40px;
    }

    .contents::before {
        position: absolute;
        content: "";
        width: 10px;
        height: 1170px;
        /*background-image: url(../images/shadow.png);*/
        background-position: left 55px;
        background-repeat: no-repeat;
        /*background-size: 10px 1115px;*/
        left: 0;
        mix-blend-mode: multiply;
        z-index: 1;
    }

}


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

.poster-download {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .poster-download {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}



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

.footer {
    height: auto;
    background: var(--point-color);
}
@media (min-width: 768px) {
    .footer {
        height: auto;
    }
}

.footer-copyright p {
    width: 100%;
    height: 85px;
    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: 11px;
    color: var(--point-color);
    line-height: 1.4;
	background-color: var(--sub-color);
	text-align: center;
}
@media (min-width: 768px) {
    .footer-copyright p {
        height: 50px;
    }
}

.footer-copyright p span {
        text-align: center;
}

.footer-inner {
	padding: 20px;
}
@media (min-width: 768px) {
	.footer-inner {
		display: flex;
		padding: 0 0 20px;
	}
}


.secretariat {
    margin-top: 20px;
}
@media (min-width: 768px) {
    .secretariat {
        margin-top: 20px;
		display: flex;
    }
}

.secretariat h3 {
	width: 90px;
    height: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
	color: var(--key-color);
	border: 1px solid var(--key-color);
}
@media (min-width: 768px) {
    .secretariat h3 {
		width: 90px;
    }
}

.secretariat h3 span {
    margin-left: 10px;
    margin-top: 2px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: var(--key-color);
	padding: 0 1%;
}
@media (min-width: 768px) {
    .secretariat h3 span {
        margin-left: 10px;
    }
}

.secretariat dl {
    padding-bottom: 15px;
    color: var(--sub-color);
	padding: 0 0 15px;
}
@media (min-width: 768px) {
    .secretariat dl {
        margin-left: 10px;
		margin-right: 150px;
		padding: 0;
    }
}

.secretariat dt {
    margin-bottom: 3px;
	margin-top: 3px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .secretariat dt {
        font-size: 13px;
    }
}

.secretariat dd {
    font-size: 12px;
    line-height: 1.7;
	padding-left: 1em;
}
.secretariat dd span {
	font-weight: 600;
}

.secretariat dd a {
    color: #00ffff;
}



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

.society-title {
    /*display: flex;*/
    justify-content: center;
	padding-top: 0px;
}
@media (min-width: 768px) {
    .society-title {
        width: 100%;
        padding-top: 0px;
        justify-content: flex-end;
    }
}

.society-title img {
    width: 100%;
    height: auto;
	margin: 0px auto 0;
}
@media (min-width: 960px) {
    .society-title img {
        width: 960px;
        height: auto;
		margin: 0px auto 0;
    }
}

/* .cnt-home {
	border-top: 2px solid #386a64;
} */
@media (min-width: 768px) {
    /* .cnt-home {
        border-top: 1px solid #386a64;
	} */
}

.contents.home > div:nth-of-type(1) {
    position: relative;
    width: 100%;
    display: flex;
	height: auto;
    justify-content: space-between;
    margin-top: 0px;
    z-index: 1;
	background: url("../images/cnt-home_sp.png") no-repeat;
	background-size: contain;
	padding-bottom: 125%;
}
@media (min-width: 768px) {
    .contents.home > div:nth-of-type(1) {
        justify-content: flex-end;
        gap: 40px;
        margin-top: 40px;
		min-height: 870px;
		background: none;
		padding-bottom: 0px;
    }
}

.society-outline img {
    width: 100%;
    height: auto;
	margin: 0 auto;
}
@media (min-width: 768px) {
    .society-outline img {
        width: 730px;
        height: auto;
		margin: 0
    }
}

.society-theme {
    margin: 0 auto;
	text-indent: -9999px;
}

.society-theme img {
    width: 100%;
    height: auto;
}
@media (min-width: 768px) {
    .society-theme img {
        width: 730px;
        height: auto;
		margin-top: 60px;
    }
}

.society-video {
    width: 100%;
    position: relative;
    margin-top: -10px;
}
@media (min-width: 768px) {
    .society-video {
        width: 730px;
        margin-top: -200px;
    }
}

.society-video::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    background-image: linear-gradient(to bottom, #dee3cb, #ebe8c9);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
}

.society-video .movie {
    width: 100%;
    height: 395px;
    object-fit: cover;
    position: relative;
}
@media (min-width: 768px) {
    .society-video .movie {
        width: 730px;
        height: 760px;
    }
}

.society-video::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    background-image: linear-gradient(to top, #FFFFFF 30%, transparent);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
}

.movie__btn {
    position: relative;
    z-index: 1;
}

.movie__btn button {
    width: 150px;
    font-size: 12px;
    padding: 0.5em 1em;
    border-radius: 50px;
    box-shadow: initial;
    display: inline-block;
    appearance: none;
    border: 1px solid #333;
    background-color: initial;
    cursor: pointer;
    position: absolute;
}

@media (min-width: 768px) {
    .movie__btn button {
        top: 20px;
        left: 20px;
    }
}

@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: 0px;
    background-color: #FFFFFF;
}
@media (min-width: 768px) {
    .news {
        width: 730px;
        margin-top: 0px;
    }
}

.tit-new {
	width: 97%;
	height: 35px;
	margin: 0 auto 30px;
	background: #1d628a;
	color: #fff;
	font-size: 1.3em;
	font-weight: 600;
	line-height: 2.0;
	padding-left: 3%;
}
@media (min-width: 768px) {
.tit-new {
	width: 660px;
	height: 30px;
	margin: 0 auto 30px;
	color: #fff;
	font-size: 1.1em;
	line-height: 2.0;
	padding-left: 10px;
}
.tit-new img {
	margin: 0 auto;
}
}

.news h2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.news h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 30px;
    background-image: linear-gradient(var(--sub-color), var(--sub-color)), 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: 210px;
    padding: 0 4%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: scroll;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .news-list {
        margin-bottom: 30px;
        height: 160px;
        gap: 10px;
        width: 630px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

.date {
    width: 80px;
    font-weight: bold;
    color: var(--point-color)
}
@media (min-width: 768px) {
    .date {
        width: 80px;
    }
}

.excerpt {
    flex: 1;
    color: #666666;
}

/* @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: 600px;
    margin-top: 0px;
    /*background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 70px, #FFFFFF 100%);*/
	background-color: #fff;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
@media (min-width: 768px) {
    .page-contents {
        min-height: 930px;
        margin-top: 38px;
		padding-top: 10px;
    }
}

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

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

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

.page-title {
    width: 100%;
    height: 40px;
	height: auto;
    /*align-items: center;
    background: linear-gradient(to right bottom, var(--key-color) 50%, transparent 100%);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;*/
    /* margin-bottom: 30px; */
	background-color: var(--point-color);
	text-align: center;
	padding: 5px 0;
}
@media (min-width: 768px) {
    .page-title {
        width: 710px;
		margin: 0 auto;
		padding: 0;
    }
}
.page-title > span {
    font-size: clamp(1.0rem, 1.111rem + 0.445vi, 1.2rem);
    font-weight: bold;
    color: var(--sub-color);
    /*text-shadow: 3px 3px 3px rgba(0,0,0,0.2);*/
   	text-align: center;
	line-height: 1.5;
}

@media (min-width: 768px) {
    .page-title > span {
        /*text-indent: -2em;
        margin-left: 3em;*/
		line-height: 1.9;
    }
}

/*.page-title > span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f621";
    font-weight: 900;
    font-size: 0.9em;
    padding-right: .7rem;
    opacity: 0.5;
}*/

.page-body {
    padding: 10px 4%;
}
@media (min-width: 768px) {
    .page-body {
        padding: 10px 30px;
    }
}

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

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

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

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

/* 見出し
--------------------------*/
.heading_h3 {
    position: relative;
    margin-bottom: 0px;
	margin-top: 30px;
  }
  
  .heading_h3::before {
    position: absolute;
    top: 40%;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--sub-color);
    opacity: 0.3;
  }
  
  .heading_h3 > span {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0 1em 0 0;
    border-bottom: 1px solid #5FC7FC;
    font-size: clamp(0.938rem, 0.832rem + 0.451vi, 1.125rem);
    font-weight: bold;
    /*text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);*/
    font-feature-settings: "palt";
    color: var(--key-color);
  }
  
  .heading_h3 > span::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    margin-right: 0.5em;
    font-weight: 900;
    font-size: 0.75em;
    position: relative;
    bottom: 2px;
    color: var(--point-color);
  }
  
  .heading_h4 {
    position: relative;
    padding: 0.75em 0.75em 0.5em 0.25em;
    margin-bottom: 10px;
  }
  .heading_h4::after {
    position: absolute;
    top: 0.5em;
    left: 0;
    content: "";
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  
  .heading_h4 > span {
    margin-left: 0.5em;
    font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
    font-weight: bold;
    color: var(--key-color);
  }

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* .page-body p,
.page-body ul,
.page-body ol,
.page-body dl,
.page-body table,
.page-body figcaption {
    font-size: clamp(0.813rem, 0.727rem + 0.364vw, 1rem);
} */

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

.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;

}

/*ボタン*/
.ul_btn_css {
	margin: 10px auto 10px;
	text-align: center;
}
	.ul_btn_css li {
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin-bottom: 10px;
		list-style: none;
		display: inline;
		margin: 0 20px;
	}
		.ul_btn_css li a {
			display: inline-block;
			min-width: 250px;
			padding: 15px;
			color: #fff;
			text-decoration: none;
			background: #5C509E; 
			-webkit-box-shadow: 0 0 5px 0 #999;
			-moz-box-shadow: 0 0 5px 0 #999;
			box-shadow: 0 0 5px 0 #999; 
		}
		.ul_btn_css.w300 li a {
			width: 300px;
		}
		.ul_btn_css li a:hover {
			filter:alpha(opacity=50);
			-moz-opacity:0.5;
			-khtml-opacity: 0.5;
			opacity:0.5;
		}

.ul_btn_css.bg_blue a {
	background: #238ae6;
}

@media (min-width: 768px) {
	.ul_btn_css.w350 li a {
		width: 350px;
	}
}

/*リストスタイル*/
.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;
}

/*※入り*/
.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;
    vertical-align: middle;
}

.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;
}

@media (max-width: 768px) {
	.sp_block{
		display: block;
	}
	.ul_btn_css.sp_block a{
		margin: 10px auto;
	}
	.tbl-style01.sp100{
		width: 100%!important;
	}
}

/* 開催概要 */
.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;
    border-left: solid 2px var(--key-color);
    color: var(--key-color);
    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;
}

/* ごあいさつ */

.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;
    margin-bottom: 1em;
    padding: 0 .5em;
    line-height: 1.7;
}
.heading_h3--theme > span {
position: relative;
z-index: 2;
display: inline-block;
padding: 0 1em 0 0;
background-color: #fff;
font-size: clamp(0.938rem, 0.832rem + 0.451vi, 1.125rem);
font-weight: bold;
text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
font-feature-settings: "palt";
color: var(--key-color);
}

/* .heading_h3--theme > span::before {
content: "\f0c8";
font-family: "Font Awesome 5 Free";
margin-right: 0.5em;
font-weight: 900;
font-size: 0.75em;
position: relative;
bottom: 2px;
color: var(--sub-color);
} */


/* 会長挨拶
--------------------------*/
.presidentBox {
	margin:0 auto;
	padding:10px 15px;
	position:relative;
	border-bottom:1px solid #ccc;
}
.presidentBox img{
	width:150px;
		float:right;
}
.presidentBox p {
	text-align:right;
	position:absolute;
	top:155px;
	right:180px;
}
.mainTxt02 {
	line-height:180%;
	margin:1em auto;
	text-indent:1em;
}

@media screen and (max-width:767px) {
	.presidentBox img{
		float:none;
		margin: 20px auto;
	}
	.presidentBox p {
		text-align:center;
		position: static;
		text-align: center;
	}
}

/* リンク
--------------------------*/
.ul_linkList{
	margin-bottom: 20px;
}
.ul_linkList a{
	color: #333;
	font-size: 16px;
}
.ul_linkList li{
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}
.ul_linkList i{
	color: var(--point-color);
	font-size: 18px;
}


/* What's New 開閉式
--------------------------*/   
.btn_juyo:hover{
	cursor:pointer;
}
#shosai{ 
	display:none;
    border: 1px solid #ccc;
	padding:10px;
    margin-left: 15px;
}
.ul_indent1em{
    text-indent: -.7em;
    padding-left: .7em;
}
.ul_indent1em li {
    display: block;
}

.ml233{
    margin-left: 233px;
}
@media screen and (max-width:767px) {
    .ml233{
        margin-left: 0;
    }
}


/* プログラム */
.pro-ttl {
    position: relative;
	padding: .75em .75em .5em .25em;
	margin-bottom: 10px;
}
.pro-ttl::after {
    position: absolute;
	top: .5em;
	left: 0;
	content: '';
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color:#003F8F;
	border-radius: 4px;
}
.pro-ttl span {
    margin-left: 0.5em;
	font-size: 19px;
	font-weight: bold;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	color:#000;
}
.main.program .heading_h3 {
    border-bottom: 1px solid #5FC7FC;
    padding-bottom: 5px;
    margin: 0 0 10px;
}
.main.program .heading_h3 span {
    border-bottom: none;
    font-size: 16px;
    text-indent: -18px;
    margin-left: 18px;
}
.program .heading_h4 {
	display:flex;
	margin-bottom: 10px;
	margin-left: 0.1em;
}
.program .heading_h4 > span {
	background-image: linear-gradient(#DDDDDD, #DDDDDD);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 100% 10px; 
	transition: background 2s ease;
	font-size: 16px;
	font-weight: bold;
}
.icon_ond1{
	width:140px;
	height:25px;
	line-height:25px;
	border: none;
	background:#003F8F;
	border-radius: 4px;
	color:#fff;
	text-align:center;
	font-size:0.9em;
	margin:-2px 0 0 2em;
}
.icon_ond2{
	width:140px;
	height:25px;
	line-height:25px;
	border: none;
	background:#A0CBFE;
	border-radius: 4px;
	color:#000;
	text-align:center;
	font-size:0.9em;
	margin:-2px 0 0 2em;
}
.page_navi {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px;
	justify-content: center;
}
@media screen and (max-width:767px) {
    .page_navi {
        grid-template-columns: repeat(1, auto);
    }
}
.page_navi > li a {
	width:280px;
	display: flex;
	justify-content:center;
	border: 1px solid #003F8F;
	background-color: rgba(238, 238, 238, 0.3);
	padding:10px;
	text-decoration: none;
	color:#003F8F;
}
.page_navi > li a:hover {
	filter: brightness(90%) contrast(120%);
	transition: all 0.5s;
}
.page_navi .fa-sort-desc{
	margin-top:1px;
}
.sec_program:not(:last-child) {
	margin-bottom: 30px;
}
.pro_body {
	display: grid;
	row-gap: 5px;
}
.pro_theme_big {
	background-color: #EEEEEE;
	padding: 3px 6px;
	font-weight: bold;
	color: #666666;
}
.pro_theme_small {
	border-bottom: 1px solid #CCCCCC;
	padding: 3px 6px;
	margin-left: 8px;
	font-weight: bold;
}
.pro_date-venue {
	font-weight: bold;
	color:#000000;
	text-align: right;
}
.pro_date-venue::before {
	font-family: "Font Awesome 5 Free";
	content: "\f274";
	font-size: 0.8em;
	font-weight: 900;
	opacity: 0.5;
	margin-right: 5px;
	position: relative;
	bottom: 1px;
}
.pro_kyosai {
    /* color: #5C509E; */
    font-weight: bold;
	text-align: right;
    margin-top: 0;
}
.pro_title {
	font-weight: bold;
	color:#000000;
	line-height: 1.2;
	padding-left:.5em;
	margin-bottom: 5px;
}
.pro_body dl {
	display: flex;
	align-items: baseline;
	padding-left: .5em;
	padding-right: .5em;
	/* line-height: 1.2; */
    line-height: 1.4;
}
.pro_body dt {
	width: 100px;
	display: flex;
	align-items: center;
}
.pro_body dt span {
	width: 60px;
	padding-top: 2px;
	padding-bottom: 2px;
	border: 1px solid #003F8F;
	background-color: #003F8F;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
.pro_body dt span.bg_none{
	border:none;
}
.pro_body .pro_speaker dt span {
	background-color: #FFFFFF;
	color:#003F8F;
}
.pro_body .pro_speaker dl.kyosai dd{
	padding-left:6px;
}
.pro_body dd {
	flex: 1;
}
.pro_body dd ul {
	display: flex;
	align-items: baseline;
	padding-left: .5em;
	padding-right: .5em;
    margin-bottom: 5px;
}
.pro_body dd ul li:first-child {
	width: 100px;
}
.pro_body dd ul li.s-long:first-child {
	width: 130px;
}
.pro_body dd ul li.m-long:first-child {
	width:150px;
}
.pro_body dd ul li:last-child {
	flex: 1;
	font-size: 0.9em;
    text-indent: -1em;
    padding-left: 1em;
}
.color_navy{
	color:#003F8F;
}
.t30{padding-top: 30px;}
.t40{padding-top: 40px;}

/* ボタン用追加 */
.ul_btn_css.timetable_btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ul_btn_css.timetable_btn.mb10 {
    margin-bottom: 10px;
}
.ul_btn_css.timetable_btn li {
    margin: 0;
}
.ul_btn_css.timetable_btn li a {
    padding-inline: 11px;
    width: 280px;
}


.coi_flex {
  display: flex;
  justify-content:space-around;
    text-align: center;
}
.coi_flex dl {
    width: 300px;
    margin: 20px auto;
}
.coi_flex dt{
    width: 300px;
    background: #2e75b6;
    color: #fff;
    padding: 5px 11px;
}
.coi_flex dd{
    width: 300px;
    border: 1px solid #ccc;
    padding: 10px;
}
@media screen and (max-width:767px) {
    .coi_flex {
        display: block;
    }
    .pro_body dd ul {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 10px;
    }
}

/*単位取得のご案内*/
.unit_pro {
    background: #faf6f6;
    padding: 10px;
}
.unit_pro .ttl {
    color: var(--point-color);
    font-weight: bold;
}
.unit_venue {
    text-align: right;
    padding-right: 5px;
    margin: 5px 0 10px 0!important;
}
.mr5 {
    margin-right: 5px;
}
.unit_name {
    font-size: 15px;
    margin: 0 0 30px!important;
}
.unit_name_list {
    display: flex;
    align-items: baseline;
    font-size: 15px;
    margin: 0 0 30px !important;
}
.unit_name_list dt {
    white-space: nowrap;
}
.unit_name_list dd ul li:first-child {
    white-space: nowrap;
}
.unit_name_list dd ul li:nth-child(2) {
    text-indent: -1em;
    padding-left: 1em;
}
@media (min-width: 768px) {
    .unit_name_list ul {
        display: flex;
        align-items: baseline;
    }
}

/*会場のご案内
------------------------------------------------------*/
.map_iframe {
    display: block;
    width: 100%;
    height: 300px;
    margin: 20px auto;
}
@media (min-width: 768px) {
    .map_iframe {
        width: 650px;
        height: 500px;
    }
}

/*MICEnavi
------------------------------------------------------*/
.bnr_MICEnavi {
    display: block;
    width: 210px;
    margin: 10px auto;
}
.bnr_MICEnavi img {
    width: 210px;
}
.bnr_MICEnavi:hover {
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}
.img_mice {
    width: 650px;
}
.mice_flex {
  display: flex;
  justify-content:space-around;
  text-align: center;
  background: #faf8f8;
  border-radius: 7px;
  padding: 20px;
  margin: 20px auto;
}
.mice_flex img {
    height: 70px;
	margin:10px auto;
}
.mice_flex .qr img {
    width: 100px;
    height: 100px;
}
.mice_flex img:hover {
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}
.mice_flex .cat {
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}
.page-body.mice a.center {
    display: block;
}
.page-body.mice .center img {
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .globalMenuSp ul {
        padding: 15px 0 0 0;
    }
   .bnr_MICEnavi {
        width: 250px;
   }
   .bnr_MICEnavi img {
        width: 250px;
   }
   .img_mice {
        width: 100%;
    }
    .mice_flex  {
        display: block;
    }
}

