﻿@charset "UTF-8";

:root {
  --textColor: #222222;
  --themeColor: #009844;
  --accentColor: #FF6600;
  --bgColor: #F7F7F7;
  --borderColor: #CCCCCC;
  --cartBtnColor: #006342;
}

/* --------------------------------------------------------------------
  common　共通エレメント
-------------------------------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: '游ゴシック',YuGothic,'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--textColor);
  background: #fff;
}

img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--themeColor);
}

main,
section,
h1,
h2,
h3,
h4,
h5,
figure,
nav {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: inherit;
  background: none;
}

sup {
  font-size: 0.6em;
  vertical-align: super;
}

body *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: none;
}

body *::-webkit-scrollbar-track {
  background: none;
}

body *::-webkit-scrollbar-thumb {
  background: var(--borderColor);
  border-radius: 20px;
}