.page-header {
	margin: 0 0 20px;
	padding: 8px 0 8px !important;
}

.pageCategoryTitle {
	padding-top: 100px;
}

.page-title {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
	font-family: "Noto Sans JP", sans-serif;
}

.acms-page-header {
	border-bottom: 1px solid #e9e9e9 !important;
}

.module-header {
	border-bottom: 1px solid #e9e9e9 !important;
}

/* nice-selectのドロップダウンオプションを初期状態で非表示にする */
.nice-select .list {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* セレクターがアクティブ（開いた）状態の時のみ表示 */
.nice-select.open .list {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* セレクターのメインボタン部分のスタイル調整 */
.nice-select {
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 40px 10px 15px;
  min-height: 40px;
  line-height: 20px;
  color: #000000;
}

/* セレクターの矢印アイコン */
.nice-select::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #999;
  transition: transform 0.3s ease;
}

/* 開いた状態の矢印を回転 */
.nice-select.open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ドロップダウンリストのスタイル */
.nice-select .list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

/* リストアイテムのスタイル */
.nice-select .option {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nice-select .option:hover {
  background-color: #f5f5f5;
}

.nice-select .option.selected {
  background-color: #007cba;
  color: #fff;
}

/* フォーカス状態のスタイル */
.nice-select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .nice-select {
    width: 100%;
  }
  
  .nice-select .list {
    max-height: 150px;
  }
}

.mt32 {
	margin-top: 32px;
}

.shiro {
	color: #ffffff;
}




/* --- GoogleMap 埋め込みの保険 --- */
.google_map { 
  position: relative !important;
  overflow: visible !important;
}

.google_map iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  /* Step1 では height は HTML 側の 420px を使う */
  border: 0 !important;
  z-index: 1;
	margin-bottom: 24px;
}

/* 親のどこかで overflow: hidden が効いている場合の保険 */
.js-edit_inplace,
.entry-style,
.entry-style-grid,
.acms-grid,
.acms-entry {
  overflow: visible !important;
}


/* 比率固定のレスポンシブ埋め込み */
.map-embed {
  position: relative;
  width: 100%;
  /* 16:9。必要なら 4/3 や 3/2 に変更 */
  aspect-ratio: 16/9;
  overflow: hidden;
}

/* aspect-ratio 非対応ブラウザ用フォールバック */
@supports not (aspect-ratio: 1/1) {
  .map-embed {
    height: 0;
    padding-top: 56.25%; /* 16:9 = 9/16 */
  }
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* currentクラスのスタイルを無効化 */
.current {
  color: inherit !important;
  background-color: transparent !important;
  font-weight: inherit !important;
  border: none !important;
}

.current::after,
.current::before {
  display: none !important;
}

/* より具体的なセレクターでも無効化 */
.global-menu .current,
.main-menu .current,
nav .current,
.menu .current {
  color: inherit !important;
  background-color: transparent !important;
  font-weight: inherit !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

.global-menu .current::after,
.main-menu .current::after,
nav .current::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1200px) {
.stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 15px;
}
}

/* 固定ヘッダーの高さを確認して調整 */
@media (min-width: 1024px) {
  [id] {
    scroll-margin-top: 134px; /* この値を実際のヘッダー高さに合わせて調整 */
  }
}


/* ▼ 都道府県セレクトを必ず表示（nice-select等に display:none にされても表示） */
#pref-select {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  pointer-events: auto !important;
  background-image: none !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

/* ▼ もしラッパーが生成されても、この項目だけは見せない（被り防止） */
#pref-select + .nice-select,
#pref-select ~ .select2,
#pref-select ~ .select2-container,
#pref-select ~ .bootstrap-select {
  display: none !important;
}

/* ▼ インライン style="display:none" を付けられても上書き */
#pref-select[style*="display:none"],
#pref-select[style*="display: none"] {
  display: block !important;
}

.mb32{
	margin-bottom: 32px;
}

.card {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    border-left: 1px solid #E5E5E5;
    width: 100%;
}

h1 .entry-title {
	font-size: 2em !important;
}


/* 問い合わせサイドメニューを is-side-open で開く */
body.is-side-open .hidden-bar {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

