@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;
    overflow-wrap: anywhere;
	  word-break: normal;
}

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

.wrapper {
  width: 100%;

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

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
/* 基本 */
:root {
  --color-primary: #b45a73;
  --color-secondary: #dc788c;
  --color-tertiary: #8E8E8E;
}

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

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

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

.main {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;

  &::before {
    content: "";
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 419px;
    background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}

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

.contents {
  position: relative;
  width: 850px;
  min-height: 1062px;

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

}

/* コンテンツ内のヘッダー */
.header {
  width: 100%;

  & .header_container {
    position: relative;
    height: 570px;

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

    &.child {
      height: 150px;

      &::before {
        background-image: url(../images/header_child.jpg);
      }
    }


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

  }

}

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

.side {
  position: relative;
}

.menu {
  width: 100%;
  margin-top: 90px;
  margin-bottom: 305px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.menu li a {
  display: flex;
  align-items: center;
  min-height: 59px;
  background-color: var(--color-secondary);
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 1.4;
  text-decoration: none;
  transition: color .5s;
  color: #FFFFFF;
  
}

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

.menu li a:hover {
  background-color: #FFFFFF;
  color: var(--color-secondary);
  text-decoration: none;
}

.menu li.active a {
  background-color: #FFFFFF;
  color: var(--color-secondary);
  pointer-events: none;
}

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

.secretariat {
  margin-top: 600px;
  margin-bottom: 33px;
}


.secretariat h2 {
  height: 30px;
  background-color: var(--color-primary);
  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: 226px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  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: #00ffff;
}

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

.footer {
  background-color: var(--color-secondary);
  
  & .footer_container {
    width: 1100px;
    margin: 0 auto;
  }
}

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

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

.news {
  margin-top: 50px;
  padding-bottom: 25px;
}

.news h2 {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;

  & > span {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-secondary);
    text-align: center;

    &::before {
      position: absolute;
      content: "";
      bottom: -7px;
      left: 0;
      width: 100%;
      height: 5px;
      background-image: linear-gradient(to right, var(--color-secondary) 0%, var(--color-secondary) 50%, var(--color-primary) 50%, var(--color-primary) 100%);
      background-position: left top;
      background-repeat: no-repeat;
      background-size: 100% 100%;
    }
  }
}

.news-list {
  width: 663px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 300px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}

.news-list li {
  display: flex;
  border-bottom: 1px dashed var(--color-secondary);
  padding: 10px 5px;
}

.date {
  width: 90px;
  font-weight: bold;
  color: var(--color-secondary);
}

.excerpt {
  width: calc(100% - 90px);
  color: var(--color-tertiary);
}

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

.page-contents {
  position: relative;
  min-height: 915px;
  background-color: #ffffff;
}


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

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

.page-title {
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right top, rgba(180, 90, 115, 0.9) 50%, rgba(41, 87, 137, 0.5) 100%), url(../images/page_title_bg.jpg);
  background-size: 100% 100%, cover;
  background-repeat: no-repeat;
  background-position: center top, center top -20px;
  padding: 45px 40px 45px;
}

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

.page-body {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 40px;
  font-feature-settings: "palt";
  line-height: 1.5;
}

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

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

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

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

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

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

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

.exlink:after {
  content: "\f08e";
  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";
  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;
	}
}


/* 以下追加CSS */
.outline {
	padding-top: 10px;
}
.outline dt {
	padding-left: 1em;
	color: #7B334B;
	font-weight: bold;
	clear: left;
	float: left;
	font-size: 15px;
}
.outline dd {
	padding-left: 9em;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px dashed #db7093;
	font-size: 15px;
	-webkit-text-size-adjust: 100%;
}


/* 見出し
--------------------------*/
.heading_h3 {
  margin-bottom: 20px;
  background-image: linear-gradient(to right, var(--audiology71-color_orange) 50%, var(--audiology71-color_blue) 80%);
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  text-indent: -1.4em;
  padding-left: 1.4em;
  padding-bottom: 5px;
}

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

.heading_h3 > span::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5em;
  font-weight: 900;
  font-size: 0.75em;
  position: relative;
  bottom: 2px;
  color: var(--audiology71-color_orange);
  opacity: 0.7;
}
.heading_h4 {
	font-weight: bold;
	font-size: 20px;
	border-bottom: 2px solid #0B52BC;
	margin-bottom: 18px;
	padding-bottom: 3px;
	margin-top: 18px;
}
.heading_h5 {
	font-weight: bold;
	font-size: 19px;
	margin-bottom: 15px;
	margin-top: 15px;
	background-image: -webkit-linear-gradient(0deg,rgba(167,56,85,1.00) 0%,rgba(222,126,151,1.00) 100%);
	background-image: -moz-linear-gradient(0deg,rgba(167,56,85,1.00) 0%,rgba(222,126,151,1.00) 100%);
	background-image: -o-linear-gradient(0deg,rgba(167,56,85,1.00) 0%,rgba(222,126,151,1.00) 100%);
	background-image: linear-gradient(90deg,rgba(167,56,85,1.00) 0%,rgba(222,126,151,1.00) 100%);
	color: #FFFFFF;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
.heading_h6 {
	font-size: 18px;
	margin-top: 12px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #db7093;
}
.heading_h6:before {
	content: "▶︎";
	font-size: 12px;
	margin-right: 5px;
	position: relative;
	top: -1px;
}

 .indent_chairman {
	padding-left: 7em;
}
 