@charset "UTF-8";
/*
使い方
Vertical
@include sgradient(
  $colors:(
    (#e0e0e0, 0%),
    (#f0e0e0, 100%)
  )
);

Horizontal
@include sgradient(
  $from: left,
  $colors:(
    (#fff, 0%),
    (#fff, 50%),
    (#fff, 100%)
  )
);

Diagonal
@include sgradient(
  $from: top left,
  $colors:(
    (#fff, 0%),
    (#fff, 50%),
    (#fff, 50.01%),
    (#fff, 100%)
  )
);

Radial
@include sgradient(
  $type: radial,
  $colors:(
    (#fff,0%),
    (#fff,100%)
  )
);

Radial, THREE COLORS
@include sgradient(
  $type:radial,
  $from:top right,
  $colors:(
    (#fff,0%),
    (#fff,50%),
    (#fff,100%)
  )
);
*/
/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
/*
 * Normalization
 */
:root {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

audio:not([controls]) {
  display: none;
}

details {
  display: block;
}

input[type="number"] {
  width: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
}

summary {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

template {
  display: none;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}

[unselectable] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/*
 * Universal inheritance
 */
*,
::before,
::after {
  box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
*,
::before,
::after {
  border-style: solid;
  border-width: 0;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  box-sizing: border-box;
  cursor: default;
  font: 16px/1.5 sans-serif;
  text-rendering: optimizeLegibility;
}

html {
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

::-moz-selection {
  background-color: #B3D4FC;
  text-shadow: none;
}

::selection {
  background-color: #B3D4FC;
  text-shadow: none;
}

@media screen {
  [hidden~="screen"] {
    display: inherit;
  }

  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    clip: rect(0 0 0 0) !important;
    position: absolute !important;
  }
}


/** レイアウト
********************************************/
[class*="col-"], [class*=" col-"] {
  float: left;
  -webkit-transition: 300ms ease-in-out;
          transition: 300ms ease-in-out;
}
[class*="col-"]:first-child, [class*=" col-"]:first-child {
  margin-left: 0;
}
[class*="col-"]:after, [class*="col-"]:before, [class*=" col-"]:after, [class*=" col-"]:before {
  content: "";
  display: block;
  clear: both;
}

.col {
  margin-left: 2.127659574468085%;
}

.col-1 {
  width: 6.382978723404255%;
}

.col-2 {
  width: 14.893617021276595%;
}

.col-3 {
  width: 23.404255319148934%;
}

.col-4 {
  width: 31.914893617021278%;
}

.col-5 {
  width: 40.42553191489362%;
}

.col-6 {
  width: 48.93617021276595%;
}

.col-7 {
  width: 57.44680851063829%;
}

.col-8 {
  width: 65.95744680851064%;
}

.col-9 {
  width: 74.46808510638297%;
}

.col-10 {
  width: 82.97872340425532%;
}

.col-11 {
  width: 91.48936170212765%;
}

.col-12 {
  width: 100%;
}
