@charset "UTF-8";

.shb-site {
  --shb-blue-900: #123f63;
  --shb-blue-800: #19577f;
  --shb-blue-700: #17689b;
  --shb-blue-100: #eaf4fa;
  --shb-blue-050: #f5f9fc;
  --shb-teal: #177d78;
  --shb-orange: #b96824;
  --shb-yellow: #f2c94c;
  --shb-red: #b64343;
  --shb-text: #24313a;
  --shb-muted: #687680;
  --shb-border: #d8e1e7;
  --shb-white: #fff;
  --shb-shadow: 0 8px 28px rgba(22, 63, 93, 0.09);
  --shb-radius: 16px;
  width: 100%;
  min-width: 320px;
  color: var(--shb-text);
  background: var(--shb-white);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: anywhere;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
}

.shb-site {
  margin: 0;
  padding-top: 0;
}

.shb-header,
.shb-header__main {
  margin-top: 0;
  padding-top: 0;
}
@media (max-width: 767px) {
  .shb-site,
  .shb-header,
  .shb-header__main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}


.shb-site,
.shb-site * {
  box-sizing: border-box;
}

.shb-site :where(h1, h2, h3, p, ul, ol, dl, dt, dd, figure) {
  margin: 0;
  padding: 0;
}

.shb-site :where(ul, ol) {
  list-style: none;
}

.shb-site :where(a) {
  color: inherit;
  text-decoration: none;
}

.shb-site :where(img) {
  display: block;
  max-width: 100%;
  height: auto;
}

.shb-site :where(button, input, select, textarea) {
  font: inherit;
}

.shb-site :where(a, button):focus-visible {
  outline: 3px solid #f3b61f;
  outline-offset: 3px;
}

.shb-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.shb-container2 {
  width: min(1000px, calc(100% - 48px));
  margin-inline: auto;
}

.shb-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shb-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff !important;
  background: var(--shb-blue-900);
}

.shb-skip-link:focus {
  transform: translateY(0);
}

/* Header -------------------------------------------------- */
.shb-header {
  position: relative;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(18, 63, 99, 0.12);
}

.shb-header__main {
  background: #fff;
}

.shb-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.shb-logo {
  display: inline-flex;
  align-items: center;
  max-width: 280px;
}

.shb-logo img {
  width: auto;
  max-height: 64px;
  object-fit: contain;
}

.shb-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shb-home-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--shb-border);
  border-radius: 999px;
  color: var(--shb-blue-900) !important;
  font-weight: 700;
}

.shb-home-link:hover {
  background: var(--shb-blue-050);
}

.shb-home-link__icon {
  font-size: 20px;
  line-height: 1;
}

.shb-menu-button {
  display: none;
  min-width: 62px;
  padding: 7px 8px 5px;
  border: 0;
  border-radius: 8px;
  color: #74748a;
  background: transparent;
}

.shb-menu-button__bars {
  width: 28px;
  margin: 0 auto 4px;
  display: grid;
  gap: 5px;
}

.shb-menu-button__bars span {
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.shb-menu-button__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.shb-menu-button[aria-expanded="true"] .shb-menu-button__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.shb-menu-button[aria-expanded="true"] .shb-menu-button__bars span:nth-child(2) {
  opacity: 0;
}

.shb-menu-button[aria-expanded="true"] .shb-menu-button__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.shb-global-nav {
  background:#74748a
}

.shb-global-nav__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shb-global-nav__list > li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.shb-global-nav__list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.shb-global-nav__list a::after {
  content: "";
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--shb-yellow);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.shb-global-nav__list a:hover,
.shb-global-nav__list a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.shb-global-nav__list a:hover::after,
.shb-global-nav__list a:focus-visible::after {
  transform: scaleX(1);
}

/* Section shared ----------------------------------------- */
.shb-section,
.shb-hero {
  scroll-margin-top: 24px;
}

.shb-section {
  padding: 76px 0;
}

.shb-site .shb-section-heading {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.shb-site .shb-section-heading--compact {
  margin-bottom: 20px;
}

.shb-site .shb-section-heading__eyebrow {
  margin: 0 0 5px !important;
  color: var(--shb-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
}

.shb-site .shb-section-heading h2 {
  margin: 0;
  color: var(--shb-blue-900);
  font-size: clamp(38px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .02em;
  text-align: center;
}

.shb-site .shb-section-heading__lead {
  max-width: 680px;
  margin: 0 auto !important;
  color: var(--shb-muted);
  font-size: 15px;
  text-align: center;
}

/* Carousel ------------------------------------------------ */
.shb-hero {
  padding: 20px 0 20px;
  background: linear-gradient(180deg, #f6fafc 0%, #eef6fa 100%);
  border-bottom: 1px solid var(--shb-border);
}

/* ========================================================
   TOP メインカルーセル
   中央を大きく・左右を小さく薄く表示
======================================================== */

.shb-site .shb-main-carousel {
  width: 100%;
  max-width: none;
  margin-:0;
  position: relative;
  overflow: hidden;

  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* 全スライド共通 */
/* Splideが位置計算する要素 */
.shb-site .shb-main-carousel .splide__slide {
  position: relative;
  background: transparent;

  /* 重要：slide自体にはtransformを掛けない */
  transform: none;
}


/* 縮小・透過はこちらに掛ける */
.shb-site .shb-main-carousel .splide__slide > a {
  width: 100%;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 14px;
  overflow: hidden;

  opacity: .42;
  transform: scale(.82);
  transform-origin: center center;

  box-shadow: 0 5px 20px rgba(18, 63, 99, .12);

  transition:
    transform .7s ease,
    opacity .7s ease,
    box-shadow .7s ease;
}
/* 中央 */
.shb-site .shb-main-carousel .splide__slide.is-active > a {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 28px rgba(18, 63, 99, .20);
}

/* 画像 */
.shb-site .shb-main-carousel .splide__slide img {
  display: block;

  width: 100%;
  height: 420px;

  object-fit: contain;
}


/* 中央だけ少し強めに見せる */
.shb-main-carousel .splide__slide.is-active > a {
  box-shadow: 0 8px 28px rgba(18, 63, 99, .20);
}
.shb-main-carousel .splide__arrow {
  width: 44px;
  height: 44px;
  background:#a9a9a9;
  opacity: 1;
}

.shb-main-carousel .splide__arrow svg {
  fill: #fff;
}

.shb-thumbnail-carousel {
  margin-top: 16px;
}

.shb-thumbnail-carousel .splide__track {
  padding: 3px 0 !important;
  padding-top: 28px;
  padding-bottom: 28px;
}

.shb-thumbnail-carousel .splide__slide {
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  opacity: .72;
  overflow: hidden;
}

.shb-thumbnail-carousel .splide__slide.is-active {
  border-color: #808080 !important;
  opacity: 1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(112, 113, 113, 0.18);
}

.shb-thumbnail-carousel .splide__slide a {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
}

.shb-thumbnail-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shb-thumbnail-carousel .splide__arrow {
  background: #fff;
  box-shadow: 0 2px 10px rgba(18, 63, 99, .14);
}

.shb-site .shb-section-heading--compact .shb-carousel-toggle {
  margin: 4px auto 0;
}

.shb-carousel-toggle {
  min-height: 40px;
  padding: 7px 14px;
  border: 1px solid #a9a9a9;
  border-radius: 999px;
  color: var(--shb-blue-900);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.shb-carousel-toggle:hover {
  background: var(--shb-blue-050);
}



/* Purpose ------------------------------------------------- */
.shb-purpose {
  background: #fff;
}

.shb-purpose-group + .shb-purpose-group {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--shb-border);
}

.shb-site .shb-purpose-group__title {
  width: 100%;
  margin: 0 0 22px !important;
  padding-left: 10px;
  color: #696969;
  font-size: 30px;
  font-weight: 800;
  text-align: left;
}

.shb-site .shb-purpose-group__title::before,
.shb-site .shb-purpose-group__title::after {
  content: none;
  display: none;
}

.shb-site .shb-purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shb-site a.shb-purpose-card {
  min-width: 0;
  min-height: 270px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 22px 16px 20px;
  border: 1px solid var(--shb-border);
  border-radius: 10px;
  color: var(--shb-text);
  background: #fff;
  box-shadow: 0 3px 12px rgba(18, 63, 99, .06);
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* 既存CSS側でリンクに矢印を付ける場合も、目的カードでは表示しない */
.shb-site a.shb-purpose-card::before,
.shb-site a.shb-purpose-card::after {
  content: none !important;
  display: none !important;
}

.shb-site a.shb-purpose-card:hover,
.shb-site a.shb-purpose-card:focus-visible {
  transform: translateY(-3px);
  border-color: #aebfc9;
  box-shadow: 0 7px 20px rgba(18, 63, 99, .12);
}

.shb-site .shb-purpose-card__icon {
  flex: 0 0 156px;
  width: 100%;
  height: 156px;
  min-height: 156px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

/* 透過PNG/SVGを入れる場合：<span class="shb-purpose-card__icon"><img ...></span> */
.shb-site .shb-purpose-card__icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 132px;
  margin: auto;
  object-fit: contain;
}

.shb-site .shb-purpose-card__icon-placeholder {
  display: none;
}

.shb-site .shb-purpose-card__title {
  width: 100%;
  margin: auto 0 0;
  padding: 10px 4px 0;
  color:#696969;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1100px) {
  .shb-site .shb-purpose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}



/* Information -------------------------------------------- */
.shb-site .shb-information {
  background: var(--shb-blue-050);
  border-block: 1px solid var(--shb-border);
}

.shb-site .shb-information__body {
  overflow: hidden;
  border: 1px solid var(--shb-border);
  border-radius: var(--shb-radius);
  background: #fff;
  box-shadow: 0 5px 20px rgba(18, 63, 99, .05);
}

.shb-site .shb-information .m-navTab {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
}

/* CMS標準タブを3等分で表示 */
.shb-site .shb-information .m-navTab__panel {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--shb-border) !important;
  background: #eef4f7 !important;
}

.shb-site .shb-information .m-navTab__panel > li {
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.shb-site .shb-information .m-navTab__panel > li > a {
  width: 100% !important;
  min-height: 66px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 !important;
  padding: 12px 14px !important;
  color: var(--shb-blue-900) !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 1px solid var(--shb-border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
}

.shb-site .shb-information .m-navTab__panel > li:first-child > a {
  border-left: 0 !important;
}

/* 既存テーマが付ける矢印・装飾をタブ内では消す */
.shb-site .shb-information .m-navTab__panel > li > a::before,
.shb-site .shb-information .m-navTab__panel > li > a::after,
.shb-site .shb-information .m-navTab__panel > li > a > span::before,
.shb-site .shb-information .m-navTab__panel > li > a > span::after {
  content: none !important;
  display: none !important;
}

.shb-site .shb-information .m-navTab__panel > li > a:hover,
.shb-site .shb-information .m-navTab__panel > li > a:focus-visible {
  background: rgba(255, 255, 255, .7) !important;
}

.shb-site .shb-information .m-navTab__panel > li.is-current > a,
.shb-site .shb-information .m-navTab__panel > li > a[aria-selected="true"] {
  color: var(--shb-blue-900) !important;
  background: #fff !important;
  box-shadow: inset 0 -4px 0 var(--shb-blue-700) !important;
}

.shb-site .shb-information .m-navTab__content {
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
}

.shb-site .shb-information .m-navTab__item {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
}

.shb-site .shb-information .m-navTab__item > *:first-child {
  margin-top: 0;
}

/* 3パネル共通：CMS自動生成ニュース一覧 */
.shb-site .shb-information .m-listNews {
  margin: 0;
  padding: 10px 28px 0;
  background: none;
}

.shb-site .shb-information .m-listNews > li {
  margin: 0;
  padding: 0;
  background: none;
  border-top: 1px solid var(--shb-border);
}

.shb-site .shb-information .m-listNews > li:first-child {
  border-top: 0;
}

.shb-site .shb-information .m-listNews > li > a {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(195px, 230px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 17px 4px;
  color: var(--shb-text);
  text-decoration: none;
  background: transparent;
}

.shb-site .shb-information .m-listNews > li > a:hover,
.shb-site .shb-information .m-listNews > li > a:focus-visible {
  background: #f8fbfd;
}

.shb-site .shb-information .m-listNews__ttl {
  width: auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.shb-site .shb-information .m-listNews__ttl + * {
  margin: 0;
}

.shb-site .shb-information .m-listNews__date {
  flex-basis:100%;
  margin-right: 0;
  margin-bottom: 6px;
  color: var(--shb-muted);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.shb-site .shb-information .m-listNews__ttl [class^="m-label--"],
.shb-site .shb-information .m-listNews__ttl [class*=" m-label--"] {
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 3px 7px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.shb-site .shb-information .m-listNews__txt {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--shb-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  position: static;
}

.shb-site .shb-information .m-listNews__txt::before {
  display: none;
}

.shb-site .shb-information .m-listNews__txt > span {
  text-decoration: none;
}

.shb-site .shb-information .m-listNews > li > a:hover .m-listNews__txt > span,
.shb-site .shb-information .m-listNews > li > a:focus-visible .m-listNews__txt > span {
  color: var(--shb-blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shb-site .shb-information .m-listNews olang {
  display: inline;
}

/* 一覧ボタン：新着／イベント／重要 共通 */
.shb-site .shb-information .m-listButton,
.shb-site .shb-information .m-listRss {
  margin: 0;
  padding: 12px 28px 24px;
  display: flex;
  justify-content: flex-end;
  background: #fff;
}

.shb-site .shb-information .m-listButton li,
.shb-site .shb-information .m-listRss li {
  margin: 0;
  padding: 0;
}

.shb-site .shb-information .m-listButton .m-btnL,
.shb-site .shb-information .m-listRss .m-btnL {
  width: auto;
  min-width: 190px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 22px;
  color: var(--shb-blue-700);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  border: 1px solid var(--shb-blue-700);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.shb-site .shb-information .m-listButton .m-btnL::before,
.shb-site .shb-information .m-listButton .m-btnL::after,
.shb-site .shb-information .m-listRss .m-btnL::before,
.shb-site .shb-information .m-listRss .m-btnL::after {
  display: none;
}

.shb-site .shb-information .m-listButton .m-btnL:hover,
.shb-site .shb-information .m-listButton .m-btnL:focus-visible,
.shb-site .shb-information .m-listRss .m-btnL:hover,
.shb-site .shb-information .m-listRss .m-btnL:focus-visible {
  color: #fff;
  background: var(--shb-blue-700);
}

@media (max-width: 767px) {
  .shb-site .shb-information .m-navTab__panel > li > a {
    min-height: 58px;
    padding: 10px 6px !important;
    font-size: 13px;
  }

  .shb-site .shb-information .m-listNews {
    padding: 6px 18px 0;
  }

  .shb-site .shb-information .m-listNews > li > a {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 15px 2px;
  }

  .shb-site .shb-information .m-listNews__date {
    font-size: 13px;
  }

  .shb-site .shb-information .m-listNews__txt {
    font-size: 14px;
  }

  .shb-site .shb-information .m-listButton,
  .shb-site .shb-information .m-listRss {
    padding: 10px 18px 20px;
    justify-content: center;
  }

  .shb-site .shb-information .m-listButton .m-btnL,
  .shb-site .shb-information .m-listRss .m-btnL {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .shb-site .shb-information .m-navTab__panel > li > a {
    min-height: 56px;
    padding-inline: 3px !important;
    font-size: 12px;
    letter-spacing: 0;
  }
}

/* Access -------------------------------------------------- */
.shb-access {
  background: #fff;
}

.shb-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.shb-access-card {
  padding: 30px;
  border: 1px solid var(--shb-border);
  border-radius: var(--shb-radius);
  background: #fff;
  box-shadow: var(--shb-shadow);
}

.shb-access-card__label {
  margin-bottom: 4px !important;
  color: var(--shb-blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.shb-access-card h3 {
  margin-bottom: 22px !important;
  color: var(--shb-blue-900);
  font-size: 24px;
  font-weight: 800;
}

.shb-access-list > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--shb-border);
}

.shb-access-list dt {
  color: var(--shb-muted);
  font-weight: 700;
}

.shb-access-list dd {
  font-weight: 700;
}

.shb-access-list a {
  color: var(--shb-blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shb-access-note {
  margin-top: 18px !important;
  padding: 12px 14px;
  border-radius: 10px;
  color: #5e4c22;
  background: #fff8e6;
  font-size: 14px;
}

.shb-button-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shb-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--shb-blue-700);
  border-radius: 9px;
  font-weight: 800;
}

.shb-button--primary {
  color: #fff !important;
  background: var(--shb-blue-700);
}

.shb-button--primary:hover {
  background: var(--shb-blue-900);
}

.shb-button--secondary {
  color: var(--shb-blue-700) !important;
  background: #fff;
}

.shb-button--secondary:hover {
  background: var(--shb-blue-050);
}

.shb-hours-main {
  padding: 18px;
  border-radius: 12px;
  background: var(--shb-blue-100);
}

.shb-hours-main span,
.shb-hours-main strong {
  display: block;
}

.shb-hours-main span {
  color: var(--shb-muted);
  font-weight: 700;
}

.shb-hours-main strong {
  margin-top: 3px;
  color: var(--shb-blue-900);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.shb-hours-closed {
  margin-top: 10px !important;
  color: var(--shb-red);
  font-size: 14px;
  font-weight: 800;
}

.shb-hours-special {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--shb-orange);
  background: #fcf7f1;
}

.shb-hours-special p {
  font-size: 14px;
}

.shb-hours-special strong {
  display: block;
  margin-top: 6px;
  color: #8e4b17;
}

/* Footer -------------------------------------------------- */
.shb-footer {
  color: #fff;
  background: #74748a;
}

.shb-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 44px;
  padding-top: 48px;
  padding-bottom: 42px;
}

.shb-footer h2 {
  margin-bottom: 14px !important;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  font-size: 16px;
  font-weight: 800;
}

.shb-footer li + li {
  margin-top: 7px;
}

.shb-footer a {
  color: #fff !important;
}

.shb-footer section a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shb-footer section p {
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
}

.shb-footer section p + p {
  margin-top: 5px !important;
}

.shb-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .17);
  background: rgba(0, 0, 0, .1);
}

.shb-footer__bottom-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.shb-footer small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.shb-page-top {
  font-size: 13px;
  font-weight: 800;
}

/* Responsive --------------------------------------------- */
@media (max-width: 980px) {
  .shb-main-carousel .splide__slide > a,
  .shb-main-carousel .splide__slide img {
    height: 360px;
  }
}
@media (max-width: 920px) {

    .shb-container2 {
    width: min(100% - 30px, 900px);
  }
}
@media (max-width: 767px) {
  .shb-container {
    width: min(100% - 30px, 1180px);
  }
  .shb-header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .shb-logo {
    max-width: 205px;
  }

  .shb-logo img {
    max-height: 50px;
  }

  .shb-home-link {
    display: none;
  }

  .shb-menu-button {
    display: block;
  }

  .shb-global-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 120;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 14px 30px rgba(18, 63, 99, .22);
  }

  .shb-global-nav.is-open {
    display: block;
  }

  .shb-global-nav__list {
    grid-template-columns: 1fr;
  }

  .shb-global-nav__list > li + li {
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
  }

  .shb-global-nav__list a {
    min-height: 54px;
    justify-content: space-between;
    padding: 13px 20px;
    text-align: left;
  }

  .shb-global-nav__list a::before {
    content: "";
    order: 2;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .shb-global-nav__list a::after {
    display: none;
  }

  .shb-section,
  .shb-hero {
    scroll-margin-top: 78px;
  }

  .shb-section {
    padding: 54px 0;
  }

  .shb-hero {
    padding: 30px 0 36px;
  }

  .shb-site .shb-section-heading,
  .shb-site .shb-section-heading--compact {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .shb-site .shb-section-heading__lead {
    font-size: 14px;
    text-align: center;
  }

  .shb-main-carousel .splide__slide > a,
  .shb-main-carousel .splide__slide img {
    height: 280px;
  }

  .shb-main-carousel .splide__arrow {
    width: 38px;
    height: 38px;
  }

  .shb-site .shb-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shb-site a.shb-purpose-card {
    min-height: 238px;
    display: flex;
    flex-direction: column;
    padding: 16px 12px 17px;
  }

  .shb-site .shb-purpose-card__icon {
    flex-basis: 132px;
    height: 132px;
    min-height: 132px;
    margin-bottom: 10px;
  }

  .shb-site .shb-purpose-card__icon img {
    max-width: 112px;
    max-height: 112px;
  }

  .shb-site .shb-purpose-card__title {
    font-size: 14px;
    text-align: center;
  }

  .shb-access-grid {
    grid-template-columns: 1fr;
  }

  .shb-access-card {
    padding: 24px 20px;
  }

  .shb-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .shb-footer__bottom-inner {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 7px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 320px) {
  .shb-logo {
    max-width: 188px;
  }

  .shb-section-heading--compact h2 {
    font-size: 26px;
  }

  .shb-carousel-toggle {
    padding-inline: 10px;
    font-size: 12px;
  }

  .shb-main-carousel .splide__slide > a,
  .shb-main-carousel .splide__slide img {
    height: 225px;
  }

  .shb-site .shb-purpose-grid {
    grid-template-columns: 1fr;
  }

  .shb-site a.shb-purpose-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 20px;
  }

  .shb-site .shb-purpose-card__icon {
    width: 100%;
    flex-basis: 142px;
    height: 142px;
    min-height: 142px;
    margin: 0 0 12px;
  }

  .shb-site .shb-purpose-card__icon img {
    max-width: 122px;
    max-height: 122px;
  }

  .shb-site .shb-purpose-card__title {
    width: 100%;
    font-size: 15px;
    text-align: center;
  }

  .shb-access-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shb-site *,
  .shb-site *::before,
  .shb-site *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.page-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #808080;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}

/* 画面に表示する時のクラス */
.page-top-btn.is-show {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------
   アクセス：写真・地図
---------------------------------------- */

.shb-site .shb-access-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 15px;
}

.shb-site .shb-access-visual {
  margin: 0;
  min-width: 0;
}

/* ========================================================
   アクセス画像：クリック拡大
======================================================== */

.shb-site button.shb-access-visual__image {
  position: relative;
  padding: 0;
  border: 1px solid #d9dee5;
  font: inherit;
  cursor: zoom-in;
  appearance: none;
}

.shb-site button.shb-access-visual__image:hover,
.shb-site button.shb-access-visual__image:focus-visible {
  border-color: var(--shb-blue-700);
  box-shadow: 0 4px 14px rgba(18, 63, 99, .15);
}


/* 拡大表示ラベル */
.shb-site .shb-access-visual__zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;

  padding: 5px 10px;

  color: #fff;
  background: rgba(36, 49, 58, .78);

  border-radius: 6px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;

  pointer-events: none;
}


/* ========================================================
   画像モーダル
======================================================== */

.shb-image-modal {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  max-height: calc(100% - 40px);

  margin: auto;
  padding: 0;

  border: 0;
  border-radius: 14px;

  background: transparent;

  overflow: visible;
}


/* 背景 */
.shb-image-modal::backdrop {
  background: rgba(0, 0, 0, .72);
}


/* モーダル本体 */
.shb-image-modal__inner {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-height: calc(100vh - 60px);

  padding: 30px;

  background: #fff;
  border-radius: 14px;

  box-shadow: 0 16px 50px rgba(0, 0, 0, .28);
}


/* 画像領域 */
.shb-image-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-height: calc(100vh - 120px);

  overflow: auto;
}


/* 拡大画像 */
.shb-image-modal__image {
  display: block;

  max-width: 100%;
  max-height: calc(100vh - 120px);

  width: auto;
  height: auto;

  object-fit: contain;
}


/* 閉じるボタン */
.shb-image-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #fff;
  background: #555;

  border: 3px solid #fff;
  border-radius: 50%;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}


.shb-image-modal__close:hover,
.shb-image-modal__close:focus-visible {
  background: #222;
}


/* スマートフォン */
@media (max-width: 767px) {

  .shb-image-modal {
    width: calc(100% - 24px);
  }

  .shb-image-modal__inner {
    padding: 16px;
  }

  .shb-image-modal__close {
    top: -12px;
    right: -8px;

    width: 42px;
    height: 42px;

    font-size: 25px;
  }

  .shb-image-modal__image {
    max-height: calc(100vh - 80px);
  }
}


/* CMS標準 Adobe Reader案内をTOPページでは非表示 */
.m-boxReader {
  display: none !important;
}
/* 画像クリックで拡大表示 */
.shb-site .shb-access-visual__image {
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.shb-site .shb-access-visual__image:hover,
.shb-site .shb-access-visual__image:focus-visible {
  border-color: var(--shb-blue-700);
  box-shadow: 0 4px 14px rgba(18, 63, 99, .15);
}


/* 右下の「拡大表示」 */
.shb-site .shb-access-visual__zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 10px;

  color: #fff;
  background: rgba(36, 49, 58, .78);

  border-radius: 6px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;

  pointer-events: none;
}


/* 外部表示を示す簡易アイコン */
.shb-site .shb-access-visual__zoom::after {
  content: " ?";
  margin-left: 3px;
}
