@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%;

  & .header {
    width: 100%;

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

  & .main {
    width: 100%;
  
    & .main_container {
      width: 1200px;
      margin-inline: auto;
    }
  
  }
  
  & .footer {
    width: 100%;

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

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
/* 基本 */
:root {
  --color-primary: #827364;
  --color-secondary: #69A096;
  --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 ヘッダーエリア
------------------------------------------------------*/

.header {
  position: relative;
  height: 600px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_cloud.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(to top, var(--color-tertiary) 0%, transparent 100%);
    background-size: 100% 10px;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
  }

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

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

  }

}

/* ヘッダー画像上の地区リンク（3列） */
.header_visual {
  position: relative;
  display: block;
  line-height: 0;
}

.header_visual img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.header_visual__map {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  display: flex;
  z-index: 2;
}

.header_visual__map-link {
  position: relative;
  flex: 1 1 33.333%;
  min-height: 100%;
  cursor: pointer;
  transition: box-shadow 0.25s ease;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  &:nth-child(1)::before {
    background: rgba(41, 98, 200, 0.35);
  }

  &:nth-child(2)::before {
    background: rgba(200, 80, 140, 0.35);
  }

  &:nth-child(3)::before {
    background: rgba(50, 140, 90, 0.4);
  }

  &:hover {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.85);

    &::before {
      opacity: 1;
    }
  }

  &:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
    z-index: 1;

    &::before {
      opacity: 1;
    }
  }
}


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

.main {
  position: relative;
  background-color: #FFFFFF;
}

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

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

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

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

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

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

.news-list li {
  /* display: flex; ---------*/
  padding-bottom: 10px;
}

.date {
  width: 90px;
  font-weight: bold;
  color: var(--color-primary);
  margin-right: 1em;
}

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

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

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

.footer {
  height: 250px;
  background-color: var(--color-secondary);
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-size: 100% 1px;
  background-position: center 200px;
  background-repeat: no-repeat;
}

.footer_container {
  height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.footer_content {
  height: 200px;
  display: flex;
  align-items: center;
  gap: 90px;

  & .footer_logo {
    width: 203px;
    height: 50px;
    margin-top: -20px;

    & img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
	

  & .secretariat {
    display: flex;
    gap: 15px;
    color: #FFFFFF;
  
    & h2 {
      width: 120px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #FFFFFF;
    
      & span {
        font-size: 15px;
        font-weight: bold;
        line-height: 1;
      }
    }
  
    & dl {
      margin-left: 10px;
      line-height: 1.4;
    
      & dt {
        margin-bottom: 5px;
        font-size: 13px;
        font-weight: bold;
      }
    
      & dd {
        font-size: 12px;
      
        & a {
          color: #00FFFF;
        }
      }
      
    }

  }
}

.footer-copyright {
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 1;
}


/* @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(41, 87, 137, 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;
	}
}
 