@charset "UTF-8";
/* responsive.css */
.Header__pc {
    display: block;
}

.Footer__pc {
    display: block;
}

.Header__sp {
    display: none;
}

.Footer__sp {
    display: none;
}

@media print,screen and (min-width:751px) {
    /* 全ページpc共通css */

:root {
    --corporate-color: #00a0e9;
    --sub-corporate-color: #007cb5;
    --active-color: #e8f6fd;
    --textLink-color: #333;
    --caution-color: #ff2800;
    --disable-bg-color: #f5f5f5;
    --disable-font-color: #bbb;
  }

  html {
    font-size: 10px;
  }

  body {
    min-width: 1024px;
    color: #333;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ",
      "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img {
    width: 100%;
    height: auto;
  }

  .Common21__inner {
    width: 1024px;
    margin: 0 auto;
  }
  .jump_p a{
    color: var(--corporate-color);
    text-decoration: underline;
  }
  .jump_p a:hover{
    color: var(--caution-color);
    text-decoration: none;
  }

  .Blog__article-ttl {
      word-break: break-all;
  }
  /*! スキップリンク / pc用ヘッダー / パンくず / 重要なお知らせ / フッター */

/* --------------------start_スキップリンク-------------------- */

#skipNav {
  position: fixed;
  z-index: 2147483638;
  background: 0 0;
  transition: background 0.1s ease;
}

#skipNav:focus-within {
  position: fixed;
  inset: 0;
  width: 100%;
  z-index: 2147483638;
  background: rgba(0, 17, 26, 0.7);
}

.skipLink {
  position: fixed;
  left: 40px;
  top: -70px;
  opacity: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  font-size: 14px;
  font-weight: 700;
  background: white;
  border-radius: 8px;
  border: 2px solid #0038ff;
  transition: top 0.3s, opacity 0.3s;
}

.skipLink:focus {
  top: 40px;
  opacity: 1;
}

/* --------------------start_スキップリンク-------------------- */

/* --------------------start_ヘッダー-------------------- */
#Header,.Header {
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
  }

  .Header__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1024px;
    margin: 0 auto;
  }

  #Header__logo {
    width: 114px;
    margin-right: 10px;
  }

  #SelectArea {
    position: relative;
    padding: 0 25px 0 15px;
    background-color: #f5f5f5;
    border-radius: 100px;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  #SelectArea:hover {
    background-color: white;
    box-shadow: 0px 0px 0px 1px var(--corporate-color) inset;
  }

  #SelectArea::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-80%) rotate(45deg);
  }

  .SelectArea__label {
    padding: 5px 10px 5px 0;
    font-size: 1.3rem;
    border-right: 1px dotted #888;
  }

  .SelectArea__content {
    display: inline-block;
    padding: 10px 10px 10px 5px;
    color: var(--corporate-color);
    font-size: 1.4rem;
    font-weight: 600;
  }

  /* start_出発地モーダル */
  #SelectAreaModal {
    opacity: 0;
    pointer-events: none;
    width: 200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    font-size: 1.4rem;
    background: white;
    border: 2px solid var(--corporate-color);
    border-radius: 6px;
    transform: translate(-50%, calc(100% + 6px));
    box-shadow: 0px 18px 8px -15px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s;
  }

  #SelectAreaModal.js_SelectAreaModal--active {
    opacity: 1;
    pointer-events: auto;
  }

  .SelectAreaModal__items {
    position: relative;
  }

  .SelectAreaModal__items::before {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent var(--corporate-color) transparent;
    transform: translateX(-50%);
  }

  .SelectAreaModal__link {
    position: relative;
    display: block;
    padding: 8px 30px;
  }

  .SelectAreaModal__item:not(:last-child) .SelectAreaModal__link {
    border-bottom: 1px solid #e5e5e5;
  }

  .SelectAreaModal__item:first-child .SelectAreaModal__link {
    border-radius: 5px 5px 0 0;
  }

  .SelectAreaModal__item:last-child .SelectAreaModal__link {
    border-radius: 0 0 5px 5px;
  }

  .SelectAreaModal__link:hover {
    background-color: #f5f5f5;
  }

  .SelectAreaModal__link--selected {
    background: var(--active-color);
    pointer-events: none;
  }

  .SelectAreaModal__link--selected::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 7px;
    border-left: 2px solid var(--corporate-color);
    border-bottom: 2px solid var(--corporate-color);
    transform: translate(-150%, -70%) rotate(-45deg);
    position: absolute;
    top: 50%;
  }
  /* end_出発地モーダル */

  /* start_テキストリンク */
  .Header__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
  }

  .Header__links-items {
    display: flex;
    justify-content: space-between;
    margin-right: 10px;
  }

  /*.Header__links-item:not(:last-child)::after {
    content: "｜";
    display: inline;
    font-size: 1.3rem;
  }*/

  .Header__links-link {
    font-size: 1.3rem;
    margin: 0 5px;
  }

  .Header__links-link:hover {
    text-decoration: underline;
  }

  /* .Header__links-link::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: -3px;
    margin-right: 3px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .Header__links-link--qa::before {
    background-image: url(../images/icn_Header-link--qa.svg);
  }

  .Header__links-link--beginner::before {
    background-image: url(../images/icn_Header-link--beginner.svg);
  }

  .Header__links-link--store::before {
    background-image: url(../images/icn_Header-link--store.svg);
  } */
  /* end_テキストリンク */

  /* start_お気に入りボタン */
  .Header__favorite {
    display: block;
    margin-right: 5px;
    padding: 10px;
    color: #666;
    font-size: 1.4rem;
    white-space: nowrap;
    border: 1px solid #c3c3c3;
    border-radius: 3px;
    transition: color 0.3s, border-color 0.3s;
  }

  .Header__favorite:hover {
    color: #ff6978;
    border-color: #ff6978;
  }

  .Header__favorite::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    vertical-align: -5px;
    background: url(../images/icn_favorite--stroke-pink.svg) no-repeat center /
      contain;
  }
  /* end_お気に入りボタン */

  /* start_マイページボタン */
  .Header__mypage {
    padding: 10px 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--corporate-color);
    border: 1px solid var(--corporate-color);
    border-radius: 3px;
    transition: color 0.3s, background-color 0.3s;
  }

  .Header__mypage:hover {
    color: white;
    background-color: var(--corporate-color);
  }

  .Header__mypage-icn {
    display: inline-block;
    width: 20px;
    height: 20px;
    fill: var(--corporate-color);
    transition: fill 0.3s;
    vertical-align: -5px;
  }

  .Header__mypage:hover .Header__mypage-icn {
    fill: white;
  }
  /* end_マイページボタン */

  /* --------------------end_ヘッダー-------------------- */

  /* --------------------start_グローバルナビゲーション-------------------- */
  #Gnav,.Gnav {
    border-top: 1px solid #e5e5e5;
    border-bottom: 2px solid var(--corporate-color);
  }

  .Gnav__inner {
    display: flex;
    justify-content: space-between;
    width: 1024px;
    margin: 0 auto;
  }

  .Gnav__group {
    display: flex;
    justify-content: space-between;
  }

  .Gnav__group--other {
    border-left: 2px solid var(--corporate-color);
  }

  .Gnav__label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    background: var(--corporate-color);
  }

  .Gnav__items {
    display: flex;
    justify-content: space-between;
  }

  .Gnav__item:not(:last-child) {
    border-right: 1px dotted #888;
    /* background-image: linear-gradient(to bottom, #888, #888 1px, transparent 1px, transparent 1px);
    background-size: 1px 2px;
    background-position: right top;
    background-repeat: repeat-y; */
  }

  .Gnav__group:last-child .Gnav__item:last-child {
    border-right: 1px dotted #888;
  }

  .Gnav__link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 120px;
    height: 100%;
    padding: 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s, box-shadow 0.3s, background-color 0.3s;
  }

  .Gnav__link:not(.Gnav__link--active):hover {
    color: var(--corporate-color);
    box-shadow: 0px -2px 0px 0px var(--corporate-color) inset;
    background-color: var(--active-color);
  }

  .Gnav__link::before {
    content: "";
    display: block;
    align-self: start;
    width: 100%;
    height: 30px;
    margin-bottom: 2px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .Gnav__link--active {
    color: white;
    background: #4cbcef;
  }

  .Gnav__link--d::before {
    background-image: url(../images/icn_Gnav--d.svg);
  }

  .Gnav__link--bus::before {
    background-image: url(../images/icn_Gnav--bus.svg);
  }

  .Gnav__link--dpd::before {
    background-image: url(../images/icn_Gnav--dpd.svg);
  }

  .Gnav__link--hotel::before {
    background-image: url(../images/icn_Gnav--hotel.svg);
  }

  .Gnav__link--i::before {
    background-image: url(../images/icn_Gnav--i.svg);
  }

  .Gnav__link--dp::before {
    background-image: url(../images/icn_Gnav--dp.svg);
  }

  .Gnav__link--cruise::before {
    background-image: url(../images/icn_Gnav--cruise.svg);
  }

  .Gnav__link--theme::before {
    background-image: url(../images/icn_Gnav--theme.svg);
  }

  /* start_active */
  .Gnav__link--d.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--d-white.svg);
  }

  .Gnav__link--bus.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--bus-white.svg);
  }

  .Gnav__link--dpd.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--dpd-white.svg);
  }

  .Gnav__link--hotel.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--hotel-white.svg);
  }

  .Gnav__link--i.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--i-white.svg);
  }

  .Gnav__link--dp.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--dp-white.svg);
  }

  .Gnav__link--cruise.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--cruise-white.svg);
  }

  .Gnav__link--theme.Gnav__link--active::before {
    background-image: url(../images/icn_Gnav--theme-white.svg);
  }
  /* end_active */
  /* --------------------end_グローバルナビゲーション-------------------- */

  /* --------------------start_パンくず-------------------- */
  #BreadCrumb,.BreadCrumb {
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .BreadCrumb__items {
    display: flex;
    justify-content: flex-start;
    font-size: 1.2rem;
    overflow-x: auto;
  }

  .BreadCrumb__items::-webkit-scrollbar {
    height: 5px;
  }

  .BreadCrumb__items::-webkit-scrollbar-thumb {
    background-color: #e5e5e5;
    border-radius: 10px;
  }

  .BreadCrumb__item {
    flex-shrink: 0;
  }

  .BreadCrumb__link:hover {
    text-decoration: underline;
  }

  .BreadCrumb__icn {
    margin: 0 5px;
    vertical-align: 1px;
  }

  .BreadCrumb__current {
    vertical-align: -1px;
  }
  /* --------------------end_パンくず-------------------- */

  /* --------------------start_重要なお知らせ-------------------- */
  #PrimaryNotice {
    padding: 20px 0;
    background: #f5f5f5;
  }

  #BreadCrumb + #PrimaryNotice {
    border-bottom: 1px solid #e5e5e5;
  }

  .PrimaryNotice__inner {
    display: flex;
    justify-content: flex-start;
    width: 1024px;
    margin: 0 auto;
  }

  .PrimaryNotice__ttl {
    margin-right: 20px;
    color: var(--caution-color);
    font-size: 1.4rem;
    font-weight: 600;
  }

  .PrimaryNotice__link {
    color: var(--textLink-color);
    font-size: 1.4rem;
  }

  .PrimaryNotice__link::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-top: 2px solid var(--corporate-color);
    border-right: 2px solid var(--corporate-color);
    transform: rotate(45deg);
    vertical-align: 1px;
  }

  .PrimaryNotice__link:hover {
    text-decoration: underline;
  }
  /* --------------------end_重要なお知らせ-------------------- */

  /* --------------------start_ハイパーバナー-------------------- */
  #hyperBn {
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 11;
    padding: 10px 40px 10px 10px;
    background-color: white;
    box-shadow: 0px 0px 10px -5px rgb(0 0 0 / 50%);
  }

  .hyperBn__img {
    display: block;
    width: 320px;
    border: 1px solid #e5e5e5;
    transition: opacity 0.3s;
  }

  .hyperBn__img:hover {
    opacity: 0.7;
  }

  .hyperBn__close {
    position: absolute;
    top: 10px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid white;
    transition: border-color 0.3s;
  }

  .hyperBn__close:hover {
    border-color: #888;
  }

  .hyperBn__close-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hyperBn__close-inner::before,
  .hyperBn__close-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 12px;
    height: 2px;
    background-color: #888;
  }

  .hyperBn__close-inner::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .hyperBn__close-inner::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* --------------------end_ハイパーバナー-------------------- */

  /* --------------------start_ページトップボタン-------------------- */
  #btnToTop {
    position: fixed;
    bottom: -85px;
    right: 15px;
    z-index: 10;
    display: block;
    width: 70px;
    height: 70px;
    opacity: 0.7;
    background: url(../images/btnToTop.svg) no-repeat center / contain;
    cursor: pointer;
    transition: 0.3s;
  }

  #btnToTop:hover {
    opacity: 1;
  }

  #btnToTop.btnToTop--active {
    bottom: 15px;
  }
  /* --------------------end_ページトップボタン-------------------- */

  /* --------------------start_フッター-------------------- */
  .Footer_note {
	max-width: 1024px;
	width: 100%;
	margin: 5px auto;
	font-size: 1.2rem;
  }

  #Footer,.Footer {
    background: #f5f5f5;
    border-top: 4px solid var(--sub-corporate-color);
  }

  /* start_フリーワード */
  .Footer__search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    background: white;
  }

  .Footer__search-ttl {
    margin-right: 20px;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .Footer__search-ttl::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    vertical-align: -2px;
    background: url(../images/icn_search--black.svg) no-repeat center / contain;
  }

  .Footer__search-input {
    width: 270px;
    padding: 5px;
    border: 1px solid #888;
    border-radius: 4px;
  }

  .Footer__search-submit {
    padding: 7px ​15px;
    padding: 7px 15px;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background-color: var(--caution-color);
    border-radius: 3px;
    transition: opacity 0.3s;
  }

  .Footer__search-submit:hover {
    opacity: 0.7;
  }

  .Footer__search-submit::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    vertical-align: -3px;
    background: url(../images/icn_search--white.svg) no-repeat center / contain;
  }
  /* end_フリーワード */

  /* start_PR枠 */
  .Footer__pr {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
    font-size: 1.4rem;
  }

  .Footer__pr-item {
    display: block;
    position: relative;
    padding: 5px 40px 5px 5px;
    background-color: white;
    border: 1px solid #c3c3c3;
    transition: background-color 0.3s, border-color 0.3s;
  }

  .Footer__pr-item:hover {
    background-color: #f2fafe;
    border-color: var(--corporate-color);
  }

  .Footer__pr-item::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 10px;
    background: var(--corporate-color);
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .Footer__pr-item::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    right: 16px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: translateY(-50%) rotate(45deg);
  }

  .Footer__pr-item:not(:last-child) {
    margin-right: 10px;
  }

  .Footer__pr-label {
    margin-right: 5px;
    padding: 3px 8px;
    color: white;
    font-weight: 600;
    background: var(--corporate-color);
  }
  /* end_PR枠 */

  .footer-category-inner {
    width: 1024px;
    margin: 0 auto;
    padding: 30px 0 5px 0;
  }

  .Footer__category {
    padding-bottom: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c3c3c3;
  }

  .Footer__category-ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .Footer__category-ttl-inner {
    padding-left: 12px;
    position: relative;
  }

  .Footer__category-ttl-inner::before,
  .Footer__category-ttl-inner::after {
    content: "";
    display: block;
    width: 4px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 50%;
  }

  .Footer__category-ttl-inner::before {
    transform: translateY(-100%);
    background: var(--corporate-color);
  }

  .Footer__category-ttl-inner::after {
    background: var(--sub-corporate-color);
  }

  .Footer__group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .Footer__group-ttl {
    width: 140px;
  }

  .Footer__group-ttl-link {
    display: block;
    color: var(--textLink-color);
    font-weight: 600;
    line-height: 0.9;
  }

  .Footer__group-ttl-link::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-top: 2px solid var(--corporate-color);
    border-right: 2px solid var(--corporate-color);
    transform: rotate(45deg);
    vertical-align: 2px;
  }

  .Footer__group-ttl-link:hover {
    text-decoration: underline;
  }

  .Footer__group-wrap {
    width: calc(100% - 140px);
  }

  .Footer__group-inner {
    display: flex;
    justify-content: flex-start;
  }

  .Footer__group-items {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% - 100px);
  }

  .Footer__group-item {
    margin: 0 10px 10px 0;
    padding-right: 10px;
    line-height: 1;
    border-right: 1px solid #c3c3c3;
  }

  .Footer__group-link {
    display: block;
    color: var(--textLink-color);
    font-size: 1.3rem;
  }

  .Footer__group-link:hover {
    text-decoration: underline;
  }

  .Footer__group-link--homen {
    display: block;
    width: 100px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1;
  }

  .Footer__category-items {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -2px;
  }

  .Footer__category-link {
    display: block;
    margin: 0 25px 15px 0;
    color: var(--textLink-color);
    font-weight: 600;
  }

  .Footer__category-link:hover {
    text-decoration: underline;
  }

  .Footer__category-link::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-top: 2px solid var(--corporate-color);
    border-right: 2px solid var(--corporate-color);
    transform: rotate(45deg);
    vertical-align: 2px;
  }

  .Footer__sub-group {
    background: white;
  }

  .footer-sub-group-inner {
    width: 1024px;
    margin: 0 auto;
    padding: 15px 0 5px 0;
  }

  .Footer__sub-group-items {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .Footer__sub-group-item {
    margin: 0 7px 10px 0;
    padding-right: 7px;
    line-height: 1;
    border-right: 1px solid #c3c3c3;
  }

  .Footer__sub-group-link {
    display: block;
    font-size: 1.3rem;
  }

  .Footer__sub-group-link:hover {
    text-decoration: underline;
  }

  .Footer__outer-link::after {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 3px;
    background: url(../images/icn_link.svg) no-repeat center / contain;
  }

  .Footer__copy {
    padding: 15px 0;
    color: white;
    font-size: 1rem;
    text-align: right;
    background-color: var(--corporate-color);
  }

  .Footer__copy-inner {
    width: 1024px;
    margin: 0 auto;
  }
  /* --------------------end_フッター-------------------- */


  /*カウントバッジ*/
  .Header__mypage {
      position: relative;
  }

  .Header__info-cnt {
      position: absolute;
      top: -7px;
      right: -7px;
      font-size: 1.0rem;
      background-color: #f00;
      color: #fff;
      border-radius: 50%;
      height: 27px;
      width: 27px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /*旧ページレイアウト対応*/
  .FClear:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }

  .OnFL,
  .OnFLeft {
    float: left;
  }
  .OnFR,
  .OnFRight {
    float: right;
  }
  .OnCL {
    clear: both;
  }
}

@media screen and (max-width:750px) {
/* 全ページsp共通css */

.Header__pc {
    display: none;
}

.Footer__pc {
    display: none;
}


:root {
    --corporate-color: #00a0e9;
    --sub-corporate-color: #007cb5;
    --active-color: #e8f6fd;
    --textLink-color: #333;
    --caution-color: #ff2800;
    --disable-bg-color: #f5f5f5;
    --disable-font-color: #bbb;
  }

  html {
    font-size: calc(100vw / 37.5);
  }

  body {
    min-width: 320px;
    padding-top: var(--Header-height);
    color: #333;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo",
      "MS PGothic", "Osaka", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --bold: 600;
  }

  body.Android {
    --bold: 700;
  }

  img {
    width: 100%;
    height: auto;
  }

  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.5);
  }
  .jump_p a{
    color: var(--corporate-color);
    text-decoration: underline;
  }
  .jump_p a:active{
    color: var(--textLink-color);
    text-decoration: none;
  }

  .Blog__article-ttl {
      word-break: break-all;
  }
/*! sp用ヘッダー / パンくず / 重要なお知らせ / フッター */

/* --------------------start_ヘッダー-------------------- */
:root {
    --Header-height: 6rem;
  }

  #Header,.Header {
    position: fixed;
    top: 0;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 1.5rem;
    box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
    background-color: white;
    --Header__logo-width: 9.6rem;
    --Header__btn-width: 6.5rem;
  }

  .Header__logo {
    width: var(--Header__logo-width);
  }

  /* start_出発地選択 */
  .SelectArea {
    position: relative;
    width: calc(
      100% - var(--Header__logo-width) - (var(--Header__btn-width) * 2) - 2rem
    );
    height: 4rem;
    margin-left: 1rem;
    padding: 0.6rem;
    background: #f5f5f5;
    border-radius: 0.2rem;
  }

  .SelectArea::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.2rem solid #333;
    border-bottom: 0.2rem solid #333;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-70%) rotate(45deg);
  }

  .SelectArea__label {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
  }

  .SelectArea__option {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / 0.75);
    height: calc(100% / 0.75);
    padding: 2.4rem 0.8rem 0.6rem 0.8rem;
    color: var(--corporate-color);
    font-size: 1.6rem;
    font-weight: var(--bold);
    text-decoration: underline;
    transform-origin: top left;
    transform: scale(0.75);
  }

  .SelectArea__alert {
    display: flex;
    position: absolute;
    bottom: -4.8rem;
    left: 0;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    white-space: nowrap;
    border-radius: 0.6rem;
    background: white;
    border: 0.2rem solid var(--caution-color);
    box-shadow: 0px 0.4rem 0.7rem -0.6rem rgb(0 0 0 / 50%);
    z-index: 1;
  }

  .SelectArea__alert::before {
    content: "";
    display: block;
    position: absolute;
    top: -0.8rem;
    left: 1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.6rem 0.6rem 0.6rem;
    border-color: transparent transparent var(--caution-color) transparent;
  }

  .SelectArea__alert::after {
    content: "";
    display: block;
    position: absolute;
    top: -0.5rem;
    left: 1.1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-color: transparent transparent white transparent;
  }

  .SelectArea__alert-txt {
    width: calc(100% - 1.6rem);
    line-height: 1.3;
  }
  /* end_出発地選択 */

  .Header__mypage,
  .Header__menu {
    display: flex;
    flex-direction: column;
    width: var(--Header__btn-width);
    height: var(--Header-height);
    font-size: 1rem;
    font-weight: var(--bold);
    border-left: 1px solid #c3c3c3;
  }

  .Header__mypage:active,
  .Header__menu:active {
    background-color: var(--active-color);
  }

  .Header__mypage {
    margin-left: auto;
  }

  .Header__mypage::before {
    content: "";
    display: block;
    width: 100%;
    height: 3rem;
    background: url(../images/icn_mypage--fill.svg) no-repeat 50%
      calc(50% + 0.2rem) / 2rem;
  }

  .Header__mypage-txt,
  .Header__menu-txt {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2rem;
    line-height: 1.2;
    text-align: center;
  }

  /* start_ハンバーガーアイコン */
  .Header__hamburger-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2.8rem;
    margin-top: 0.2rem;
  }

  .Header__hamburger-line {
    position: relative;
    display: block;
    width: 2rem;
    height: 2px;
    background-color: var(--corporate-color);
    transition: background-color 0.3s;
  }

  .Header__hamburger-line::before,
  .Header__hamburger-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--corporate-color);
    position: absolute;
    left: 0;
    transition: transform 0.3s, top 0.3s;
  }

  .Header__hamburger-line::before {
    top: -0.6rem;
  }

  .Header__hamburger-line::after {
    bottom: -0.6rem;
  }

  .Gnav-open {
    /* overflow-y: scroll; */
    position: fixed;
    width: 100%;
    left: 0;
  }

  .Gnav-open .Header__hamburger-line {
    background-color: white;
  }

  .Gnav-open .Header__hamburger-line::before {
    top: 50%;
    transform: rotate(45deg);
  }

  .Gnav-open .Header__hamburger-line::after {
    top: 50%;
    transform: rotate(-45deg);
  }
  /* end_ハンバーガーアイコン */
  /* --------------------end_ヘッダー-------------------- */

  /* --------------------start_メニュー-------------------- */


  #Gnav,.Gnav {
    position: fixed;
    top: var(--Header-height);
    right: -31rem;
    z-index: 30;
    transition: right 0.3s;
  }

  .Gnav__inner {
    width: 31rem;
    height: calc((var(--vh, 1vh) * 100) - var(--Header-height));
    overflow: scroll;
    background-color: white;
  }

  .Gnav-open #Gnav {
    right: 0;
  }

  /*start_GnavHead*/
  .GnavHead {
    background-color: var(--corporate-color);
  }

  .GnavHead__top {
    padding: 0.5rem 1.5rem;
    color: white;
    font-size: 1.4rem;
    text-align: right;
    background-color: var(--sub-corporate-color);
  }

  .GnavHead__name {
    font-size: 1.5rem;
    font-weight: var(--bold);
  }

  .GnavHead__content {
    padding: 2rem 1.5rem;
  }

  .HankyuPoint {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    color: white;
    border-bottom: 1px dotted white;
  }

  .HankyuPoint__label {
    font-size: 1.5rem;
    font-weight: var(--bold);
  }

  .HankyuPoint__label::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    vertical-align: -0.4rem;
    background: url(../images/icn_heiPoint.svg) no-repeat center / contain;
  }

  .HankyuPoint__content {
    font-size: 1.3rem;
  }

  .HankyuPoint__point {
    margin-right: 0.3rem;
    font-size: 1.6rem;
    font-weight: var(--bold);
  }

  .GnavHead__btn {
    position: relative;
    display: block;
    padding: 1.3rem 1.5rem;
    color: var(--corporate-color);
    font-size: 1.4rem;
    font-weight: var(--bold);
    background: white;
    border-radius: 0.4rem;
    box-shadow: 0 1.5rem 0.4rem -1.3rem #008dce;
  }

  .GnavHead__btn::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    vertical-align: -0.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-repeat: no-repeat;
  }

  .GnavHead__btn--favorite::before {
    background-image: url(../images/icn_favorite--stroke-pink.svg);
  }

  .GnavHead__btn--history::before {
    background-image: url(../images/icn_history.svg);
  }

  .GnavHead__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.2rem;
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: translateY(-50%) rotate(45deg);
  }

  .GnavHead__btn:not(:last-child) {
    margin-bottom: 1rem;
  }
  /*end_GnavHead*/

  .Gnav__group {
    border-top: 0.2rem solid var(--sub-corporate-color);
  }

  .Gnav__label {
    padding: 1.5rem;
    font-weight: var(--bold);
    background-color: #f5f5f5;
  }

  .Gnav__link {
    position: relative;
    display: block;
    padding: 1.5rem 4.5rem 1.5rem 1.5rem;
  }

  .Gnav__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.2rem;
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: translateY(-50%) rotate(45deg);
  }

  .Gnav__item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }

  #GnavOverlay {
    display: block;
    width: 100%;
    height: calc(100vh - var(--Header-height));
    position: fixed;
    top: var(--Header-height);
    left: 0;
    z-index: 20;
    background: #00111a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .Gnav-open #GnavOverlay {
    opacity: 0.7;
    pointer-events: auto;
    touch-action: none;
  }

  /* start_GnavFoot */
  .GnavFoot {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
    text-align: center;
  }

  .GnavFoot__search {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  .GnavFoot__input {
    width: 62%;
    padding: 1rem 1.5rem;
    border: 1px solid #888;
    border-radius: 4px;
    font-size: 1.6rem;
    text-align: left;
  }

  .GnavFoot__submit {
    width: 36.4%;
    color: white;
    font-size: 1.5rem;
    font-weight: var(--bold);
    letter-spacing: 0.05em;
    background: var(--caution-color);
    border-radius: 4px;
  }

  .GnavFoot__submit::before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.3rem;
    vertical-align: -0.2rem;
    background: url(../images/icn_search--white.svg) no-repeat center / contain;
  }

  .GnavFoot__logout {
    display: inline-block;
    margin: 0 auto 2rem auto;
    padding: 1rem 3rem;
    color: var(--corporate-color);
    font-size: 1.5rem;
    white-space: nowrap;
    border: 1px solid var(--corporate-color);
    border-radius: 0.4rem;
  }

  .GnavFoot__logout::before {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    vertical-align: -0.2rem;
    background: url(../images/icn_logout.svg) no-repeat center / contain;
  }

  .GnavFoot__close {
    padding: 1.5rem;
    font-size: 1.5rem;
    background: #f5f5f5;
    touch-action: none;
  }

  .GnavFoot__close-icn {
    position: relative;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.4rem;
  }

  .GnavFoot__close-icn::before,
  .GnavFoot__close-icn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 1.4rem;
    height: 0.2rem;
    background-color: #333;
  }

  .GnavFoot__close-icn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .GnavFoot__close-icn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* end_GnavFoot */
  /* --------------------end_メニュー-------------------- */

  /* --------------------start_パンくず-------------------- */
  #BreadCrumb,.BreadCrumb {
    width: 100%;
    overflow: scroll;
    border-bottom: 1px solid #e5e5e5;
  }

  .BreadCrumb__items {
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: flex-start;
    font-size: 1.2rem;
  }

  .BreadCrumb__item {
    flex-shrink: 0;
  }

  .BreadCrumb__icn {
    margin: 0 0.3rem;
    vertical-align: 0.1rem;
  }

  .BreadCrumb__current {
    vertical-align: -0.1rem;
  }
  /* --------------------end_パンくず-------------------- */

  /* --------------------start_重要なお知らせ-------------------- */
  #PrimaryNotice {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
    border-bottom: 1px solid #e5e5e5;
    /* border: 1.5rem solid #f5f5f5; */
  }

  .PrimaryNotice__ttl {
    margin-bottom: 0.5rem;
    color: var(--caution-color);
    font-weight: var(--bold);
  }

  .PrimaryNotice__item:not(:last-child) {
    margin-bottom: 0.5rem;
    /* padding-bottom: 0.5rem; */
    /* border-bottom: 1px dotted #888; */
  }

  .PrimaryNotice__link {
    display: inline-block;
    color: var(--textLink-color);
    text-indent: -1.3rem;
    padding-left: 1.3rem;
  }

  .PrimaryNotice__link:active {
    text-decoration: underline;
  }

  .PrimaryNotice__link::before {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.5rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: rotate(45deg);
    vertical-align: 0.1rem;
  }

  /* --------------------end_重要なお知らせ-------------------- */

  /* --------------------start_PR枠-------------------- */
  .Footer__pr {
    padding: 1.5rem;
    font-size: 1.4rem;
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
  }

  .Footer__pr-item {
    display: block;
    position: relative;
    padding: 2.3rem 4rem 0.5rem 0.5rem;
    background-color: white;
    border: 1px solid #c3c3c3;
  }

  .Footer__pr-item:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .Footer__pr-item:active {
    background-color: #f2fafe;
    border-color: var(--corporate-color);
  }

  .Footer__pr-item::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    background: var(--corporate-color);
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .Footer__pr-item::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: translateY(-50%) rotate(45deg);
  }

  .Footer__pr-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem 0.5rem 0.8rem 0.5rem;
    color: white;
    font-weight: var(--bold);
    font-size: 1rem;
    line-height: 0;
    background: var(--corporate-color);
  }
  /* --------------------end_PR枠-------------------- */

  /* --------------------start_フッター-------------------- */
  #Footer,.Footer {
    --Footer-border-style: 1px solid #e5e5e5;
    border-top: 0.2rem solid var(--sub-corporate-color);
    background: #f5f5f5;
  }

  .Footer__link-lev1 {
    position: relative;
    display: block;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: var(--bold);
    background-color: white;
  }

  .Footer__link-lev1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.2rem;
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: translateY(-50%) rotate(45deg);
  }

  .Footer__toggle[data-lv="1"] {
    position: relative;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: var(--bold);
    background-color: white;
  }

  .Footer__toggle[data-lv="1"][data-state="open"] {
    background-color: #f5f5f5;
  }

  .Footer__inner[data-lv="1"] {
    width: calc(100% - 3rem);
    margin: 0 auto 1.5rem auto;
    background-color: white;
  }

  .Footer__toggle[data-lv="2"] {
    position: relative;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: var(--bold);
  }

  .Footer__link-lev2 {
    position: relative;
    display: block;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    color: var(--textLink-color);
    font-size: 1.3rem;
  }

  .Footer__link-lev2:active {
    text-decoration: underline;
  }

  .Footer__link-lev2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.5rem;
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: translateY(-50%) rotate(45deg);
  }

  .Footer__toggle[data-lv="3"] {
    position: relative;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: var(--bold);
  }

  .Footer__link-lev3 {
    position: relative;
    display: block;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    color: var(--textLink-color);
    font-size: 1.3rem;
  }

  .Footer__link-lev3:active {
    text-decoration: underline;
  }

  .Footer__link-lev3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.5rem;
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: translateY(-50%) rotate(45deg);
  }

  .Footer__inner[data-lv="3"] {
    margin-bottom: -1px;
    border-top: var(--Footer-border-style);
  }

  .Footer__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .Footer__item {
    width: 50%;
  }

  .Footer__item:nth-child(odd) {
    border-right: var(--Footer-border-style);
  }

  .Footer__link-lev4 {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    color: var(--textLink-color);
    font-size: 1.3rem;
    border-bottom: var(--Footer-border-style);
  }

  .Footer__link-lev4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.5rem;
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 0.2rem solid var(--corporate-color);
    border-right: 0.2rem solid var(--corporate-color);
    transform: translateY(-50%) rotate(45deg);
  }

  /*start_ボーダー設定*/
  .Footer__toggle[data-lv="1"]:not(:first-child),
  .Footer__link-lev1:not(:first-child) {
    border-top: var(--Footer-border-style);
  }

  .Footer__toggle[data-lv="2"]:not(:last-child),
  .Footer__link-lev2:not(:last-child) {
    border-bottom: var(--Footer-border-style);
  }

  .Footer__toggle[data-lv="3"]:not(:first-child),
  .Footer__link-lev3:not(:first-child) {
    border-top: var(--Footer-border-style);
  }

  .Footer__inner[data-lv="2"] {
    border-bottom: var(--Footer-border-style);
  }
  /*end_ボーダー設定*/

  /* start_プラスアイコン設定 */
  .Footer__plus {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .Footer__plus--L {
    background-color: var(--corporate-color);
  }

  .Footer__plus--M {
    background-color: #f5f5f5;
  }

  .Footer__plus-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .Footer__plus-inner::before,
  .Footer__plus-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.8rem;
    height: 0.2rem;
    background-color: white;
  }

  .Footer__plus--M .Footer__plus-inner::before,
  .Footer__plus--M .Footer__plus-inner::after {
    width: 1rem;
    background-color: var(--corporate-color);
  }

  .Footer__plus-inner::before {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s;
  }

  [data-state="open"] .Footer__plus-inner::before {
    transform: translate(-50%, -50%);
  }

  .Footer__plus-inner::after {
    transform: translate(-50%, -50%);
  }

  .Footer__toggle[data-lv="3"]::before,
  .Footer__toggle[data-lv="3"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    display: block;
    width: 1rem;
    height: 0.2rem;
    background-color: #c3c3c3;
  }

  .Footer__toggle[data-lv="3"]::before {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s;
  }

  .Footer__toggle[data-lv="3"][data-state="open"]::before {
    transform: translateY(-50%);
  }

  .Footer__toggle[data-lv="3"]::after {
    transform: translateY(-50%);
  }

  /* end_アイコン設定 */

  .Footer__inner[data-lv="1"],
  .Footer__inner[data-lv="2"],
  .Footer__inner[data-lv="3"] {
    display: none;
  }

  .Footer__sub-group {
    padding: 0 1.5rem;
    font-size: 1.3rem;
    background: white;
    border-top: var(--Footer-border-style);
  }

  .Footer__sub-group-link {
    display: block;
    padding: 1rem 0;
  }

  .Footer__sub-group-link:active {
    text-decoration: underline;
  }

  .Footer__sub-group-item:not(:last-child) {
    border-bottom: var(--Footer-border-style);
  }

  .Footer__copy {
    padding: 1.5rem;
    color: white;
    font-size: 1rem;
    text-align: center;
    background: var(--corporate-color);
  }

  .Footer__outer-link::after {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 0.3rem;
    background: url(../images/icn_link.svg) no-repeat center / contain;
  }
  /* --------------------end_フッター-------------------- */

  /* --------------------start_ハイパーバナー-------------------- */
  #hyperBn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    background-color: white;
    border-top: 1px solid #e5e5e5;
  }

  .hyperBn__close {
    position: absolute;
    top: 1rem;
    right: 0.8rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  .hyperBn__close-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hyperBn__close-inner::before,
  .hyperBn__close-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 1.2rem;
    height: 0.2rem;
    background-color: #888;
  }

  .hyperBn__close-inner::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .hyperBn__close-inner::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  #btnToTop {
    position: fixed;
    bottom: 14.5rem;
    right: 1.5rem;
    z-index: 10;
    display: block;
    width: 6rem;
    height: 6rem;
    opacity: 0;
    background: url(../images/btnToTop.svg) no-repeat center / contain;
    cursor: pointer;
    transition: 0.3s;
  }

  #btnToTop.btnToTop--active {
    opacity: 0.7;
  }
  /* --------------------end_ハイパーバナー-------------------- */

  /*カウントバッジ*/
  .Header__mypage {
      position: relative;
  }

  .Header__info-cnt {
      position: absolute;
      top: 1%;
      right: -5%;
      font-size: 0.9rem;
      background-color: #f00;
      color: #fff;
      border-radius: 50%;
      height: 2.5rem;
      width: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
  }

}

@media print,screen and (max-width: 1023px) {
    body {
        min-width: auto;
    }

    .Common21__inner {
        width: auto;
    }

    .contents {
        width: 100%;
    }

    /* header */
    .Header {
        padding: 1.5rem;
    }
    .Header__inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #SelectArea{
        padding: 0 20px 0 10px;
        }
    #SelectArea::after{
        width: 6px;
        height: 6px;
        right: 10px;
    }
    .SelectArea__label,.Header__links-link{
        font-size: 1.1rem;
        padding: 5px 5px 5px 0;
    }
    .SelectArea__content,.Header__favorite,.Header__mypage{
        padding: 10px 5px;
        font-size: 1.0rem;
    }
    .Header__links {
        margin-top: 1rem;
    }
    .Header__links-items{
        margin-right: 5px;
    }
    .Gnav__inner {
        width: 100%;
    }

    .Gnav__inner .Gnav__group:nth-child(1) {
        flex-grow: 1;
    }

    .Gnav__inner .Gnav__group:nth-child(2) {
        flex-grow: 1;
    }

    .Gnav__inner .Gnav__group:nth-child(3) {
        flex-grow: 1;
    }

    .Gnav__items {
        width: 100%;
    }

    .Gnav__inner .Gnav__group:nth-child(1) .Gnav__items .Gnav__item {
        width: calc(100% / 4);
    }

    .Gnav__inner .Gnav__group:nth-child(2) .Gnav__items .Gnav__item {
        width: calc(100% / 2);
    }

    .Gnav__inner .Gnav__group:nth-child(3) .Gnav__items .Gnav__item {
        width: calc(100% / 2);
    }

    .Gnav__item {
        width: auto;
    }

    .Gnav__link {
        width: auto;
        font-size: 1.1rem;
    }

    /* footer */
    .footer-category-inner,
    .footer-sub-group-inner {
        width: 100%;
        padding: 1.5rem;
    }

    .Footer__copy {
        padding: 1.5rem;
    }

    .Footer__copy-inner {
        width: 100%;
    }
}

/* タブレット */
@media screen and (max-width: 750px) {


    .Header__pc {
        display: none;
    }

    .Footer__pc {
        display: none;
    }

    /* 750px以下に適用されるCSS（スマホ用） */
    html {
        font-size: 10px;
    }
    .Header__pc {
        display: none;
    }

    .Footer__pc {
        display: none;
    }

    .Header__sp {
        display: block;
    }

    .Footer__sp {
        display: block;
    }

    /* :root {
        --Header-height: 6rem;
    } */

    .Common21__inner {
        width: 100%;
    }

    /* --------------------start_ヘッダー-------------------- */
    .Header {
        padding: 0 0 0 1.5rem;
    }

    .SelectArea__label {
        border-right: none;
        padding: 0;
    }

    .Header__mypage {
        border-top: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0;
        color: #333;
        padding: 0;
    }

    .Header__mypage:hover {
        color: inherit;
        background-color: inherit;
    }

    #Gnav {
        right: -36rem;
    }

    .Gnav__inner {
        display: inherit;
        width: 36rem;
    }

    .Gnav__group {
        display: inherit;
    }

    .Gnav__label {
        display: inherit;
        width: 100%;
        writing-mode: inherit;
        color: #333;
        font-weight: 600;
    }

    .Gnav__inner .Gnav__group:nth-child(2) .Gnav__items .Gnav__item {
        width: auto;
    }

    .Gnav__inner .Gnav__group:nth-child(3) .Gnav__items .Gnav__item {
        width: auto;
    }

    .Gnav__items {
        display: inherit;
    }

    /* .Gnav__inner .Gnav__group:nth-child(2) .Gnav__items .Gnav__item {
        width: 100%;
        border-right: none;
    } */

    .Gnav__item:not(:last-child) {
        border-right: none;
    }

    .Gnav__link {
        width: inherit;
        height: inherit;
        font-size: inherit;
        font-weight: normal;
        text-align: left;
        transition: opacity 0.5s;
    }

    .Gnav__link:not(.Gnav__link--active):hover {
        color: inherit;
        box-shadow: inherit;
        background-color: inherit;
    }

    .Gnav__link:not(.Gnav__link--active):active {
        opacity: 0.5;
    }

    .Gnav__link::before {
        content: none;
    }

    #BreadCrumb,.BreadCrumb {
        width: 100%;
        overflow: auto;
        border-bottom: 1px solid #e5e5e5;
      }

    /* --------------------end_ヘッダー-------------------- */


    /* --------------------start_フッター-------------------- */
	.Footer_note {
		margin: 5px;
        font-size: 11px;
  		letter-spacing: -0.3px;
	}

    .Footer__pr {
        display: inherit;
        margin-bottom: 0;
    }

    .Footer__pr-item:not(:last-child) {
        margin-right: 0;
    }

    .Footer__pr-label {
        margin-right: 0;
    }

    .Footer__sub-group-item {
        margin: 0;
        padding-right: 0;
        line-height: 1;
        border-right: none;
    }

    .Footer__sub-group-link {
        padding: 1.5rem 0;
    }

    #btnToTop{
        opacity: 0;
        bottom: 1.5rem;
    }
    #btnToTop.btnToTop--active {
        bottom: 1.5rem;
    }
}

img {
    pointer-events: none;
    -webkit-touch-callout: none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
	-webkit-user-drag: none;
  -khtml-user-drag: none;
	user-drag: none;
  touch-callout:none;
  user-select:none;
}

a img {
    pointer-events: inherit !important;
}