@charset "UTF-8";
/* sass
---------------------------------------------------------------------------*/
/*
【基本ルール】
- 入力は px 単位の数値
- 出力は rem が基本（px 出力も可能）
- $min / $max … 小さい画面・大きい画面の値(px)
- $minViewport / $maxViewport … 小さい画面・大きい画面の幅(px)

【書き方の例】
■remで出力
font-size: functions.rclamp($min, $max, $minViewport, $maxViewport);
width: functions.rclamp($min, $max, $minViewport, $maxViewport);
height: functions.rclamp($min, $max, $minViewport, $maxViewport);
padding: functions.rclamp($min, $max, $minViewport, $maxViewport);
margin: functions.rclamp($min, $max, $minViewport, $maxViewport);

■pxで出力
width: functions.rclamp($min, $max, $minViewport, $maxViewport, "px");
※最後に "px" を指定すると px単位で出力されます

【実際の例（フォントサイズ）】
■remで出力
font-size: functions.rclamp(16, 24, 375, 1200);
- ビューポート幅 375px（スマホ） → 16px → 1rem に変換
- ビューポート幅 1200px（PC） → 24px → 1.5rem に変換

■pxで出力
font-size: functions.rclamp(16, 24, 375, 1200, "px");
- ビューポート幅 375px（スマホ） → 16px
- ビューポート幅 1200px（PC） → 24px

【px ↔ rem 換算表（基準16px）】
| px  | rem   |
| --- | ----- |
| 4   | 0.25  |
| 8   | 0.5   |
| 12  | 0.75  |
| 16  | 1     |
| 18  | 1.125 |
| 20  | 1.25  |
| 24  | 1.5   |
| 28  | 1.75  |
| 32  | 2     |
| 36  | 2.25  |
| 40  | 2.5   |
| 44  | 2.75  |
| 48  | 3     |
| 52  | 3.25  |
| 56  | 3.5   |
| 60  | 3.75  |
| 64  | 4     |
| 72  | 4.5   |
| 80  | 5     |
| 96  | 6     |
*/
/*---------------------------------------------------------------------------*/
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
/*---------------------------------------------------------------------------*/
:root {
  /* ベースカラー */
  --background: #fff8f2;
  --text: #000000;
  --white: #fff;
  /*  --alert: #f76c5e;*/
  /*--alert: #E60063;*/
  --alert: #e60063;
  --accent-warm: #fde2c2;
  --accent-warm2: #ffecd5;
  --secondary: #7fa59c;
  --accent-nature: #e7f0e9;
  /*
    --link: #0050a0;
    --visited: #7a1fa2;
    --hover: #002f6c;
  */
  --link: #003366; /* 濃紺に変更でコントラスト改善 */
  --visited: #4b0082; /* 濃い紫で見やすく */
  --hover: #001f4d; /* 濃紺をさらに濃く */
  --red: #d70000;
  --space-large: 5vw;
  --space-medium: 3vw;
  --space-small: 2vw;
}

/*---------------------------------------------------------------------------*/
/* reset
/*---------------------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
}

/*---------------------------------------------------------------------------*/
/*全体の設定
/*---------------------------------------------------------------------------*/
html {
  color: var(--text);
  font-family: "Kosugi Maru", sans-serif;
  line-height: 2;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-size: 100%;
  background: var(--background);
}

body {
  overflow-x: hidden;
  width: 100%;
  -webkit-animation: opa1 0.3s 0.5s both;
          animation: opa1 0.3s 0.5s both;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/***** リンク *****/
a {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--link);
}
a:link {
  color: var(--link);
}
a:visited {
  color: var(--visited);
}
a:hover, a:active {
  color: var(--hover);
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/*tel スマホだけ*/
.tel-sp {
  display: inline !important;
}
.tel-pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .tel-sp {
    display: none !important;
  }
  .tel-pc {
    display: inline !important;
  }
}
/***** ボタン *****/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
  white-space: nowrap;
  padding: 0.5rem 2.5rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.btn.alert {
  background-color: var(--alert);
  border: 3px solid var(--alert);
  color: var(--white);
}
.btn.alert:hover, .btn.alert:focus {
  background-color: var(--white);
  color: var(--alert);
}
.btn.alert:focus-visible {
  outline: none;
  outline-offset: none;
}

/***** 新着アイコン *****/
span.icon.new {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 5px 10px;
  margin: 0 5px 0 0;
  border-radius: 3px;
  font-size: 80%;
  line-height: 1.5;
  vertical-align: middle;
}

/***** アイコン *****/
i.fas {
  padding: 0 0.3em;
}

/***** その他 *****/
/*インデント*/
.page_text p {
  text-indent: 1em;
}

.page_text p + br {
  display: none;
}

/*マージン*/
p.m-l {
  margin-left: 1em;
}

/*---------------------------------------------------------------------------*/
/*パンくず
/*---------------------------------------------------------------------------*/
nav.breadcrumb {
  background: var(--white);
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 1rem;
}
nav.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.breadcrumb .breadcrumb-sep {
  margin: 0 0.5em;
}
nav.breadcrumb a {
  color: var(--link);
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
nav.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--hover);
}

/*---------------------------------------------------------------------------*/
/*見出し
/*---------------------------------------------------------------------------*/
/* =====================================
index
===================================== */
h2 {
  font-size: clamp(1.5rem, 1.2727272727rem + 0.9696969697vw, 2rem);
  color: var(--text);
  font-weight: 500;
  text-align: center;
  padding: var(--space-small);
}
h2:after {
  content: "";
  display: block;
  width: 30px;
  height: 8px;
  margin: 0.5rem auto 0;
  background: radial-gradient(circle, var(--secondary) 60%, transparent 61%) 0 50%/10px 8px repeat-x;
}

/*---------------------------------------------------------------------------*/
/*コンテナ
/*---------------------------------------------------------------------------*/
.container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

/*---------------------------------------------------------------------------*/
/*インナー
/*---------------------------------------------------------------------------*/
.inner {
  padding: var(--space-large);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .inner {
    padding: var(--space-medium);
  }
}
/*---------------------------------------------------------------------------*/
/*header
/*---------------------------------------------------------------------------*/
/* =====================================
ヘッダーブロック
===================================== */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  z-index: 100;
}
header .hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-small) var(--space-large) 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  gap: 0.5rem;
}
header .hd.hide {
  opacity: 0;
  visibility: hidden;
}
header .hdLeft .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  gap: 0.5rem;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  header .hdLeft .logo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .hdLeft .logo img {
  width: 130px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .hdRight {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  header .hdRight {
    width: auto;
    margin: 0;
  }
}

/* =====================================
メニューブロック
===================================== */
.hd-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
  height: 0;
  margin: 1rem 0 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .hd-menu {
    height: 60px;
    background-color: var(--white);
  }
}
.hd-menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin: 0 0 1rem;
}

.site-title {
  font-weight: normal;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.site-title a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.125rem, 0.8977272727rem + 0.9696969697vw, 1.625rem);
}
.site-title span {
  color: var(--text);
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
}

/*---------------------------------------------------------------------------*/
/* メニューブロック設定
/*---------------------------------------------------------------------------*/
/* =====================================
PCナビ
===================================== */
.nav-pc {
  display: block;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-pc.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
}
.nav-pc__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-pc__item {
  position: relative;
}
.nav-pc__item.is-current > .nav-pc__link {
  color: var(--alert) !important;
  font-weight: bold;
}
.nav-pc__item.has-submenu {
  /* hover（マウス） */
}
@media (any-hover: hover) {
  .nav-pc__item.has-submenu:hover > .nav-pc__submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.nav-pc__item.has-submenu {
  /* focus（キーボード） */
}
.nav-pc__item.has-submenu:focus-within > .nav-pc__submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.nav-pc__item.has-submenu {
  /* 矢印回転 */
}
.nav-pc__item.has-submenu:hover .submenu-arrow, .nav-pc__item.has-submenu:focus-within .submenu-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-pc__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.5em;
  color: var(--text) !important;
  text-decoration: none;
}
.nav-pc__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 350px;
  margin: 0;
  list-style: none;
  background: var(--white);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.nav-pc__submenu a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: inherit;
}
.nav-pc__submenu a:hover, .nav-pc__submenu a:focus-visible {
  color: var(--alert);
  font-weight: bold;
  outline: none;
}
.nav-pc .submenu-arrow {
  font-size: 0.8em;
  margin-left: 4px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

/* =====================================
SPナビ
===================================== */
.nav-sp {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  padding: 80px 16px 16px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-sp.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.nav-sp__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-sp__link {
  display: block;
  padding: 0.5rem;
  color: var(--text) !important;
  text-decoration: none;
}
.nav-sp__item {
  border-bottom: 1.5px dotted #9b9b9b;
}

/* =====================================
ハンバーガーボタン
===================================== */
button#menubar_hdr {
  border: none;
}

#menubar_hdr {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  padding: 16px 14px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
  background: #dadada;
}
#menubar_hdr span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text);
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menubar_hdr.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(4px, 5px);
          transform: rotate(45deg) translate(4px, 5px);
}
#menubar_hdr.active span:nth-of-type(2) {
  opacity: 0;
}
#menubar_hdr.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(4px, -5px);
          transform: rotate(-45deg) translate(4px, -5px);
}

/* =====================================
表示制御（SPのみ）
===================================== */
.sp-menu-toggle {
  display: none !important;
  position: relative;
  z-index: 1000;
}

@media (max-width: 1023px) {
  .sp-menu-toggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .nav-pc {
    display: none !important;
  }
}
/*---------------------------------------------------------------------------*/
/* fv
/*---------------------------------------------------------------------------*/
#mainimg {
  width: 100%;
  position: relative;
}
#mainimg img {
  height: 45vw;
  border-radius: 0 0 50px 50px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}
#mainimg {
  /* テキスト */
}
#mainimg .text {
  position: absolute;
  bottom: 4rem;
  left: 0;
  /*1行ごとの帯*/
}
#mainimg .text .text-line {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.125rem, 0.7840909091rem + 1.4545454545vw, 1.875rem);
  line-height: 1.5;
  font-weight: normal;
}
#mainimg .text .text-line:last-child {
  margin-bottom: 0;
}
#mainimg {
  /* 表示デバイス別 */
}
#mainimg .slide {
  display: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mainimg {
  /* PC表示（601px以上） */
}
@media screen and (min-width: 601px) {
  #mainimg .slide.pc-show {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  #mainimg .slide.smart-show {
    display: block;
  }
  #mainimg img {
    height: 100vw;
  }
  #mainimg h1 {
    bottom: 0;
  }
}

/*---------------------------------------------------------------------------*/
/* 研修
/*---------------------------------------------------------------------------*/
section.supporters .content_list-supporters_wrap .article-block {
  width: 100%;
  margin: var(--space-medium) 0 var(--space-large);
}
section.supporters .content_list-supporters_wrap .article-block .pdf-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
section.supporters .content_list-supporters_wrap .article-block .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin: var(--space-small);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1280px) {
  section.supporters .content_list-supporters_wrap .article-block .thumbnail {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
section.supporters .content_list-supporters_wrap .article-block .thumbnail figure {
  margin: 10px 5px;
  width: 100%;
  aspect-ratio: 5/3;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  section.supporters .content_list-supporters_wrap .article-block .thumbnail figure {
    width: calc((100% - 4rem) / 2);
  }
}
section.supporters .content_list-supporters_wrap .article-block .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.supporters .content_list-supporters_wrap .article-block .thumbnail figcaption p {
  font-size: 90%;
}
section.supporters .content_list-supporters_wrap .article-block {
  /* =====================================
  テーブル
  ===================================== */
}
section.supporters .content_list-supporters_wrap .article-block table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cecece;
}
section.supporters .content_list-supporters_wrap .article-block table tr {
  display: block;
  padding-bottom: 1rem;
  padding: 0;
  border-bottom: solid 1px #cecece;
}
section.supporters .content_list-supporters_wrap .article-block table th,
section.supporters .content_list-supporters_wrap .article-block table td {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
}
section.supporters .content_list-supporters_wrap .article-block table th {
  font-weight: normal;
  background: var(--accent-nature);
}
section.supporters .content_list-supporters_wrap .article-block table td {
  background: var(--white);
}
section.supporters .content_list-supporters_wrap .article-block table {
  /* colspan=2 も縦並び */
}
section.supporters .content_list-supporters_wrap .article-block table td[colspan="2"] {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  section.supporters .content_list-supporters_wrap .article-block table tr {
    display: table-row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.supporters .content_list-supporters_wrap .article-block table th,
  section.supporters .content_list-supporters_wrap .article-block table td {
    display: table-cell;
  }
  section.supporters .content_list-supporters_wrap .article-block table th {
    white-space: nowrap;
    width: 8rem;
  }
  section.supporters .content_list-supporters_wrap .article-block table td {
    width: auto;
  }
  section.supporters .content_list-supporters_wrap .article-block table td[colspan="2"] {
    display: table-cell;
    width: auto;
  }
}

/*---------------------------------------------------------------------------*/
/* リーフレット
/*---------------------------------------------------------------------------*/
section.link_shiryo .content_list-shiryo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin: var(--space-small);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.link_shiryo .content_list-shiryo_wrap .article-block {
  width: 100%;
  margin: 0;
  background: var(--white);
  padding: var(--space-large);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.link_shiryo .content_list-shiryo_wrap .article-block .content-title {
  color: var(--alert);
  font-weight: bold;
}
section.link_shiryo .content_list-shiryo_wrap .article-block .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto 0;
}
section.link_shiryo .content_list-shiryo_wrap .article-block .thumbnail .pdf-download {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.link_shiryo .content_list-shiryo_wrap .article-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: var(--space-small);
    gap: 2rem;
  }
  section.link_shiryo .content_list-shiryo_wrap .article-block .thumbnail {
    width: 40%;
  }
  section.link_shiryo .content_list-shiryo_wrap .article-block .thumbnail p {
    text-align: center;
  }
}
section.link_shiryo {
  /*モーダル*/
}
section.link_shiryo .modal .mySwiper img {
  max-width: 100%;
  height: auto;
  width: 70%;
  margin: 0 auto;
}
section.link_shiryo .modal h3 {
  font-weight: normal;
}

footer {
  /*---------------------------------------------------------------------------*/
  /*footer
  /*---------------------------------------------------------------------------*/
  background: var(--accent-nature);
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: var(--space-medium) 3%;
}
@media screen and (min-width: 1024px) {
  footer .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
  }
}
footer .inner address.contact-info.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 var(--space-large);
}
footer .f-ttl {
  font-weight: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer .f-ttl a {
  color: var(--text) !important;
  text-decoration: none;
  font-size: clamp(1.25rem, 1.0795454545rem + 0.7272727273vw, 1.625rem);
}
footer .f-ttl .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  gap: 0.5rem;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) {
  footer .f-ttl .logo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .f-ttl .logo img {
  width: 130px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
footer address.contact-info.wrap {
  margin: 0 !important;
}
footer .f-mail {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
footer .f-mail a.btn.alert {
  margin: 0 0 0 0 !important;
}

/*コピーライト copyright_block.php
---------------------------------------------------------------------------*/
.footerCopyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1% 0;
  background: #e60063;
  color: var(--white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.footerCopyright small.copyright {
  line-height: 1.6;
  text-align: center;
  font-size: 0.8rem;
}
.footerCopyright small.copyright img {
  display: none;
}
.footerCopyright {
  /* コピーライト内メニュー */
}
.footerCopyright a {
  color: var(--white) !important;
  text-decoration: none;
}
.footerCopyright .c-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .footerCopyright .c-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footerCopyright .c-menu span {
    color: #666;
  }
  .footerCopyright .c-menu a {
    padding: 0 0 0 10px;
    text-decoration: underline;
  }
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
button#scrollTopBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  text-decoration: none;
  z-index: 99;
  border: none;
}

button#scrollTopBtn svg {
  fill: currentColor;
  width: 24px;
  height: 24px;
}

/*footerとハンバーガーメニュー内の問い合わせ共通部分*/
footer .contact-info.wrap,
nav.nav-sp .contact-info.wrap {
  margin: 1rem auto;
  padding: var(--space-large);
  background: var(--accent-nature);
  border-radius: 10px;
}
footer .contact-info.wrap .f-tel,
nav.nav-sp .contact-info.wrap .f-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}
footer .contact-info.wrap .f-mail,
nav.nav-sp .contact-info.wrap .f-mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .contact-info.wrap p.text,
nav.nav-sp .contact-info.wrap p.text {
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
}
footer .contact-info.wrap .tel-txt,
nav.nav-sp .contact-info.wrap .tel-txt {
  color: #d4005c;
  font-size: clamp(1.875rem, 1.7329545455rem + 0.6060606061vw, 2.1875rem);
  font-weight: 500;
}
footer .contact-info.wrap .tel-txt a,
nav.nav-sp .contact-info.wrap .tel-txt a {
  text-decoration: none;
  color: #d4005c;
}
footer .contact-info.wrap .btn.alert,
nav.nav-sp .contact-info.wrap .btn.alert {
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
}

body.other {
  /* =====================================
  other
  ===================================== */
}
body.other h1 {
  font-size: clamp(1.5rem, 1.2727272727rem + 0.9696969697vw, 2rem);
  color: var(--text);
  font-weight: 500;
  text-align: center;
  padding: var(--space-small);
}
body.other h1:after {
  content: "";
  display: block;
  width: 30px;
  height: 8px;
  margin: 0.5rem auto 0;
  background: radial-gradient(circle, var(--secondary) 60%, transparent 61%) 0 50%/10px 8px repeat-x;
}
body.other h2 {
  font-size: clamp(1.25rem, 1.1079545455rem + 0.6060606061vw, 1.5625rem);
  background: var(--accent-warm2);
  padding: 0 0.5rem;
  text-align: left;
  display: block;
  margin: var(--space-small) 0;
}
body.other h2:after {
  content: none;
}
body.other h3 {
  border-bottom: 2px dotted var(--alert);
  padding: 0.5em 0;
  font-size: clamp(1.125rem, 1.0965909091rem + 0.1212121212vw, 1.1875rem);
  margin: var(--space-small) 0;
  font-weight: normal;
}
body.other .top .page_text,
body.other .top .page_text2,
body.other .top .page_all_text {
  padding: 0;
}
body.other section.top {
  background: var(--accent-nature);
}
body.other section.top .page_text,
body.other section.top .page_text2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  gap: 1rem;
}
body.other section.top .page_text h1,
body.other section.top .page_text2 h1 {
  text-align: left;
  padding: 0;
  gap: 1rem;
}
body.other section.top .page_text h1::after,
body.other section.top .page_text2 h1::after {
  width: 100%;
  margin: 0;
  background: radial-gradient(circle, var(--secondary) 60%, transparent 61%) 0 50%/7px 5px repeat-x;
}
body.other section.top figure {
  height: auto;
  width: clamp(13.125rem, 10rem + 13.3333333333vw, 20rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body.other section.top .page_text,
  body.other section.top .page_text2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  body.other section.top .page_text .img_box,
  body.other section.top .page_text2 .img_box {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body.other section.top .page_text .img_box figure,
  body.other section.top .page_text2 .img_box figure {
    overflow: hidden;
  }
  body.other section.top .page_text .img_box figure img,
  body.other section.top .page_text2 .img_box figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body.other section.top .page_text .text_contencts,
  body.other section.top .page_text2 .text_contencts {
    width: 50%;
  }
}
body.other .page-static.inner {
  padding: var(--space-medium) var(--space-medium) 0;
}
body.other section {
  /* =====================================
  topがないページのタイトル詰め
  ===================================== */
}
body.other section.supporters.inner, body.other section.link_shiryo.inner, body.other section.pp.inner, body.other section.site_policy.inner, body.other section.site_map.inner, body.other section.contact.inner {
  padding: 0 var(--space-medium) var(--space-medium);
}
body.other section.supporters.inner h1, body.other section.link_shiryo.inner h1, body.other section.pp.inner h1, body.other section.site_policy.inner h1, body.other section.site_map.inner h1, body.other section.contact.inner h1 {
  padding: 0 var(--space-small) var(--space-small);
}
body.other section {
  /* =====================================
  リファーとは
  ===================================== */
  /*流れの画像*/
}
body.other section.shinseinji_nanncho .text_contencts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.other section.shinseinji_nanncho .text_contencts .page_text {
  display: block;
}
body.other section.shinseinji_nanncho a.top-link {
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
  text-indent: initial;
}
body.other section.shinseinji_nanncho .img_all_box {
  max-width: 700px;
}
body.other section {
  /* =====================================
  子どもの難聴
  ===================================== */
  /*きこえの程度テーブル*/
}
body.other section.kodomo_nanncho .hl-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
}
body.other section.kodomo_nanncho .hl-table caption {
  text-align: left;
  margin-bottom: 0.75rem;
}
body.other section.kodomo_nanncho .hl-table thead {
  display: none;
}
body.other section.kodomo_nanncho .hl-table tr {
  display: block;
  border: 1px solid #cecece;
  margin-bottom: 1.5rem;
}
body.other section.kodomo_nanncho .hl-table th,
body.other section.kodomo_nanncho .hl-table td {
  display: block;
  width: 100%;
  background-color: var(--white);
  border: none;
  padding: 1rem;
}
body.other section.kodomo_nanncho .hl-table tbody th {
  background: var(--accent-nature);
  font-weight: bold;
  text-align: left;
}
body.other section.kodomo_nanncho .hl-table .cell-label {
  display: none;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #000;
}
@media screen and (min-width: 1024px) {
  body.other section.kodomo_nanncho .hl-table {
    table-layout: fixed;
  }
  body.other section.kodomo_nanncho .hl-table thead {
    display: table-header-group;
  }
  body.other section.kodomo_nanncho .hl-table thead th {
    background: var(--accent-nature);
    text-align: center;
    white-space: normal;
  }
  body.other section.kodomo_nanncho .hl-table thead th:first-child {
    width: 30%;
  }
  body.other section.kodomo_nanncho .hl-table thead th:last-child {
    width: 70%;
  }
  body.other section.kodomo_nanncho .hl-table tr {
    display: table-row;
    border: none;
    margin-bottom: 0;
  }
  body.other section.kodomo_nanncho .hl-table th,
  body.other section.kodomo_nanncho .hl-table td {
    display: table-cell;
    border: 1px solid #cecece;
    vertical-align: top;
  }
  body.other section.kodomo_nanncho .hl-table tbody th {
    background: var(--white);
    font-weight: bold;
  }
  body.other section.kodomo_nanncho .hl-table {
    /* PCではSP用ラベルを非表示 */
  }
  body.other section.kodomo_nanncho .hl-table .cell-label {
    display: none;
  }
}
body.other section.kodomo_nanncho {
  /*きこえの仕組み*/
}
body.other section.kodomo_nanncho .page_text2 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body.other section.kodomo_nanncho .text_contencts {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (min-width: 768px) {
  body.other section.kodomo_nanncho .img_box,
  body.other section.kodomo_nanncho .img_box2 {
    width: 37%;
  }
  body.other section.kodomo_nanncho .text_contencts {
    width: 45%;
  }
}
body.other section {
  /* =====================================
  早期療育・教育相談
  ===================================== */
  /*教育機関*/
}
body.other section.soudan .address-box .addr-line:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  text-indent: 0;
  padding-left: 1em;
}
body.other section.soudan .address-box a {
  display: block;
}
body.other section {
  /* =====================================
  精密検査機関・相談機関・療育機関
  ===================================== */
}
body.other section.link_shiryo .consultation-table, body.other section.soudan .consultation-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
}
@media screen and (min-width: 1000px) {
  body.other section.link_shiryo .consultation-table[data-div=相談窓口（赤ちゃん）], body.other section.link_shiryo .consultation-table[data-div=相談窓口（補聴器）], body.other section.soudan .consultation-table[data-div=相談窓口（赤ちゃん）], body.other section.soudan .consultation-table[data-div=相談窓口（補聴器）] {
    width: 75%;
    margin: 2rem 0;
  }
}
@media screen and (min-width: 1080px) {
  body.other section.link_shiryo .consultation-table[data-div=相談窓口（赤ちゃん）], body.other section.link_shiryo .consultation-table[data-div=相談窓口（補聴器）], body.other section.soudan .consultation-table[data-div=相談窓口（赤ちゃん）], body.other section.soudan .consultation-table[data-div=相談窓口（補聴器）] {
    width: 70%;
  }
}
body.other section.link_shiryo .consultation-table caption, body.other section.soudan .consultation-table caption {
  text-align: left;
  margin-bottom: 0.75rem;
}
body.other section.link_shiryo .consultation-table thead, body.other section.soudan .consultation-table thead {
  display: none;
}
body.other section.link_shiryo .consultation-table tr, body.other section.soudan .consultation-table tr {
  display: block;
  border: 1px solid #cecece;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background-color: var(--white);
}
body.other section.link_shiryo .consultation-table th,
body.other section.link_shiryo .consultation-table td, body.other section.soudan .consultation-table th,
body.other section.soudan .consultation-table td {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: none;
  padding: 0.5rem 1rem;
}
body.other section.link_shiryo .consultation-table tbody th, body.other section.soudan .consultation-table tbody th {
  background: var(--accent-nature);
  font-weight: bold;
  text-align: left;
}
body.other section.link_shiryo .consultation-table .cell-label, body.other section.soudan .consultation-table .cell-label {
  display: block;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  body.other section.link_shiryo .consultation-table tbody, body.other section.soudan .consultation-table tbody {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  body.other section.link_shiryo .consultation-table tbody tr, body.other section.soudan .consultation-table tbody tr {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 1000px) {
  body.other section.link_shiryo .consultation-table, body.other section.soudan .consultation-table {
    table-layout: fixed;
  }
  body.other section.link_shiryo .consultation-table thead, body.other section.soudan .consultation-table thead {
    display: table-header-group;
  }
  body.other section.link_shiryo .consultation-table tr, body.other section.soudan .consultation-table tr {
    display: table-row;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
  }
  body.other section.link_shiryo .consultation-table th,
  body.other section.link_shiryo .consultation-table td, body.other section.soudan .consultation-table th,
  body.other section.soudan .consultation-table td {
    display: table-cell;
    border: 1px solid #cecece;
    padding: 0.5rem 1rem;
    vertical-align: middle;
  }
  body.other section.link_shiryo .consultation-table thead th, body.other section.soudan .consultation-table thead th {
    background: var(--accent-nature);
    text-align: center;
    font-weight: bold;
    white-space: normal;
  }
  body.other section.link_shiryo .consultation-table tbody th, body.other section.soudan .consultation-table tbody th {
    background: var(--white);
    font-weight: bold;
  }
}
body.other section.link_shiryo .consultation-table, body.other section.soudan .consultation-table {
  /* 住所郵便番号で改行 */
}
body.other section.link_shiryo .consultation-table .zip-sep, body.other section.soudan .consultation-table .zip-sep {
  display: inline;
}
body.other section.link_shiryo .consultation-table .zip-sep::before, body.other section.soudan .consultation-table .zip-sep::before {
  content: "　";
}
@media (min-width: 1000px) and (max-width: 1280px) {
  body.other section.link_shiryo .consultation-table .zip-sep, body.other section.soudan .consultation-table .zip-sep {
    display: block;
  }
  body.other section.link_shiryo .consultation-table .zip-sep::before, body.other section.soudan .consultation-table .zip-sep::before {
    content: " "; /* 改行時はスペース不要 */
  }
}
body.other section.link_shiryo .consultation-table, body.other section.soudan .consultation-table {
  /* PCではSP用ラベルを非表示 */
}
body.other section.link_shiryo .consultation-table .cell-label, body.other section.soudan .consultation-table .cell-label {
  display: none;
}
body.other section.link_shiryo .consultation-table[data-div=相談窓口（赤ちゃん）] thead th:nth-child(1), body.other section.link_shiryo .consultation-table[data-div=相談窓口（補聴器）] thead th:nth-child(1), body.other section.soudan .consultation-table[data-div=相談窓口（赤ちゃん）] thead th:nth-child(1), body.other section.soudan .consultation-table[data-div=相談窓口（補聴器）] thead th:nth-child(1) {
  width: 70%;
}
body.other section.link_shiryo .consultation-table[data-div=相談窓口（赤ちゃん）] thead th:nth-child(2), body.other section.link_shiryo .consultation-table[data-div=相談窓口（補聴器）] thead th:nth-child(2), body.other section.soudan .consultation-table[data-div=相談窓口（赤ちゃん）] thead th:nth-child(2), body.other section.soudan .consultation-table[data-div=相談窓口（補聴器）] thead th:nth-child(2) {
  width: 30%;
}
body.other section.link_shiryo .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(1), body.other section.link_shiryo .consultation-table[data-div=療育機関] thead th:nth-child(1), body.other section.soudan .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(1), body.other section.soudan .consultation-table[data-div=療育機関] thead th:nth-child(1) {
  width: 25%;
}
body.other section.link_shiryo .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(2), body.other section.link_shiryo .consultation-table[data-div=療育機関] thead th:nth-child(2), body.other section.soudan .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(2), body.other section.soudan .consultation-table[data-div=療育機関] thead th:nth-child(2) {
  width: 25%;
}
body.other section.link_shiryo .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(3), body.other section.link_shiryo .consultation-table[data-div=療育機関] thead th:nth-child(3), body.other section.soudan .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(3), body.other section.soudan .consultation-table[data-div=療育機関] thead th:nth-child(3) {
  width: 30%;
}
body.other section.link_shiryo .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(4), body.other section.link_shiryo .consultation-table[data-div=療育機関] thead th:nth-child(4), body.other section.soudan .consultation-table[data-div=相談窓口（相談）] thead th:nth-child(4), body.other section.soudan .consultation-table[data-div=療育機関] thead th:nth-child(4) {
  width: 20%;
}
body.other section.link_shiryo .consultation-table[data-div=療育機関] tbody td.area-cell, body.other section.soudan .consultation-table[data-div=療育機関] tbody td.area-cell {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--accent-warm2);
}
@media screen and (min-width: 1000px) {
  body.other section.link_shiryo .consultation-table[data-div=療育機関] tbody td.area-cell, body.other section.soudan .consultation-table[data-div=療育機関] tbody td.area-cell {
    background: var(--white);
  }
}
body.other section.link_shiryo .consultation-table[data-div=精密検査] thead th:nth-child(1), body.other section.link_shiryo .consultation-table[data-div=市外] thead th:nth-child(1), body.other section.soudan .consultation-table[data-div=精密検査] thead th:nth-child(1), body.other section.soudan .consultation-table[data-div=市外] thead th:nth-child(1) {
  width: 40%;
}
body.other section.link_shiryo .consultation-table[data-div=精密検査] thead th:nth-child(2), body.other section.link_shiryo .consultation-table[data-div=市外] thead th:nth-child(2), body.other section.soudan .consultation-table[data-div=精密検査] thead th:nth-child(2), body.other section.soudan .consultation-table[data-div=市外] thead th:nth-child(2) {
  width: 40%;
}
body.other section.link_shiryo .consultation-table[data-div=精密検査] thead th:nth-child(3), body.other section.link_shiryo .consultation-table[data-div=市外] thead th:nth-child(3), body.other section.soudan .consultation-table[data-div=精密検査] thead th:nth-child(3), body.other section.soudan .consultation-table[data-div=市外] thead th:nth-child(3) {
  width: 20%;
}