@charset "utf-8";

:root {
  --pColor: #333;
  --baseColor: #6d6d6d;
  --baskerville: "baskerville-urw", serif;
  --tenMincho: "ten-mincho-text", serif;
}
.c-button {
  display: block;
  color: var(--pColor);
  font-family: var(--tenMincho);
  font-size: 1.25em;
  padding: 0.5em 1em;
  border: 1px solid var(--pColor);
  border-radius: 5px;
  text-decoration: none;
  background-color: #fff;
  width: fit-content;
  margin: 3em auto 0;
  text-align: center;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.c-button:hover {
  opacity: 0.6;
}
.c-button--small {
  font-size: 1em;
  padding: 0.5em 1.5em;
  line-height: 1.75;
  margin-top: 3em;
  letter-spacing: 0.02em;
}
.c-button--small:last-of-type {
  margin-top: 1.5em;
}

.c-button--color {
  position: relative;
  color: #fff;
  background-color: var(--baseColor);
  border: none;
  text-align: left;
  width: 10.2em;
  padding: 0.75em 1em;
}
.c-button--color::before {
  position: absolute;
  content: ">";
  text-align: center;
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 2em;
  height: 100%;
  background-color: var(--pColor);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
