@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css");
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

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

:root {
	--primary-color: #113380;
	--sub-color: #D6171D;
	--point-color: #EBBE37;
	box-sizing: border-box;
    --space-s: 1em;
    --space-m: 2em;
    --space-l: 3em;
}


/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */
}
/* 2カラム用 */
@media (width >= 1200px) {
	.sp_on {
        display: none;
    }
}

.pc_on {
    display: none;
}
/* 2カラム用 */
@media (width >= 1200px) {
	.pc_on {
        display: block; /* PCのみ表示 */
    }
}

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

a:hover {
    text-decoration: underline;
}

a img:hover {
    filter: brightness(90%) contrast(110%);
    transition: all 1s;
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 57px;
    position: fixed;
    background-image: linear-gradient(var(--point-color), var(--point-color));
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.page_top::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(-45deg);
}

.wrapper {
    width: 100%;
    display: grid;
}

/* @group ヘッダーエリア
------------------------------------------------------*/

.header {
    width: 100%;
    height: 100%;
    min-height: 279px;
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 5px;
}

.header_container {
    position: relative;
    width: 100%;
    height: 100%;
}
.header_container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    min-height: 279px; /* w375px用 */
    background-image: url(../images/header_small.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (width >= 768px) {
    .header {
        min-height: 119px;
    }
    .header_container {
        width: 89%;
        height: 100%;
        margin-left: 20px;
        margin-right: auto;
    }
    .header_container::before {
        width: 100%;
        height: 100%;
        min-height: 119px;
        background-image: url(../images/header_large.png);
        background-size: contain;
    }
}

@media (width >= 820px) {
    .header {
        min-height: 127px;
    }
    .header_container {
        width: 90%;
        height: 100%;
        margin-left: 20px;
        margin-right: auto;
    }
}

@media (width >= 1024px) {
    .header {
        min-height: 158px;
    }
    .header_container {
        width: 93%;
        height: 100%;
        margin-left: 20px;
        margin-right: auto;
    }
}

@media (width >= 1200px) {
    .header {
        min-height: 170px;
    }
    .header_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ヘッダーのテキスト非表示 */
.header_container > * {
    position: absolute;
    left: -9999em;
}

/* @group メインエリア
------------------------------------------------------*/
.main {
    position: relative;
    width: 100%;
}

.main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 7px;
    z-index: 1;
}
@media (width >= 1200px) {

    .main_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row-reverse;
    }

    .contents {
        width: 850px;
    }
}

/* @group ナビゲーションエリア
------------------------------------------------------*/

.nav_wrap {
    width: 100%;
}
@media (width >= 1200px) {
    .nav_wrap {
        width: 250px;
    }
}

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

.secretariat_wrap {
    width: 100%;
    height: 100%;
    min-height: 202px;
    background-color: var(--primary-color);
}

.secretariat {
    min-height: 202px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
    text-align: center;
}

@media (width >= 1200px) {
    .secretariat_wrap {
        max-height: 130px;
        min-height: 130px;
    }

    .secretariat {
        width: 1100px;
        min-height: 130px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 40px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        column-gap: 10px;
        text-align: left;
    }
}

.secretariat h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 35px;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid var(--point-color);
    color: var(--point-color);
    text-align: center;
}

.secretariat dl {
    color: #fff;
    line-height: 1.4;
}

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

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

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

.footer-copyright {
    width: 100%;
    height: 100%;
    min-height: 58px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (width >= 768px) {
    .footer-copyright {
        min-height: 40px;
    }
}
@media (width >= 1200px) {
    .footer-copyright {
        max-width: 1100px;
        min-height: 40px;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
    }
}

.footer-copyright p {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--primary-color);
    text-align: center;
}
@media (width >= 1200px) {
    .footer-copyright p {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
}

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

.society-theme {
    width: 100%;
}

.society-theme_container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 414px;
}

.society-theme_container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/theme_small.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (width >= 768px) {
    .society-theme_container {
        min-height: 759px;
    }

    .society-theme_container::before {
        background-image: url(../images/theme_large.png);
    }
}

@media (width >= 820px) {
    .society-theme_container {
        min-height: 810px;
    }
}

@media (width >= 1024px) {
    .society-theme_container {
        min-height: 1012px;
    }
}

@media (width >= 1200px) {
    .society-theme_container {
        min-height: 840px;
    }
    .society-theme_container::before {
        background-image: url(../images/theme_large_pc.png);
    }
}

/* テーマテキスト非表示 */
.society-theme_container > * {
    position: absolute;
    left: -9999em;
}

.news {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}
@media (width >= 1200px) {
    .news {
       
    }
}

.news h2 {
    width: 100%;
    height: 30px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
@media (width >= 1200px) {
    .news h2 {
        
    }
}

.news h2 span {
    margin-left: 17px;
    font-size: 15px;
    font-weight: bold;
    color: var(--point-color);
    line-height: 1;
}
@media (width >= 1200px) {
    .news h2 span {
        margin-left: 20px;
    }
}

.news-list {
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 17px;
    padding-right: 17px;
    overflow-y: auto;
    line-height: 1.4;
}
@media (width >= 1200px) {
    .news-list {
        height: 150px;
        padding-left: 22px;
        padding-right: 22px;
        margin-bottom: 10px;
        gap: 15px;
    }
}

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

.date {
    width: 90px;
    font-weight: bold;
    font-size: 13px;
    color: var(--primary-color);
}
@media (width >= 1200px) {
    .date {
        width: 100px;
    }
}

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

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

.page-contents {
    position: relative;
    min-height: 80vh;
    background-color: #FFFFFF;
}
@media (width >= 768px) {
    .page-contents {
        min-height: 1100px;
    }
}

.page-contents::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 5px 100%;
    z-index: 1;
}

.page-title {
    position: relative;
    padding: 15px 15px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}
@media (width >= 768px) {
    .page-title {
        padding: 20px 20px;
    }
}

.page-title > span {
    position: relative;
    padding-left: 30px;
	font-size: clamp(1.125rem, 1.011rem + 0.485vw, 1.375rem);
	font-weight: bold;
    font-feature-settings: "palt";
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    color: var(--point-color);
}
.page-title > span::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/ico_heart.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.page-body {
    padding: 20px 20px 30px 20px;
}
@media (width >= 768px) {
    .page-body {
        padding: 40px 20px 40px 20px;
    }
}

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

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

.page-body > section > * + * {
    margin-top: 15px;
}

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

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

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

.list-style > * + * {
    margin-top: 0.25em;
}

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

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

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/* 方法1: text-indent と padding-left の組み合わせ */
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
	}
}

/*表組み*/
.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: 1.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;
}

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

/* リンク集
--------------------------*/
.ul_linkList{
  border-bottom: 1px dotted var(--primary-color);
  box-sizing: border-box;
  padding: 1em;
}
.icon_link::before {
  content: '\f0c1';
  font-family: FontAwesome;
  margin-right: .3em;
	color: #D83434;
}

/* 開催概要 */

.overview-list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
    font-feature-settings: "palt";
    line-height: 1.4;
}
@media (width >= 768px) {
	.overview-list {
        row-gap: 30px;
		column-gap: 10px;
        padding-left: 20px;
	}
}

.overview-list dt,
.overview-list dd {
    padding-bottom: 10px;
    padding-top: 10px;
}

.overview-list dt {
	width: 100%;
	font-weight: bold;
	color: var(--sub-color);
}
@media (width >= 768px) {
	.overview-list dt {
		width: 130px;
	}
}

.overview-list dt:before {
	content: "\f14a";
	font-family: "Font Awesome 7 Free";
	margin-right: 0.5em;
	font-size: 0.85em;
	font-weight: 900;
	position: relative;
	bottom: 1px;
	color: var(--primary-color); 
    opacity: 0.5;
}

.overview-list dd {
    flex: 1;
	border-left: 2px solid #ccc;
	padding-left: 15px;
}
@media (width >= 768px) {
	.overview-list dd {
		flex: 0 0 calc(100% - 130px - 10px);
        border-left: 1px solid #ccc;
        padding-left: 20px;
	}
}

@media (width <= 767px) {
    .overview-list dd > span,
    .overview-list dd > ul > li > span {
        display: block;
    }
}

.overview-list dd ul {
	list-style: none;
	padding-left: 0;
}

.overview-list dd ul>*+* {
	margin-top: 10px;
}