@charset "utf-8";

/*slide.cssの読み込み*/
@import url(slide.css);

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  color: #333; /*全体の文字色*/
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "BIZ UDPGothic", "Yu Gothic", "YuGothic", Meiryo,
    sans-serif; /*フォント種類*/
  letter-spacing: 0.1em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8; /*行間*/
  background: #fff; /*背景色*/
  -webkit-text-size-adjust: none;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form,
select,
input,
textarea {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}
ul {
  list-style-type: none;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
iframe {
  width: 100%;
}
video,
audio {
  max-width: 100%;
}

body a {
  text-decoration: underline;
}

body a:hover {
  text-decoration: none;
}

@media (min-width: 576px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  .w-md-50 {
    width: 50%;
  }
}

section {
  scroll-margin-top: 13rem;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #333; /*リンクテキストの色*/
  transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
  color: #d4ecc1; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*サイトの最大幅の設定
---------------------------------------------------------------------------*/
.chikyosai-container,
#menubar,
footer .inner {
  max-width: 1400px; /*サイトの最大幅。これ以上大きくならない。*/
  margin: 0 auto;
}

/*containerの設定（footer以外の、ホームページを囲むブロック）
下の「1450px以下の設定」にあるbody.is-fixed #menubarのmarginの数字と合わせておく。
---------------------------------------------------------------------------*/
header.chikyosai-container {
  padding: 2rem 5rem; /*上下、左右へのブロック内余白*/
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 5px 5px;
}

.chikyosai-container {
  padding: 2rem 5rem 0; /*上下、左右へのブロック内余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  column-gap: 3rem;
  align-items: center;
  top: 0;
  z-index: 10;
}

header h1 {
  font-size: 2em;
  color: #234e01;
  align-self: center;
  justify-self: start;
}

header a {
  color: inherit;
}

body header a {
  text-decoration: none;
}

/*TELブロック*/
header address {
  font-style: normal;
  text-align: center; /*内容をセンタリング*/
  font-size: 80%; /*文字サイズ*/
  line-height: 1.5; /*行間を少し狭く*/
  text-shadow: 1px 1px 3px #fff, -1px -1px 3px #fff;
}
/*TELブロックの電話番号部分*/
header address .tel {
  color: #234e01; /*文字色*/
  font-size: 250%; /*文字サイズ*/
  background: url(../images/icon_tel.png) no-repeat left center / 26px; /*電話アイコンの読み込み。左(left)に、上下中央(center)に配置。画像幅26px。*/
  padding-left: 35px; /*電話アイコン部分の余白をここで作る*/
}

.header_btn {
  align-self: center;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.header_btn .btn_pc {
  padding: 0.5em 2em;
  border-radius: 2em;
  background: #075190;
  color: #fff;
  font-size: 1em;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  text-align: center;
}

.header_btn .btn_pc:hover {
  opacity: 0.6;
}

.header_btn_sp {
  display: none;
}

.header_btn .btn_sp {
  border-radius: 50%;
  background: #075190;
  color: #fff;
  font-size: 1.2em;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  width: 50px;
  height: 50px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.header_btn .btn_sp:hover {
  opacity: 0.6;
}

/*検索窓
---------------------------------------------------------------------------*/
.search_window {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.search_text {
  grid-column: 1 / -1;
  grid-row: 1;
  border-radius: 3.2rem;
  border: 0.1rem solid #999999;
  padding: 0.6rem 2.4rem;
}

.search_btn {
  grid-column: 2;
  grid-row: 1;
  border: 0.1rem solid #999999;
  border-top-right-radius: 3.2rem;
  border-bottom-right-radius: 3.2rem;
  padding: 0 0.6rem 0 0.4rem;
  background-color: #d4ecc1;

  &:hover {
    background-color: #bce39d;
  }
}

.nav-search {
  padding: 10px;
  background-color: #d4ecc1;
  font-size: 18px;
  color: #234e01;
  max-width: 48rem;
  margin: 0 auto;

  .search_btn {
    background-color: #bce39d;

    &:hover {
      background-color: #d4ecc1;
    }
  }
}

/*TOPページのメイン画像とテキスト部分
---------------------------------------------------------------------------*/
.main-img-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  column-gap: 4rem;

  img {
    width: 100%;
    height: 0;
    min-height: 100%;
    object-fit: cover;
  }
}

/*目次
---------------------------------------------------------------------------*/
.toc {
  border: 2px solid #999999;
  padding: 1.6rem;
  margin-bottom: 3.2rem;

  p.toc-mokuzi {
    padding: 0 !important;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: bold;
  }

  p.toc-sub-mokuzi {
    padding: 0 !important;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: #61ac26;
  }

  .toc-list {
    padding-bottom: 0.4rem;
  }

  .toc-list.sitemap-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 1.6rem;
    row-gap: 1rem;
    margin-bottom: 1.6rem;
  }
}

@media (min-width: 900px) {
  .toc {
    .toc-list.sitemap-toc {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}

/*折りたたみボックス
---------------------------------------------------------------------------*/
/*
.details-wrapper {
  display: grid;

  padding: 1.5rem;
  background-color: #d4ecc1;
  border-radius: 1rem;
  border: 0.1rem solid #999999;*/

/*方眼用紙のデザイン*/
/*
  background-image: linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.details {
  display: grid;
  align-items: center;

  padding: 1.5rem;
  border: 0.2rem solid #fff;
  border-radius: 0.8rem;

  i {
    padding-right: 0.5rem;
    color: #61ac26;
  }

  .marker {
    background: linear-gradient(transparent 64%, #f2c94c 0%);
  }

  .caution {
    font-size: 2rem;
  }

  .work {
    font-size: 1.6rem;
  }
}

.details,
.summary {
  font-weight: bold;
}

.content {
  margin-top: 1rem;
}

.summary {
  list-style: none;
  display: grid;
  column-gap: 1rem;

  grid-auto-flow: column;
  cursor: pointer;
  align-items: center;
}

summary::marker {
  content: "";
}
*/

/* マーカーの代わりに::before ::after 疑似要素でアイコンを作成 */
/* 円 */
/*
summary::before {
  content: "";
  display: inline-block;

  grid-column: 2;
  grid-row: 1;
  justify-self: end;
*/

/* 円のサイズ */
/*
  width: 4rem;
  height: 4rem;
  background-color: #075190;
  border-radius: 50%;
}
*/

/* 矢印 */
/*
summary::after {
  content: "";
  display: inline-block;

  position: relative;
  right: 1.3rem;

  grid-column: 2;
  grid-row: 1;
  justify-self: end;
*/

/* アイコンのサイズと太さを設定 */
/*
  width: 1.4rem;
  height: 1.4rem;
  border-top: 0.5rem solid #fff;
  border-right: 0.5rem solid #fff;
*/

/* 45度回転させて「右向き」にする */
/*
  transform: rotate(45deg);

  transition: transform 0.2s ease;
}
*/

/* detailsが開いたとき、アイコンを回転させる */
/*
details[open] summary::after {
  transform: rotate(135deg);
  top: -0.2rem;
}

@media (min-width: 768px) {
  .details {
    .caution {
      font-size: 2.4rem;
    }

    .work {
      font-size: 2rem;
    }
  }

  .summary {
    display: none;
  }
}

@media (min-width: 901px) {
  .details {
    padding: 5rem;
  }
}
*/

.caution-wrapper {
  display: grid;

  padding: 1.5rem;
  background-color: #d4ecc1;
  border-radius: 1rem;
  border: 0.1rem solid #999999;

  /*方眼用紙のデザイン*/
  background-image: linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;

  .caution-inner {
    padding: 1.5rem;
    border: 0.2rem solid #fff;
    border-radius: 0.8rem;

    .caution {
      font-size: 2rem;
      font-weight: bold;
    }

    .work {
      font-size: 1.6rem;
      font-weight: bold;
    }
  }
}

@media (min-width: 768px) {
  .caution-wrapper {
    .caution {
      font-size: 2.4rem;
    }

    .work {
      font-size: 2rem;
    }
  }
}

@media (min-width: 901px) {
  .caution-wrapper {
    .caution-inner {
      padding: 2rem 4rem;
    }
  }
}

.scroll-container {
  margin-bottom: 2rem;
}

/*こんなとき・こんな手続き
---------------------------------------------------------------------------*/
.process {
  display: grid;
  grid-template-columns: auto;
  gap: 2rem;
}

@media (min-width: 900px) {
  .process {
    grid-template-columns: 3fr 1fr;
  }
}

.events-guide-wrapper {
  display: grid;
  align-content: start;

  .head {
    border-radius: 0.1rem;

    /* タブのリスト */
    .head-list {
      display: grid;
      justify-content: start;
      grid-auto-flow: column;
      column-gap: 1rem;
      list-style: none;
      margin: 0;
      padding: 0;
      background-color: #fff;
      border: none;

      /* 各タブのアイテム */
      .head-item {
        padding: 0;
        cursor: pointer;
        border-radius: 1rem 1rem 0 0;
        display: grid;

        &::before {
          content: none;
        }

        /* タブのリンク */
        .nav-link {
          display: block;
          padding: 0.8rem;
          text-decoration: none;
          font-weight: bold;
          transition: color 0.3s;
          border: 1px solid #999999;
          border-radius: 1rem 1rem 0 0;

          /* 非アクティブ時の背景色 */
          background-color: #f5f5f5;

          /* 非アクティブタブにホバーしたときのスタイル */
          &:not(.active):hover {
            background-color: #dfdfdf;
            color: #333;
          }
        }

        /* --- 固有の色を持つタブのアクティブスタイル --- */
        /* 1. ピンク色 (Pink Theme) */
        .pink-tab {
          --tab-color: #ffacc0;
        }
        .nav-link.pink-tab.active {
          background-color: #ffacc0;
          border-bottom: none;
          z-index: 5;
        }

        /* 2. 青色 (Blue Theme) */
        .blue-tab {
          --tab-color: #a2d2ff;
        }

        .nav-link.blue-tab.active {
          background-color: #a2d2ff;
          border-bottom: none;
          z-index: 5;
        }

        /* 3. 緑色 (Green Theme) */
        .green-tab {
          --tab-color: #bce39d;
        }

        .nav-link.green-tab.active {
          background-color: #bce39d;
          border-bottom: none;
          z-index: 5;
        }
      }
    }
  }

  /* --- コンテンツエリアのスタイル --- */
  .content {
    margin-top: -0.1rem;
    background-color: #fff;
    border: 1px solid #999999;
    border-radius: 0 0 1rem 1rem;

    #tab-event.active {
      background-color: #ffacc0;
    }

    #tab-process.active {
      background-color: #a2d2ff;
    }

    #tab-business.active {
      background-color: #bce39d;
    }
  }

  .tab-pane {
    display: none;
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
  }

  .tab-pane.active {
    display: block;
  }
}

@media (min-width: 900px) {
  .events-guide-wrapper {
    .head {
      /* タブのリスト */
      .head-list {
        /* 各タブのアイテム */
        .head-item {
          /* タブのリンク */
          .nav-link {
            padding: 0.8rem 3rem;
          }
        }
      }
    }
  }
}

@media (min-width: 520px) {
  .events-guide-wrapper {
    .content {
      border-radius: 0 1rem 1rem 1rem;
    }

    .tab-pane {
      border-radius: 0 1rem 1rem 1rem;
    }
  }
}

/*ライフイベントから探す・よくある手続きから探す・事業別に探す
---------------------------------------------------------------------------*/
.events-guide-card-wrapper {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));

  a:hover {
    color: #333;
  }

  .events-guide-card-link-wrapper {
    display: block;
  }

  .events-guide-card {
    display: grid;
    justify-items: center;
    row-gap: 1rem;
    border: 1px solid #999999;
    border-radius: 1rem;
    background-color: #fff;
    padding: 1rem;
    height: 100%;

    transition: all 0.3s ease;

    position: relative;

    img {
      max-height: 60px;
    }

    .events-guide-card-link {
      position: absolute;
      top: 0;
      left: 0;
      padding: 0.3rem 1rem;
      border-radius: 0.8rem 0 0.8rem 0;
      z-index: 5;
      font-weight: bold;
      color: #fff;

      &.syusyoku {
        background-color: #2f80ed;
      }

      &.idou-taisyoku {
        background-color: #808080;
      }

      &.hatarakikatanohenkou {
        background-color: #27ae60;
      }

      &.hikkosi {
        background-color: #9b51e0;
      }

      &.kekkonn-rikon {
        background-color: #eb5757;
      }

      &.syussan-ikuzi {
        background-color: #f2c94c;
      }

      &.byouki-kega {
        background-color: #8b0000;
      }

      &.kaigo {
        background-color: #a67c52;
      }

      &.saigai {
        background-color: #f2994a;
      }

      &.sibou {
        background-color: #4f4f4f;
      }

      &.sikakusyutoku-sousitu {
        background-color: #00a388;
      }

      &.zyusyo-simeihenkou {
        background-color: #34495e;
      }

      &.sikakukakuninsyowohunsitu {
        background-color: #c0392b;
      }

      &.huyounintei {
        background-color: #2980b9;
      }

      &.ninnikezokukumiaiinnnokanyu-dattai {
        background-color: #ff0000;
      }

      &.ikuzikyugyoteatekinn {
        background-color: #9b59b6;
      }

      &.syobyoteatekinn {
        background-color: #16a085;
      }

      &.kenkokanri {
        background-color: #2ecc71;
      }

      &.kasituke {
        background-color: #e67e22;
      }

      span {
        display: block;
        transition: all 0.3s ease;
      }
    }
  }
}

.events-guide-card {
  &:hover {
    background-color: #dfdfdf;

    .events-guide-card-link {
      span {
        transform: translateX(0.5rem);
      }
    }
  }
}

@media (min-width: 576px) {
  .events-guide-card-wrapper {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));

    .events-guide-card {
      .events-guide-card-link {
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        padding: 1rem 1.6rem;
      }

      img {
        max-height: 120px;
      }
    }
  }
}

.business-guide-wrapper {
  display: grid;
  row-gap: 1.5rem;

  &:hover {
    a {
      color: #333;
    }
  }
}

.business-guide-link-wrapper {
  display: grid;
  grid-auto-flow: column;

  padding: 1rem 2rem;
  border: 0.1rem solid #999999;
  border-radius: 1rem;
  background-color: #fff;

  position: relative;

  p {
    justify-self: start;
  }

  .business-guide-link {
    padding: 1rem 2rem;
    justify-self: center;
    transition: all 0.3s ease;

    position: absolute;
    top: 0;
    right: 0;
    height: 100%;

    span {
      display: block;
      transition: all 0.3s ease;
    }
  }

  &:hover {
    .business-guide-link {
      background-color: #00a388;
      border-radius: 0 0.8rem 0.8rem 0;

      span {
        color: #fff;
        transform: translateX(0.5rem);
      }
    }
  }
}

/*電子申請・様式集・新着情報一覧・サイトマップ
---------------------------------------------------------------------------*/
.submenu-container {
  display: grid;
  row-gap: 1.5rem;
  margin-top: 0;
  align-content: start;

  .submenu-green-wrapper {
    padding: 15px; /*ボックス内の余白*/
    background: #f5f5f5; /*背景色*/
    border: 0.1rem solid #999999; /*線の線種、幅、色*/
    box-shadow: 0px 0px 1px 1px #fff inset; /*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
    border-radius: 10px; /*角丸のサイズ*/

    .submenu-green-wrapper-h2 {
      margin: 0 0 10px 0;
      padding: 0;
      font-size: 110%;
      background-color: transparent;
      border: none;
    }

    .submenu {
      margin-bottom: 0px;
      border-top: solid 1px #e4e4e4;

      li {
        border-bottom: solid 1px #e4e4e4;

        a {
          padding: 5px 10px; /*上下、左右へのメニュー内の余白*/
          background: #fff; /*背景色*/
          text-decoration: none;
          display: block;
        }
      }
    }
  }

  @media (min-width: 900px) {
    .submenu-container {
      margin-top: 4.5rem;
    }
  }
  .submenu-y-arrow-wrapper {
    border-top: solid 1px #e4e4e4;

    li {
      border-bottom: solid 1px #e4e4e4;

      a {
        text-decoration: none;
        display: block;
        padding: 10px 10px 10px 30px;
        background: #fff url(../images/arrow2.png) no-repeat 10px center / 10px;
      }
    }
  }
}

/*パンくずリスト　背景色
---------------------------------------------------------------------------*/
.breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}

/*全体のサイトマップ
---------------------------------------------------------------------------*/
.sitemap-toc {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 1.2rem;

  .sitemap-toc-maintitle {
    font-size: 2.4rem;
    font-weight: bold;
  }

  .sitemap-toc-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
  }
}

/*サイトマップ
---------------------------------------------------------------------------*/
.contents.sitemap-wrapper {
  background-color: #f5f5f5;
  border-radius: 1rem;
  border: 0.1rem solid #999999;
  scroll-margin-top: 13rem;
}

.contents.sitemap-clearance {
  margin-bottom: 2rem;
  padding: 2.4rem;
}

@media (min-width: 900px) {
  .contents.sitemap-clearance {
    margin-bottom: 4rem;
  }
}

.sitemap-title {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 500px) {
  .sitemap-title {
    text-align: left;
  }
}

.topic-card {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: minmax(auto, 40rem);
  margin-bottom: 3rem;
  justify-content: center;
}

@media (min-width: 500px) {
  .topic-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 576px) {
  .topic-card {
    grid-template-columns: 15rem 1fr;
  }
}

.topic-card-visual {
  border-radius: 1rem;
  border: 0.1rem solid #999999;
  background-color: #fff;
  padding: 1.6rem;
  align-self: start;
}

.topic-card-body {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 1.2rem;
}

.topic-card-sub-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 500px) {
  .topic-card-sub-title {
    text-align: start;
  }
}

.topic-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.2rem;
  align-items: center;
  align-content: start;
}

.topic-card-item {
  display: grid;
  justify-items: center;
  width: 100%;
  height: 100%;

  a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1rem 1.6rem;
    border-radius: 1rem;
    background-color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .sitemap {
    border: 0.1rem solid #999999;
  }

  .syusyoku {
    border: 0.1rem solid #2f80ed;
  }

  .idou-taisyoku {
    border: 0.1rem solid #808080;
  }

  .hatarakikatanohenkou {
    border: 0.1rem solid #27ae60;
  }

  .hikkosi {
    border: 0.1rem solid #9b51e0;
  }

  .kekkonn-rikon {
    border: 0.1rem solid #eb5757;
  }

  .syussan-ikuzi {
    border: 0.1rem solid #f2c94c;
  }

  .byouki-kega {
    border: 0.1rem solid #8b0000;
  }

  .kaigo {
    border: 0.1rem solid #a67c52;
  }

  .saigai {
    border: 0.1rem solid #f2994a;
  }

  .sibou {
    border: 0.1rem solid #4f4f4f;
  }

  .sikakusyutoku-sousitu {
    border: 0.1rem solid #00a388;
  }

  .zyusyo-simeihenkou {
    border: 0.1rem solid #34495e;
  }

  .sikakukakuninsyowohunsitu {
    border: 0.1rem solid #c0392b;
  }

  .huyounintei {
    border: 0.1rem solid #2980b9;
  }

  .ninnikezokukumiaiinnnokanyu-dattai {
    border: 0.1rem solid #ff0000;
  }

  .ikuzikyugyoteatekinn {
    border: 0.1rem solid #9b59b6;
  }

  .syobyoteatekinn {
    border: 0.1rem solid #16a085;
  }

  .kenkokanri {
    border: 0.1rem solid #2ecc71;
  }

  .kasituke {
    border: 0.1rem solid #e67e22;
  }
}

.sitemap-details {
  display: grid;
  row-gap: 2rem;
}

.sitemap-details-section-title {
  border-radius: 1rem;
  border: 0.1rem solid #999999;
  padding: 1rem 2rem 0.8rem;
  font-size: 2rem;
  line-height: 1.5;
  scroll-margin-top: 13rem;

  &::first-letter {
    padding-left: 1.5rem;
  }

  &.syusyoku {
    background-color: #2f80ed;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #1e63c0;
    }
  }

  &.idou-taisyoku {
    background-color: #808080;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #5c5c5c;
    }
  }

  &.hatarakikatanohenkou {
    background-color: #27ae60;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #1a8c48;
    }
  }

  &.hikkosi {
    background-color: #9b51e0;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #7b3aa5;
    }
  }

  &.kekkonn-rikon {
    background-color: #eb5757;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #c03d3d;
    }
  }

  &.syussan-ikuzi {
    background-color: #f2c94c;

    &::first-letter {
      border-left: 0.3rem solid #d4a701;
    }
  }

  &.byouki-kega {
    background-color: #8b0000;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #5e0000;
    }
  }

  &.kaigo {
    background-color: #a67c52;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #83623c;
    }
  }

  &.saigai {
    background-color: #f2994a;

    &::first-letter {
      border-left: 0.3rem solid #c77a33;
    }
  }

  &.sibou {
    background-color: #4f4f4f;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #333333;
    }
  }

  &.sikakusyutoku-sousitu {
    background-color: #00a388;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #007a68;
    }
  }

  &.zyusyo-simeihenkou {
    background-color: #34495e;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #253444;
    }
  }

  &.sikakukakuninsyowohunsitu {
    background-color: #c0392b;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #9a2b20;
    }
  }

  &.huyounintei {
    background-color: #2980b9;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #1e5f8f;
    }
  }

  &.ninnikezokukumiaiinnnokanyu-dattai {
    background-color: #ff0000;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #cc0000;
    }
  }

  &.ikuzikyugyoteatekinn {
    background-color: #9b59b6;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #7b4691;
    }
  }

  &.syobyoteatekinn {
    background-color: #16a085;
    color: #fff;

    &::first-letter {
      border-left: 0.3rem solid #0e7663;
    }
  }

  &.kenkokanri {
    background-color: #2ecc71;

    &::first-letter {
      border-left: 0.3rem solid #25a05b;
    }
  }

  &.kasituke {
    background-color: #e67e22;

    &::first-letter {
      border-left: 0.3rem solid #c46917;
    }
  }
}

.sitemap-details-list {
  padding: 2rem 4rem;
  border-radius: 1rem;
  border: 0.1rem solid #999999;
  background-color: #fff;

  > ul {
    list-style: disc;

    > li {
      padding-bottom: 1.6rem;

      &:last-of-type {
        padding-bottom: 0;
      }
    }

    .compile {
      font-weight: bold;

      li {
        font-weight: normal;
      }
    }
  }
}

/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
  /*ヘッダーブロックに対して上からの配置指定*/
  width: 250px; /*ブロック幅*/
  background: #fff; /*背景色*/
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); /*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は20%色がついた状態の事。*/
  border-radius: 1rem; /*角丸のサイズ。左上、右上、右下、左下への順。*/
  line-height: 50px; /*高さ*/
  padding: 10px 0px; /*上下、左右へのボックス内の余白*/
}
/*「文字サイズ」のテキスト*/
#fsize p {
  float: left;
  font-size: 18px; /*文字サイズ*/
  padding: 0 20px; /*上下、左右への余白*/
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
  float: left; /*左に回り込み*/
}
#fsize ul a {
  overflow: hidden;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #234e01;
}
/*「小」ボタン設定*/
#fsize ul li#small a::before {
  display: block;
  content: "小"; /*「小」の文字を出力*/
  font-size: 16px; /*文字サイズ*/
  background: #d4ecc1; /*背景色*/
  width: 40px; /*幅*/
  line-height: 40px; /*高さ*/
  margin-top: 5px;
  margin-right: 10px;
}
/*「大」ボタン設定*/
#fsize ul li#large a::before {
  display: block;
  content: "大"; /*「大」の文字を出力*/
  font-size: 30px; /*文字サイズ*/
  background: #dfdfdf; /*背景色*/
  width: 50px; /*幅*/
  line-height: 50px; /*高さ*/
}
/*マウスオン時の「大」ボタン設定*/
#fsize ul li#large a:hover::before {
  background: #d4ecc1; /*背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
  position: relative;
  margin: 0 auto 20px; /*上、左右、下へのマージン。20pxを変更する際は、「body.is-fixed header」の数値も変更する。*/
  width: 100%;
}

#menubar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  font-size: 0.9em;
}

/*メニュー１個あたりの設定*/
#menubar li {
  width: 16.66%; /*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
  line-height: 1.5; /*行間を少しだけ狭く*/
}
#menubar li a {
  text-decoration: none;
  text-align: center;
  width: 100%;
  height: 100%; /*高さ*/
  padding: 0.5em;
  color: #234e01; /*文字色*/
  border-left: 1px dashed #fff; /*メニューの左側の線の幅、線種、色（古いブラウザ用）*/
  border-left: 1px dashed rgba(255, 255, 255, 0.4); /*左の線の幅、線種、255,255,255は白の事で0.4は40%色がついた状態の事。*/
  background: #d4ecc1; /*背景色*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
/*最初のメニューへの追加設定*/
#menubar li:first-child a {
  border-left: none;
}

/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover,
#menubar li.current a {
  background: #bce39d; /*背景色*/
  color: #102201;
}

/*スマホ用メニューブロック2025/10/30*/
#nav-menubar {
  display: block;
  overflow: hidden;
  z-index: 20;
  position: fixed;
  top: 0px; /*上からの配置場所指定*/
  left: 0px; /*左からの配置場所指定*/
  width: 100%; /*幅*/
  animation-name: menu1; /*上のkeyframesの名前*/
  animation-duration: 0.5s; /*アニメーションの実行時間。0.5秒。*/
  animation-fill-mode: both; /*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
  background: #d4ecc1; /*背景色*/
}

#nav-menubar li {
  border-bottom: 1px solid #fff; /*下の線の幅、線種、色*/
}

/*メニュー１個あたりの設定*/
#nav-menubar li a {
  display: block;
  text-decoration: none;
  padding: 5px 10px; /*上下、左右へのメニュー内の余白*/
  max-width: 48rem;
  font-size: 18px; /*文字サイズ*/
  color: #234e01; /*文字色*/
  margin: 0 auto;
}

/*３本バーアイコン設定2025/10/30
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
  display: block;
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  align-self: center;
  z-index: 25;
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
  width: 50px; /*幅*/
  height: 50px; /*高さ*/
  border-radius: 50%; /*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
  background: #61ac26 url(../images/icon_menu.png) no-repeat center top/50px; /*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
/*閉じるアイコン*/
#menubar_hdr.open {
  background: #333 url(../images/icon_menu.png) no-repeat center bottom/50px; /*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
  position: absolute;
  visibility: hidden;
  z-index: 10;
  width: 16.66%; /*幅。上の「#menubar li」と合わせる。*/
  border-top: 1px solid #fff; /*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
  float: none;
  width: 100%;
  line-height: 1.5;
}
#menubar ul.ddmenu li a {
  width: 100%;
  height: auto;
  font-weight: normal;
  border-radius: 0 !important;
  border: none; /*線を一旦リセット*/
  border-bottom: 1px solid #fff; /*下の線の幅、線種、色*/
  background: #000; /*背景色（古いブラウザ用）*/
  background: rgba(
    0,
    0,
    0,
    0.7
  ); /*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
  color: #fff; /*文字色*/
  padding: 10px 0; /*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
  background: #000; /*背景色*/
}

/*fixmenu。メインメニューが画面上部に到達した際の設定
---------------------------------------------------------------------------*/
/*fixmenuブロック*/
body.is-fixed .nav-fix-pos {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}
/*headerブロック*/
body.is-fixed header {
  margin-bottom: 95px; /*メインメニューのheight(75)とmargin-bottom(20)を足した数字にする*/
}
/*最初のメニューへの追加設定*/
body.is-fixed #menubar li:first-child a {
  border-left: none;
}

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
  clear: both;
}

.contents {
  clear: both;
  padding: 2rem 0;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main,
.main {
  float: right; /*右に回り込み*/
  width: 75%; /*ボックス幅*/
  padding-bottom: 40px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main,
.c1 .main {
  float: none;
  width: auto;
}
/*mainコンテンツのh2タグ設定*/
#main h2,
.main h2 {
  clear: both;
  margin-bottom: 2rem;
  padding: 1rem 2rem 0.8rem; /*上下、左右への余白*/
  font-size: 120%; /*文字サイズ*/
  color: #234e01; /*文字色*/
  background: #d4ecc1; /*背景色*/
  border-radius: 1rem; /*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
  line-height: 1.5;
  border: 0.1rem solid #999999;
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter,
.main h2::first-letter {
  border-left: 0.3rem solid #61ac26; /*左の線の幅、線種、色*/
  padding-left: 1.5rem; /*線とテキストとの余白*/
}

h2 span {
  display: block;
  font-size: 0.9em;
  padding-top: 0.6em;
}

/*mainコンテンツのh3タグ設定*/
#main h3,
.main h3 {
  clear: both;
  margin-bottom: 2rem;
  padding: 0.6rem 2rem 0.4rem; /*上下、左右への余白*/
  font-size: 110%; /*文字サイズ*/
  line-height: 1.6;
  border: thin solid #ccc; /*枠線の幅、線種、色*/
  border-radius: 1rem; /*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
  color: #234e01;
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter,
.main h3::first-letter {
  border-left: 3px solid #61ac26; /*左の線の幅、線種、色*/
  padding-left: 15px; /*線とテキストとの余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p,
.main p {
  padding: 0px 20px 20px; /*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p,
.main p + p {
  margin-top: -5px;
}
#main h2 + p,
#main h3 + p,
.main h2 + p,
.main h3 + p {
  margin-top: -10px;
}
#main section + section,
.main section + section {
  padding-top: 30px;
}

.kakomi1 {
  padding: 1.2em;
  border: dotted 0.2em rgba(89, 164, 212, 1);
  border-radius: 0.8rem;
  background: rgba(233, 243, 249, 1);
}

.kakomi1 .point,
p.point {
  font-weight: bold;
  color: #234e01;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
  float: left; /*左に回り込み*/
  width: 23.5%; /*ブロックの幅*/
  padding-bottom: 40px;
}
/*１カラム字のサブコンテンツ*/
.c1 #sub {
  display: none;
}
/*h2見出しタグ設定*/
#sub h2 {
  margin-bottom: 10px;
  font-size: 110%; /*文字サイズ*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
  border-left: 3px solid #61ac26; /*左側のアクセント用ラインの幅、線種、色*/
  padding-left: 10px;
}
/*段落タグ（p）設定*/
#sub p {
  line-height: 1.6; /*行間を少し狭く*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
  margin-bottom: 20px; /*メニューブロックの下に空けるスペース*/
  border-top: solid 1px #e4e4e4; /*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
  border-bottom: solid 1px #e4e4e4; /*下の線の線種、幅、色*/
}
#sub .submenu li a {
  text-decoration: none;
  display: block;
  padding: 10px 10px 10px 30px; /*上、右、下、左へのメニュー内の余白*/
  background: #fff url(../images/arrow2.png) no-repeat 10px center / 10px; /*矢印アイコンの読み込み。左から10px、上下中央に配置。幅10px。*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
  padding: 15px; /*ボックス内の余白*/
  margin-bottom: 20px; /*ボックスの下に空けるスペース*/
  background: #f5f5f5; /*背景色*/
  border: 0.1rem solid #999999; /*線の線種、幅、色*/
  box-shadow: 0px 0px 1px 1px #fff inset; /*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
  border-radius: 10px; /*角丸のサイズ*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
  margin-bottom: 0px;
}
#sub .box1 .submenu li a {
  padding: 5px 10px; /*上下、左右へのメニュー内の余白*/
  background: #fff; /*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footerボックス*/
footer {
  position: sticky;
  top: 100vh;
  clear: both;
  overflow: hidden;
  border-top: 5px solid #d4ecc1; /*上の線の幅、線種、色*/
  background: #444; /*背景色*/
  color: #fff; /*文字色*/
}
/*footer内のinner*/
footer .inner {
  padding: 0 50px; /*上下、左右へのブロック内余白*/
}
/*リンクテキスト、マウスオン時の文字色*/
footer a,
footer a:hover {
  color: #fff;
}
/*フッター内のh2タグ*/
footer h2 {
  font-size: 200%; /*文字サイズ*/
  font-weight: normal;
  text-align: center; /*内容をセンタリング*/
  letter-spacing: 0.1em; /*文字間隔を少し広く*/
}
/*フッター内のaddress（電話番号ブロック）タグ*/
footer address {
  font-style: normal;
  background: #333; /*背景色*/
  border-radius: 10px; /*角丸の指定*/
  text-align: center; /*内容をセンタリング*/
  line-height: 1.5; /*行間*/
  padding: 5px; /*ボックス内の余白*/
}
/*フッター内のaddress（電話番号の行）タグ*/
footer address .tel {
  font-size: 40px; /*文字サイズ*/
  background: url(../images/icon_tel.png) no-repeat left center / 30px; /*電話番号アイコンの読み込み*/
  padding-left: 45px; /*電話番号アイコンの幅をここで調整する*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
  clear: both;
  overflow: hidden;
  font-size: 80%; /*文字サイズを少し小さく*/
  margin-left: -1%;
  padding: 20px 0;
}
/*１列分の設定*/
#footermenu ul {
  float: left; /*左に回り込み*/
  width: 24%; /*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にするならこの行は19%にする。*/
  margin-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
  padding: 0 10px; /*上下、左右への余白*/
}
/*見出し*/
#footermenu li.title {
  font-weight: bold; /*太字にする*/
  background: rgba(0, 0, 0, 0.3); /*背景色*/
  border-radius: 2px; /*角丸のサイズ*/
}
/*リンクテキスト*/
#footermenu a {
  text-decoration: none;
  opacity: 0.6; /*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
  opacity: 1; /*透明度。100%色がでた状態の事。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  text-align: center;
  background: #333; /*背景色*/
  color: #fff; /*文字色*/
  padding: 0.5em 1em;
}
#copyright a {
  text-decoration: none;
  color: #fff;
}
#copyright .pr {
  display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
  padding: 0px 20px; /*上下、左右へのブロック内の余白*/
  margin-bottom: 20px; /*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
  width: 100%;
  padding-top: 0.5em;
  letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
  overflow: hidden;
  width: 26.4%; /*幅*/
  float: left; /*左に回り込み*/
  margin: 0 0 20px 2%; /*上、右、下、左へのボックスの外側に空けるスペース*/
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  box-shadow: 3px 4px 2px rgba(0, 0, 0, 0.1); /*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
  padding: 2%; /*ボックス内の余白*/
  border-radius: 3px; /*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list a {
  display: block;
  text-decoration: none;
  overflow: hidden;
  margin: -2%; /*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
  padding: 2%; /*ボックス内の余白*/
  background: url(../images/arrow1.png) no-repeat right bottom / 40px; /*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list a:hover {
  position: relative;
  left: 1px; /*マウスオン時に右に1px移動する*/
  top: 1px; /*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list h4 {
  color: #d4ecc1; /*文字色*/
  font-size: 120%; /*文字サイズ*/
  text-align: center; /*文字をセンタリング*/
  height: 2em; /*高さ*/
  overflow: hidden; /*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list p {
  padding: 0 !important;
  line-height: 1.5; /*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
  font-size: 90%; /*文字サイズを少し小さく*/
  color: #333; /*文字色*/
  height: 6em; /*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
  overflow: hidden; /*高さを超えた場合に非表示にする*/
}

/*サムネイル画像の設定
---------------------------------------------------------------------------*/
.thumbnail {
  width: 70px; /*サムネイル画像の幅*/
  margin: 5px; /*画像同士に空けるスペース*/
  opacity: 0.7; /*透明度。色が70%出た状態。*/
}
/*マウスオン時*/
.thumbnail:hover {
  opacity: 1; /*透明度。色が100%出た状態。*/
}

/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
---------------------------------------------------------------------------*/
/*box*/
.box {
  overflow: hidden;
  border: 3px solid #d4ecc1; /*枠線の幅、線種、色*/
  padding: 20px; /*ボックス内の余白*/
  border-radius: 10px; /*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
  margin-bottom: 20px; /*ボックスの下に空けるスペース*/
}
/*box内のh4タグ*/
.box h4 {
  color: #d4ecc1; /*文字色*/
  font-size: 130%; /*文字サイズ*/
}
/*box内のpタグ*/
.box p {
  padding: 0 !important;
}
/*box内のfrとflスタイルのリセット*/
.box .fr,
.box .fl {
  margin-bottom: 0;
}

/*ページナビ（メインメニューの下にある、現在の階層を示すナビメニュー）
---------------------------------------------------------------------------*/
/*ナビブロック全体*/
.nav {
  background: #eee; /*背景色*/
  padding: 10px 20px; /*上下、左右へのボックス内の余白*/
  margin-bottom: 30px; /*ボックスの下（外側）に空けるスペース*/
  margin-top: -30px; /*メニューとの余白が空きすぎるので少し上につめる*/
  border-radius: 10px; /*角丸の指定*/
}
/*メニュー１個あたりの指定*/
.nav li {
  display: inline; /*横並びになる指定*/
  padding: 0 5px; /*上下、左右への余白*/
}
/*メニューの冒頭に入れる「>」のマーク*/
.nav li::before {
  content: ">"; /*このテキストを出力します。変更してもかまいませんが機種依存文字は化ける場合があるので使わない。*/
  padding-right: 12px; /*文字サイズ*/
  color: #999; /*文字色*/
}
/*最初のメニューには「>」は入れない*/
.nav li:first-child::before {
  content: none;
}

/*ページ内メニュー（info.htmlで使用）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.menu {
  overflow: hidden;
  margin-bottom: 20px; /*下に空けるスペース*/
  text-align: center; /*内容をセンタリング*/
  font-size: 120%; /*文字サイズ*/
}
/*メニュー１個あたりの指定*/
.menu li {
  display: inline; /*横並びになる指定*/
  border-right: 1px solid #999; /*右側の線の幅、線種、色*/
}
.menu li a {
  padding: 10px; /*メニュー内余白*/
  color: #999; /*リンクテキストの文字色*/
}
/*最初のメニューへの追加指定*/
.menu li:first-child {
  border-left: 1px solid #999; /*左側の線の幅、線種、色*/
}
/*現在表示中(current)と、マウスオン(hover)時の指定*/
.menu li.current a,
.menu li a:hover {
  text-decoration: none; /*リンクの下線を非表示にする*/
  color: #333; /*文字色*/
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
  padding: 0px 20px; /*上下、左右への余白*/
}
/*質問*/
.faq dt {
  color: #234e01; /*文字色*/
  font-weight: bold; /*太字にする設定*/
  padding-left: 30px; /*背景アイコンに重ならないよう左に余白を作る*/
  background: url(../images/faq_q.png) no-repeat left top / 30px; /*「Q」アイコン*/
}
/*回答*/
.faq dd {
  padding-left: 30px; /*背景アイコンに重ならないよう左に余白を作る*/
  margin-bottom: 20px; /*ボックスの下側（外側）に空けるスペース*/
  padding-bottom: 20px; /*ボックス内の下側に空けるスペース*/
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  background: url(../images/faq_a.png) no-repeat left top / 30px; /*「A」アイコン*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
  border-bottom: none; /*下線だけ消す*/
  text-align: left; /*文字を左寄せ*/
  background: #eee; /*背景色*/
  color: #666; /*文字色*/
  font-weight: bold; /*太字に*/
  padding: 10px; /*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
  width: auto;
}
/*ta1設定*/
.ta1 {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto 20px;
}
.ta1,
.ta1 td,
.ta1 th {
  word-break: break-all;
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
  padding: 10px; /*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
  width: 140px; /*幅*/
  text-align: center; /*センタリング*/
}

/*テーブル（ta2）サブブロックの受付テーブルに使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
  border: 1px solid #b7b7b7; /*テーブルの枠線の幅、線種、色*/
  border-bottom: none; /*下線だけ消す*/
  text-align: center;
  background: #fff; /*背景色*/
  color: #333;
  font-weight: bold; /*太字に*/
  padding: 10px; /*ボックス内の余白*/
}
/*ta2設定*/
.ta2 {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
  background: #fff; /*背景色*/
  color: #333;
}
.ta2,
.ta2 td,
.ta2 th {
  word-break: break-all;
  border: 1px solid #b7b7b7; /*テーブルの枠線の幅、線種、色*/
}

.ta2 td,
.ta2 th {
  padding: 0.4rem 0.8rem;
}

/*曜日*/
.ta2 th {
  background: #feffe3;
  text-align: center;
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
  padding: 5px 10px; /*上下、左右へのボタン内の余白*/
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  border-radius: 3px; /*角丸のサイズ*/
  background: #eee; /*背景色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
  border: 1px solid #999; /*枠線の幅、線種、色*/
  background: #fff; /*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
  background: #ff0000;
  color: #fff;
  padding: 10px 25px !important;
  margin-bottom: 20px;
  border-radius: 3px;
}
#sub p.check {
  padding: 5px 10px !important;
}
p.check a {
  color: #fff;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {
  display: none;
}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 100;
  position: fixed;
  width: 60px; /*幅*/
  line-height: 60px; /*高さ*/
  bottom: 40px; /*下から40pxの場所に配置*/
  right: 1%; /*右から1%の場所に配置*/
  background: #61ac26; /*背景色*/
  color: #fff; /*文字色*/
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  border-radius: 50%; /*円形にする*/
  animation-name: scroll; /*上のアニメーションで指定しているkeyframesの名前（scroll）*/
  animation-duration: 1s; /*アニメーションの実行時間*/
  animation-fill-mode: forwards; /*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
  background: #999; /*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
  list-style: disc;
  padding: 0 20px 20px 45px;
}
ol {
  padding: 0 20px 20px 45px;
}
#sub ul.disc,
#sub ol {
  padding: 0 0 0 20px;
}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
  background: #f00; /*背景色*/
  color: #fff; /*文字色*/
  font-size: 70%; /*文字サイズ*/
  line-height: 1.5;
  padding: 2px 5px;
  border-radius: 2px;
  margin: 0px 5px;
  vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {
  color: #fff;
  background: #666;
  padding: 5px;
  border-radius: 4px;
}
.mb15,
.mb1em {
  margin-bottom: 15px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.clear {
  clear: both;
}
.color1 {
  color: #234e01 !important;
}
.bgcolor1 {
  background: #f2f2f2 !important;
}
.bgcolor2 {
  background: #dbebf7 !important;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.w40p {
  width: 40%;
}
.w20p {
  width: 20%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
.l {
  text-align: left;
}
.fr {
  float: right;
  margin-left: 2%;
  margin-bottom: 20px;
}
.fl {
  float: left;
  margin-right: 2%;
  margin-bottom: 20px;
}
.big1 {
  font-size: 200%;
  letter-spacing: 0.2em;
}
.mini1 {
  font-size: 80%;
}
.sh {
  display: none;
}
.half {
  width: 48%;
}
.link {
  display: block;
  margin-top: -80px;
  padding-top: 80px;
}
.indent-1em {
  text-indent: -1em;
  padding-left: 1em;
}
.mb-50 {
  margin-bottom: 50em;
}
#main p.indent-1em,
.main p.indent-1em {
  text-indent: -1em;
  padding-left: calc(1em + 20px);
}
.word-break {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.small_kome {
  font-size: 0.9em;
  color: #666;
  text-indent: -1em;
}

.small {
  font-size: 0.9em;
  color: #666;
}

.text-indent-0 {
  text-indent: 0;
}

.ningen-subject {
  text-decoration: underline;
  font-weight: bold;
}

.ningen-not-subject {
  border: solid 1px black;
  margin: 0 20px 20px;
  padding: 1em;
}

.ningen-not-subject h1 {
  font-size: 1em;
  text-decoration: underline;
  font-weight: bold;
}

.ningen-not-subject ul {
  padding-left: 1em;
}

.ningen-not-subject ul li {
  list-style-type: disc;
  font-weight: bold;
  color: red;
}

.ningen-not-subject ul li small {
  color: black;
  line-height: inherit;
  font-size: 100%;
}

.text-underline {
  text-decoration: underline;
}

.fs-130 {
  font-size: 1.3em;
}

.fs-085 {
  font-size: 0.85em;
}

table.t-yoshiki td {
  padding-bottom: 0.6em;
  padding-top: 0.6em;
}

/*画面幅1450px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1450px) {
  /*上のchikyosai-containerのpaddingの数字部分と合わせておく*/
  body.is-fixed #menubar {
    margin: 0 50px;
  }
}

@media screen and (max-width: 1065px) {
  /*PC用メニューを非表示にする*/
  #menubar {
    display: none;
  }

  /*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
  /*ボタンブロック全体*/
  #fsize {
    display: none; /*非表示にする*/
  }

  .chikyosai-container {
    column-gap: 1rem;
  }

  .header_btn {
    right: 4em;
  }

  .header_btn_pc {
    display: none;
  }

  .header_btn_sp {
    display: block;
  }
} /*1065px以下の設定　ここまで*/

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  /*containerの設定（footer以外の、ホームページを囲むブロック）
---------------------------------------------------------------------------*/
  header.chikyosai-container {
    padding: 2rem 1.5rem; /*上下、左右へのブロック内余白*/
  }

  .chikyosai-container {
    padding: 2rem 1.5rem; /*上下、左右へのブロック内余白*/
  }

  /*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  header {
    background: none;
    padding: 10px 0;
    text-align: left;
  }

  /*TELブロック*/
  header address {
    position: static;
  }

  header h1 {
    text-align: left;
    font-size: 1.5em;
  }

  .header_btn {
    position: static;
    transform: none;
    text-align: center;
  }

  /*スライド
---------------------------------------------------------------------------*/
  .main-img-wrapper {
    grid-template-columns: auto;
    column-gap: 0;

    img {
      display: none;
    }
  }

  /*カルーセル
---------------------------------------------------------------------------*/
  .carousel.slide.carousel-fade {
    display: none;
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
  /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
  /*@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}*/

  /*fixmenu。メインメニューが画面上部に到達した際の設定
---------------------------------------------------------------------------*/
  body.is-fixed header {
    margin-bottom: 0px; /*fixmenuから折りたたみメニューになるので、ここはリセット。*/
  }

  #contents {
    padding-top: 2rem;
  }

  .contents {
    padding-top: 2rem;
  }

  /*main,sub
---------------------------------------------------------------------------*/
  #main,
  #sub {
    float: none;
    width: auto;
    overflow: hidden;
  }

  .main,
  .sub {
    float: none;
    width: auto;
    overflow: hidden;
  }

  /*フッター設定
---------------------------------------------------------------------------*/
  /*footer内のinner*/
  footer .inner {
    padding: 0 3%; /*上下、左右へのブロック内余白*/
  }
  /*footer内の２カラムブロックを１カラムにする*/
  footer .half.fr,
  footer .half.fl {
    float: none;
    margin: 0 0 20px;
    width: 100%;
  }

  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub,
  body.s-n #side {
    display: none;
  }
  .big1 {
    font-size: 150%;
    letter-spacing: normal;
  }
  .sh {
    display: block;
  }
  .pc {
    display: none;
  }
  .link {
    display: block;
    margin-top: 0px;
    padding-top: 0px;
  }
} /*900px以下の設定　ここまで*/

/*画面を横向きにした場合の高さが500px以下の場合の設定。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height: 500px) {
  /*メインメニュー。小さな端末用メニューを２列に。
---------------------------------------------------------------------------*/
  /*メニュー１個あたりの設定*/
  #nav-menubar li {
    float: left; /*左に回り込み*/
    width: 50%; /*幅*/
  }
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
  /*TELブロックの電話番号部分*/
  header address .tel {
    font-size: 20px;
    background: url(../images/icon_tel.png) no-repeat left center / 18px;
    padding-left: 25px;
  }

  /*メインコンテンツ
---------------------------------------------------------------------------*/
  /*他。微調整。*/
  #main section + section {
    padding-top: 20px;
  }

  .main section + section {
    padding-top: 20px;
  }

  /*フッター設定
---------------------------------------------------------------------------*/
  /*フッター内のaddress（電話番号の行）タグ*/
  footer address .tel {
    font-size: 24px;
    background: url(../images/icon_tel.png) no-repeat left center / 20px;
    padding-left: 30px;
  }

  /*listブロック
---------------------------------------------------------------------------*/
  /*ブロック１個あたりの設定*/
  .list {
    width: auto;
    float: none;
    margin-left: 0;
  }
  .list figure {
    float: left;
    width: 40%;
    margin-right: 2%;
  }
  /*h4（見出し）とp(段落)タグの設定*/
  .list h4,
  .list p {
    height: auto;
  }

  /*よく頂く質問
---------------------------------------------------------------------------*/
  .faq dt,
  .faq dd {
    background-size: 25px;
  }

  /*テーブル（ta1）
---------------------------------------------------------------------------*/
  /*テーブル１行目に入った見出し部分（※caption）*/
  .ta1 caption {
    padding: 5px; /*ボックス内の余白*/
  }
  /*ta1設定*/
  .ta1,
  .ta1 td,
  .ta1 th {
    padding: 5px; /*ボックス内の余白*/
  }
  /*ta1の左側ボックス*/
  .ta1 th {
    width: 100px;
  }

  /*その他
---------------------------------------------------------------------------*/
  .ws,
  .wl {
    width: 94%;
  }

  .text-size {
    font-size: 88%;
  }
}

/*貸付事業*/
.table-layout-fixed {
  table-layout: fixed;
}

.table_scroll {
  width: 100%;
  overflow: scroll;
  margin-bottom: 2rem;
}

.table_scroll > table {
  width: 100%;
  table-layout: fixed;
  margin: 0;
}

.table_scroll > table > thead td {
  padding: 0;
  border: none;
}

/*派遣職員インフォメーション*/
.osaka_syokuin table td {
  width: 33.3%;
}

/*組合員及び被扶養者の資格*/

table.q_a td.koumoku {
  width: 6.5em;
}

table.table-borderless table.table-bordered td,
table.table-borderless table.table-bordered th {
  border: 1px solid #dee2e6;
}

table.table-borderless table.table-bordered table.table-borderless td,
table.table-borderless table.table-bordered table.table-borderless th {
  border: none;
}

table.reigai-jiyuu table td,
table.tetsuduki table td {
  display: block;
}

.news_detail {
  padding: 0 2rem 4rem;
}

.news_detail ul {
  padding-left: 2rem;
  padding-bottom: 2rem;
  list-style-type: disc;
}

#main .news_detail p,
.main .news_detail p {
  padding: 0 0 1em;
}

#main .news_detail p.indent-1em,
.main .news_detail p.indent-1em {
  padding-left: 1em;
}

table.contact th,
table.contact td {
  display: block;
}

table.contact th {
  width: 100%;
  background: #075190;
  color: #fff;
}

table.contact ul li {
  padding: 0.3em 0.5em;
  border-bottom: 0.2em dotted #bbb;
}

table.contact ul li:last-child {
  border-bottom: none;
}

@media (min-width: 576px) {
  table.q_a td.koumoku {
    width: 10em;
  }

  table.reigai-jiyuu table td,
  table.tetsuduki table td {
    display: table-cell;
  }

  #new dt {
    float: left;
    width: 9em;
    padding-bottom: 0.5em;
  }
  /*記事設定*/
  #new dd {
    padding-top: 0.5em;
    padding-left: 9em;
  }
}

@media (min-width: 768px) {
  table.contact th,
  table.contact td {
    display: table-cell;
  }

  table.contact th {
    width: 33.3%;
  }

  table.t-kashitsuke th {
    width: 14em;
  }
}

/** プレビュー時の注意書き */
.preview-notice {
  color: #d9534f; /* 警告色 */
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0;
  margin-bottom: 0.5em;
  border-radius: 1rem;
  background-color: #ffd2d2; /* 軽い警告背景色 */
}

.heading-dot {
  position: relative;
  padding-left: 40px;
  font-weight: bold;
}

.heading-dot::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0.2em;
  width: 0.6em;
  height: 0.6em;
  background-color: #007bff;
  border-radius: 50%;
}

table.banpaku {
  margin-bottom: 20px;
}

table.banpaku td {
  padding-bottom: 0.6em;
  padding-top: 0.6em;
}
