/* ==========================================================================
 *  KOKORO Landing — Responsive Refinements
 *  ----------------------------------------------------------------------------
 *  ファイルの位置づけ：
 *    style.css の **後ろ** に読み込まれる追補スタイルシート。配色・タイポ・
 *    レイアウトの土台は style.css に従い、本ファイルでは「モバイル表示の崩れ
 *    の是正」と「カルーセル化」「Hero モバイル一体化」だけを担う。
 *
 *  ファイル構成（上から順に）：
 *    §1  全画面共通の保険  …… 横スクロール防止 / 画像 max-width / box-sizing
 *    §2  ヘッダー         …… sticky 保証 / CTA 縦折れ防止
 *    §3  モバイル レイアウト …… ≤768px：グリッドの一括上書き
 *    §4  カルーセル（モバイル）……声・ギャラリー・メニュー・ハラール統一
 *    §5  Hero モバイル B案 ……写真フル背景＋ベージュグラデ＋テキスト
 *    §6  ナビ モバイル詳細 …… 480 / 390 / 340px の段階的調整
 *    §7  メニューカード   …… 画像をカード上端に同梱
 *    §8  カルーセル UI    …… JS が生成する矢印・ドットのスタイル
 * ========================================================================== */


/* ==========================================================================
 *  §1  全画面共通の保険
 * ========================================================================== */
html, body {
  overflow-x: clip;
  max-width: 100%;
}
.hero__grid > *,
.gallery__panel > *,
.concept > *,
.chef > *,
.menu-courses > *,
.menu-compose-grid > *,
.voices__list > *,
.hk__badges > *,
.footer__grid > *,
.form__stepper > * {
  min-width: 0;
}
img { max-width: 100%; height: auto; }
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hk__details-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 28px;
  padding: 11px 18px;
  border: 1px solid rgba(176, 140, 90, 0.48);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-size: 12.5px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
  -webkit-tap-highlight-color: transparent;
}
.hk__details-toggle:hover,
.hk__details-toggle:focus-visible {
  background: rgba(176, 140, 90, 0.1);
  border-color: rgba(176, 140, 90, 0.75);
  outline: none;
}
.hk__details-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(176, 140, 90, 0.42);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
}
.hk__details-label--open { display: none; }
.hk__details-toggle[aria-expanded="true"] .hk__details-label--closed { display: none; }
.hk__details-toggle[aria-expanded="true"] .hk__details-label--open { display: inline; }
.hk__details {
  margin-top: 6px;
}
.hk__details[hidden] {
  display: none;
}


/* ==========================================================================
 *  §2  ヘッダー
 * ========================================================================== */
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
}
.nav__cta { white-space: nowrap; flex-shrink: 0; }
.lang-toggle button { white-space: nowrap; }


/* ==========================================================================
 *  §3  モバイル レイアウト（≤768px）— グリッド一括上書き
 * ========================================================================== */
@media (max-width: 768px) {
  .hero,
  .grid-row,
  .panel,
  .hero__grid,
  .hero__left,
  .concept,
  .concept__text {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
  }

  .hero__headline,
  .hero__en,
  .hero__en .line2,
  .hero__body,
  .hero__body-en,
  .panel__h,
  .panel__h-en,
  .panel__body,
  .panel__body-en,
  .quote-zh {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
    text-wrap: auto;
  }

  .panel__body,
  .panel__body-en,
  .quote-zh {
    width: 100%;
    max-width: min(100%, 23em);
    font-size: clamp(12px, 3.2vw, 13px);
    line-height: 1.95;
    letter-spacing: 0.01em;
  }

  .concept {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .concept__photo {
    aspect-ratio: 4 / 3;
    width: calc(100% - (clamp(16px, 4.5vw, 24px) * 2));
    margin-inline: auto;
    justify-self: center;
    overflow: hidden;
  }
  .concept__photo img,
  .concept:hover .concept__photo img {
    object-fit: cover;
    object-position: 58% 38%;
    transform: none;
    transform-origin: 58% center;
  }
  .chef__panel { grid-template-columns: 1fr; }
  .chef__photo {
    min-height: 0;
    height: clamp(280px, 70vw, 420px);
    background-position: center 22%;
  }
  .chef__info { padding: 32px 24px; }
  .chef__journey-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .res__buttons { grid-template-columns: 1fr; gap: 8px; }
  .form__row { grid-template-columns: 1fr; gap: 12px; }
  .check-group,
  .check-group.col2 { grid-template-columns: 1fr; gap: 6px 12px; }
  .phone-row { grid-template-columns: 110px 1fr; gap: 8px; }
  .date-time-row { grid-template-columns: 1fr 110px; gap: 8px; }
  .gallery__panel { grid-template-columns: 1fr; }

  /* ============================================================
   *  ハラール / コーシャ パネル — モバイル用テキスト/レイアウト保険
   *  ----------------------------------------------------------------
   *  問題：カルーセルの negative margin (-24/-24) ＋ カルーセル子要素の
   *  width: 82vw が連鎖して、パネル全体が viewport より広くなり、テキスト
   *  ブロックの幅が伸びて右側がはみ出す現象が起きていた。
   *
   *  対策：
   *   1) .hk__panel に overflow-x: clip でパネル外へのはみ出しを止める。
   *   2) パネル直下のテキストブロックすべてに width: 100% / max-width: 100%
   *      / min-width: 0 を強制し、親のサイズに従わせる。
   *   3) 全テキストに word-break: break-word / overflow-wrap: anywhere
   *      で長文（句読点なし日本語、長い英単語）を必ず折り返す。
   *   4) box-sizing: border-box でパディング含めた幅計算をシンプルに。
   * ============================================================ */
  .hk__panel {
    overflow-x: clip;
    max-width: 100%;
    min-width: 0;
  }
  .hk__panel,
  .hk__panel *,
  .hk__panel *::before,
  .hk__panel *::after {
    box-sizing: border-box;
  }
  .hk__panel > *:not(.hk__badges):not(.carousel-wrapper) {
    /* badges 以外のパネル直下要素は確実に panel content 幅に収める */
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hk__h,
  .hk__en,
  .hk__body,
  .hk__protocols,
  .hk__proto-title,
  .hk__proto-list,
  .hk__proto-list li,
  .hk__message,
  .hk__quote,
  .hk__quote p,
  .hk__cite {
    max-width: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;          /* 句読点なし日本語でも必ず折り返す */
    white-space: normal;
  }
  .hk__proto-list {
    padding-left: 18px;
    margin: 0;
    list-style-position: outside;
  }
  .hk__quote {
    padding: 0 4px 0 16px;             /* 右側 4px の余裕 + 左の引用線 */
  }
}
@media (max-width: 380px) {
  .chef__journey-stats { grid-template-columns: 1fr; }
  .chef__journey-stats .stat-label { font-size: 10.5px; }
}
@media (max-width: 480px) {
  .form__stepper { grid-template-columns: 1fr; }
  .form__stepper-item + .form__stepper-item {
    border-left: none;
    border-top: 1px solid var(--rule-soft);
  }
  .form__stepper-sub { margin-left: 32px; }
}


/* ==========================================================================
 *  §4  カルーセル（モバイル）— カルーセル別にクラス分割
 *
 *  戦略（最重要）：
 *    CSS だけで完結する scroll-snap 方式に集約。
 *    トラックは margin-left/right の負値で親パネルの padding を打ち消し、
 *    画面いっぱいに広がる（≒ 100vw）。
 *    左右パディングを「9vw」（gallery は 10vw）の固定 vw 値にし、
 *    カード幅を「82vw」（gallery は 80vw、最大 340/320px）にする。
 *    `scroll-snap-align: center` でブラウザが自動的にカード中央を
 *    トラック中央に揃える。これは JS なしで動く。
 *
 *  カード幅とパディングの関係（数式）：
 *    pad_each + card + pad_each = 9vw + 82vw + 9vw = 100vw（最大画面幅相当）
 *    つまり card 中央 = 9vw + 41vw = 50vw = ビューポート中央。完璧。
 *    画面が広くなって card が max-width 340 で頭打ちになっても、
 *    scroll-snap-align: center が自動でカードを中央に寄せる。
 * ========================================================================== */
@media (max-width: 768px) {

  /* ---------- ① お客様の声 ---------- */
  .voices__panel {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }
  .voices__panel .carousel-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }
  .voices__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    gap: 14px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 4px 9vw 18px 9vw;
    scroll-padding-left: 9vw;
    scroll-padding-right: 9vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
    box-sizing: border-box;
  }
  .voices__list::-webkit-scrollbar { display: none; }
  .voice {
    flex: 0 0 auto;
    width: 78vw;
    max-width: 320px;
    min-width: 240px;
    box-sizing: border-box;
    scroll-snap-align: center;
    padding: 28px 24px 22px;
  }

  /* ---------- ② ギャラリー ---------- */
  .gallery__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    gap: 12px;
    border-top: none;
    margin-left: -22px;
    margin-right: -22px;
    padding: 4px 10vw 18px 10vw;
    scroll-padding-left: 10vw;
    scroll-padding-right: 10vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }
  .gallery__grid::-webkit-scrollbar { display: none; }
  .g-item {
    flex: 0 0 auto;
    width: 80vw;
    max-width: 320px;
    min-width: 240px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    scroll-snap-align: center;
  }

  /* ---------- ③ メニュー画像（モバイルでは §7 で display:none） ---------- */
  .menu-courses {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    gap: 10px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 4px 9vw 18px 9vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }
  .menu-courses::-webkit-scrollbar { display: none; }
  .menu-course-card {
    flex: 0 0 auto;
    width: 82vw;
    max-width: 340px;
    min-width: 260px;
    box-sizing: border-box;
    scroll-snap-align: center;
  }

  /* ---------- ④ メニュー構成 ---------- */
  .menu-compose-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    gap: 10px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 4px 9vw 18px 9vw;
    scroll-padding-left: 9vw;
    scroll-padding-right: 9vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }
  .menu-compose-grid::-webkit-scrollbar { display: none; }
  .menu-compose-card {
    flex: 0 0 auto;
    width: 72vw;
    max-width: 300px;
    min-width: 230px;
    box-sizing: border-box;
    scroll-snap-align: center;
    padding: 22px 22px 20px;
  }

  /* ---------- ⑤ ハラール / コーシャ ---------- */
  .hk__badges {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    gap: 12px;
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
    padding: 4px 9vw 18px 9vw;
    scroll-padding-left: 9vw;
    scroll-padding-right: 9vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }
  .hk__badges::-webkit-scrollbar { display: none; }
  .hk__badge {
    flex: 0 0 auto;
    width: 78vw;
    max-width: 320px;
    min-width: 240px;
    box-sizing: border-box;
    scroll-snap-align: center;
  }
}


/* ==========================================================================
 *  §5  Hero モバイル一体化（B案）
 * ========================================================================== */
@media (max-width: 768px) {
  .hero { padding: 0; }
  .hero__grid {
    border: 0;
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
    min-height: 0;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: 280% auto;
    background-position: 92% top;
    grid-row: auto;
  }
  .hero__bg::after { display: none; }
  .hero__left {
    position: relative;
    z-index: 2;
    grid-row: 1;
    grid-column: 1;
    padding: 64px clamp(24px, 7vw, 30px) 72px;
    background:
      linear-gradient(
        100deg,
        rgba(245, 238, 222, 0.94) 0%,
        rgba(245, 238, 222, 0.86) 38%,
        rgba(245, 238, 222, 0.55) 68%,
        rgba(245, 238, 222, 0.00) 100%
      );
    min-height: 0;
    max-width: 100%;
  }
  .hero__grid::after {
    content: '';
    grid-row: 2;
    grid-column: 1;
    height: clamp(48px, 12vw, 80px);
    z-index: 1;
    pointer-events: none;
  }
  .hero__left::after {
    width: clamp(280px, 78vw, 420px);
    height: clamp(280px, 78vw, 420px);
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.16;
    z-index: 0;
  }
  .hero__left > * { position: relative; z-index: 2; }
  .hero__left::before { z-index: 3; }
  .hero__headline {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.55;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 22px 0;
  }
  .hero__headline .punct { color: var(--gold); }
  .hero__en {
    margin: 0 0 30px 0;
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--ink-3);
    font-style: italic;
    font-family: var(--en);
  }
  .hero__en .line2 {
    margin-top: 6px;
    font-style: normal;
    letter-spacing: 0.18em;
    font-size: 10.5px;
    color: var(--gold);
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }
  .hero__body,
  .hero__body-en {
    margin: 0 0 36px 0;
    font-size: clamp(12px, 3.15vw, 13px);
    line-height: 1.95;
    letter-spacing: 0.01em;
    color: var(--ink-2);
    max-width: min(100%, 23em);
  }
  .hero__badges {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .hero__badges .cta--primary {
    background: var(--ink);
    border: 0;
    box-shadow: none;
    padding: 14px 28px;
    border-radius: 0;
    transition: transform 240ms ease, background 240ms ease;
  }
  .hero__badges .cta--primary:hover {
    background: var(--gold);
    transform: translateY(-1px);
  }
  .hero__badges .cta--primary .cta__label {
    font-size: 12px;
    letter-spacing: 0.22em;
    color: #fff;
  }
  .hero__badges .group-pill {
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 0;
    padding: 6px 14px;
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }
  .hero__badges .group-pill .ja {
    font-size: 10.5px;
    color: var(--gold);
    letter-spacing: 0.18em;
  }
  .hero__badges .group-pill .en {
    font-size: 9px;
    color: var(--ink-3);
    letter-spacing: 0.22em;
  }
}
@media (max-width: 380px) {
  .hero__grid::after { height: clamp(40px, 10vw, 64px); }
  .hero__left { padding: 32px 20px 64px; }
  .hero__en,
  .hero__en .line2,
  .hero__body,
  .hero__body-en,
  .panel__body,
  .panel__body-en,
  .quote-zh {
    max-width: calc(100vw - 82px);
  }
  .hero__body,
  .hero__body-en,
  .panel__body,
  .panel__body-en,
  .quote-zh {
    font-size: 12px;
    line-height: 1.9;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .hero__grid { min-height: 480px; }
  .hero__left { padding: 32px 28px; min-height: 0; }
  .hero__bg { min-height: 0; }
}
@media (max-width: 480px) {
  .hero__badges img { height: 38px; }
  .hero__badges { gap: 8px; flex-wrap: wrap; }
}
@media (max-width: 360px) {
  .hero__badges img { height: 32px; }
}


/* ==========================================================================
 *  §6  ナビ モバイル詳細
 * ========================================================================== */
@media (max-width: 768px) {
  .nav__inner { gap: 10px; }
  .nav__actions {
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;            /* ロゴとの隙間を伸ばし、アクション群を右端に押し付ける */
  }
  .nav__cta { padding: 9px 14px; font-size: 12px; letter-spacing: 0.06em; }
  .lang-toggle { flex-shrink: 0; font-size: 10.5px; letter-spacing: 0.06em; }
  .lang-toggle button { padding: 5px 9px; }
  .nav__logo { flex-shrink: 1; min-width: 0; }
  .nav__logo .word { overflow: hidden; }
  .nav__links a { font-size: 13px; }
  .faq .q { font-size: 13px; line-height: 1.5; }
  .menu-btn,
  .lang-btn,
  .nav-drawer__close,
  .form__step-prev,
  .form__step-next { min-height: 44px; min-width: 44px; }
}
@media (max-width: 480px) {
  .nav__inner { padding: 12px 12px; gap: 8px; }
  .nav__logo .kanji-mark { width: 26px; height: 26px; }
  .nav__logo .word .top { font-size: 15px; letter-spacing: 0.14em; }
  .nav__logo .word .sub { font-size: 8.5px; letter-spacing: 0.22em; }
  .nav__cta { padding: 8px 12px; font-size: 11.5px; }
  .lang-toggle { font-size: 10px; }
  .lang-toggle button { padding: 5px 8px; }
  .menu-btn { width: 38px; height: 38px; }
}
@media (max-width: 390px) {
  .nav__logo .word .sub { display: none; }
  .nav__logo .word .top { font-size: 14px; letter-spacing: 0.12em; }
  .nav__cta { padding: 7px 11px; font-size: 11px; letter-spacing: 0.04em; }
  .lang-toggle button { padding: 4px 7px; font-size: 9.5px; }
}
@media (max-width: 340px) {
  .nav__cta .ja-only { font-size: 0; }
  .nav__cta .ja-only::after { content: '予約'; font-size: 11px; }
}


/* ==========================================================================
 *  §7  メニューカード（PC/SP共通）
 * ========================================================================== */
.menu-compose-card__photo {
  display: block;
  position: relative;
  width: calc(100% + 44px);
  margin: -22px -22px 16px -22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--rule-soft);
  box-sizing: content-box;
  overflow: hidden;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}
.menu-compose-card__photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 35% 60%;
  transition: transform 600ms ease;
}
.menu-compose-card { overflow: hidden; box-sizing: border-box; }
.menu-compose-card--premium::after { content: none; display: none; }
@media (max-width: 768px) {
  .menu-courses { display: none; }
}


/* ==========================================================================
 *  §8  カルーセル UI（JS が生成する矢印・ドット）
 * ========================================================================== */
.carousel-wrapper { position: relative; }

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 0;
  position: relative;
  z-index: 5;
}
@media (min-width: 769px) {
  .carousel-dots { display: none; }
  .carousel-nav { display: none; }
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(176, 140, 90, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
  -webkit-tap-highlight-color: transparent;
}
.carousel-dot:hover { background: rgba(176, 140, 90, 0.4); }
.carousel-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.35);
}

.carousel-nav {
  display: flex;
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  z-index: 100;
  border: 1px solid rgba(176, 140, 90, 0.55);
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.98);
  color: #6e552d;
  box-shadow: 0 4px 14px rgba(33, 26, 14, 0.18);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: opacity 220ms ease, background 220ms ease, transform 220ms ease;
  -webkit-tap-highlight-color: transparent;
}
/* PC では §8 末尾の @media (min-width: 769px) で .carousel-nav を非表示にする */
.carousel-nav:hover:not(:disabled) {
  background: rgba(176, 140, 90, 0.95);
  color: #fff;
  transform: scale(1.05);
}
.carousel-nav:active:not(:disabled) { transform: scale(0.95); }
.carousel-nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.carousel-nav svg { width: 18px; height: 18px; display: block; }
.carousel-nav--prev { left: 12px; }
.carousel-nav--next { right: 12px; }

.gallery__grid + .carousel-nav,
.gallery__grid ~ .carousel-nav {
  background: rgba(33, 26, 14, 0.78);
  color: #fbf8f1;
  border-color: rgba(255, 255, 255, 0.3);
}
.gallery__grid ~ .carousel-dots {
  margin-bottom: 18px;
}

.carousel-wrapper.is-carousel-active .voice:hover {
  transform: none;
  box-shadow: none;
}
.carousel-wrapper.is-carousel-active .menu-course-card:hover img {
  transform: none;
}
