@charset "utf-8";
/*====================
Mapion カスタムCSS
assets/common2024/css/common.css の上書き・調整用
====================*/

/*====================
レスポンシブ表示制御
====================*/
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}

/*====================
画像リスト（imgList）の横並び
====================*/
.imgList {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.imgList li {
  display: inline-block;
  margin: 0;
}

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

/* SP時: 2列表示 */
@media screen and (max-width: 767px) {
  .imgList li {
    width: calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }
}

/*====================
駐車場アイコン
====================*/
.parkingIcon img {
  width: 30px;
  height: 30px;
}

/*====================
店舗名とロゴの横並び
====================*/
.withLink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.withLink .subTitle {
  order: 0;
  width: 100%;
  margin-bottom: -12px; /* gapの16pxを打ち消して4pxにする */
}

.withLink .content__title {
  order: 1;
  flex: 1;
  margin: 0;
}

.withLink .h1Img {
  order: 2;
  flex: 0 0 auto;
}

.withLink .h1Img img {
  height: auto;
}

@media screen and (max-width: 767px) {
  .withLink .h1Img img {
    max-width: 94px;
  }
}

.withLink .banner-image {
  order: 3;
  width: 100%;
}

.withLink .section__button-wrap {
  order: 4;
  width: 100%;
  text-align: center;
}

.withLink .section__button-wrap-function {
  order: 5;
  width: 100%;
}

.withLink .icmCaretRight {
  order: 6;
  width: 100%;
}

/*====================
バナー画像とボタン
====================*/
.banner-image {
  text-align: right;
  margin: 10px 0;
}

.banner-image img {
  max-width: 200px;
  height: auto;
}

.section__button-wrap--center {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}
/*====================
取り扱いサービス
====================*/
.section__list-label-item.isDisabled{
  background: #eee;
  font-weight: 100;
}
.visually-hidden {
  display: none;
}
/*====================
各種お問い合わせ先 - 3段組
====================*/
.column3 {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .column3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .column3 {
    grid-template-columns: 1fr;
  }
}

/*====================
駐車場アイコンの吹き出し
====================*/
.park-icon-wrap {
  position: relative;
}

.park-icon {
  position: relative;
  cursor: pointer;
}

.park-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.lmap-popup {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  white-space: nowrap;
}

.lmap-popup-tip {
  background-color: #fff;
  border: 2px solid #0068b7;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 1.4rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}

.lmap-popup-tip::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #0068b7;
}

.lmap-popup-tip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: -2px;
  border: 5px solid transparent;
  border-right-color: #fff;
  z-index: 1;
}

/*====================
地図表示エリア
====================*/
#MapiMapFix {
  width: 100%;
  margin-bottom: 16px;
}

#map {
  width: 100%;
  height: 400px;
  background-color: #f5f5f5;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #map {
    height: 300px;
  }
}

/*====================
フッター周辺
====================*/
.footer-path {
  list-style: none;
  padding: 0;
  margin: 30px 0 20px 0;
  text-align: right;
}

.footer-path li {
  margin-bottom: 8px;
}

.topicpath-bottom {
  max-width: 966px;
  width: 100%;
  margin: 24px auto;
  box-sizing: border-box;
}

.topicpath-bottom #breadcrumbBottom {
  margin: 0;
  max-width: none;
  padding: 0;
}

/* #breadcrumbBottomは#breadcrumbTopと同じスタイルを使用 */
#breadcrumbBottom {
  background: transparent;
}

#breadcrumbBottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

#breadcrumbBottom li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.6;
}

#breadcrumbBottom li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin: 0 8px;
  background-image: url(/f/mhbk/assets/common2024/images/icon/icon_breadcrumb_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

#breadcrumbBottom a {
  color: #285ae1;
  text-decoration: underline;
}

#breadcrumbBottom a:hover {
  text-decoration: none;
}

.speakAnchor {
  text-align: center;
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .footer-path {
    display: none;
  }

  .topicpath-bottom {
    padding: 0 10px;
  }
}

/*====================
パンくずと金融機関コード
====================*/
.breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 966px;
  width: 100%;
  margin: 12px auto 24px;
  box-sizing: border-box;
}

.breadcrumb-wrapper #breadcrumbTop {
  flex: 1;
  margin: 0;
  max-width: none;
  padding: 0;
}

.financial-code {
  text-align: right;
  margin: 0;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
  white-space: nowrap;
}

/*====================
テーブルセルの改行設定
====================*/
.section__table-head,
.section__table-data {
  word-break: normal;
}

.section__table-head {
  width: 23%;
}

/*====================
店番号とh1の間隔調整
====================*/
.subTitle {
  font-size: 14px;
  margin-bottom: 4px;
  color: #333;
}

.subTitle span {
  font-weight: bold;
}

.withLink .content__title {
  margin-top: 0 !important;
}

.withLink .content__title + *:not(.section__heading-lead) {
  margin-top: 16px !important;
}

@media screen and (min-width: 768px) {
  .withLink .content__title + *:not(.section__heading-lead) {
    margin-top: 16px !important;
  }
}

/*====================
SP表示時のサービスアイコン幅調整
====================*/
@media screen and (max-width: 767px) {
  .section__image-block-right.section__image-block-desc {
    width: 100% !important;
    padding-left: 7px;
  }
}
