/*!
Theme Name: XWRITE
Theme URI: https://xwrite.jp/
Author: XServer Inc.
Author URI: https://www.xserver.co.jp/
Description: エックスサーバー株式会社が提供するWordPressテーマ「XWRITE」
Version: 2.8.5.1
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Text Domain: xwrite
*/
.marker {
  background-image: linear-gradient(
    90deg,
    rgb(252, 214, 158) 90%,
    transparent /*好きな色*/
  );
  background-repeat: no-repeat;
  background-size: 200% 100%; /*2つ目の値でマーカーの太さを変える*/
  background-position: 0 bottom;
  animation: marker-move 3s ease 0s; /*マーカーを引く速度*/
}
@keyframes marker-move {
  0% {
    background-position: right -100% bottom;
  }
  100% {
    background-position: 0 bottom;
  }
}