/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */

/* カラー */
:root {
    --color-bg-primary: #ffffff;
    --color-bg-primary-brack: #000;
    --color-border: #000;
    --color-border-white: #ffffff;
    --color-font-base: #000;
    --color-font-white: #ffffff;
}

/* コンテナ幅 */
:root {
    --width-content-s: 768px;
    --width-content: 1200px;
}

/* フォント */
:root {
    --font-family-base: "Noto Serif JP", serif;
    --font-family-en: "Lato", sans-serif;
}

/* ------------------------------ */
/* 全体共通のスタイル */
/* ------------------------------ */


body {
    background-color: var(--color-bg-primary);
    margin: 0;
    padding: 0px;
    font-family: sans-serif;
    font-size: 16px;
}

dt {
    font-weight: bold;
}
dd {
    margin: 0;
    margin-bottom: 1em;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}

.site-header {
  padding-top: 30px;
}

.site-footer {
  padding-bottom: 30px;
}

.header-inner,
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* ← 余白はここだけ */
}

.full-image {
  width: 100%;
  height: auto;
  display: block;
}




.top-yuubin {
    display: flex;
    align-items: center; 
}

.top-telephone{
    display: flex;
    align-items: center; 
}

.footer-yuubin {
    display: flex;
    align-items: center; 
}

.footer-telephone{
    display: flex;
    align-items: center; 
}

.yuubin-img{
    margin-right: 10px;
}

.telephone-img{
    margin-right: 10px;
}

.global-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-info {
  display: flex;
  flex-direction: column;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-icon {
    display: flex;
    justify-content: space-around;
    /*padding-bottom: 10px;*/
    padding: 0px 30px 10px 30px;
}

.nav-menu,
.buy-icon {
    display: inline-block;
    padding: 5px;
    text-decoration: none;
    color: var(--color-font-base);
}
.nav-menu:hover,
.buy-icon:hover {
    background-color: rgb(225, 225, 225);
}
.nav-menu::before,
.buy-icon::before {
    content: '';
    display: block;
    margin: 0 auto 5px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
}

/* アイコン画像設定 */
.my_page-icon::before { background-image: url(../img/mypage.png); }
.cart-icon::before { background-image: url(../img/cart.png); }
.touroku-icon::before { background-image: url(../img/kaiintouroku.png); }
.log_in-icon::before { background-image: url(../img/log_in.png); }
.annai-icon::before { background-image: url(../img/goriyouannai.png); }
.question-icon::before { background-image: url(../img/yokuarugositumon.png); }
.otoiawase-icon::before { background-image: url(../img/otoiawase.png); }
.buy-icon::before { background-image: url(../img/buy.png); }

.search-icon {
  width: 18px;
  height: 18px;

  stroke: var(--color-border-white);
  stroke-width: 2;
  fill: none;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* PC版：下段メニュー ----------------------- */
.nav-lower {
    margin-top: 0px;
}


.search-area input {
  width: 250px;
  padding: 6px 0px 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;

  margin-bottom: 0; /* ← これ重要 */
}






/* 検索フォーム全体 */

.search-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 36px;

  border: 2px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;

  position: relative;
}




/* 入力欄 */
.search-form input {
  width: 100%;
  flex: 1;
  border: none;
  outline: none;

  padding: 6px 10px;
  font-size: 14px;
}



/* 虫眼鏡ボタン */
.search-button {
  line-height: 1;
  padding: 0;

  position: static;           /* absolute を解除 */
  width: 44px;

  background-color: var(--color-bg-primary-brack);
  color: var(--color-border-white);

  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
}



/* hover */
.search-button:hover {
  opacity: 0.7;
  background-color: #333;
}






.nav-non-icon {
    display: flex;
    justify-content: space-around;
    background-color: var(--color-bg-primary-brack);
    flex-wrap: nowrap;          /* ← 折り返し禁止 */
}

.nav-non-icon li {
  flex: 1;                 /* 横幅を均等に */
  text-align: center;
  display: flex;              /* 高さ揃え用 */
}

.nav-non-icon li a {
  text-align: center;
  display: flex;              /* ← block から flex に */
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */

  padding: 12px 8px;
  width: 100%;

  white-space: nowrap;        /* ← 改行禁止 */
  overflow: hidden;           /* はみ出し防止 */
  text-overflow: ellipsis;    /* …表示 */

  text-decoration: none;
  color: var(--color-font-white);




}

.nav-non-icon li a:hover {
    background-color: rgb(220, 220, 220);
    color: var(--color-font-base);
}

.global-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-icon {
  display: flex;
  justify-content: space-around;
}

.nav-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}






.kv-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kv-viewport {
  overflow: hidden;
}

.kv-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}


.kv-item {
  flex: 0 0 100%;
}

.kv-item img {
  width: 100%;
  display: block;
}

/* 矢印ナビ */

.kv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 48px;
  height: 48px;

  background-color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;

  /* ▼ 文字を消す */
  font-size: 0;

  /* ▼ 画像を使う */
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.kv-prev {
  left: 10px;
  transform: translateY(-50%) rotate(-90deg);
}

.kv-next {
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
}

.kv-arrow:hover {
  background-color: rgba(255,255,255,1);
}


.kv-slider-message {
  text-decoration: none;
  color: var(--color-font-base);
}



.content_title-level2 {
  background-color: var(--color-bg-primary-brack);
  color: var(--color-font-white);
  padding: 10px 30px;
  margin:  0px;
}


.content-details-price,
.content-details-paragraph,
.content-details-paragraph,
.content-details-paragraph {
  margin: 0px;
}

.content-details-price-top {
  display: flex;
}

.content-details-pieces {
  display: flex;
}

.content-details-price-pieces-buy {
  display: flex;
}

.content-details-item {
  flex: 1; /* これが重要！ */
}


.content-details-price {
  color: #ff0000;
  font-weight: bold;
}
  
.buy-icon {
  text-align: center;
}



/* PC版：レイアウト ----------------------- */
@media screen and (min-width: 768px) {
    /* ヘッダー全体 */
    .header-inner {
      display: flex;
      align-items: center;
      gap: 20px;

      max-width: 1200px;   /* 広がりすぎ防止 */
      margin: 0 auto;
    }

    /* タイトル画像エリア */
    .title-area {
      flex: 1 1 auto;     /* 伸びる */
    }

    .title-area img {
      width: 100%;
      max-width: 700px;   /* 大きくなりすぎない */
      height: auto;
    }

    /* 住所・電話エリア */
    .contact-area {
      flex: 0 0 auto;     /* 縮まない */
      min-width: 280px;   /* 必要な横幅を確保 */
    }

    /* フッダー全体 */
    .footer-inner {
      display: flex;
      flex-direction:row-reverse;
      align-items: center;
      gap: 20px;

      max-width: 1200px;   /* 広がりすぎ防止 */
      margin: 0 auto;
    }

    .content-image {
      min-width: 60%; 
      height: auto;
    }

    .content-details-explanation-display {
      display: none;
    }

    .content-details {
      padding: 0px 20px;
    }











    
    .content-top {
      position: relative;
      margin-bottom: 0;
      padding-bottom: 0;

      
      display: grid;
      grid-template-columns: 60% 1fr;
       column-gap: 24px;
      align-items: start;
      /*padding-bottom: 50px; /* ★これが決定打 */
    }





    .content-image {
      width: 100%;
      height: auto;
      display: block;
      grid-area: image;
      
      grid-column: 1;
    }

    .content-details {
      grid-area: details;
      padding: 0 20px;
      gap: 12px;
      
      display: block; /* ★ gridを解除 */
      grid-column: 2;
    }










    /* 黒帯（ウィンドウ全幅） */
    .content-top::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50px;
      background-color: #000;
    }

    .content-top:last-of-type::after {
      display: none;
    }



    


}




    /* ヘッダーメッセージ + 検索窓 */
    .header-message,
    .footer-message {
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 1200px;
        margin: 10px auto;
    }

    .header-search {
        margin-left: auto; /* messageの右へ */
    }

    .footer-search {
        margin-left: auto;
    }

    .nav-portfolio {
      text-decoration: none;
      color: var(--color-font-base);
      padding: 10px;
    }




@media screen and (min-width: 950px) {
    .title-img{
        max-width: 100%; /* 親要素の幅を超えない範囲で最大100%に */
        height: auto;    /* 縦横比を維持して高さを自動調整 */

    }
}



/* スマホ専用 ----------------------- */
.sp-only { display: none; }

@media screen and (max-width: 768px) {

    .pc-only { display: none; }
    .sp-only { display: block; }

    .sp-menu-area {
        text-align: right;
        margin-top: 10px;
    }

    .hamburger {
        background-color: #444;
        color: var(--color-font-white);
        padding: 8px 16px;
        border: none;
        cursor: pointer;
    }

    .sp-menu-list {
        flex-direction: column;
        background-color: var(--color-bg-primary);
        border: 1px solid #ccc;
        margin-top: 10px;
        padding: 10px 0;
    }

    .sp-menu-list li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #eee;
        color: var(--color-font-base);
        text-decoration: none;
    }
    .sp-menu-list li a:hover {
        background-color: rgb(100, 100, 100);
        color: var(--color-font-white);
    }

    .header-inner,
    .footer-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ハンバーガーボタン */
    .hamburger {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        color: var(--color-font-base);
        background-color: var(--color-bg-primary);
        border: none;
        cursor: pointer;
        z-index: 999;

        border-style: solid; /* 枠線のスタイルを実線に設定 */
        border-width: 3px;   /* 枠線の太さを設定 */
        border-color: var(--color-border);   /* 枠線の色を設定 */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        box-shadow: 0 4px 8px rgba(0,0,0,0.25);
        border-radius: 4px;
    }

    /* 三本線 */
    .hamburger span {
        width: 24px;
        height: 2px;
        background-color: var(--color-bg-primary-brack);
        display: block;
        margin-bottom: 4px;
    }

    /* MENU文字 */
    .hamburger p {
        margin: 2px 0 0;
        font-size: 10px;
        color: var(--color-font-base);
        line-height: 1;
    }

    .hamburger span {
    transition: 0.3s;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }


    /* スマホ用メニュー（初期：非表示） */
    .sp-menu-list {
        position: fixed;
        right: 16px;
        bottom: 70px;
        width: 60%;
        max-width: 280px;

        display: flex;
        flex-direction: column;

        background-color: var(--color-bg-primary);
        border: 1px solid #ccc;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        padding: 10px 0;
        z-index: 998;

        /* フェード用 */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);

        transition: 
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    /* 開いた状態 */
    .sp-menu-list.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 997;
    }

    .kv-slider-message{
      display: flex;
      justify-content: center;  /* 水平方向の中央 */
      align-items: center;      /* 垂直方向の中央 */
      font-size: 22px;
      font-weight: bold;
      max-width: 100%; 
      height: 50px;
      text-align: center;
      
      border: 10px solid #62b1fe;
    }




    /* スライダー直下の余白を消す */
    .kv-slider {
      margin-bottom: 0;
    }

    /* pタグのデフォルト余白を打ち消す */
    .kv-slider-message {
      margin-top: 0;
      margin-bottom: 0;
    }

    /* 念のため main の直下余白も抑制 */
    main {
      padding-top: 0;
    }

    .kv-slider + .kv-slider-message {
      margin-top: 0;
    }

    .content_title-level2 {
      display: flex;
      justify-content: center;  /* 水平方向の中央 */
      align-items: center;      /* 垂直方向の中央 */
    }

    .content-image {
      width: 100%; 
    }






/* =========================
   スマホ：詳細 折りたたみ
========================= */

 /* 説明文：初期非表示 */
  .content-details-explanation {
    display: none;
    padding: 16px;
    line-height: 1.6;
    background-color: #fff;
  }

  /* 開くボタン（初期表示） */
  .content-details-explanation-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background-color: #000;
    color: #fff;
    padding: 12px 0;
    cursor: pointer;
    font-weight: bold;
  }

  /* 閉じるボタン（初期非表示） */
  .content-details-explanation-close {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background-color: #000;
    color: #fff;
    padding: 12px 0;
    cursor: pointer;
    font-weight: bold;
  }

  /* ===== 開いている状態 ===== */
  .content-top.is-open .content-details-explanation {
    display: block;
  }

  .content-top.is-open .content-details-explanation-display {
    display: none;
  }

  .content-top.is-open .content-details-explanation-close {
    display: flex;
  }

  /* ▼ 下向き矢印（開く） */
  .content-details-explanation-display::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/arrow_white.png") center / contain no-repeat;
    transform: rotate(180deg);
  }

  /* ▲ 上向き矢印（閉じる） */
  .content-details-explanation-close::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/arrow_white.png") center / contain no-repeat;
  }







  /* 花の名前を中央寄せ */
  .content_title-level3 {
    text-align: center;
    margin: 16px 0;
  }



  /* 価格・個数・在庫・カートの左右余白 */
  .content-details-price-pieces-buy {
    padding: 0 16px;   /* ← 好みで 12〜24px に調整OK */
    box-sizing: border-box;
  }






  /* 詳細ボタン（開く・閉じる）の余白を完全に消す */
  .content-details-explanation-display,
  .content-details-explanation-close {
    margin: 0;
  }

  /* 画像の上余白を消す（直前の影響を遮断） */
  .content-image {
    margin-top: 0;
    display: block;
  }

  /* 念のため content-top 内の p 全体も制御 */
  .content-top > p {
    margin-top: 0;
    margin-bottom: 0;
  }


  .nav-icon-footer {
    margin-top: 20px;
  }



    .content-details {
    margin-bottom: 16px; /* ← これ */
  }

}   







    @media screen and (min-width: 768px) {

  .kv-slider {
    position: relative; /* 重ねる基準 */
  }

  .kv-slider-message {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 20;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 16px 20px;
    min-width: 180px;

    background-color: #fff;
    border: 10px solid #62b1fe;

    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;

    text-decoration: none;
    color: var(--color-font-base);

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    white-space: pre-line;

    

  }




  .content-details-explanation-display,
  .content-details-explanation-close {
    display: none;
    margin: 0;
    padding: 0;
    height: 0;
  }




  .content_title-level3 {
    text-align: center;
  }

}









@media screen and (min-width: 768px) and (max-width: 1200px) {

  .nav-info {
    flex-direction: row;
    align-items: center;
  }

  .search-area {
    margin-left: auto;
    width: 260px;
    margin-right: 10%;
  }

  /* ヘッダー：アイコンの下 */
  header .global-nav {
    flex-direction: column;
  }

  /* フッター：アイコンの上 */
  footer .global-nav {
    flex-direction: column-reverse;
  }





/*
  .content-top {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 16px;
    align-items: start;
  }

  .content-image {
    grid-column: 1;
    grid-row: 1;
  }

  .content-details {
    grid-column: 2;
    grid-row: 1;
  }

  /* ★ 説明を「Grid直下の要素」として扱う */
  /*.content-details-explanation {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
  }
*/





 .content-top {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-template-rows: auto auto 50px;
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }

  .content-image {
    grid-column: 1;
    grid-row: 1;
  }

  .content-details {
    grid-column: 2;
    grid-row: 1;

    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  /* ★ 説明は「content-detailsの下」に自然に来る */
  .content-details-explanation {
    margin-top: 0;
    padding: 20px 20px 10px 20px;


    grid-column: 1 / -1;
    grid-row: 2;
  }

  .content-top::after {
    grid-column: 1 / -1;
    grid-row: 3;

    position: static;
    height: 50px;
    background-color: #000;
  }



  .content-top::after {
  content: "";
  grid-column: 1 / -1;
  height: 50px;
  background-color: #000;
}






  .content-top:last-of-type::after {
    display: none;
  }

  .content-top:last-of-type {
    grid-template-rows: auto auto; /* 50px行を消す */
  }



  .content-details {
  grid-column: 2;
  grid-row: 1;

  display: flex;
  flex-direction: column;
  justify-content: center; /* ★ 縦中央 */

  gap: 12px; /* ★ 60pxはやめる */
}


  .content-top {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto auto; /* ← 50px行は after に任せる */
  column-gap: 24px;
  align-items: stretch; /* ★ start をやめる */
}

  



}





@media screen and (min-width: 1200px) {

  .global-nav {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)          /* nav-icon：可変で広がる */
      minmax(320px, 330px);   /* nav-info：必要幅を確保 */

    grid-template-rows: auto auto;
    column-gap: 32px;
    row-gap: 16px;
    align-items: start;
  }

  .nav-icon {
    grid-column: 1;
    grid-row: 1;
    justify-content: space-between; /* 横いっぱいに配置 */
  }

  .nav-info {
    grid-column: 2;
    grid-row: 1;
    width: 260px;          /* ← 基準幅 */
    align-items: flex-start; /* messageと検索を左揃え */
  }

  .nav-lower {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .search-area {
    width: 260px;      /* messageと揃える基準幅 */
    max-width: 260px;
    position: relative;
    margin-right: 0; 
    margin-left: 0;
  }

  .footer-nav .nav-lower {
    grid-row: 1;
  }

  .footer-nav .nav-icon {
    grid-row: 2;
  }

  .footer-nav .nav-info {
    grid-row: 2;
  }

    /* ヘッダー側のみ */
  .header-nav {
    align-items: end; /* グリッド全体を下揃え */
  }

  /* アイコンありメニューの位置微調整 */
  .header-nav .nav-icon {
    align-self: end;        /* 下ラインを揃える */
    padding-bottom: 2px;   /* 必要なら微調整（0〜4pxで調節） */
  }

    /* フッター側のみ nav-info の中身を逆順に */
  .footer-nav .nav-info {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .nav-info .message {
    width: 100%;           /* ← 左端を nav-info に合わせる */
  }

  .nav-info .search-area {
    width: 100%;           /* ← message と完全一致 */
  }







  .content-top {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-template-rows: auto auto;
    column-gap: 24px;
    align-items: start;
  }


   /* 画像：左・1行目 */
  .content-image {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  /* 商品名 + 価格など：右・1行目 */
  .content-details {
    grid-column: 2;
    grid-row: 1;
  }

  /* 説明文：右・2行目（←ここ！） */
  .content-details-explanation {
    grid-column: 2;
    grid-row: 2;

    margin-top: 8px;
    padding: 0 20px 0 20px;
  }

  



 /* 右カラムを縦レイアウトにする */
  .content-details {
    display: grid;
    grid-template-rows: auto auto auto;
    row-gap: 0px;
  }

  /* 商品名 */
  .content-details h3 {
    grid-row: 1;

  }

  /* ★ 説明文を「名前の直下」に差し込む */
  .content-details-explanation {
    grid-column: 2;
    grid-row: 2;

    margin: 0;
    padding: 0 20px;
  }

  /* 価格・個数・カート */
  .content-details-price-pieces-buy {
    grid-row: 3;
  }




  
  .content-top {
    display: grid;
    grid-template-columns: 60% 1fr;
    column-gap: 24px;

    /* ★ 画像の高さに揃える */
    align-items: stretch;

    position: relative;
  }

  /* 左：画像 */
  .content-image {
    grid-column: 1;
  }

  /* 右側を「まとめて中央寄せ」 */
  .content-details,
  .content-details-explanation {
    grid-column: 2;
  }

  /* ★ 右カラムを1つの縦中央ブロックにする */
  .content-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 16px;
  }

  /* 説明文も中央ブロックの一部として扱う */
  .content-details-explanation {
    margin-top: 0px;
  }

  /* 黒帯 */
  .content-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background-color: #000;
  }

  .content-top:last-of-type::after {
    display: none;
  }


}

/* ===== ページトップボタン ===== */

#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;

  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  z-index: 1000;
}

/* 表示時 */
#page-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 矢印アイコン */
.page-top-icon {
  width: 40px;
  height: auto;
}

/* テキスト */
.page-top-text {
  font-size: 12px;
  color: var(--color-font-base);
  line-height: 1;
  white-space: nowrap;
}

/* ホバー演出 */
#page-top:hover .page-top-icon {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* 768px未満は非表示 */
@media screen and (max-width: 767px) {
  #page-top {
    display: none;
  }
}



@media (prefers-reduced-motion: reduce) {
  .kv-track {
    transition: none;
  }
}




