﻿@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;
}

a:hover {
  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;
}

button {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

th,
td {
  vertical-align: middle;
}