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

.wrapper {
  width: 100%;

  & .main {
    width: 100%;
  
    & .main_content {
      width: 100%;
      
      & .main_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row-reverse;
    
        & .contents {
          width: 850px;
        }
        
        & .side {
          width: 250px;
        }
      }

    }
  
  }
  
  & .footer {
    width: 100%;
  
    & .footer_container {
      width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
  }
}

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

/* カラー設定 */
:root {
  --color-primary: #004B9F;
  --color-secondary: #009FE8;
  --color-tertiary: #0071B9;
}

/* ページトップへもどる */
.page_top {
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 20px;
  position: fixed;
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
  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);
  }
}

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

.main_content {
  position: relative;
  min-height: 739px;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-size: 100% 30px;
    background-repeat: no-repeat;
    background-position: left 739px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* width: 100%; */
    width: max(100%, 1400px);
    height: 739px;
    background-image: url(../images/main_bg.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    /* background-position: center top; */
    background-position: center;
  }
}

/* @group コンテンツエリア
------------------------------------------------------*/

.contents {
  position: relative;
  min-height: 1360px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 1360px;
    background-image: url(../images/shadow.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 2;
  }

}

.society_overview {
  position: relative;
  height: 739px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/society_overview.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
  }
}

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

.news {
  position: relative;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}

.news h2 {
  height: 30px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 20px;
}

.news h2 span {
  margin-top: 1px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
}

.news-list {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 150px;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.4;
}

.news-list li {
  display: flex;
}

.news-list li .date {
  width: 95px;
  font-weight: bold;
  color: var(--color-primary);
}

.news-list li .excerpt {
  flex: 1;
  color: #666666;
}

.cfa {
  position: relative;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}

.cfa h2 {
  height: 30px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 20px;
}

.cfa h2 span {
  margin-top: 1px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
}

.cfa-list {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100px;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.4;
}

.cfa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cfa-list li a {
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}

.about {
  position: relative;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}

.about h2 {
  height: 30px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 20px;
}

.about h2 span {
  margin-top: 1px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
}

.about > p {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
	word-break: normal;
}

.abstract {
  position: relative;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}

.abstract h2 {
  height: 30px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 20px;
}

.abstract h2 span {
  margin-top: 1px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
}

.abstract > p {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
	word-break: normal;
}

.key_deadlines {
  position: relative;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}

.key_deadlines h2 {
  height: 30px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 20px;
}

.key_deadlines h2 span {
  margin-top: 1px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
}

.key_deadlines_item h3 {
  height: 20px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  margin-bottom: 10px;
}

.key_deadlines_item h3 span {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.key_deadlines_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.key_deadlines_item {
  width: 100%;
  margin-left: 1.5em;
  margin-right: auto;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
	word-break: normal;
}

.key_deadlines_item_list {
  padding: 0 10px;
}

.key_deadlines_item_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.key_deadlines_item_list li .excerpt {
    width: calc(100% - 100px);
    color: #666666;
}

.key_deadlines_item_list li .date {
  width: 150px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: right;
}

/* @group サイドエリア
------------------------------------------------------*/

.side {
  position: relative;
  margin-top: 52px;
}

.menu {
  width: 230px;
  min-height: 687px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  box-sizing: border-box;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(to bottom, #FFFFFF, #FFFFFF), linear-gradient(to top, #FFFFFF, #FFFFFF);
  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: var(--color-tertiary);
  text-decoration: none;
  transition: color .5s;
}

.menu li a > span {
  margin-left: 10px;
}

.menu li a:hover {
  background-image: linear-gradient(to bottom, var(--color-primary), var(--color-secondary)), linear-gradient(to top, var(--color-primary), var(--color-secondary));
  color: #FFFFFF;
  text-decoration: none;
}

.menu li.active a {
  background-image: linear-gradient(to bottom, var(--color-primary), var(--color-secondary)), linear-gradient(to top, var(--color-primary), var(--color-secondary));
  color: #FFFFFF;
  pointer-events: none;
}

.menu li.active a:hover {
  cursor: default;
}

.secretariat {
  
}

.secretariat h2 {
  width: 100%;
  height: 30px;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  display: flex;
  align-items: center;
}

.secretariat h2 span {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
}

.secretariat dl {
  width: 220px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-primary);
}

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

.secretariat dd a {
  color: var(--color-primary);
}

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

.footer {
  height: 40px;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
}

.footer-copyright {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1;
  text-align: center;
}

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

.page-contents {
  position: relative;
  min-height: 1200px;
  background-color: #ffffff;
  margin-top: -585px;
  z-index: 1;
}

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

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

.page-title {
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 26px 0px 30px;
}

.page-title > span {
  margin-top: 10px;
  margin-left: 50px;
  font-size: 30px;
  font-weight: bold;
  font-feature-settings: "palt";
  color: #FFFFFF;
}

.page-body {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  font-feature-settings: "palt";
  line-height: 1.7;
  overflow-wrap: anywhere;
	word-break: normal;
}

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

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

.page-body > section > section {
  padding: 0 10px;
}

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

.heading_h3 {
  min-height: 20px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to bottom, var(--color-secondary), var(--color-primary));
  background-size: 6px 100%;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 5px 0;
  margin-bottom: 20px;
}

.heading_h3 span {
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 15px;
  color: var(--color-primary);
}

.heading_h4 {
  display: flex;
  align-items: center;
  background-image: linear-gradient(to left, var(--color-secondary), var(--color-primary));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 5px 0;
  margin-bottom: 10px;
}

.heading_h4 span {
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 5px;
}

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

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

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

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

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

/*リストスタイル*/

.page-body li {
  line-height: 1.5;
}

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

/* ボタン */
.button_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.button_nthas14 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  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;
}

.button_nthas14.primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: 2px solid var(--color-primary);
}

.button_nthas14.primary:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
}

.button_nthas14.secondary {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  border: 2px solid var(--color-secondary);
}

.button_nthas14.secondary:hover {
  background-color: #FFFFFF;
  color: var(--color-secondary);
}
.button_nthas14.primary.disabled {
  background-color: #aaa;
  border-color: #aaa;
  pointer-events: none;
}

/* Organization */

.organization_list {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.organization_list_role {
  width: 100px;
  font-weight: bold;
  color: var(--color-primary);
}

.organization_list dd {
  width: calc(100% - 120px);
}

.organization_list_members > li + li {
  margin-top: 5px;
}

.organization_list_members > li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.organization_list_members > li .name {
  font-weight: bold;
}

.organization_list_members > li .affiliation {
  font-size: 0.9em;
  font-style: italic;
  color: #666666;
}