@charset "UTF-8";
/* 共通レイアウト（ヘッダー・フッター・各ページの余白）。既存CSSの後に読み込んで上書きする */
html {
  scroll-behavior: smooth;
}
html body {
  /* ---------- ヘッダー ---------- */
  /* ---------- 本文の開始位置と下余白 ---------- */
  /* ---------- 採用情報フォーム：チェックボックスが幅100%のまま4倍に拡大されてはみ出していた ---------- */
  /* ---------- トップページ ---------- */
  /* ---------- reCAPTCHA のバッジ：フォームの無いページでは隠す（フォーム内に表記を入れる前提） ---------- */
  /* ---------- フッター ---------- */
}
html body #access,
html body #store_calendar {
  scroll-margin-top: 140px;
}
@media screen and (max-width: 1024px) {
  html body #access,
  html body #store_calendar {
    scroll-margin-top: 84px;
  }
}
html body:not(.home)::after {
  display: none;
}
html body.mc-nav-open {
  overflow: hidden;
}
html body .mc-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  z-index: 1000;
}
html body .mc-header .mc-header__inner {
  max-width: 1300px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0 auto;
}
html body .mc-header .mc-header__logo {
  color: #111;
  font-family: "futura-pt", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
html body .mc-header .mc-header__logo span {
  font-weight: 400;
}
html body .mc-header .mc-header__nav {
  display: flex;
  align-items: center;
}
html body .mc-header .mc-header__menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
html body .mc-header .mc-header__menu li {
  margin: 0 0 0 28px;
}
html body .mc-header .mc-header__menu li a {
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
html body .mc-header .mc-header__menu li a:hover {
  color: #a00;
}
html body .mc-header .mc-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  background-color: #9b0e0e;
  padding: 11px 18px;
  margin-left: 32px;
  transition: background-color 0.3s;
}
html body .mc-header .mc-header__cta .fa-calendar {
  font-size: 1.5rem;
}
html body .mc-header .mc-header__cta .fa-angle-right {
  font-size: 1.7rem;
  margin-left: 2px;
  transition: transform 0.3s;
}
html body .mc-header .mc-header__cta:hover .fa-angle-right {
  transform: translateX(3px);
}
html body .mc-header .mc-header__cta:hover {
  background-color: #6e0808;
}
html body .mc-header .mc-header__sub {
  display: none;
}
html body .mc-header .mc-header__toggle {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
html body .mc-header .mc-header__toggle span {
  width: 24px;
  height: 2px;
  display: block;
  position: absolute;
  left: 10px;
  background-color: #111;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
html body .mc-header .mc-header__toggle span:nth-child(1) {
  top: 14px;
}
html body .mc-header .mc-header__toggle span:nth-child(2) {
  top: 21px;
}
html body .mc-header .mc-header__toggle span:nth-child(3) {
  top: 28px;
}
html body.mc-nav-open .mc-header .mc-header__toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
html body.mc-nav-open .mc-header .mc-header__toggle span:nth-child(2) {
  opacity: 0;
}
html body.mc-nav-open .mc-header .mc-header__toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
html body .page_wrap {
  padding-bottom: 0;
}
html body .page_wrap main {
  margin-top: 130px;
  padding-bottom: 80px;
}
html body .page_wrap #archive main {
  margin-top: 130px;
}
html body #new_moto_page_ducati {
  margin-top: 130px;
  padding-bottom: 80px;
}
html body .page_wrap #content .specialOrderMadeSheet {
  padding-top: 20px;
  padding-bottom: 60px;
}
html body .recruit-entry-form-wrap .recruit-entry-form ul li input[type=checkbox],
html body .recruit-entry-form-wrap .recruit-entry-form ul li input[type=radio] {
  width: auto;
}
html body .recruit-entry-form-wrap .recruit-entry-form ul li input[type=checkbox] {
  transform: scale(2);
  margin: 30px auto;
}
html body #navigation_start_page .start_cta {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  background-color: rgba(155, 14, 14, 0.92);
  padding: 14px 26px;
  margin-top: 16px;
  transition: background-color 0.3s;
}
html body #navigation_start_page .start_cta:hover {
  background-color: #6e0808;
}
html body:not(.has-form) .grecaptcha-badge {
  visibility: hidden;
}
html body footer.mc-footer {
  width: auto;
  position: static;
  text-align: left;
  background-color: #111;
  padding: 56px 20px 28px;
}
html body footer.mc-footer p {
  color: #aaa;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
html body footer.mc-footer a {
  color: #ddd;
  text-decoration: none;
}
html body footer.mc-footer a:hover {
  color: #fff;
}
html body footer.mc-footer .mc-footer__inner {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
}
html body footer.mc-footer .mc-footer__logo {
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
html body footer.mc-footer .mc-footer__logo span {
  font-weight: 400;
}
html body footer.mc-footer .mc-footer__nav {
  text-align: right;
}
html body footer.mc-footer .mc-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
html body footer.mc-footer .mc-footer__nav ul li {
  margin: 0 0 8px 24px;
}
html body footer.mc-footer .mc-footer__nav ul li a {
  font-family: "futura-pt", sans-serif;
  font-size: 1.5rem;
}
html body footer.mc-footer .mc-footer__nav .mc-footer__sub li a {
  color: #999;
  font-family: inherit;
  font-size: 1.3rem;
}
html body footer.mc-footer .mc-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  background-color: #9b0e0e;
  padding: 11px 18px;
  margin-top: 8px;
  transition: background-color 0.3s;
}
html body footer.mc-footer .mc-footer__cta .fa-calendar {
  font-size: 1.5rem;
}
html body footer.mc-footer .mc-footer__cta .fa-angle-right {
  font-size: 1.7rem;
  margin-left: 2px;
  transition: transform 0.3s;
}
html body footer.mc-footer .mc-footer__cta:hover {
  color: #fff;
  background-color: #6e0808;
}
html body footer.mc-footer .mc-footer__cta:hover .fa-angle-right {
  transform: translateX(3px);
}
html body footer.mc-footer .mc-footer__copy {
  max-width: 1300px;
  color: #777;
  font-size: 1.2rem;
  border-top: solid 1px #2a2a2a;
  padding-top: 20px;
  margin: 36px auto 0;
}
html body footer.mc-footer.mc-footer--front {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: transparent;
  padding: 14px 16px;
  z-index: 1001;
}
html body footer.mc-footer.mc-footer--front .mc-footer__sub {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}
html body footer.mc-footer.mc-footer--front .mc-footer__sub li {
  margin: 0 10px;
}
html body footer.mc-footer.mc-footer--front .mc-footer__sub li a {
  color: #ccc;
  font-size: 1.2rem;
}
html body footer.mc-footer.mc-footer--front .mc-footer__copy {
  max-width: none;
  color: #999;
  font-size: 1.1rem;
  border-top: 0;
  padding-top: 0;
  margin: 0;
}

/* ---------- タブレット以下：ハンバーガーメニュー ---------- */
@media screen and (max-width: 1024px) {
  html body .mc-header .mc-header__inner {
    height: 60px;
    padding: 0 8px 0 16px;
  }
  html body .mc-header .mc-header__logo {
    font-size: 2rem;
  }
  html body .mc-header .mc-header__toggle {
    display: block;
  }
  html body .mc-header .mc-header__nav {
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    overflow-y: auto;
    background-color: #111;
    padding: 16px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  html body .mc-header .mc-header__menu {
    display: block;
  }
  html body .mc-header .mc-header__menu li {
    margin: 0;
    border-bottom: solid 1px #2a2a2a;
  }
  html body .mc-header .mc-header__menu li a {
    display: block;
    color: #fff;
    font-size: 1.9rem;
    padding: 16px 0;
  }
  html body .mc-header .mc-header__cta {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    text-align: center;
    padding: 18px 16px;
    margin: 28px 0 0;
  }
  html body .mc-header .mc-header__sub {
    display: block;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
  }
  html body .mc-header .mc-header__sub li {
    margin: 0 0 12px;
  }
  html body .mc-header .mc-header__sub li a {
    color: #aaa;
    font-size: 1.4rem;
    text-decoration: none;
  }
  html body.mc-nav-open .mc-header .mc-header__nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  html body .page_wrap main {
    margin-top: 100px;
  }
  html body .page_wrap #archive main {
    margin-top: 100px;
  }
  html body #new_moto_page_ducati {
    margin-top: 100px;
  }
}
/* ---------- スマホ ---------- */
@media screen and (max-width: 767px) {
  html body .page_wrap main {
    margin-top: 84px;
    padding-bottom: 48px;
  }
  html body .page_wrap main #content {
    margin-top: 0;
    padding: 0 16px;
  }
  html body .page_wrap main #content h1.page_title,
  html body .page_wrap main #content .page_title {
    font-size: 2.6rem;
    line-height: 3.6rem;
    padding-left: 12px;
    margin-bottom: 24px;
  }
  html body .page_wrap main #sidebar {
    padding: 32px 16px 0;
  }
  html body .page_wrap #archive main {
    margin-top: 84px;
  }
  html body .page_wrap #archive main .post {
    padding: 0 16px;
  }
  html body .page_wrap .pagination {
    margin-bottom: 32px;
  }
  html body .page_wrap #content .specialOrderMadeSheet {
    padding: 0 0 40px;
  }
  html body #new_moto_page_ducati {
    margin-top: 84px;
    padding: 0 16px 48px;
  }
  html body #new_moto_page_ducati .pages {
    margin-top: 16px;
  }
  html body #new_moto_page_ducati .pages p {
    font-size: 2.6rem;
  }
  html body #new_moto_page_ducati .pagination {
    font-size: 1.8rem;
    margin-top: 24px;
  }
  html body #new_moto_page_ducati .card-wrapper {
    margin-top: 24px;
  }
  html body .page_wrap main #sidebar {
    display: none;
  }
  html body #navigation_start_page {
    top: auto;
    bottom: 96px;
    left: 24px;
    right: 24px;
  }
  html body #navigation_start_page p {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 12px;
  }
  html body #navigation_start_page ul li {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 8px;
  }
  html body #navigation_start_page .start_cta {
    font-size: 1.4rem;
    padding: 13px 22px;
  }
  html body footer.mc-footer {
    padding: 40px 16px 24px;
  }
  html body footer.mc-footer .mc-footer__inner {
    display: block;
  }
  html body footer.mc-footer .mc-footer__nav {
    text-align: left;
    margin-top: 24px;
  }
  html body footer.mc-footer .mc-footer__nav ul {
    justify-content: flex-start;
  }
  html body footer.mc-footer .mc-footer__nav ul li {
    margin: 0 20px 10px 0;
  }
  html body footer.mc-footer .mc-footer__copy {
    margin-top: 28px;
  }
  html body footer.mc-footer.mc-footer--front {
    padding: 10px 12px;
  }
  html body footer.mc-footer.mc-footer--front .mc-footer__sub li {
    margin: 0 7px;
  }
  html body footer.mc-footer.mc-footer--front .mc-footer__sub li a {
    font-size: 1.1rem;
  }
}
/* ---------- グループ共通サブメニュー・フッターのリンク集 ---------- */
html body .mc-groupbar {
  background-color: #0b0b0b;
}
html body .mc-groupbar .mc-groupbar__list {
  max-width: 1300px;
  height: 38px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
}
html body .mc-groupbar .mc-groupbar__item {
  position: relative;
  margin: 0;
}
html body .mc-groupbar .mc-groupbar__item:hover .mc-groupbar__label, html body .mc-groupbar .mc-groupbar__item:focus-within .mc-groupbar__label {
  color: #fff;
}
html body .mc-groupbar .mc-groupbar__item:hover .mc-groupbar__drop, html body .mc-groupbar .mc-groupbar__item:focus-within .mc-groupbar__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
html body .mc-groupbar .mc-groupbar__label {
  height: 100%;
  display: flex;
  align-items: center;
  color: #bbb;
  font-family: "futura-pt", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: default;
  padding: 0 16px;
  transition: color 0.2s;
}
html body .mc-groupbar .mc-groupbar__item:last-child .mc-groupbar__label {
  padding-right: 0;
}
html body .mc-groupbar .mc-groupbar__item:nth-last-child(-n+2) .mc-groupbar__drop {
  left: auto;
  right: 0;
}
html body .mc-groupbar .mc-groupbar__drop {
  min-width: 260px;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
html body .mc-groupbar .mc-groupbar__drop li {
  margin: 0;
}
html body .mc-groupbar .mc-groupbar__drop li a {
  display: block;
  color: #ccc;
  font-size: 1.35rem;
  line-height: 2rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 20px;
}
html body .mc-groupbar .mc-groupbar__drop li a:hover {
  color: #fff;
  background-color: #9b0e0e;
}
html body .mc-header__group {
  display: none;
}
html body footer.mc-footer .mc-footer__links {
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  border-top: solid 1px #2a2a2a;
  padding-top: 40px;
  margin: 40px auto 0;
}
html body footer.mc-footer .mc-footer__col-title {
  color: #c33;
  font-size: 1.3rem;
  border-left: solid 1px #555;
  padding-left: 10px;
  margin-bottom: 14px;
}
html body footer.mc-footer .mc-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html body footer.mc-footer .mc-footer__col ul li {
  margin: 0 0 8px;
}
html body footer.mc-footer .mc-footer__col ul li a {
  color: #999;
  font-size: 1.3rem;
}
html body footer.mc-footer .mc-footer__col ul li a:hover {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  html body .mc-groupbar {
    display: none;
  }
  html body .mc-header .mc-header__group {
    display: block;
    border-top: solid 1px #2a2a2a;
    margin-top: 24px;
  }
  html body .mc-header .mc-header__group details {
    border-bottom: solid 1px #2a2a2a;
  }
  html body .mc-header .mc-header__group details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ddd;
    font-family: "futura-pt", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    list-style: none;
    cursor: pointer;
    padding: 14px 0;
  }
  html body .mc-header .mc-header__group details summary::-webkit-details-marker {
    display: none;
  }
  html body .mc-header .mc-header__group details summary::after {
    content: "+";
    color: #888;
    font-size: 2rem;
    font-weight: 300;
  }
  html body .mc-header .mc-header__group details[open] summary::after {
    content: "−";
  }
  html body .mc-header .mc-header__group details ul {
    list-style: none;
    padding: 0 0 12px 12px;
    margin: 0;
  }
  html body .mc-header .mc-header__group details ul li {
    margin: 0 0 10px;
  }
  html body .mc-header .mc-header__group details ul li a {
    color: #aaa;
    font-size: 1.4rem;
    text-decoration: none;
  }
  html body footer.mc-footer .mc-footer__links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  html body footer.mc-footer .mc-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    padding-top: 32px;
    margin-top: 32px;
  }
  html body footer.mc-footer .mc-footer__col ul li a {
    font-size: 1.25rem;
    word-break: break-word;
  }
}
/* ---------- お知らせ一覧：画像とタイトルの間隔 ---------- */
html body .page_wrap #archive main .post article p.post_title {
  border-left: 3px solid #a00;
  padding-left: 12px;
}
html body .page_wrap #archive main .post article .post_text p:last-child::after {
  display: inline-block;
  content: "\f138";
  color: #a00;
  font-family: "FontAwesome";
  font-size: 1.6rem;
  line-height: 1;
  vertical-align: -1px;
  margin-left: 6px;
  transition: transform 0.3s;
}
html body .page_wrap #archive main .post article a:hover .post_text p:last-child::after {
  transform: translateX(3px);
}
html body .page_wrap #archive main .post article .thubmbnail-img {
  margin-bottom: 16px;
}
html body .page_wrap #archive main .post article .thubmbnail-img img {
  display: block;
  margin-bottom: 0;
}

/* ---------- SNS ---------- */
html body .mc-sns {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
html body .mc-sns li {
  margin: 0;
}
html body .mc-sns a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
html body .mc-sns a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}
html body .mc-sns.mc-sns--bar {
  gap: 2px;
}
html body .mc-sns.mc-sns--bar a {
  width: 30px;
  height: 30px;
  color: #aaa;
}
html body .mc-sns.mc-sns--bar a:hover {
  color: #fff;
  background-color: #9b0e0e;
}
html body .mc-sns.mc-sns--bar a svg {
  width: 14px;
  height: 14px;
}
html body .mc-sns.mc-sns--footer {
  gap: 10px;
  margin-top: 8px;
}
html body .mc-sns.mc-sns--footer a {
  width: 40px;
  height: 40px;
  color: #ddd;
  border: solid 1px #444;
}
html body .mc-sns.mc-sns--footer a:hover {
  color: #fff;
  background-color: #9b0e0e;
  border-color: #9b0e0e;
}
html body .mc-sns.mc-sns--footer a svg {
  width: 17px;
  height: 17px;
}
html body .mc-sns.mc-sns--menu {
  display: none;
}
html body .mc-groupbar .mc-groupbar__inner {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0 auto;
}
html body .mc-groupbar .mc-groupbar__list {
  max-width: none;
  padding: 0;
  margin: 0;
}
html body footer.mc-footer .mc-footer__follow {
  color: #888;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  html body .mc-header .mc-sns.mc-sns--menu {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }
  html body .mc-header .mc-sns.mc-sns--menu a {
    width: 42px;
    height: 42px;
    color: #ddd;
    border: solid 1px #444;
  }
  html body .mc-header .mc-sns.mc-sns--menu a svg {
    width: 18px;
    height: 18px;
  }
}
/* ---------- Brough Superior Japan Premiere Tour 告知バナー（ツアー終了後はこのファイルと layout.scss の @import を外す） ---------- */
html body .jpt_tour_wrap {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}
html body .jpt_tour_wrap.jpt_tour_wrap--top {
  padding-top: 64px;
}
html body .jpt_tour_wrap.jpt_tour_wrap--bottom {
  padding-bottom: 72px;
}
html body .jpt_tour_banner {
  width: 100%;
  height: 34vh;
  min-height: 260px;
  max-height: 400px;
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: #000;
  border: 1px solid rgba(189, 180, 120, 0.35);
}
html body .jpt_tour_banner .jpt_tour_banner_media {
  position: absolute;
  inset: 0;
}
html body .jpt_tour_banner .jpt_tour_banner_media .jpt_tour_banner_video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
html body .jpt_tour_banner .jpt_tour_banner_media .jpt_tour_banner_veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.75) 100%);
}
html body .jpt_tour_banner .jpt_tour_banner_content {
  width: min(1000px, 100% - 48px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
html body .jpt_tour_banner .jpt_tour_banner_content p {
  margin: 0;
}
html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.32em;
  margin-bottom: 14px;
}
html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_title {
  color: #fff;
  font-size: clamp(2.8rem, 3.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_sub {
  color: #ccc;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_sub span {
  display: inline-block;
  color: #bdb478;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_btn {
  min-width: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #bdb478;
  font-size: 1.3rem;
  letter-spacing: 0.24em;
  border: 1px solid #bdb478;
  padding: 13px 34px;
  transition: background 0.5s, color 0.5s;
}
html body .jpt_tour_banner:hover .jpt_tour_banner_video {
  transform: scale(1.04);
}
html body .jpt_tour_banner:hover .jpt_tour_banner_btn {
  color: #000;
  background: #bdb478;
}

@media screen and (max-width: 767px) {
  html body .jpt_tour_wrap {
    padding: 0 16px;
  }
  html body .jpt_tour_wrap.jpt_tour_wrap--top {
    padding-top: 48px;
  }
  html body .jpt_tour_wrap.jpt_tour_wrap--bottom {
    padding-bottom: 48px;
  }
  html body .jpt_tour_banner {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4/3;
  }
  html body .jpt_tour_banner .jpt_tour_banner_content {
    width: calc(100% - 24px);
  }
  html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_eyebrow {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_title {
    font-size: 2.6rem;
    margin-bottom: 12px;
  }
  html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_sub {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_sub span {
    font-size: 1.1rem;
  }
  html body .jpt_tour_banner .jpt_tour_banner_content .jpt_tour_banner_btn {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    font-size: 1.2rem;
    padding: 12px 20px;
  }
}
