/* ---------- フォント基準 ---------- */
/* ・レギュラー（Regular）
font-family: source-han-sans-japanese, sans-serif;
font-weight: 400;
font-style: normal;

・中太（Medium）
font-family: source-han-sans-japanese,sans-serif;
font-weight: 500;
font-style: normal;

・強調（Bold ）
font-family: source-han-sans-japanese, sans-serif;
font-weight: 700;
font-style: normal;

------------------------------------------------
日本語：第2候補
------------------------------------------------
Windows, Mac, Android, iOS
各OS標準ゴシック体とする */


/* ・セミボルド
font-family: source-han-serif-japanese,serif;
font-weight: 600;
font-style: normal;

------------------------------------------------
日本語：第2候補
Windows, Mac, Android, iOS
各OS標準明朝体とする */


/* ---------- コンテナ ---------- */
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.9375rem);
  padding-left: var(--bs-gutter-x, 0.9375rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    /* max-width: 540px; */
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .navWrapper nav ul,
  .container {
    width: 82vw;
    /* max-width: 900px; */
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .navWrapper nav ul {
    padding-right: var(--bs-gutter-x, 1.25rem);
    padding-left: var(--bs-gutter-x, 1.25rem);
  }
  .linkBox .container {
    padding-right: var(--bs-gutter-x, 0.625rem);
    padding-left: var(--bs-gutter-x, 0.625rem);
  }
  .footerAddress .container {
    width: 86.9vw;
  }
}
@media (min-width: 1200px) {
  /* .container {
    max-width: 1120px;
  } */
}
@media (min-width: 1400px) {
  /* .container {
    max-width: 1360px;
  } */
}

/* ---------- 基本 ---------- */
* {
  padding: 0;
  margin: 0;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-family: source-han-sans-japanese,"Noto Sans JP", "Hiragino san", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  line-height: 30px;
  line-height: 1.875rem;
  color: #333333;
  -webkit-overflow-scrolling: touch;
  word-break: break-word;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
html {
  animation: fadeIn 0.6s;
}
/* body{
    position: relative;
} */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.open {
  overflow-y: hidden;
}
#over {
  overflow: hidden;
  position: relative;
}
img {
  width: 100%;
  height: auto;
}
/* ---------- ヘッダー ---------- */
.headerLogo {
  min-height: 60px;
  display: grid;
  align-items: center;
  border-top: 3px solid #FE9999;
  background: #FFF2F2;
  background-image: url(../images/header-wave.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.headerLogo .container {
  padding-right: var(--bs-gutter-x, 0.625rem);
  padding-left: var(--bs-gutter-x, 0.625rem);
}
.headerLogo h1,
.headerLogo p {
  display: grid;
  align-items: center;

  max-width: 535px;
}
.headerLogo h1 > a,
.headerLogo p > a {
  display: grid;
  align-content: center;
  justify-content: center;
}
/* ---------- ハンバーガーリスト ---------- */
.headerHamburger {
  background: #02bd85;
  min-width: 60px;

  width: 100%;
  height: 60px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;

  justify-content: flex-end;
  right: 0;
  top: 0;

  color: #fff;
}
.headerHamburger {
  font-size: 0.875rem;
}
.hamburger {
  width: fit-content;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  border: none;
  background: transparent;
  margin-right: 1rem;
  margin-left: 0.625rem;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background-color: #fff;
}
.hamburger span:not(:last-child) {
  margin-bottom: 5px;
}

.open header .headerHamburger span:nth-of-type(1) {
  animation: active-menu-bar01 0.6s forwards;
}
.open header .headerHamburger span:nth-of-type(2) {
  animation: active-menu-bar02 0.4s forwards;
}
.open header .headerHamburger span:nth-of-type(3) {
  animation: active-menu-bar03 0.6s forwards;
}
.closed header .headerHamburger span:nth-of-type(1) {
  animation: menu-bar01 0.4s forwards;
}
.closed header .headerHamburger span:nth-of-type(2) {
  animation: menu-bar02 0.2s forwards;
}
.closed header .headerHamburger span:nth-of-type(3) {
  animation: menu-bar03 0.4s forwards;
}

@keyframes active-menu-bar01 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 7px, 0) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  40% {
    transform: translate3d(5px, 0, 0);
    /* opacity: 0; */
  }
  70% {
    transform: translate3d(10px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(10px, 0, 0);
    opacity: 0;
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, -7px, 0) rotate(45deg);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translate3d(0, 7px, 0) rotate(-45deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translate3d(10px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes menu-bar03 {
  0% {
    transform: translate3d(0, -7px, 0) rotate(45deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
}
/* グローバルナビゲーション */
.navWrapper {
  visibility: hidden;
  /* top: 120px; */
  position: absolute;
  background: #FFF2F2;
  width: 100%;
  height: 100%;
  z-index: 800;
  z-index: 500;
  /* overflow-y: auto; */
}
.open .navWrapper {
  visibility: visible;
  animation: fadeIn 0.5s ease-in;
  opacity: 1;
}
.navWrapper a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
}
.navWrapper nav {
  background: #FFFFFF;
}
.navWrapper nav ul li {
  min-height: 84px;
  display: grid;

  border-bottom: 1px solid #E6E6E6;
}
.navWrapper nav ul li a{
  padding: 0 1.25rem;
  display: grid;
  width: 100%;
  height: 100%;
  align-items: center;
  grid-template-columns: 44px auto;
  justify-content: start;
  justify-items: center;
  column-gap: 10px;
}
.navWrapper nav ul li a > span {
  background: #FF8181;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  align-items: center;
  justify-items: center;
}
.navWrapper nav ul li:last-child a > span {
  background: #999999;
  border-radius: 2px;
  width: 36px;
  height: 36px;
  display: grid;
  align-items: center;
  justify-items: center;
}
.navWrapper nav ul li a > span img {
  max-width: 20px;
  max-height: 20px;
  /* width: 27.3%;
  height: 43.2%; */
}
.navInner {
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 165px;
}
.backHome a {
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  width: min(100%, 170px);
  height: 36px;
  display: grid;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  position: relative;
}
.backHome a::before{
  position: absolute;
  content: '';
  background: url(../images/home_icon.svg) no-repeat;
  width: 16px;
  height: 16px;
  top: 10px;
  left: 9px;
}
/* ---------- フッター ---------- */
footer a {
  color: #FFF;
}
/* 共通バナーリンク */
.bannerLink {
  background: rgb(254, 153, 153, .25);
  padding-top: clamp(30px, 7vw, 45px);
  padding-bottom: clamp(25px, 5vw, 46px);
}
.bannerLink ul {
  display: grid;
  column-gap: 5px;
  row-gap: 5px;
  grid-template-columns: 2fr 2fr;
}
.bannerLink li {
  list-style-type: none;
}
.bannerLink li a {
  display: grid;
}
/* 会社情報と著作権 */
.footerAddress {
  font-size: 0.75rem;
  line-height: 1.125rem;
  background: #FE9999;
  color: #FFFFFF;
  padding-top:32px;
  padding-bottom: clamp(20px, 4vw, 45px);
  position: relative;
  background-image: url(../images/footer-wave.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
.footerAddress .container {
  position: relative;
}
/* 画面の一番上へ */
.scrollTop {
  position: absolute;
  display: grid;
  top: calc(-32px - 20px);
  right: var(--bs-gutter-x, 1.94rem);
}
.footerAddress span {
  display: inline-block;
}
body #over address {
  font-style: normal;
}
.footerTwogrid {
  margin-bottom: 20px;
  display: grid;
  row-gap: 21px;
  justify-items: center;
}
.addressLogo {
  font-size: 1rem;
  line-height: 1.5rem;
  display: grid;
  grid-template-columns: max-content auto;

  margin-bottom: 16px;
}
.addressLogo img {
  width: 37px;
  height: 31px;
}
footer small {
  font-size: 0.6875rem;
  color: #FED3D3;
}
/* ---------- サイドバー ---------- */
.sideMenu {
  margin-bottom: 60px;
}
.sideMenu ul li {
  list-style-type: none;
}
.sideMenu ul li a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  min-height: 60px;
}
.sideMenu ul{
  display: grid;
  row-gap: 2px;
}
.sideMenu > ul > li > a{
  background: #02BD85;
  color: #FFF;
  display: grid;
  align-items: center;
  justify-items: center;
}
.sideMenu > ul > li > ul {
  margin-top: 2px;
}
.sideMenu > ul > li > ul li a {
  background: #FFF2F2;
  color: #006699;
  display: grid;
  align-items: center;
  transition: .2s;
}
.sideMenu > ul > li > ul li :hover {
  background: #02BD85;
  color: #FFF;
  transition: .2s;
}
.sideMenu > ul > li > ul li a.active {
  background: #FE8181;
  color: #FFF;
}
/* ---------- ローカルメニュー ---------- */
.localMenu {
  margin-top: 60px;
}
.localMenu ul {
  display: grid;
  justify-items: center;
  row-gap: 12px;
  margin: 0 auto;
  padding-top: 31px;
  background-image: linear-gradient(to right, #FE8181, #FE8181 1px, transparent 0px, transparent 1px);
  background-size: 2px 1.5px;
  background-position: left top;
  background-repeat: repeat-x;
}
.localMenu ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-width: 445px;
  width: 100%;
  display: grid;
}
.localMenu ul li a {
  line-height: 1.5;
  position: relative;
  display: block;
  padding: 1rem 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 1px solid #FE8181;
  border-radius: 0.5rem;
  border-bottom: 3px solid #FE8181;
  color: #000000;
  display: grid;
}
.localMenu ul li a:hover {
  border-bottom: 1px solid #FE8181;
  margin-top: 2px;
  background: #FFF2F2;
}
.localMenu ul li a.active {
  border: none;
  margin-top: 2px;
  background: #FE8181;
  color: #FFF;
}


/* ---------- 重要なお知らせ ---------- */
.attentionNews {
  background: #FFF2F2;
  border: 3px solid #FF0000;
  padding-top: clamp(10px, 2vw, 20px);
  padding-right: clamp(15px, 3vw, 30px);
  padding-bottom: clamp(15px, 3vw, 20px);
  padding-left: clamp(15px, 3vw, 30px);
}
.attentionNews li {
  list-style-type: none;
}
.attentionNews li a {
  text-decoration: none;
}
.attentionNews time {
  color: #2E2E2E;
  line-height: 1.1875rem;
}
.attentionNews p {
  color: #FF0000;
  font-weight: 700;
  line-height: 1.75rem;
}

/* ---------- ホームメインビジュアル ---------- */


/* ---------- ホーム各メニューリンク ---------- */
.linkBox {
  background: #FFF2F2;
  padding-top: clamp(20px, 4vw, 45px);
  padding-bottom: clamp(20px, 4vw, 45px);
}
.linkBox ul {
  display: grid;
  row-gap: 5px;
}
.linkBox ul li {
  list-style-type: none;
  position: relative;
}
.linkBox ul li a {
  font-size: clamp(18px, 3vw, 24px);
  display: grid;
  width: 100%;
  height: 100%;
  align-items: center;
  grid-template-columns: 3fr 7fr;
  background: #FFF;
  text-decoration: none;
  color: #333333;
  column-gap: 17px;
  position: relative;
  border: 1px solid transparent;
}
.linkBox ul li a::before {
  position: absolute;
  content: '';
  width: clamp(21px, 4vw, 33px);
  height: clamp(21px, 4vw, 33px);
  background: linear-gradient(135deg,transparent 51%, #FE9999 50%);
  z-index: 1;
  bottom: 2px;
  right: 2px;
}
.linkBox ul li:nth-child(2) a::before {
  background: linear-gradient(135deg,transparent 51%, #8E44AD 50%);
}
.linkBox ul li:nth-child(3) a::before {
  background: linear-gradient(135deg,transparent 51%, #ED1B24 50%);
}
.linkBox ul li:nth-child(4) a::before {
  background: linear-gradient(135deg,transparent 51%, #02BD85 50%);
}
.linkBox ul li:nth-child(5) a::before {
  background: linear-gradient(135deg,transparent 51%, #FFD059 50%);
}

.linkBox ul li a::after {
  position: absolute;
  content: '';
  background: url(../images/arrow_min.svg) no-repeat;
  background-size: contain;
  width: clamp(6px, 1vw, 9px);
  height: clamp(8px, 1vw, 11px);
  z-index: 1;
  right: clamp(5px, 1vw, 7px);
  bottom: clamp(5px, 1vw, 7px);
}
.linkBox ul li a span {
  padding-bottom: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    align-items: center;
    margin: 0;
    /* height: max-content; */
    background: #FFFAFA;
}
.linkBox ul li a span img {
  /* min-width: 100%;
  min-height: 100%; */
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  object-fit: contain;
}
.linkBox ul li:nth-child(2) a span img {
  width: 75%;
  height: auto;
}
.linkBox ul li a p {
  margin: 0;
  margin-right: 10px;
}

.linkBox,
.whatsNew h3{
  font-family:  source-han-serif-japanese, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Times New Roman", serif;
  font-weight: 600;
  font-style: normal;
}

/* ---------- 新着情報 ---------- */
.whatsNew {
  padding-top: clamp(20px, 4vw, 45px);
  padding-bottom: 60px;
	margin: 0 auto;
	max-width: 1120px;
}
.whatsNew h3 {
  font-size: 1.5rem;
  border-left: 5px solid #FE9999;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.whatsNew h3 small {
  font-size: 1rem;
  color: #FE9999;
  font-weight: 500;
  font-family: source-han-sans-japanese,"Noto Sans JP", "Hiragino san", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  margin-left: 10px;
  display: inline-block;
}
.whatsNew .newsList {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  row-gap: 20px;
}
/* 2024.08.17 追加 ～ */
.whatsNew .newsListLink {
  display: grid;
  grid-template-columns: min(4.5973rem + 8.6514vw, 8.75rem) auto;
  column-gap: clamp(0.625rem, -0.5677rem + 5.0891vw, 1.875rem);
  align-items: center;
}
.whatsNew .newsListImg {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  max-width: 140px;
}
.whatsNew .newsListImg img {
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
/* ～ 2024.08.17 追加 */
/* ---------- ニュース・病院リスト（archive共通） ---------- */
.newsList li {
  list-style-type: none;
}
.newsList li a {
  text-decoration: none;
}
.newsList time {
  font-size: 0.875rem;
  color: #999999;
  text-decoration: none;
}
.newsList span {
  font-weight: 500;
  display: inline-block;
  line-height: 1rem;
  font-size: 0.75rem;
  color: #FE9999;
  border: solid 1px #FE9999;
  padding: 4px 7.13px 3px;;
  margin-left: 10px;
}
.newsList li p {
  text-decoration: underline;
  color: #006699;
}
.tagDiagnosis p span,
.hospitalList span {
  display: inline-block;
  line-height: 1rem;
  font-size: 0.75rem;
  color: #FFF;
  background: #CA3E47;
  padding: 4px 7.13px 3px;;
  margin-left: 10px;
}
/* ---------- 各色変更（枠付き） ---------- */
#over main .catBlue {
  color: #006699;
  border: solid 1px #006699;
}
#over main .catGreen {
  color: #02BD85;
  border: solid 1px #02BD85;
}
/* ---------- 各色変更（背景色のみ） ---------- */
#over main .tagBlue {
  background: #0000A1;
}
#over main .tagGreen {
  background: #02BD85;
}
#over main .tagPink {
  background: #FE9999;
}
/* ---------- コンテンツリンク色 ---------- */
main header + section a {
  color: #006699;
  /* text-decoration: none; */
}
/* main header + section a:hover{
  text-decoration: underline;
} */
/* ---------- ボタン装飾 ---------- */
button,
button[type="button"]{
  padding: 0;
  background-color: transparent;
  border: none;
  appearance: none;
  cursor: pointer;
}
.backLink,
.member .gotoLink {
  width: 100%;
  margin-top: clamp(40px, 4vw, 90px);
}
.gotoLink,
.backLink {
  display: grid;
  justify-items: center;
}
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
}
button[type="button"] a,.Form-Btn,
.gotoLink a,
.backLink a,
form .conf,
form .send {
  font-family: source-han-sans-japanese,"Noto Sans JP", "Hiragino san", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #212529;
  border-radius: 0.5rem;
  color: #000;
  background-color: #FED059;
  border-bottom: 5px solid #E5BB50;
  width: min(100%, 245px);
}
button[type="button"] a:hover,
.gotoLink a:hover,
.backLink a:hover,
form .conf,
form .send:hover {
  margin-top: 3px;
  color: #000;
  background: #FED059;
  border-bottom: 2px solid #E5BB50;
}
form .conf,
form .send {
  width: min(100%, 356px);
  font-size: 1rem;
}
#over > main header + section .gotoLink.container a {
  margin-top: 0;
}
#over > main header + section .gotoLink.container a:hover {
  margin-top: 3px;
}
/* ---------- テーブル（表） ---------- */
#over > main .x-scroll {
  overflow-x: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  margin: 0 calc(50% - 50vw) 0 0;
  margin-top: 20px;
  margin-bottom: clamp(30px, 6vw, 45px);
}
#over > main .wp-block-table {
  overflow-x: initial;
  margin: 0;
}
#over > main .wp-block-table table,
#over > main table {
  font-size: 1rem;
  border: 0px none;
  border-spacing: 0;
  border-collapse: collapse;
  caption-side: bottom;
  border-collapse: collapse;
  border-bottom: 1px solid #c1c1c1;
  width: max-content;
  margin-right: calc(var(--bs-gutter-x, 1.33rem));
  min-width: calc(100% - var(--bs-gutter-x, 1.33rem));
}
#over > main .wp-block-table table th,
#over > main .wp-block-table table td,
#over > main table th,
#over > main table td {
  border: none;
  padding: 14px 16px;
  min-width: 133px;
  max-width: 168px;
  max-width: 35%;
}
#over > main .wp-block-table table td,
#over > main table td {
  min-width: 100px;
  max-width: 165px;
}
#over > main .wp-block-table table th,
#over > main table thead th {
  font-weight: 700;
}
#over > main .property-contents .wp-block-table table tbody th,
#over > main .property-contents table tbody th {
  text-align: start;
  font-weight: 400;
}
#over > main .wp-block-table table tbody th,
#over > main table tbody th {
  text-align: start;
  font-weight: 700;
  /* width: 35%; */
}
#over > main .wp-block-table table thead,
#over > main table thead {
  border: none;
  background: #fff1ea;
}
#over > main .wp-block-table table tbody,
#over > main table tbody {
  border-top: 2px solid #FE8181;
  border-bottom: 2px solid #FE8181;
  margin-top: 1px;
}
/* #over > main .wp-block-table table tbody tr,
#over > main table tbody tr {
  padding-bottom: 2px;
  border-bottom: 2px solid #fffbf2;
} */
#over > main .wp-block-table table tbody tr:last-child,
#over > main table tbody tr:last-child {
  border-bottom: none;
}
#over > main .wp-block-table table tbody th,
#over > main table tbody th {
  background: #FFF2F2;
}
#over > main .wp-block-table table tbody tr:nth-child(odd),
#over > main table tbody tr:nth-child(odd) {
  background: #ffffff;
}
#over > main .wp-block-table table tbody tr:nth-child(even),
#over > main table tbody tr:nth-child(even) {
  background: #fafafa;
}
#over > main .wp-block-table table tfoot,
#over > main table tfoot {
  border: none;
  border-bottom: 1px solid #cccccc;
}
#over > main table td.odd {
  background: #ffffff;
}
#over > main table td.even {
  background: #fafafa;
}
@media screen and (min-width: 540px) {
  /* ---------- ホーム各メニューリンク ---------- */
  .linkBox ul {
    grid-template-columns:1fr 1fr;
    column-gap: 41px;
    row-gap: 10px;
		margin: 0 auto;
		max-width: 1120px;
  }
  .linkBox ul li {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 41px;
    row-gap: 10px;
  }
  /* ---------- テーブル（表） ---------- */
  #over > main .x-scroll {
    margin-left: auto;
    margin-right: auto;
  }
  #over > main .wp-block-table table,
  #over > main table {
    margin-right: 0;
    min-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  /* ---------- ホーム各メニューリンク ---------- */
  .linkBox ul li a {
    transition: .3s;
  }
  .linkBox ul li a:hover {
    border: 1px solid #FE8181;
    transition: .3s;
    background: #FFFAFA;
  }
  /* ---------- フッター ---------- */
  /* 共通バナーリンク */
  .bannerLink ul {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, [col-start] minmax(100px, 18.55%) [col-end]);
    column-gap: 20px;
    row-gap: 20px;
  }
  .footerTwogrid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .footerTwogrid > p {
    margin-right: clamp(48px, 7vw, 95px);
  }
  /* ---------- 新着情報 ---------- */
  /* .whatsNew .container {
    display: grid;
    grid-template-columns: 3fr 7fr;
    align-items: flex-start;
  } */
  .whatsNew h3 {
    margin-top: 10px;
    padding-right: 20px;
}
  /* .whatsNew .container > div {
    border-left: 1px solid #FE9999;
    padding-left: clamp(20px, 2vw, 60px);
  } */
  /* .whatsNew .gotoLink{
    justify-items: start;
  } */
  /* ---------- ローカルメニュー ---------- */
  .localMenu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 16px;
  }
  /* ---------- テーブル（表） ---------- */
  #over > main .wp-block-table table,
  #over > main table {
    width: 100%;
    margin: 0;
  }
  #over > main .wp-block-table table th,
  #over > main .wp-block-table table td,
  #over > main table th,
  #over > main table td {
    padding: 14px 14px;
  }
}

@media screen and (min-width: 992px) {
  /* ---------- ヘッダー ---------- */
  .headerLogo {
    height: clamp(60px, 6vw ,80px);
    background-image: url(../images/header-wave.png);
    background-position: top left 13vw;
    background-repeat: no-repeat;
    background-size: 500px auto;
  }
  .headerHamburger {
    display: none;
  }
  /* ---------- グローバルナビゲーション ---------- */
  .navWrapper {
    visibility: visible;
    opacity: 1;
    position: static;
    height: auto;
  }
  .navInner {
    height: auto;
    overflow-y: hidden;
    padding-bottom: 0;
}
  .navWrapper ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, [col-start] minmax(15%, 1fr) [col-end]);
  }
  .navWrapper nav ul li {
    border-bottom: none;
  }
  .navWrapper nav ul li a {
    grid-template-columns: none;
    padding:  16px 0 19px;
    justify-content: center;
    row-gap: 5px;
    transition: .2s;
  }
  .navWrapper nav ul li a:hover{
    background: #FE8181;
    color: #FFF;
    transition: .2s;
  }
  .navWrapper nav ul li a:hover > span {
    background: #FFF;
  }
  .navWrapper nav ul li a:hover img{
    filter: invert(53%) sepia(28%) saturate(5050%) hue-rotate(330deg) brightness(150%) contrast(100%);
  }
  .navWrapper nav ul li a.active > span {
    background: #02BD85;
  }
  .navWrapper nav ul li:last-child a.active > span {
    background: #333333;
  }
  .navWrapper nav ul li a.active img{
    filter: invert(6%) sepia(2%) saturate(1481%) hue-rotate(314deg) brightness(101%) contrast(102%);
  }
  .navWrapper nav ul li a.active {
    background: #FFF2F2;
    color: #000;
  }
  .backHome {
    position: absolute;
    top: 0;
    height: clamp(60px, 6vw ,80px);
    border-top: 3px solid transparent;
    display: grid;
    align-items: center;
    padding-right: var(--bs-gutter-x, 1.25rem);
  }
  .backHome a {
    width: 170px;
    margin: 0;
    transition: .4s;
  }
  .backHome a:hover {
    transition: .4s;
    background: #E6E6E6;
  }
  /* 会社情報と著作権 */
  .footerAddress {
    background-image: url(../images/footer-wave.png);
    background-position: top left 9vw;
    background-repeat: no-repeat;
    background-size: contain;
  }
  /* ---------- 重要なお知らせ ---------- */
  .attentionNews li a {
    display: grid;
    grid-template-columns: max-content auto;
    align-items: center;
    column-gap: 20px;
  }
  /* ---------- サイドバーをもっているとき ---------- */
  .hasSidebar {
    width: 74.55%;
   }
   .sideMenu {
    width: 19.45%;
    position: absolute;
  }
  .sideMenu ul {
    width: 100%;
  }

  .hasAside .backLink {
    width: 74.55%;
    margin-right: 0;
    margin-left: 0;
  }
}