@charset "UTF-8";
/* ---------------------------------------------------------
メディアクエリ用
--------------------------------------------------------- */
/* CSS Document */
.colorB span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: #FFF 1px solid;
  text-align: center; }
.colorB > span:nth-of-type(1) {
  background: #3abcef; }
.colorB > span:nth-of-type(2) {
  background: #a39df2; }
.colorB > span:nth-of-type(3) {
  background: #f29de5; }
.colorB > span:nth-of-type(4) {
  background: #f2a39d; }
.colorB > span:nth-of-type(5) {
  background: #f2d49d; }
.colorB > span:nth-of-type(6) {
  background: #bcf29d; }
.colorB > span:nth-of-type(7) {
  background: #9df2c2; }
.colorB > span:nth-of-type(8) {
  background: #9de0f2; }
.colorB > span:nth-of-type(9) {
  background: #b3b3b3; }

.colorA span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: #FFF 1px solid;
  text-align: center; }
.colorA > span:nth-of-type(1) {
  background: #0096e6; }
.colorA > span:nth-of-type(2) {
  background: #5345f0; }
.colorA > span:nth-of-type(3) {
  background: #e640cc; }
.colorA > span:nth-of-type(4) {
  background: #f05648; }
.colorA > span:nth-of-type(5) {
  background: #f0b448; }
.colorA > span:nth-of-type(6) {
  background: #86e645; }
.colorA > span:nth-of-type(7) {
  background: #40e691; }
.colorA > span:nth-of-type(8) {
  background: #40cce6; }
.colorA > span:nth-of-type(9) {
  background: #555555; }

.bold {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal; }

.medium {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 500;
  font-style: normal; }

html {
  padding-top: 0 !important; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #fffadd;
  /* ベースの薄いクリーム色 */
  background-image: radial-gradient(circle, #ffb3ba 20%, transparent 21%), radial-gradient(circle, #bae1ff 20%, transparent 21%), radial-gradient(circle, #ffffba 20%, transparent 21%), radial-gradient(circle, #baffc9 20%, transparent 21%);
  background-size: 80px 80px, 120px 120px, 150px 150px, 200px 200px;
  background-position: 0 0, 40px 60px, 80px 10px, 120px 90px; }

.site-content {
  flex: 1; }

/* コンテナ内で要素を横並びに強制し、両端揃えにする */
.navbar {
  background-color: transparent !important; }

.custom-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 左と右に配置 */
  flex-wrap: nowrap;
  /* 重要：絶対に折り返さない */
  height: 5rem;
  /* ナビバーの高さ */
  width: 100%; }

/* ロゴエリア */
.navbar-brand-custom {
  flex-shrink: 0;
  /* 縮小させない */
  margin-right: 1rem;
  display: flex;
  align-items: center;
  height: 100%; }
  .navbar-brand-custom img {
    height: 4rem;
    margin-top: .5rem; }

/* 右側エリア（PCメニュー + ハンバーガー） */
.navbar-right-side {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* 縮小させない */
  gap: 1rem;
  /* 要素間の余白 */ }

/* ハンバーガーボタンのデザイン */
.hamburger {
  width: 60px;
  height: 60px;
  background-color: #8dc63f;
  /* 緑背景 */
  border-radius: 50%;
  /* 正円 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer; }

/* 三本線（白抜き） */
.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  /* アニメーション用 */ }

/* モーダルメニューのデザイン */
.modal-menu-content {
  background-color: white;
  border-radius: 6px;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto; }

.modal-menu-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.modal-menu-list a {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f5f5f5;
  color: #4a4a4a; }

.footer {
  position: relative;
  padding: 0; }
  .footer .copyright {
    padding: 2rem;
    text-align: center; }

/* MAP */
.full-width-map {
  width: 100%;
  line-height: 0;
  /* 下に隙間ができるのを防ぐ */ }

.full-width-map iframe {
  width: 100% !important;
  /* 横幅を強制的に100%にする */
  height: 400px;
  /* 高さを指定（お好みで） */
  border: 0; }

/* スマホでは少し高さを低くしたい場合 */
@media (max-width: 768px) {
  .full-width-map iframe {
    height: 300px; } }
.h1-outer {
  margin-bottom: 2rem;
  position: relative;
  isolation: isolate; }

/* H1本体 */
.facility-heading {
  display: inline-block;
  position: relative;
  background-color: #38b6e6;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  padding-top: 1rem;
  padding-bottom: 1rem;
  /* 右側：文字列 + 2文字分の余白 */
  padding-right: 2em;
  /* 【修正】左側：画面端まで確実に伸ばしつつ、テキスト位置を固定する手法 */
  /* コンテンツエリアの端から画面外へ100vw分飛ばす */
  margin-left: -100vw;
  /* 飛ばした100vwをパディングで戻し、さらに本文と揃えるための30pxを追加 */
  padding-left: calc(100vw);
  /* 角丸：右側のみ */
  border-radius: 0 3rem 3rem 0;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 2; }

/* 【修正】ピンクのライン：開始位置から2文字分 */
.facility-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  /* H1のテキスト開始位置（左端から100vw+30pxの地点）に固定 */
  left: calc(100vw);
  /* 2文字分に固定 */
  width: 4em;
  height: 12px;
  background-color: #e95295;
  border-radius: 6px;
  z-index: -1; }

/* === レイアウト基本設定 === */
.mainContents {
  background: #FFF;
  padding: 3rem;
  width: 80%;
  max-width: 1200px;
  margin: 7rem auto 2rem auto;
  border-radius: 2rem;
  /* H1の突き出しを許容 */
  overflow: visible; }
  @media screen and (max-width: 768px) {
    .mainContents {
      padding: 1.5rem;
      width: 90%; } }
