@charset "UTF-8";
/* =======================================
   オフライン転送ページ専用ヘッダースタイル
======================================== */
.header--offline-transfer {
  background-color: #fff;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

.header--offline-transfer .header__inner {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1700px;
  margin: 10px auto;
  width: 100%;
  box-sizing: border-box;
  gap: 15px;
}

.header--offline-transfer .header__logo {
  flex-shrink: 0;
}

/* パンくずリスト */
.header--offline-transfer .header__breadcrumb {
  flex: 1;
  min-width: 0;
  margin-left: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.header--offline-transfer .header__breadcrumb .breadcrumbs {
  margin: 0;
  font-size: 12px;
  color: rgb(66, 84, 98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header--offline-transfer .header__breadcrumb .breadcrumbs a {
  color: rgb(66, 84, 98);
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
}

.header--offline-transfer .header__breadcrumb .breadcrumbs a:hover {
  opacity: 0.7;
}

.header--offline-transfer .header__list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  flex: 1;
  justify-content: center;
}

.header--offline-transfer .header__item {
  list-style: none;
  margin: 0;
}

.header--offline-transfer .header__item a {
  color: #000 !important;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 26px 0;
  display: block;
  border-bottom: solid 3px transparent;
}

.header--offline-transfer .header__item:hover a {
  color: #000 !important;
  opacity: 0.5;
}

.header--offline-transfer .header__item:hover {
  border-bottom-color: transparent;
  opacity: 1;
}

/* お問い合わせボタン */
.header--offline-transfer .header__cta {
  flex-shrink: 0;
  margin-left: auto;
}

.header--offline-transfer .header__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 121px;
  height: 38px;
  padding: 0;
  margin-bottom: 8px;
  background-color: #61BCCC;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(97, 188, 204, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.header--offline-transfer .header__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(97, 188, 204, 0.5);
}

/* ハンバーガーメニューのスタイル */
.header--offline-transfer .hamburger__button {
  display: none;
}

.header--offline-transfer .h-menu__container {
  display: none;
}

/* タブレット対応 */
@media only screen and (max-width: 1024px) and (min-width: 601px) {
  .header--offline-transfer .header__inner {
    padding: 0 15px;
    gap: 10px;
  }

  .header--offline-transfer .header__breadcrumb {
    margin-left: 15px;
    min-width: 150px;
  }

  .header--offline-transfer .header__breadcrumb .breadcrumbs {
    font-size: 11px;
  }

  .header--offline-transfer .header__cta-button {
    font-size: 13px;
  }
}

/* モバイル対応（600px以下） */
@media only screen and (max-width: 600px) {
  /* SP版：ヘッダーを固定（常に表示されるように） */
  .header--offline-transfer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    z-index: 2;
    transition: transform 0.3s ease;
  }

  /* SP版：スクロール時にヘッダーが消えないようにする */
  .header--offline-transfer.header__hidden {
    transform: translateY(0) !important;
  }

  .header--offline-transfer .header__inner {
    padding: 0 10px;
    margin: 0 auto;
    height: inherit;
    gap: 15px;
  }

  .header--offline-transfer .header__logo {
    flex-shrink: 1;
    max-width: 120px;
  }

  .header--offline-transfer .header__logo img {
    max-width: 77%;
    height: auto;
  }

  /* SP版：パンくずリストをお問い合わせボタンの位置に移動 */
  .header--offline-transfer .header__breadcrumb {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    min-width: 0;
  }

  .header--offline-transfer .header__list {
    display: none;
  }

  /* SP版：お問い合わせボタンを非表示 */
  .header--offline-transfer .header__cta {
    display: none;
  }

  .header--offline-transfer .header__cta-button {
    display: none;
  }

  .header--offline-transfer .hamburger__button {
    display: none;
  }

  .header--offline-transfer .hamburger__button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #CBCBCB;
    position: absolute;
    right: 12.5px;
    transition: all 0.3s;
  }

  .header--offline-transfer .hamburger__button span:nth-child(1) {
    top: 16px;
  }

  .header--offline-transfer .hamburger__button span:nth-child(2) {
    top: 24px;
  }

  .header--offline-transfer .h-menu__container {
    display: none;
  }
}

