@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/

/************************************
** 変数（カラースキーム）
************************************/
:root {
  --main-bg: #FAF9F6;
  --text-color: #5A4E3C;
  --accent-color:#000;
  --link-color: #2A7F62;
  --highlight-color: #C2A23E;
}

/************************************
** グローバル設定
************************************/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--main-bg);
  color: var(--text-color);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}




/************************************
**    スマホ横スクロールの右端フェード矢印
************************************/
@media (max-width: 768px) {
  .menu-mobile-wrapper {
    position: relative;
    padding-bottom: 14px; /* スクロールバー分の余白 */
  }

  .menu-mobile {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 8px;
    gap: 10px;
    margin: 0;
  }

  .menu-mobile::-webkit-scrollbar { display: none; }

  .menu-mobile li {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    margin: 0;
  }

  .menu-mobile li a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 50px;
    background-color: #fff8e8;
    color: #5a4e3c;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    white-space: nowrap;
    min-width: fit-content;
    max-width: 100%;
    transition: all 0.25s ease;
  }

  .menu-mobile li a:hover {
    background-color: #f3e0c6;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }

  /* 右端フェード矢印 */
  .menu-mobile-wrapper::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgba(0,0,0,0.5); /* 少し濃く */
    pointer-events: none;
    padding-left: 10px;
    background: linear-gradient(to left, var(--main-bg), rgba(255,255,255,0));
  }

  /* 下部スクロールバー */
  .menu-scrollbar {
    position: absolute;
    bottom: 4px;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    overflow: hidden;
  }

  .menu-scrollbar-bar {
    height: 100%;
    width: 0%;
    background: #5a4e3c;
    border-radius: 2px;
    transition: width 0.1s linear;
  }
}

/* PCは非表示 */
@media (min-width: 769px) {
  .menu-mobile-wrapper { display: none; }
}
/************************************
** img 共通設定
************************************/
.header-image img,
.logo-image img,
.siteHeader_logo img,
.box-menu-icon img {
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain;
  border-radius: 12px; /* 画像に角丸をつけたい場合 */
}

[media pointer="file-service://file-NA5K4PxFGexc8LrEZvVVkb"]




/************************************
** ヘッダー関連
************************************/
.logo-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.header-image {
  margin: 0;
  padding: 0;
  background: none;
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.header-image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

#header,
.header-container {
  width: 100%;
  max-width: 100%;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
}



/* ヘッダー上下余白を完全に無くす */
.header-container,
.header-in,
.logo-image,
.siteHeader_logo,
.header-image,
.logo,
.site-title {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}



/************************************
** アピールエリア全体（白背景＆余白消去）
************************************/
#appeal,
#appeal-in,
#appeal-in.wrap,
.appeal,
.appeal-in,
.wrap,
.appeal-content {
  padding: 0 !important;           
  margin: 0 !important;            
  background-color: transparent !important; 
  box-shadow: none !important;
}

/* -------------------------------
   アピールエリア比率固定（PC） & スマホ対応
---------------------------------*/
.appeal-in {
  position: relative;
  width: 100%;
  max-width: 1200px;        
  margin: 0 auto;
  aspect-ratio: 1000 / 300; /* PC比率固定 */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スマホでは比率自動、高さ調整 */
@media (max-width: 768px) {
  .appeal-in {
    aspect-ratio: auto;
    height: auto;
  }

  .appeal-content img {
    width: 100%;
    height: auto;
    object-fit: contain;   /* 全体表示で左右切れない */
  }
}

/* -------------------------------
   画像設定（PC） 
---------------------------------*/
.appeal-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;     
  object-position: center; 
  z-index: 0;
}

/* -------------------------------
   タイトル・メッセージ非表示
---------------------------------*/
.appeal .appeal-title,
.appeal .appeal-message {
  display: none !important;
}

/* -------------------------------
   ボタン中央配置（PC・スマホ共通）
---------------------------------*/
.appeal .appeal-button {
  position: absolute;          /* 画像の上に固定 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;                 /* 画像より前面 */
  background: #4CAF50;
  color: #fff;
  font-size: 1.2rem;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ホバー時 */
.appeal .appeal-button:hover {
  background: #43a047;
  transform: translate(-50%, -50%) translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



/************************************
** カルーセル
************************************/
/* 外枠：横スクロール可能 */
.carousel-outer {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}


.carousel-outer::-webkit-scrollbar {
  display: none; /* スクロールバー非表示 */
}

/* 内側：カードを横並び */
.carousel-container {
  display: flex;
  gap: 16px;
  padding: 0 12px;
  width: fit-content;
}



/************************************
** カード
************************************/
/* カード全体 */
.carousel-entry-card {
  flex: 0 0 45%; /* スマホで2枚表示 */
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;              /* はみ出し防止 */
  display: flex;
  flex-direction: column;        /* 上:画像 下:テキスト */
}
.carousel-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* 画像部分 */
.carousel-entry-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: 0;   /* 上端の角丸を消す */
  border-top-right-radius: 0;  /* 必要に応じて0に */
  margin: 0;                   /* 上余白を削除 */
  padding: 0;                  /* 上余白を削除 */
}


.carousel-entry-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* 余白なし */
  display: block;
}

/* カテゴリラベル */
.carousel-entry-card-thumb .cat-label {
  position: absolute;   /* 親要素を基準に左上に固定配置 */
  top: 3px;             /* 親要素の上から3pxの位置 */
  left: 3px;            /* 親要素の左から3pxの位置 */
  background: rgba(0,0,0,0.6); /* 半透明の黒背景 */
  color: #fff;          /* 文字色は白 */
  padding: 2px 2px;     /* 上下2px・左右2px の余白（文字周りの空き） */
  font-size: 0.7rem;    /* 文字サイズを小さめに */
  border-radius: 6px;   /* 角を6px丸める（ pill風ラベルにする） */
}

/* タイトル部分 */
.carousel-entry-card .entry-title {
  padding: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  background: #fff;              /* 白背景 */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}




/************************************
** 背景・その他の装飾
************************************/
.wrap,
.container,
.main,
.content {
  background-color: transparent;
  box-shadow: none;
}

.article {
  background-color: #f9f5e6;
}

.sidebar {
  background-color: #fdf5e6;
}


/************************************
** ボックスメニュー全体（フラットにして角丸）
************************************/
.box-menu {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  min-height: 0;
  height: auto;
  background-color: var(--main-bg);
}

.box-menu-icon {
  flex-grow: 1;
  padding: 0;
  margin: 0;
  width: 100%;
  height:auto;
}

.box-menu-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  max-height: 300px;
}

.box-menu:hover {
  box-shadow: none;
  opacity: 0.8;
}

.box-menu-label,
.box-menu-description {
  display: none;
}

/* ====================================
   カテゴリーページ共通CSS（レスポンシブ対応）
==================================== */

/* カード全体 */
body.category .entry-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffefc, #f9f9f6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

/* PC向けホバー効果 */
@media screen and (min-width: 768px) {
  body.category .entry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
}

/* サムネイル画像 */
body.category .entry-card-thumb {
  width: 100%;
  height: auto;
}

body.category .entry-card-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

/* カード内容 */
body.category .entry-card-content {
  flex: 1;
  text-align: left; /* 本文左寄せ */
  padding: 0 4px;   /* スマホでも余白を確保 */
}

body.category .entry-card-content h2 {
  font-size: 1.2rem; /* スマホ基準 */
  margin: 0 0 6px;
  color: #222;
  line-height: 1.4;
}

body.category .entry-card-content .entry-card-snippet {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
  display: block;
  width: 100%;
}

/* PC向け文字サイズ調整 */
@media screen and (min-width: 768px) {
  body.category .entry-card-content h2 {
    font-size: 1.25rem;
  }
  body.category .entry-card-content .entry-card-snippet {
    font-size: 1.05rem;
  }
}

/* カテゴリーページ共通のラベル（統一、オシャレ系） */
body[class*="category-"] .cat-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(40,40,40,0.7)); /* 黒グラデーション */
  color: #fff;                 /* 文字色は白 */
  font-size: 0.68rem;          /* 小さめ文字 */
  padding: 0.2em 0.2em;       /* 余白 */
  margin-bottom: 6px;          /* 下の間隔 */
  border-radius: 8px;         /* 角を丸くして柔らかい印象 */
  font-weight: 600;
  position: absolute;           /* サムネ左上に固定 */
  top: 4px;
  left: 4px;
}

	
/************************************
** 新着記事
************************************/
/* 新着記事カード全体 */
.new-entry-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

/* ホバー時の浮き上がり */
.new-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* 画像 */
.new-entry-card-thumb {
  position: relative;
  width: 100%;                  /* 幅をカードいっぱいに */
  aspect-ratio: 16 / 9;         /* 高さを比率固定 */
  overflow: hidden;
  border-radius: 0;             /* 上端の角丸を消して余白なしに */
  margin: 0;                     /* 余白削除 */
  padding: 0;                    /* パディング削除 */
}
.new-entry-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* 余白なしで画像を埋める */
  display: block;
}


/* カテゴリラベル */
.new-entry-card-thumb .cat-label {
  position: absolute;
  top: 2px;
  left: 2px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 2px 4px;
  font-size: 0.7rem;
  border-radius: 6px;
}

/* タイトル重ね */
.new-entry-card-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
}
	


/************************************
** 関連記事
************************************/
/* 関連記事カード */
.related-entry-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

/* ホバー時の浮き上がり */
.related-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* 画像部分 */
.related-entry-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.related-entry-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カテゴリラベル */
.related-entry-card-thumb .cat-label {
  position: absolute;
  top: 3px;
  left: 3px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 2px 4px;
  font-size: 0.7rem;
  border-radius: 6px;
}

/* タイトル（グローバルh2/h3装飾リセットして専用デザインに） */
.related-entry-card-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
}


/************************************
** 前後の記事
************************************/
/* カード全体 */
.prev-post, .next-post {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 8px 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時のカード */
.prev-post:hover, .next-post:hover {
  transform: translateY(-5px) scale(1.02); /* 少し拡大して浮く */
  box-shadow: 0 8px 20px rgba(0,0,0,0.18); /* 影を濃くする */
}

/* サムネイル画像 */
.prev-post-thumb img, .next-post-thumb img {
  border-radius: 6px;
  width: 80px;
  height: 48px;
  object-fit: cover;
  margin-right: 10px;
  transition: transform 0.3s ease; /* 画像も少し動かす */
}

/* 画像もホバーでわずかに拡大 */
.prev-post:hover .prev-post-thumb img,
.next-post:hover .next-post-thumb img {
  transform: scale(1.05);
}

/* タイトル */
.prev-post-title, .next-post-title {
  font-weight: bold;
  color: #3a3a3a;
  transition: color 0.3s ease;
}

/* アイコン（丸背景） */
.prev-post .iconfont, .next-post .iconfont {
  background-color: #ddd;
  border-radius: 50%;
  padding: 6px;
  margin-right: 8px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

/* ホバー時のアイコン */
.prev-post .iconfont, .next-post .iconfont {
  background-color: #C2A23E; /* ホバーと同じゴールドに変更 */
  color: #fff;               /* ホバー時と同じ白色 */
  border-radius: 50%;
  padding: 6px;
  margin-right: 8px;
  transform: scale(1.2);      /* ホバー時の拡大を最初から適用 */
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

/* ホバー時も同じ状態にして変化なし */
.prev-post:hover .iconfont, .next-post:hover .iconfont {
  background-color: #C2A23E;
  color: #fff;
  transform: scale(1.2);
}


/************************************
** タイトル・見出し設定
************************************/
h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  line-height: 1.5;
}

h1 {
  font-size: 1.6em;
  text-align: center;
  margin: 1em 0;
  padding: 0.5em 1em;
  color: var(--text-color);
  font-weight: bold;
  background: linear-gradient(to right, #fff8e8, #fff);
  border-left: 5px solid var(--highlight-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

h2 {
  font-size: 1.4em;
  margin-top: 2.5em;
  margin-bottom: 1.2em;
  padding: 0.4em 0.8em;
  color: var(--accent-color);
  font-weight: bold;
  background: linear-gradient(to right, #fffdf7, #fff);
  border-left: 5px solid var(--highlight-color);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}


/* H3：H2と全く同じ */
h3 {
  font-size: 1.4em;
  margin-top: 2.5em;
  margin-bottom: 1.2em;
  padding: 0.4em 0.8em;
  color: var(--accent-color);
  font-weight: bold;
  background: linear-gradient(to right, #fffdf7, #fff);
  border-left: 5px solid var(--highlight-color);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}





/************************************
** 本文・装飾
************************************/
p,
ul,
ol {
  margin-bottom: 1.5em;
}

mark {
  background-color: var(--highlight-color);
  padding: 0.2em;
}

blockquote {
  background: #fdf9f3;
  border-left: 4px solid var(--accent-color);
  padding: 1em;
  font-style: italic;
  margin: 2em 0;
  font-family: 'Noto Serif JP', serif;
}



/************************************
** リンク・リスト
************************************/
a {
  color: var(--link-color);
  transition: color 0.3s ease, background-color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
  background-color: #fdf6f6;
}

.category-list li::before {
  content: "・";
  margin-right: 0.5em;
  color: var(--accent-color);
  font-size: 1.2em;
}




/************************************
** サイドバーカスタマイズ
************************************/
.sidebar-intro {
  background-color: #fffaf0; /* クリーム色を明るく */
  border-left: 6px solid #c99a6b; /* 明るめのウォームブラウン */
  padding: 1.2em 1.5em;
  margin-bottom: 2em;
  font-family: 'Noto Serif JP', serif;
  color: #5a4b3a; /* 明るめのブラウン寄りダーク */
  line-height: 1.6;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(201, 154, 107, 0.2); /* 明るい茶色の薄い影 */
}

.sidebar-intro h2 {
  font-size: 1.5em;
  margin-bottom: 0.8em;
  color: #a67c52; /* 明るく優しいブラウン */
  border-bottom: 2px solid #c99a6b;
  padding-bottom: 0.3em;
}

.sidebar-intro p {
  margin-bottom: 1em;
  font-size: 1em;
  letter-spacing: 0.03em;
}


.author-profile {
  text-align: center;
  margin-bottom: 1em;
}

.author-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.4em;
}

.author-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #4a6f5a; /* 落ち着いたグリーン系 */
  text-decoration: underline;
  cursor: default;
  margin: 0;
}

/************************************
** レイアウト（レスポンシブ）
************************************/
@media screen and (min-width: 600px) {
 .wwa {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* 列間の余白 */
  }

@media screen and (min-width: 768px) {
  .wwa {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }



@media screen and (max-width: 767px) {
  .wwa .box-menu {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .wwa {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 0 4px;
  }


  /* 画像トリミングしない */
  .wwa .box-menu img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }



  .image-container {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .image-container img {
    display: block;
    margin: 0;
    vertical-align: middle;
  }
}

	
	
	
/************************************
** 広告
************************************/
/* 商品名リンク */
.scrollable-table a {
  font-size: 1rem;
  font-weight: bold;
  color: #5c4326;          /* 茶系に変更 */
  text-decoration: none;
}
.scrollable-table a:hover {
  text-decoration: underline;
}

/* 価格 */
.scrollable-table .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #d14900;           /* 深めオレンジに変更 */
  margin-top: 6px;
  display: block;
}

/* コメント（補足説明） */
.scrollable-table .comment {
  font-size: 0.9rem;
  color: #3a362e;           /* 暗め茶色に変更 */
  margin: 4px 0;
}

/* 広告全体の枠 */
.scrollable-table {
  display: inline-flex;     /* 中身をフレックスに */
  flex-direction: column;   /* 縦並び */
  align-items: center;      /* ← 横方向を中央揃え */
  padding: 12px;
  margin: 16px auto;
  background-color: #fdfaf6;
  border: 1px solid #e0d9cc;
  border-radius: 8px;
}

/* 広告本体（iframeや画像を含む部分） */
.scrollable-table iframe,
.scrollable-table img {
  max-width: 100%;   /* スマホで縮小 */
  height: auto;
  display: block;
  margin: 0 center;   /* ← これを追加すれば中央寄せできる */
}

/* スクロールヒント全体のラッパー */
.scroll-hint-icon-wrap {
  bottom: 8px;           /* 底からの距離 */
  right: 8px;            /* 右端からの距離 */
  position: absolute;
  z-index: 10;
  pointer-events: none;  /* クリックを邪魔しない */
}

/* アイコン部分 */
.scroll-hint-icon {
  background-color: rgba(0,0,0,0.5); /* 半透明の背景 */
  color: #fff;
  font-size: 10px;       /* 小さめに調整 */
  padding: 2px 6px;      /* 内側の余白 */
  border-radius: 4px;    /* 角丸 */
  display: inline-block;
}

/* テキスト部分 */
.scroll-hint-text {
  font-size: 10px;       /* 文字サイズを小さく */
  line-height: 1.2;
}