@charset "utf-8";

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@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: #10193A;
	--sub-color: #89C33F;
	--point-color: #009FE8;
	box-sizing: border-box;
}

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

@media (width >= 768px) {
    .sp_on02 {
    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 メインエリア
------------------------------------------------------*/

.main {
    background-color: #0d1532;
    background-image: url(../images/bg_img.jpg);
    background-position: center top;
    background-repeat: repeat;
    background-size: contain;
}
@media (width >= 1200px) {
    .main {
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (width >= 1200px) {
    .main_container {
        width: 100%;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row-reverse;
    }
}

/* 2カラムの場合表示させるシャドー */
@media (width >= 1200px) {
    .contents {
        width: 850px;
        min-height: 1260px;
        position: relative;
    }

    .contents::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../images/shadow.png);
        background-size: cover;
        background-position: left top;
        background-repeat: no-repeat;
        width: 10px;
        height: 1260px;
        z-index: 1;
    }
}

.header {
    position: relative;
    height: 80vh;
    min-height: 658px;
}
.header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/mv_small.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

@media (width >= 768px) {
    .header {
        height: 100vh;
    }
    .header::before {
        background-image: url(../images/mv_large.jpg);
        background-size: cover;
    }
}
@media (width >= 820px) {
    .header {
        height: 90vh;
    }
}
@media (width >= 1024px) {
    .header {
        height: 100vh;
    }
}
/* 2カラム用 */
@media (width >= 1200px) {
    .header {
        height: 1070px;
    }
}

/* 子ページヘッダー */
.header_child {
    position: relative;
    height: 100%;
    /* min-height: 140px; */
    min-height: 120px;
}
.header_child::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/header_small.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

@media (width >= 768px) {
    .header_child {
        min-height: 180px;
    }
    .header_child::before {
        background-image: url(../images/header_large.png);
        background-size: contain;
    }
}
@media (width >= 820px) {
    .header_child {
        height: 195px;
    }
}
/* @media (width >= 1024px) {
    .header_child {
        height: 251px;
    }
} */
/* 2カラム用 */
/* @media (width >= 1200px) {
    .header_child {
        height: 251px;
    }
} */

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

.news {
    width: 100%;
    position: relative;
    background-color: #FFFFFF;
    padding-bottom: 25px;
}

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

.news h2 span {
    margin-left: 20px;
    font-size: 16px;
    font-weight:  bold;
    color: var(--sub-color);
}
/* 2カラム用 */
@media (width >= 1200px) {
    .news h2 span {
        margin-left: 28px;
    }
}

.news-list {
    height: 150px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    line-height: 1.4;
}
/* 2カラム用 */
@media (width >= 1200px) {
    .news-list {
        height: 120px;
        padding-left: 28px;
        padding-right: 28px;
        gap: 16px;
    }
}

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

.date {
    width: 95px;
    font-weight: bold;
    color: #000000;
}

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

.nav_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
}

@media (width >= 768px) {
    .nav_wrap {
        background-color: transparent;
    }
}

.poster_download {
    min-height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 2カラム用 */
@media (width >= 1200px) {
    .poster_download {
        min-height: 80px;
        margin-bottom: 105px;
    }
}

.poster_download a {
    display: block;
}

.poster_download a img {
    width: 230px;
    height: auto;
}

.secretariat_wrap {
    width: 100%;
}

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

.secretariat h3 span {
    margin-left: 20px;
    margin-top: 3px;
    font-size: 14px;
    font-weight: bold;
	color: var(--primary-color);
    line-height: 1;
}
/* 2カラム用 */
@media (width >= 1200px) {
    .secretariat h3 span {
        margin-left: 13px;
    }
}

.secretariat dl {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1.4;
}
/* 2カラム用 */
@media (width >= 1200px) {
    .secretariat dl {
        margin-left: 15px;
        margin-bottom: 15px;
    }
}

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

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

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

.footer {
    background-color: #000000;
}

.footer_container {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
/* 2カラム用 */
@media (width >= 1200px) {
    .footer_container {
        height: 40px;
    }
}

.footer_copyright {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: center;
}

/* @group 子ページコンテンツ
------------------------------------------------------*/

.page-contents {
    position: relative;
    min-height: 100vh;
    background-color: #FFFFFF;
    padding: 20px 20px 30px 20px;
}

@media (width >= 1200px) {
    .page-contents {
        min-height: 960px;
        padding: 28px 28px 40px 28px;
    }
}

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

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

.page-title {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

@media (width >= 768px) {
    .page-title {
        
    }
}

.page-title > span {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 0.959rem + 0.721vi, 1.5rem);
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

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

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

.heading_h3 {
    border-left: 5px solid var(--sub-color);
    margin-bottom: 8px;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.heading_h3 > span {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.heading_h4 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
  }
  
  .heading_h4 > span {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    text-indent: -1.1em;
    padding-left: 1em;
  }
  
  .heading_h4 > span:before {
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-size: 0.8em;
    position: relative;
    bottom: 1px;
    color: var(--sub-color);
  }

.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: .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;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.btn_link {
    width: 100%;
    max-width: 250px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(var, var) no-repeat;
    background-position: left top;
    background-size: 0% 100%;
    border: 1px solid var(--point-color);
    color: var(--point-color);
    transition: background .35s ease-out, color .35s ease-out;
    font-size: 1.1em;
    font-weight: bold;
}

.btn_link:hover {
    text-decoration: none;
    background: linear-gradient(var(--point-color), var(--point-color)) no-repeat;
    background-size: 100% 100%;
    border: 1px solid var(--point-color);
    color: #fff;
}

/* ご挨拶 */

.about_the_chairman {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 15px;
    text-align: center;
}
@media (width >= 768px) {
    .about_the_chairman {
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: flex-end;
        text-align: right;
    }
}

.about_the_chairman img {
    width: 150px;
    height: 200px;
    object-fit: cover;
}

.greeting_text_wrap > * + * {
    margin-top: 1em;
}

.greeting_text {
    text-indent: 1em;
    text-align: justify;
}

/* 開催概要
--------------------------*/
.overview-detail {
    display: grid;
    row-gap: 15px;
    padding-left: 7px;
    padding-right: 7px;
    font-feature-settings: "palt";
}
@media (min-width: 768px) {
    .overview-detail {
        /* grid-template-columns: 105px 1fr; */
        grid-template-columns: 110px 1fr;
        column-gap: 15px;
        row-gap: 30px;
        padding-left: 10px; 
        padding-right: 10px;
    }
}

.overview-detail dt {
    margin-top: 10px;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding-left: 10px;
    line-height: 1;
}
@media (min-width: 768px) {
    .overview-detail dt { 
        column-gap: 10px;
        margin-top: 0;
    }
    .overview-detail.en dt { 
        padding-top: 3px;
        padding-bottom: 3px;
    }
}

.overview-detail dt span {
    color: #FFFFFF;
}


@media screen and (max-width:767px) {
    .overview-detail dt span::before {
        content: "\f0c8";
        font-family: "Font Awesome 5 Free";
        margin-right: .5em;
        font-weight: 900;
        font-size: 0.8em;
        position: relative;
        bottom: 1px;
        color: #FFFFFF;
        opacity: 0.7;
    }
}

@media (min-width: 768px) {
    .overview-detail dt::after {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        margin-right: .75em;
        font-weight: 900;
        font-size: 0.8em;
        position: relative;
        bottom: 1px;
        color: #FFFFFF;
    }
}

.overview-detail dd {
    border-bottom: 1px dotted #CCCCCC;
    padding-bottom: 3px;
    margin-left: 1em;
    line-height: 1.7;
}
@media (min-width: 768px) {
    .overview-detail dd {
        padding-bottom: 5px;
        padding-top: 2px;
        margin-left: 0px;
    }
}

.overview-detail dd a {
    word-break: break-all;
}

/* 企業・団体の皆様へのご案内 */

.flow-list-wrap > * + * {
    margin-top: 20px;
}

.flow-list dt {
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
}
.flow-list dd {
    padding-left: 1.5em;
}

/* リンク */

.link-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 1em;
}

.link-list li {
    font-size: 1.1em;
    text-indent: -1.1em;
}

.link-list li::before {
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-weight: 900;
    font-size: 0.8em;
    position: relative;
    bottom: 1px;
    color: var(--point-color);
    opacity: 0.7;
}

.link-list li a {
    color: var(--primary-color);
}

/* 会場・交通のご案内 */
.access_map {
    width: 100%;
    margin-block: 48px;
    img {
        width: 100%;
        height: auto;
    }
}