@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
font setting 2026
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    sans-serif;
}


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

.wrapper {
  width: 100%;
}

.header {
  width: 100%;

  & > .header_container {
    width: 1400px;
    margin-inline: auto;
  }
}

.main {
  width: 100%;

  & > .main_container {
    width: 1400px;
    margin-inline: auto;

    & > .main_contents {
      width: 1100px;
      margin-inline: auto;
      display: flex;
      flex-direction: row-reverse;

      & > .contents {
        width: 850px;
      }

      & > .side {
        width: 250px;
      }
    }

    & > .news_contents {
      width: 1100px;
      margin-inline: auto;
    }
  }
}

.footer {
  width: 100%;

  & > .footer_container {
    width: 1100px;
    margin-inline: auto;
  }
}

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

/* カラー設定 */
:root {
  --color-primary: #162446;
  --color-secondary: #007FC1;
}

/* ページトップへもどる */
.page_top {
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 20px;
  position: fixed;
  border: 1px solid #E4312B;
  background: #E4312B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;

  &::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(-45deg);
  }
} /* .page_top 終わり */

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

.header {
  border-top: 5px solid var(--color-primary);

  & > .header_container {
    position: relative;
    height: 190px;
  
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 1400px;
      height: 190px;
      background-image: url(../images/header.jpg);
      background-position: center top;
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }

    /* ヘッダー内のテキストを非表示 */
    & > * {
      position: absolute;
      left: -9999em;
    }
  }
} /* .header 終わり */

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

.main {
  position: relative;
  min-height: 1260px;
  background-color: #DDDDDE;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(to bottom, rgba(100, 100, 100, 1) 0%, rgba(100, 100, 100, 0) 100%);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 7px;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  &:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/main.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 3053px 1289px;
    place-self: center;
    inset: 0;
    z-index: 0;
  }

  & > .main_container {
    position: relative;
    z-index: 2;
  }

} /* .main 終わり */

/* @group コンテンツ
------------------------------------------------------*/

.society_theme_wrapper {
  position: relative;
  width: 850px;
  height: 1080px;
  z-index: 1;

  & > * {
    position: absolute;
    left: -9999em;
  }
}

.news {

  & > h2 {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  
    & > span {
      font-size: 15px;
      font-weight: bold;
      color: var(--color-primary);
      text-align: center;
    }
  }

  & > .news-list {
    position: relative;
    width: 795px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 170px;
    overflow-y: auto;
    line-height: 1.4;
  
    & > li {
      display: flex;
      align-items: baseline;
  
      & > .date {
        width: 95px;
        font-size: 13px;
        font-weight: bold;
        color: var(--color-primary);
      }
  
      & > .excerpt {
        width: calc(100% - 95px);
        font-size: 12px;
        color: #666666;
      }
    }
  }
} /* .news 終わり */

/* @group サイド
------------------------------------------------------*/

.side {
  position: relative;
  z-index: 1;
  margin-top: 99px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #DDDDDE;
  padding-top: 10px;
  padding-bottom: 10px;

  & > li a {
    display: flex;
    align-items: center;
    width: 230px;
    min-height: 58px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-size: 15px;
    font-weight: bold;
    font-feature-settings: "palt";
    line-height: 1;
    color: #FFFFFF;
    text-decoration: none;
    transition: color .5s;

    & > span {
      margin-left: 10px;
    }

    &[href="./"] {
      background-image: linear-gradient(to bottom, #F7B729 0%, #ED7821 100%), linear-gradient(to top, #F7B729 0%, #ED7821 100%);
    }

    &[href="./overview.html"] {
      background-image: linear-gradient(to bottom, #39B24A 0%, #00873F 100%), linear-gradient(to top, #39B24A 0%, #00873F 100%);
    }

    &[href="./program.html"] {
      background-image: linear-gradient(to bottom, #ED7821 0%, #E4312B 100%), linear-gradient(to top, #ED7821 0%, #E4312B 100%);
    }

    &[href="./registration.html"] {
      background-image: linear-gradient(to bottom, #4F348F 0%, #34157E 100%), linear-gradient(to top, #4F348F 0%, #34157E 100%);
    }

    &[href="./files/sponsorship.pdf"] {
      background-image: linear-gradient(to bottom, #007fc1 0%, #06648e 100%), linear-gradient(to top, #007fc1 0%, #06648e 100%);
    }
    
    &:hover {
      background-image: linear-gradient(to bottom, #C8C6C1 0%, #FFFFFF 100%), linear-gradient(to top, #C8C6C1 0%, #FFFFFF 100%);
    color: var(--color-primary);
      text-decoration: none;
    }  
  }

  & > li.active a {
    background-image: linear-gradient(to bottom, #C8C6C1 0%, #FFFFFF 100%), linear-gradient(to top, #C8C6C1 0%, #FFFFFF 100%);
    color: var(--color-primary);

    &:hover {
      cursor: default;
    }
  }

} /* .menu 終わり */

.poster {
  background-color: #DDDDDE;
  padding-bottom: 10px;

  & a {
    display: block;
    width: 230px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  
    & img {
      width: 100%;
      height: 100%;
    }
  }
} /* .poster 終わり */

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


.footer {
  position: relative;
  background-color: var(--color-primary);
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 40px;

  & > .footer_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    & > .secretariat_wrapper {
      height: 180px;
      display: flex;
      justify-content: center;
    
      & > .secretariat {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #FFFFFF;
        gap: 15px;
      
        & h2 {
          width: 100px;
          height: 35px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid #FFFFFF;
        
          & span {
            font-size: 15px;
            font-weight: bold;
            line-height: 1;
          }
        }
      
        & dl {
          line-height: 1.4;
          text-align: center;
        
          & dt {
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: bold;

            & + dd {
              margin-bottom: 7px;
            }
          }
        
          & dd {
            font-size: 12px;
          
            & a {
              color: #00FFFF;
            }
          }
          
        }
      }

    }

    & > .footer-copyright {
      height: 40px;

      & > small {
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        color: var(--color-primary);
        line-height: 1;
        text-align: center;
      }
    }
  }
} /* .footer 終わり */


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

.page-contents {
  position: relative;
  margin-top: 100px;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 69px, #FFFFFF 69px, #FFFFFF 100%);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  min-height: 1210px;
}

.page-title {
  height: 69px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-primary) 50%, rgba(22, 36, 70, 0.5) 100%);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 69px;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);

  & > span {
    margin-top: 5px;
    margin-left: 40px;
    font-size: 26px;
    font-weight: bold;
    font-feature-settings: "palt";
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
}

.page-body {
  padding: 40px 20px;
}

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

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

/* 見出し */
.heading_h3 {
	position: relative;
	padding: 10px 7.5px 7.5px 10px;
  margin-bottom: 10px;
  text-indent: -.75em;
}
.heading_h3::after {
	position: absolute;
	top: 5px;
	left: 0;
	content: '';
	width: 6px;
	height: calc(100% - 10px);
	background-color: var(--color-secondary);
	border-radius: 4px;
}

.heading_h3 > span {
    margin-left: 15px;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    color: var(--color-primary);
}

.heading_h4 {
  padding: 5px 7px 5px 0;
}

.heading_h4 > span {
  font-size: 18px;
  font-weight: bold;
  font-feature-settings: "palt";
}

.heading_h4 > span::before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
  font-size: 12px;
  margin-right: 5px;
  color: var(--color-secondary);
  position: relative;
  bottom: 2px;
}

/* ページ準備中
--------------------------*/

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

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

.exlink:after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-size: .8em;
  font-weight: 900;
  margin-left: 0.5em;
  margin-right: 0.5em;
  position: relative;
  bottom: 1px;
}

.download:before {
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.pdf:after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
}

.word:after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
}

.ppt:after {
  content: "\f1c4";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
}

.excel:after {
  content: "\f1c3";
  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: 0.5em;
}

/* 囲み
--------------------------*/

.enclosure01 {
  border: 1px;
  border-style: solid;
  padding: 10px 20px;
  border-radius: 6px;
}

.enclosure02 {
  border: 1px;
  border-style: solid;
  padding: 10px 20px;
}

.enclosure03 {
  border: 3px;
  border-style: solid;
  padding: 10px 20px;
}

.enclosure-color01 {
  border-color: #dddddd;
  background: #ffffff;
}

.enclosure-color02 {
  border-color: #eee;
  background: #ffffff;
}

/*表組み*/
.tbl-width100 {
  width: 100%;
}

.tbl-width50 {
  width: 50%;
}

.tbl-style01 thead th {
  background-color: #ddd;
  border: 1px #cccccc;
  border-style: solid;
  padding: 0.5em;
  font-weight: bold;
}

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

.tbl-style01 tbody th {
  background-color: #eeeeee;
  padding: 0.5em;
  font-weight: bold;
}

.tbl-style01 tbody td {
  background-color: #ffffff;
  padding: 0.5em;
}

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

.tbl-style02 tbody th {
  background-color: #ffffff;
  padding: 0.5em;
}

.tbl-style02 tbody td {
  background-color: #ffffff;
  padding: 0.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;
}

.th-l-b th {
  text-align: left;
  vertical-align: bottom;
}

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

.td-l-b td {
  text-align: left;
  vertical-align: bottom;
}

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

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

.asterisk > li::before {
  content: "※";
  margin-right: 0.3em;
  position: relative;
  bottom: 1px;
}

/* ぶら下げインデント */
/* 日本語　※ */
.kome_ja > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "※";
		width: 1em;
    position: relative;
    bottom: 1px;
	}
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;

	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
    position: relative;
    bottom: 1px;
	}
}

/* 開催概要 */

.overview-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.5;
 }

 .overview-list dt {
  width: 120px;
  font-weight: bold;
  color: var(--color-primary);
 }

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

 .overview-list dd {
  flex: 0 0 calc(100% - 140px);
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
 }

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

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

 /* ご挨拶 */
 .greeting {
  line-height: 1.4;
 }
 .mainTxt02 {
	line-height:180%;
	text-indent:1em;
}