/* グローバル変数 */
:root {
  --w-site: 1180px; /* サイト横幅 */
  --w-sp: 768px; /* ブレイクポイント */
  --ease: cubic-bezier(.215, .61, .355, 1); /* 標準イージング */
  --font-main: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", arial, "BIZ UDPGothic", "Noto Sans JP", meiryo, sans-serif;
  --darkgreen-color: #00441B;
  --green-color: #01723E;
  --lightgreen-color: #0E955A;
  --pink-color: #E73562;
  --lightpink-color: #EB6188;
  --palepink-color: #DB93BC;
  --cream-color: #FFF4D3;
  --yellow-color: #FFED67;
  --mint-color: #D2FFDE;
  --softpink-color: #FFD7E3;
}


/* デバイス毎の表示切り替え */
@media (width < 768px) {
  .pc {
    display: none !important;
  }
}

@media (768px <= width) {
  .sp {
    display: none !important;
  }
}

