@charset "UTF-8";
/*! ========================================================================
===========================================================================

	style.css
	---------------------------
	Last Modified:	2017.5.17

===========================================================================
======================================================================== */
/* ########################################

	命名規則は "MindBEMding" を使用する
	
		B: Base
		E: Element
		M: Modifier

		ex.)
			Base = .className
			Element = .className__element
			Modifier = .className--modifier
			
		JS用クラス： js-xxxxxx, js-closeWindow, js-scroll, js-popup
		状態用クラス： is-xxxxxx, is-current, is-active, is-inactive

######################################## */
/* ========================================================================
===========================================================================

	_vars.scss
	---------------------------
	Last Modified:	2018.05.11

	INDEX:
	---------------------------
		1.	Framework
		2.	Project Setting

===========================================================================
======================================================================== */
/* ========================================================================

	1.	Framework

======================================================================== */
/*

		Neat を使用 v.2.0

*/
/* ========================================================================

	2.	Project Setting

======================================================================== */
/* ---------------------------
	モバイル設計
--------------------------- */
/* ---------------------------
	モバイル時ヘッダー表示位置指定
--------------------------- */
/* ---------------------------
	モバイル表示時ヘッダー高さ指定（指定しない場合は null）
--------------------------- */
/* ---------------------------
	サイト幅指定
--------------------------- */
/* ---------------------------
	フォントファミリー指定
--------------------------- */
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css);
/* ---------------------------
	色指定
--------------------------- */
/* ---------------------------
	メディアクエリー指定
--------------------------- */
/* ---------------------------
	Utility Class用 設定	
--------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* ---------------------------------------------------------
	 Mixin 読み込み
--------------------------------------------------------- */
/* ========================================================================
===========================================================================

	_mixins.scss
	---------------------------
	Last Modified:	2018.3.9

===========================================================================
======================================================================== */
/* ========================================================================

	2.	Mixins

======================================================================== */
/* ---------------------------
	Foundation
--------------------------- */
/* ========================================================================
===========================================================================

	_foundation.scss
	---------------------------
	Last Modified:	2016.5.18

	INDEX:
	---------------------------
		0.	Reset CSS
		1.	Set CSS

===========================================================================
======================================================================== */
/* ========================================================================

	0.	Reset CSS
	
======================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

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

textarea {
  resize: vertical;
}

/* Firefox bug fix */
@-moz-document url-prefix() {
  *:focus {
    outline: none;
  }
  img {
    box-shadow: #000 0 0 0;
  }
}

main {
  display: block;
}

/* ========================================================================

	1.	Set CSS
	
======================================================================== */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Quicksand", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  color: #333;
  -webkit-text-size-adjust: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 29px 0;
  padding: 0;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  max-width: 100%;
  height: auto;
}

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

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* ---------------------------
	Layout
--------------------------- */
#siteFooter {
  padding: 20px 0;
  background: #2aa738;
  text-align: center;
  color: #fff;
}

#siteFooter .logo {
  margin-bottom: 10px;
}

/* ========================================================================
===========================================================================

	_layout.scss
	---------------------------
	Last Modified:	2018.03.27

	INDEX:
	---------------------------
		1.	General

===========================================================================
======================================================================== */
/* ========================================================================

	1.	General
	
======================================================================== */
@media (max-width: 700px) {
  body {
    padding-top: 50px;
  }
  body.overflow-hidden {
    overflow: hidden;
  }
}

#siteWrapper {
  overflow-x: hidden;
  min-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 700px) {
  #siteWrapper {
    min-width: 0;
  }
}

.l-inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media (max-width: 700px) {
  .l-inner {
    max-width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

.l-inner--full {
  max-width: 100%;
}

.l-row::after {
  clear: both;
  content: "";
  display: block;
}

.l-row--collapse {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}

.l-grid::after {
  clear: both;
  content: "";
  display: block;
}

.l-grid--collapse {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}

#siteHeader {
  position: relative;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 700px) {
  #siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 100;
  }
}

#siteHeader .siteLogo {
  float: left;
  margin: 11px 0 14px 0;
}

@media (max-width: 700px) {
  #siteHeader .siteLogo {
    width: 170px;
    margin: 8px 0 8px 0;
  }
}

#siteHeader .annivLogo {
  float: left;
  margin: 5px 0 0 5px;
}

@media (max-width: 700px) {
  #siteHeader .annivLogo {
    width: 38px;
    margin: 10px 0 0 5px;
  }
}

#siteHeader .backToOfficialBtn {
  float: right;
  margin-top: 5px;
}

@media (max-width: 700px) {
  #siteHeader .backToOfficialBtn {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    line-height: 40px;
  }
  #siteHeader .backToOfficialBtn .icon img {
    vertical-align: baseline;
  }
}

/* ---------------------------
	Object
--------------------------- */
/* ========================================================================
===========================================================================

	_object_component.scss
	---------------------------
	Last Modified:	2016.12.14

	INDEX:
	---------------------------
		1.	Components

===========================================================================
======================================================================== */
/* ========================================================================

	1.	Components

======================================================================== */
a {
  -webkit-transition: 0.2s ease 0s;
  transition: 0.2s ease 0s;
}

a:link {
  color: #00d2f1;
}

a:visited {
  color: #3f0082;
}

a:hover {
  color: #32e5ff;
  text-decoration: none;
}

a:active {
  color: #200042;
}

.no-touch a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.heading {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: bold;
}

.heading--lv1 {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .heading--lv1 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.heading--lv2 {
  font-size: 20px;
  font-size: 2rem;
}

.heading--lv3 {
  font-size: 18px;
  font-size: 1.8rem;
}

.heading--lv4 {
  font-size: 16px;
  font-size: 1.6rem;
}

.heading--border {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #2aa738;
}

@media (max-width: 700px) {
  .heading {
    text-align: justify;
  }
}

.heading small,
.heading .small {
  display: inline-block;
  font-size: 80%;
  opacity: 0.5;
}

.btn {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 3px;
  color: #fff;
  background: #2aa738;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}

.btn:link, .btn:visited {
  color: #fff;
}

.no-touch .btn:hover {
  opacity: 1;
  background-color: #12ff2c;
}

.btn--border {
  border: 1px solid #2aa738;
  background-color: #fff;
  color: #2aa738;
}

.btn--border:link, .btn--border:visited {
  color: #2aa738;
}

.no-touch .btn--border:hover {
  background-color: #2aa738;
  color: #daf6dd;
}

.btn--conv {
  background-color: #fc0;
  color: #333;
}

.btn--conv:link, .btn--conv:visited {
  color: #333;
}

.no-touch .btn--conv:hover {
  background-color: #806600;
  color: white;
}

.media {
  margin-bottom: 29px;
}

.media__img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.media__caption {
  display: block;
  padding-top: 4px;
  font-size: 10px;
  font-size: 1rem;
  text-align: right;
}

/* Table */
table {
  width: 100%;
  margin-bottom: 29px;
  vertical-align: middle;
  text-align: left;
  font-size: 12px;
  line-height: 1.6;
}

th,
td {
  padding: 5px 10px;
  border-bottom: 1px solid #555;
}

th {
  text-align: left;
  font-weight: bold;
}

@media (max-width: 700px) {
  .table--responsive th,
  .table--responsive td {
    display: block;
  }
  .table--responsive th {
    border-bottom: none;
  }
  .table--responsive td {
    margin-bottom: 0.5em;
    padding-bottom: 1em;
    padding-left: 2em;
    border-bottom: none;
  }
}

.breadcrumbs {
  padding: 1em 1em;
}

.breadcrumbs__item {
  display: inline-block;
}

.breadcrumbs__item:after {
  content: "＞";
  margin-left: 0.25em;
}

.breadcrumbs__item:last-child:after {
  display: none;
}

.anim-shiny {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.anim-shiny:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-animation: shinyBtn 3s linear 1s infinite;
          animation: shinyBtn 3s linear 1s infinite;
}

@-webkit-keyframes shinyBtn {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes shinyBtn {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.anim-blink {
  opacity: 1;
  -webkit-animation: 1s blinkOpacity 1s infinite alternate;
          animation: 1s blinkOpacity 1s infinite alternate;
}

@-webkit-keyframes blinkOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}

@keyframes blinkOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}

[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1) inset;
          box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1) inset;
  font-size: 16px;
  font-size: 1.6rem;
  color: #0a0a0a;
  -webkit-transition: border-color 0.25s ease-in-out 0s, -webkit-box-shadow 0.5s ease 0s;
  transition: border-color 0.25s ease-in-out 0s, -webkit-box-shadow 0.5s ease 0s;
  transition: box-shadow 0.5s ease 0s, border-color 0.25s ease-in-out 0s;
  transition: box-shadow 0.5s ease 0s, border-color 0.25s ease-in-out 0s, -webkit-box-shadow 0.5s ease 0s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[type="text"]:focus, [type="password"]:focus, [type="date"]:focus, [type="datetime"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="week"]:focus, [type="email"]:focus, [type="number"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="url"]:focus, [type="color"]:focus, textarea:focus {
  background-color: #fefefe;
  border: 1px solid #8a8a8a;
  -webkit-box-shadow: 0 0 5px #cacaca;
          box-shadow: 0 0 5px #cacaca;
  outline: none;
  -webkit-transition: border-color 0.25s ease-in-out 0s, -webkit-box-shadow 0.5s ease 0s;
  transition: border-color 0.25s ease-in-out 0s, -webkit-box-shadow 0.5s ease 0s;
  transition: box-shadow 0.5s ease 0s, border-color 0.25s ease-in-out 0s;
  transition: box-shadow 0.5s ease 0s, border-color 0.25s ease-in-out 0s, -webkit-box-shadow 0.5s ease 0s;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #cacaca;
}

select {
  width: 100%;
  background-color: #fefefe;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-origin: content-box;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  border: 1px solid #cacaca;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  display: block;
}

fieldset {
  padding: 0.5em;
  border: 1px solid #cacaca;
}

legend {
  margin-bottom: 0.5em;
  margin: 0 0 -0.25em 0;
  padding: 0.5em;
  background: #fff;
}

fieldset > label {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background .2s;
  transition: background .2s;
}

fieldset > label:hover {
  background: #dfdfdf;
}

input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type="submit"], [type="button"] {
  -moz-appearance: none;
  border-radius: 0;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

[type="checkbox"] + label, [type="radio"] + label {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 0.5rem;
  margin-right: 1rem;
  vertical-align: baseline;
}

[type="checkbox"] + label[for], [type="radio"] + label[for] {
  cursor: pointer;
}

label > [type="checkbox"], label > [type="radio"] {
  margin-right: 0.5rem;
}

[type="file"] {
  width: 100%;
}

/* ========================================================================
===========================================================================

	_project.scss
	---------------------------
	Last Modified:	2018.05.11

	INDEX:
	---------------------------
		1.	Project Components

===========================================================================
======================================================================== */
/* ========================================================================

	1.	Project Components
	
======================================================================== */
.backToOfficialBtn {
  display: inline-block;
  padding: 0 30px;
  border: 1px solid #999;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  line-height: 50px;
}

@media (max-width: 700px) {
  .backToOfficialBtn {
    display: block;
    padding: 0 10px;
    line-height: 60px;
  }
}

.backToOfficialBtn:link, .backToOfficialBtn:visited {
  color: #000;
}

.no-touch .backToOfficialBtn:hover, .backToOfficialBtn:active {
  background: #ccc;
  opacity: 1;
}

.backToOfficialBtn .icon--arrow {
  margin-right: 10px;
}

.pageHeader {
  padding: 80px 0 20px;
  text-align: center;
}

.section {
  margin-bottom: 40px;
}

.text {
  margin-bottom: 1em;
  text-align: justify;
}

.notes {
  font-size: 10px;
  text-align: justify;
  line-height: 1.4;
}

.heading--strong {
  padding: 0.5em;
  background: #2aa738;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}

/* ---------------------------------------------------------
	 section-1
--------------------------------------------------------- */
@media (min-width: 701px) {
  .section-1 .row-1 .col-1 {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
  }
}

@media (max-width: 700px) {
  .section-1 .row-1 .col-1 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}

.section-1 .row-1 .col-2 {
  text-align: center;
}

@media (min-width: 701px) {
  .section-1 .row-1 .col-2 {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 700px) {
  .section-1 .row-1 .col-2 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}

@media (min-width: 701px) {
  .section-1 .row-2 .l-col {
    float: left;
    width: 270px;
    margin-right: 5px;
  }
  .section-1 .row-2 .l-col.col-1 {
    width: 450px;
  }
  .section-1 .row-2 .l-col.col-3 {
    margin-right: 0;
  }
}

@media (max-width: 700px) {
  .section-1 .row-2 .l-col.col-2, .section-1 .row-2 .l-col.col-3 {
    float: left;
    width: 48%;
  }
  .section-1 .row-2 .l-col.col-2 {
    margin-right: 4%;
  }
}

.section-1 .row-2 .image--result {
  margin-bottom: 5px;
}

@media (max-width: 700px) {
  .section-1 .row-2 .image--result {
    margin-bottom: 8%;
  }
}

.image--result .media__image img {
  width: 100%;
}

.image--result .media__caption {
  padding: 0.5em 0.5em 0.5em 0;
  background: #999;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
}

/* ---------------------------------------------------------
	 section-2
--------------------------------------------------------- */
@media (min-width: 701px) {
  .section-2 .row-1 .col-1 {
    float: left;
    width: 490px;
  }
}

@media (max-width: 700px) {
  .section-2 .row-1 .col-1 .resultTable {
    margin-bottom: 0;
  }
}

@media (min-width: 701px) {
  .section-2 .row-1 .col-2 {
    float: right;
    width: 490px;
  }
}

@media (max-width: 700px) {
  .section-2 .row-1 .col-2 .resultTable thead {
    display: none;
  }
}

@media (min-width: 701px) {
  .section-2 .row-2 .col-1 {
    float: left;
    width: 490px;
  }
}

@media (max-width: 700px) {
  .section-2 .row-2 .col-1 {
    margin-bottom: 20px;
  }
}

@media (min-width: 701px) {
  .section-2 .row-2 .col-2 {
    float: right;
    width: 490px;
  }
}

.section-2 .copy-1 {
  padding: 0.25em;
  background: #ea5504;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media (max-width: 700px) {
  .section-2 .copy-1 {
    font-size: 20px;
  }
}

.resultTable {
  width: 100%;
  table-layout: fixed;
}

.resultTable th,
.resultTable td {
  padding: 2px 4px;
  border: none;
  border-bottom: 1px solid #666;
  font-weight: normal;
  line-height: 1.2;
  color: #666;
}

@media (max-width: 700px) {
  .resultTable th,
  .resultTable td {
    font-size: 11px;
  }
}

.resultTable .result__year {
  border-right: 1px solid #666;
  width: 50px;
}

.resultTable .result__map {
  width: 40px;
  text-align: center;
}

.resultTable .result__map .number {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 1em;
  font-size: 11px;
  text-align: center;
  vertical-align: middle;
  background: #ea5504;
  line-height: 20px;
  color: #fff;
}

.resultTable .result__num {
  width: 40px;
  text-align: center;
}

@media (min-width: 701px) {
  .resultTable .result__address {
    width: 120px;
  }
}

.resultTable thead th {
  background: #999;
  color: #fff;
}

.resultTable thead .result__map {
  background: #939393;
}

.resultTable thead .result__num {
  background: #909491;
}

.resultTable tbody .result__year {
  font-size: 16px;
}

@media (max-width: 700px) {
  .resultTable tbody .result__year {
    font-size: 13px;
  }
}

.resultTable tbody .result__map {
  background: #f5f5f5;
}

.resultTable tbody .result__num {
  background: #f0f9f1;
}

/* ---------------------------------------------------------
	 footerBtnBlock
--------------------------------------------------------- */
.footerBtnBlock {
  padding: 40px 0;
  text-align: center;
}

/* ========================================================================
===========================================================================

	_object_utility.scss
	---------------------------
	Last Modified:	2017.5.17

	INDEX:
	---------------------------
		1.	Display
		2.	Font
		3.	Layout

===========================================================================
======================================================================== */
/* ========================================================================

	1.	Display
	
======================================================================== */
.u-tac {
  text-align: center !important;
}

.u-tal {
  text-align: left !important;
}

.u-tar {
  text-align: right !important;
}

.u-clear {
  clear: both !important;
}

.u-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-hidden {
  display: none !important;
}

.u-visibility-hidden {
  visibility: hidden !important;
}

.u-fl {
  float: left !important;
}

.u-fr {
  float: right !important;
}

@media (min-width: 701px) {
  .u-hidden-desktop {
    visibility: hidden !important;
    display: none !important;
  }
}

@media (max-width: 700px) {
  .u-hidden-mobile {
    visibility: hidden !important;
    display: none !important;
  }
}

/* ========================================================================

	2.	Font
	
======================================================================== */
/* Font size */
.u-fz10 {
  font-size: 10px !important;
}

.u-fz11 {
  font-size: 11px !important;
}

.u-fz12 {
  font-size: 12px !important;
}

.u-fz13 {
  font-size: 13px !important;
}

.u-fz14 {
  font-size: 14px !important;
}

.u-fz15 {
  font-size: 15px !important;
}

.u-fz16 {
  font-size: 16px !important;
}

.u-fz17 {
  font-size: 17px !important;
}

.u-fz18 {
  font-size: 18px !important;
}

.u-fz19 {
  font-size: 19px !important;
}

.u-fz20 {
  font-size: 20px !important;
}

.u-fz21 {
  font-size: 21px !important;
}

.u-fz22 {
  font-size: 22px !important;
}

.u-fz24 {
  font-size: 24px !important;
}

.u-fz28 {
  font-size: 28px !important;
}

.u-fz30 {
  font-size: 30px !important;
}

.u-fz32 {
  font-size: 32px !important;
}

.u-fz36 {
  font-size: 36px !important;
}

.u-fz40 {
  font-size: 40px !important;
}

/* Font family */
.u-ff-sans {
  font-family: "Quicksand", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.u-ff-serif {
  font-family: "Roboto Slab", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Sawarabi Mincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* ========================================================================

	3.	Layout
	
======================================================================== */
/* Element Width */
.u-w-auto {
  width: auto !important;
}

.u-w-0 {
  width: 0 !important;
}

.u-w-05p {
  width: 5% !important;
}

.u-w-10p {
  width: 10% !important;
}

.u-w-15p {
  width: 15% !important;
}

.u-w-20p {
  width: 20% !important;
}

.u-w-25p {
  width: 25% !important;
}

.u-w-30p {
  width: 30% !important;
}

.u-w-35p {
  width: 35% !important;
}

.u-w-40p {
  width: 40% !important;
}

.u-w-45p {
  width: 45% !important;
}

.u-w-50p {
  width: 50% !important;
}

.u-w-55p {
  width: 55% !important;
}

.u-w-60p {
  width: 60% !important;
}

.u-w-65p {
  width: 65% !important;
}

.u-w-70p {
  width: 70% !important;
}

.u-w-75p {
  width: 75% !important;
}

.u-w-80p {
  width: 80% !important;
}

.u-w-85p {
  width: 85% !important;
}

.u-w-90p {
  width: 90% !important;
}

.u-w-95p {
  width: 95% !important;
}

.u-w-100p {
  width: 100% !important;
}

/* Margin-Top & Padding-Top */
.u-mt-0 {
  margin-top: 0 !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-mt-auto {
  margin-top: auto !important;
}

.u-pt-auto {
  padding-top: auto !important;
}

.u-mt-S {
  margin-top: 29px !important;
}

.u-pt-S {
  padding-top: 29px !important;
}

.u-mt-M {
  margin-top: 58px !important;
}

.u-pt-M {
  padding-top: 58px !important;
}

.u-mt-L {
  margin-top: 87px !important;
}

.u-pt-L {
  padding-top: 87px !important;
}

.u-mt-XL {
  margin-top: 116px !important;
}

.u-pt-XL {
  padding-top: 116px !important;
}

/* Margin-Right & Padding-Right */
.u-mr-0 {
  margin-right: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-pr-auto {
  padding-right: auto !important;
}

.u-mr-S {
  margin-right: 29px !important;
}

.u-pr-S {
  padding-right: 29px !important;
}

.u-mr-M {
  margin-right: 58px !important;
}

.u-pr-M {
  padding-right: 58px !important;
}

.u-mr-L {
  margin-right: 87px !important;
}

.u-pr-L {
  padding-right: 87px !important;
}

.u-mr-XL {
  margin-right: 116px !important;
}

.u-pr-XL {
  padding-right: 116px !important;
}

/* Margin-Bottom & Padding-Bottom */
.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-mb-auto {
  margin-bottom: auto !important;
}

.u-pb-auto {
  padding-bottom: auto !important;
}

.u-mb-S {
  margin-bottom: 29px !important;
}

.u-pb-S {
  padding-bottom: 29px !important;
}

.u-mb-M {
  margin-bottom: 58px !important;
}

.u-pb-M {
  padding-bottom: 58px !important;
}

.u-mb-L {
  margin-bottom: 87px !important;
}

.u-pb-L {
  padding-bottom: 87px !important;
}

.u-mb-XL {
  margin-bottom: 116px !important;
}

.u-pb-XL {
  padding-bottom: 116px !important;
}

/* Margin-Left & Padding-Left */
.u-ml-0 {
  margin-left: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-pl-auto {
  padding-left: auto !important;
}

.u-ml-S {
  margin-left: 29px !important;
}

.u-pl-S {
  padding-left: 29px !important;
}

.u-ml-M {
  margin-left: 58px !important;
}

.u-pl-M {
  padding-left: 58px !important;
}

.u-ml-L {
  margin-left: 87px !important;
}

.u-pl-L {
  padding-left: 87px !important;
}

.u-ml-XL {
  margin-left: 116px !important;
}

.u-pl-XL {
  padding-left: 116px !important;
}
