@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base module & style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
    --primary-color: #231815;
    --secondary-color: #896239;
    --tertiary-color: #E8B800;
  }


/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */

    /* 2カラム用 */
    @media (width >= 1200px) {
        & {
            display: none;
        }
    }
}

.pc_on {
    display: none;

    /* 2カラム用 */
    @media (width >= 1200px) {
        & {
            display: block; /* PCのみ表示 */
        }
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 40px;
    position: fixed;
    background-image: linear-gradient(to top, #000000, #463C00);
    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;

    &::before {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-top: 1px solid #FFFFFF;
        border-right: 1px solid #FFFFFF;
        transform: rotate(-45deg);
    }
}


.wrapper {
    width: 100%;
    background-image: url(../images/bg.jpg);
    background-position: left top;
    background-repeat: repeat;
    background-size: 390px 190px;
}

/* @group メインエリア
------------------------------------------------------*/
.main {
    width: 100%;

    @media (width >= 1200px) {
        & {
            min-height: 1360px;
        }
    }
}


.main_container {
    width: 100%;
}

@media (width >= 1200px) {
    .main_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row-reverse;
    }
}

.contents {
    width: 100%;
}

@media (width >= 1200px) {
    .contents {
        width: 850px;
    }
}

/* サイドメニューありの場合表示させる影 */
@media (width >= 1200px) {

    .contents {
        min-height: 1410px;
        position: relative;
        z-index: 2;

        &::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: 1410px;
            z-index: 3;
            mix-blend-mode: multiply;
        }
    }
}

.society_overview_container {
    position: relative;
    width: 100%;
    min-height: 620px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/society_overview_small.jpg);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }

    @media (width >= 414px) {
        min-height: 658px;
    }

    @media (width >= 430px) {
        min-height: 684px;
    }

    @media (width >= 768px) {
        min-height: 862px;

        &::before {
            background-image: url(../images/society_overview_large.png);
        }
    }

    @media (width >= 820px) {
        min-height: 920px;
    }

    @media (width >= 1024px) {
        min-height: 1149px;
    }

    @media (width >= 1200px) {
        width: 1065px;
        min-height: 1195px;

        &::before {
            left: -65px;
        }
    }
}

.society_overview_container.child {
    position: relative;
    width: 100%;
    min-height: 125px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/society_title_small.jpg);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }

    @media (width >= 414px) {
        min-height: 133px;
    }

    @media (width >= 430px) {
        min-height: 138px;
    }

    @media (width >= 768px) {
        min-height: 174px;

        &::before {
            background-image: url(../images/society_title_large.png);
        }
    }

    @media (width >= 820px) {
        min-height: 186px;
    }

    @media (width >= 1024px) {
        min-height: 233px;
    }

    @media (width >= 1200px) {
        min-height: 193px;
    }
}

/* トップ概要テキスト非表示 */
.society_overview_container > * {
    position: absolute;
    left: -9999em;
}

/* トップページお知らせ */
.news {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding-bottom: 20px;
    z-index: 2;

    @media (width >= 1200px) {
        & {
            position: relative;
            width: 100%; 
            padding-bottom: 20px;
            z-index: 2;
        }
    }

    & > h2 {
        width: 100%;
        height: 30px;
        background-color: var(--secondary-color);
        display: flex;
        align-items: center;
        margin-bottom: 20px;

        & > span {
            margin-left: 20px;
            font-size: 15px;
            font-weight: bold;
            color: #FFFFFF;
            line-height: 1;

            @media (width >= 1200px) {
                & {
                    margin-left: 30px;
                }
            }
        }
    }

    & > .news-list {
        height: 160px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-left: 30px;
        padding-right: 30px;
        overflow-y: auto;
        line-height: 1.4;

        @media (width >= 1200px) {
            & {
                height: 155px;
                padding-left: 30px;
                padding-right: 22px;
            }
        }

        & > li {
            display: flex;
            font-size: 12px;

            & > .date {
                width: 75px;
                font-weight: bold;
                color: var(--secondary-color);

                @media (width >= 1200px) {
                    & {
                        width: 80px;
                    }
                }
            }

            .excerpt {
                flex: 1;
                color: #646464;
            }
        }
        
    }
}

.nav_wrap {
    width: 100%;

    @media (width >= 1200px) {
        width: 250px;
        position: relative;
        z-index: 2;
    }
}

.secretariat {
    width: 100%;
    background-color: transparent;

    @media (width >= 1200px) {
        & {
            width: 250px;
            margin-top: 395px;
        }
    }

    & > h3 {
        width: 100%;
        height: 30px;
        margin-bottom: 12px;
        background-color: #000000;
        display: flex;
        align-items: center;

        & > span {
            margin-left: 18px;
            margin-top: 3px;
            font-size: 15px;
            font-weight: bold;
            color: var(--tertiary-color);
            line-height: 1;

            @media (width >= 1200px) {
                & {
                    margin-left: 14px;
                }
            }
        }
    }

    & > dl {
        margin-left: 20px;
        padding-bottom: 15px;
        color: var(--primary-color);
        line-height: 1.4;

        @media (width >= 1200px) {
            & {
                margin-left: 13px;
                padding-bottom: 10px;
            }
        }

        & > dt {
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: bold;
        }
        
        & > dd {
            font-size: 13px;
            line-height: 1.3;

            & > a {
                color: #000000;
            }
        }
    }
}

/* @group フッターエリア
------------------------------------------------------*/

.footer {
    width: 100%;

    & > .footer_container {
        width: 100%;

        @media (width >= 1200px) {
            & {
                width: 1100px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        & > .footer-copyright {
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 13px;
            color: #000000;
            line-height: 1.4;
            text-align: center;

            @media (width >= 768px) {
                & {
                    height: 40px;
                }
            }
        }
    }
}

/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    position: relative;
    min-height: 80vh;
    background-color: #FFFFFF;

    @media (width >= 768px) {
        & {
            min-height: 100vh;
        }
    }
    
    @media (width >= 1200px) {
        & {
            min-height: 1220px;
        }
    }
}

/* 既存の垂直マージンを削除 */
.page-contents > * {
	margin-top: 0;
	margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-contents > * + * {
	margin-top: 20px;

    @media (width >= 768px) {
        & {
            margin-top: 30px;
        }
    }
}

.page-title {
    position: relative;
    padding: 15px 10px;
    background-color: var(--secondary-color);

    @media (width >= 768px) {
        & {
            padding: 20px 15px;
        }
    }
}
.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(to right bottom, var(--primary-color) 50%, var(--secondary-color) 80%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left top;
    clip-path: polygon(0 0, 37% 0, 60% 100%, 0% 100%);

    @media (width >= 768px) {
        & {
            width: 120px;
        }
    }
}

.page-title > span {
    position: relative;
    display: block;
    padding-left: 50px;
	font-size: clamp(1.375rem, 1.261rem + 0.485vi, 1.625rem);
	font-weight: bold;
    font-feature-settings: "palt";
    color: #FFFFFF;
    line-height: 1.4;

    @media (width >= 768px) {
        & {
            padding-left: 60px;
        }
    }
}

.page-body {
    padding: 0px 10px 30px 10px;

    @media (width >= 768px) {
        & {
            padding: 0px 20px 40px 20px;
        }
    }
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: 20px;
}

.page-body > section > * + * {
    margin-top: 15px;
}

.page-body > section > section > * {
    padding: 0px 12px;
}

.page-body > section > section > * + * {
    margin-top: 12px;
}

/* 見出し */
.heading_h3 {
	position: relative;
	padding: 1em .75em .75em 1em;
    margin-bottom: 10px;
    text-indent: -.75em;
}
.heading_h3::after {
	position: absolute;
	top: .5em;
	left: 0;
	content: '';
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color: var(--secondary-color);
	border-radius: 4px;
}

.heading_h3 > span {
    margin-left: 0.5em;
    font-size: clamp(1.063rem, 0.988rem + 0.32vi, 1.188rem);
    font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.heading_h3 > span span {
    display: block;
    font-size: 0.8em;
    margin-left: 0.75em;
}

.heading_h4 {
    padding: .5em .7em .5em 0;
}

.heading_h4 > span {
    font-size: clamp(1rem, 0.875rem + 0.4vi, 1.125rem);
    font-weight: bold;
    font-feature-settings: "palt";
}

.heading_h4 > span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f45c";
    font-weight: 900;
    font-size: 0.7em;
    padding-right: .5rem;
    color: var(--secondary-color);
    position: relative;
    bottom: 2px;
}

.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';
    /* ダウンロードのアイコン（fa-download） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    /* Excelファイルの後（fa-file-excel） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f003';
    /* メール（fa-envelope） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5em;
}

.check::before {
    content: '\f046';
    /* チェック（fa-check-square） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    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;
}

/* ボタン */
.button_container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.button_shimpo61 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 350px;
	min-height: 50px;
	padding: 12px 20px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
	line-height: 1.2;
}

.button_shimpo61:hover {
	text-decoration: none;
}

.button_shimpo61.primary {
	background-color: var(--primary-color);
	color: #ffffff;
	border: 2px solid var(--primary-color);
}

.button_shimpo61.primary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.1);
}

.button_shimpo61.secondary {
	background-color: var(--secondary-color);
	color: #ffffff;
	border: 2px solid var(--secondary-color);
}

.button_shimpo61.secondary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.1);
}
.button_shimpo61.tertiary {
	background-color: var(--tertiary-color);
	color: #ffffff;
	border: 2px solid var(--tertiary-color);
}

.button_shimpo61.tertiary:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.1);
}


/* 開催概要 */

.overview-list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.5;
    font-feature-settings: "palt";

    @media (width >= 768px) {
        align-items: baseline;
    }
  }
  
  .overview-list dt {
    width: 100%;
    min-height: 30px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #FFFFFF;
  }
  
  .overview-list dd {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
    margin-left: 0;
  }
  
  .overview-list dd ul {
    list-style: none;
    padding-left: 0;
  }

  @media (width >= 768px) {
    .overview-list {
      flex-direction: row;
      flex-wrap: wrap;
      row-gap: 30px;
      column-gap: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .overview-list dt {
      width: 110px;
      height: 30px;
      vertical-align: top;
      justify-content: center;
    }
    
    .overview-list dd {
      flex: 0 0 calc(100% - 130px);
      margin-bottom: 0;
    }
  }

/* 世話人挨拶
------------------------------------------------------*/
/* .presidentBox {
	position:relative;
	border-bottom:1px solid #ccc;
	padding:10px 15px;
	margin:0 auto;
}
.presidentBox img{
	width:150px;
	float:right;
}
.presidentBox .name {
	position:absolute;
	top:138px;
	right:185px;
	line-height: 1.4;
	text-align:right;
} */
.presidentBox {
	border-bottom:1px solid #ccc;
	padding:10px 15px;
	margin:0 auto;
}
.presidentBox img{
    display: block;
	width:100%;
    margin: 10px auto;
}
.presidentBox .name {
	line-height: 1.4;
	text-align:right;
}
.mainTxt02 {
	line-height:180%;
	text-indent:1em;
}
@media (max-width: 768px) {
	.presidentBox img {
		display: block;
		float: none;
		margin: 20px auto;
	}
	.presidentBox .name {
		position: static;
		text-align: center;
	}
}

/* 会場のご案内
------------------------------------------------------*/
.map_iframe {
    display: block;
    width: 100%;
    height: 300px;
    margin: 20px auto;
}
@media (min-width: 768px) {
    .map_iframe {
        width: 750px;
        height: 500px;
    }
}

/* リンク
------------------------------------------------------*/
.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;
}