/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */

/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */

/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */

*,
::before,
::after {
	background-repeat: no-repeat; /* 1 */
	box-sizing: inherit; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */

::before,
::after {
	text-decoration: inherit; /* 1 */
	vertical-align: inherit; /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */

html {
	box-sizing: border-box; /* 1 */
	cursor: default; /* 2 */
	-ms-text-size-adjust: 100%; /* 3 */
	-webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
	font-size: 2em;
	margin: .67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main { /* 1 */
	display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
	margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
	font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
	font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
	background-color: #ffff00;
	color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */

::-moz-selection {
	background-color: #b3d4fc; /* 1 */
	color: #000000; /* 1 */
	text-shadow: none;
}

::selection {
	background-color: #b3d4fc; /* 1 */
	color: #000000; /* 1 */
	text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */

/*
 * Change the alignment on media elements in all browers (opinionated).
 */

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

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
	display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

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

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
	border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg {
	fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
	overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */

/**
 * Collapse border spacing
 */

table {
	border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */

/**
 * Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */

button,
input,
select,
textarea {
	background-color: transparent;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
	-webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */

textarea {
	overflow: auto; /* 1 */
	resize: vertical; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
	display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
	display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */

/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
	touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
	display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */

/**
 * Change the cursor on busy elements (opinionated).
 */

[aria-busy="true"] {
	cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */

[aria-controls] {
	cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */

[aria-hidden="false"][hidden]:not(:focus) {
	clip: rect(0, 0, 0, 0);
	display: inherit;
	position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */

[aria-disabled] {
	cursor: default;
}

html {
  font-size: 88%;
  line-height: 1.5;
}
@media (min-width: 48em) {
  html {
    font-size: 100%;
    line-height: 1.75;
  }
}
body {
  background: #fff;
  color: #333;
  font-family: "メイリオ", sans-serif;
  word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0 0 1rem;
  padding: 0;
}
figure {
  margin: 0 0 1rem;
  padding: 0;
}
img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ol {
  padding: 0 0 0 1.5rem;
}
small {
  display: inline-block;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1rem;
}
address {
  font-style: normal;
}
a {
  color: #0059b3;
}
hr {
  border: none;
  border-top: 1px dotted rgba(0,0,0,0.2);
}
.l-wrapper {
  position: relative;
  width: 100%;
}
@media (min-width: 64em) {
  .l-wrapper {
    width: 1024px;
    margin: auto;
  }
}
.l-block {
  position: relative;
  padding: 0 1rem;
}
@media (min-width: 48em) {
  .l-block {
    padding: 0 2rem;
  }
}
@media (min-width: 64em) {
  .l-block {
    padding: 0 calc((100% - (1024px - 2rem)) / 2);
  }
}
.l-header {
  background-color: #ffea00;
  padding-top: 1rem;
}
.l-header h1 {
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #000;
  opacity: 0.5;
  font-weight: bold;
}
.l-home_header .l-navi_pc {
  position: relative !important;
}
.l-home_header .l-navi_pc .l-navi_contents {
  display: none;
}
.l-navi_sp {
  display: none;
  background-color: #0059b3;
  box-shadow: 0 0 10px 4px rgba(0,0,0,0.2);
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 58px;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 64em) {
  .l-navi_sp {
    display: none !important;
  }
}
.l-navi_sp li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin: 0;
  position: relative;
}
.l-navi_sp li:after {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.l-navi_sp a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: block;
}
.l-navi_sp span {
  display: none;
}
.l-navi_sp img {
  display: none;
}
.l-navi_pc {
  display: none;
}
@media (min-width: 64em) {
  .l-navi_pc {
    display: block;
    text-align: center;
    margin: 0 auto0;
    position: relative;
    height: 3.7rem;
    z-index: 1000;
  }
  .l-navi_pc .l-navi_global ul {
    background-color: #0059b3;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    width: 100%;
    -webkit-box-pack: space-Between;
    justify-content: space-Between;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 0.5rem 0;
  }
  .l-navi_pc .l-navi_global li {
    -webkit-box-flex: 0;
    flex: 0 0 16.66%;
    border-left: 1px solid rgba(255,255,255,0.3);
    position: relative;
  }
  .l-navi_pc .l-navi_global li:nth-of-type(1) {
    border: none;
  }
  .l-navi_pc .l-navi_global a {
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    width: 90%;
    padding: 0.75rem 0 1.25rem;
    position: relative;
  }
  .l-navi_pc .l-navi_global a:hover {
    background-color: rgba(255,255,255,0.3);
    color: #fff !important;
  }
  .l-navi_pc .l-navi_global span {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    color: #ffea00;
    font-size: 0.6rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    margin: 0;
    padding: 2.125rem 0 0.25rem;
  }
}
.l-greeting {
  position: relative;
  color: #fff;
  background-color: #0059b3;
  overflow: hidden;
}
.l-greeting .p-greeting_box {
  padding: 2rem 0 1rem;
  position: relative;
}
.l-greeting .p-greeting_img {
  background: url("../img/greeting_president_sp.png?1562227288418") no-repeat;
  background-position: right bottom;
  background-size: auto 95%;
  position: absolute;
  width: calc(100% + 1rem);
  height: 100%;
  z-index: 0;
}
.l-greeting p {
  width: 75%;
  position: relative;
  z-index: 1;
}
@media (min-width: 48em) {
  .l-greeting .p-greeting_img {
    background: url("../img/greeting_president.png?1562227288418") no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
    width: calc(100% + 1rem);
    margin-top: -1rem;
  }
  .l-greeting p {
    width: 70%;
  }
}
@media (min-width: 64em) {
  .l-greeting {
    background-image: none;
  }
  .l-greeting .p-greeting_box {
    width: 1024px;
    padding: 6rem 0 4rem;
  }
  .l-greeting .p-greeting_img {
    background-size: auto 100%;
    width: 100%;
    margin-top: -4rem;
  }
  .l-greeting p {
    width: 68%;
    font-size: 1.2rem;
  }
}
.l-enoki {
  padding-top: 1rem;
}
.l-enoki .p-enoki_profile_box {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  margin-bottom: 2rem;
}
.l-enoki .p-enoki_profile_img {
  text-align: center;
  margin-bottom: -1rem;
}
.l-enoki .p-enoki_profile_img img {
  width: 80%;
}
.l-enoki .p-enoki_profile_text {
  margin: 0 auto;
}
.l-enoki .p-enoki_profile_text section {
  background-color: #ffea00;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem 0.75rem;
}
.l-enoki .p-enoki_profile_text h3 {
  color: #fff;
  font-size: 1.5rem;
}
.l-enoki .p-enoki_profile_text p {
  margin: 0;
  font-size: 0.8rem;
}
@media (min-width: 48em) {
  .l-enoki .p-enoki_profile_box {
    display: block;
    margin-bottom: 4rem;
  }
  .l-enoki .p-enoki_profile_box:after {
    content: '';
    display: block;
    clear: both;
  }
  .l-enoki .p-enoki_profile_caption {
    float: right;
    width: 60%;
  }
  .l-enoki .p-enoki_profile_img {
    float: left;
    width: 38%;
  }
  .l-enoki .p-enoki_profile_img img {
    width: auto;
  }
  .l-enoki .p-enoki_profile_text {
    float: right;
    width: 60%;
  }
}
@media (min-width: 64em) {
  .l-enoki .p-enoki_profile_caption {
    font-size: 1.2rem;
    margin: 2rem auto 2rem;
  }
  .l-enoki .p-enoki_profile_img {
    margin-top: -2rem;
  }
  .l-enoki .p-enoki_profile_text p {
    font-size: 1rem;
  }
}
.l-enoki .p-enoki_schedule_box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  width: 100%;
}
.l-enoki .p-enoki_schedule_time {
  position: relative;
  width: 20%;
}
.l-enoki .p-enoki_schedule_time p {
  background-color: #0059b3;
  color: #fff;
  border-radius: 2rem;
  text-align: center;
  font-size: 0.8rem;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  line-height: 1;
}
.l-enoki .p-enoki_schedule_time .p-enoki_schedule_line {
  background: url("../img/enoki_schedule_line.png?1562227288418") repeat-y center top;
  background-size: 0.5rem 1.5rem;
  display: block;
  height: calc(100% - 4rem);
}
.l-enoki .p-enoki_schedule_detail {
  width: 80%;
  overflow: hidden;
  padding-left: 1rem;
}
.l-enoki .p-enoki_schedule_detail figure {
  margin: 0;
}
.l-enoki .p-enoki_schedule_detail img {
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}
.l-enoki .p-enoki_schedule_detail h3 {
  color: #0059b3;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.l-enoki .p-enoki_schedule_detail p {
  margin-bottom: 2rem;
}
.l-enoki .p-enoki_schedule_detail p:after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 48em) {
  .l-enoki .p-enoki_schedule_time p {
    font-size: 1.25rem;
    margin: 0 2rem 0.5rem 0;
  }
  .l-enoki .p-enoki_schedule_detail {
    padding-left: 2rem;
  }
  .l-enoki .p-enoki_schedule_detail figure {
    float: left;
    margin: 0 1rem 2rem 0;
    width: 40%;
  }
  .l-enoki .p-enoki_schedule_detail img {
    width: auto;
  }
  .l-enoki .p-enoki_schedule_detail h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 64em) {
  .l-enoki .p-enoki_schedule_time p {
    font-size: 1.5rem;
    margin: 0 2rem 1rem 0;
  }
  .l-enoki .p-enoki_schedule_detail {
    padding-left: 4rem;
  }
  .l-enoki .p-enoki_schedule_detail figure {
    margin: 0 1.5rem 2rem 0;
  }
}
.l-enoki_interview {
  background-color: #ffea00;
  border-top: 1rem solid #fff;
  padding-bottom: 2rem;
}
.l-enoki_interview .p-enoki_interview {
  margin: -1rem auto 0;
}
.l-enoki_interview .p-enoki_interview_caption {
  position: relative;
  z-index: 0;
}
.l-enoki_interview .p-enoki_interview_flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.l-enoki_interview .p-enoki_interview_item {
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  margin-bottom: 1rem;
  padding: 1rem 1rem 0;
}
.l-enoki_interview .p-enoki_interview_item h3 {
  color: #0059b3;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 64em) {
  .l-enoki_interview {
    border-top: 2rem solid #fff;
  }
  .l-enoki_interview .p-enoki_interview {
    margin: -2rem auto 0;
  }
  .l-enoki_interview .p-enoki_interview_item {
    flex-basis: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    padding: 1.5rem 1.5rem 0.5rem;
  }
  .l-enoki_interview .p-enoki_interview_item h3 {
    font-size: 1.75rem;
  }
}
.l-message {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.l-message section {
  flex-basis: calc((100% / 3) - 1rem);
  margin-bottom: 3rem;
}
.l-message img {
  margin-bottom: 1rem;
  border-radius: 0.75rem;
}
.l-message h3 {
  color: #0059b3;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.l-message span {
  display: block;
  color: #0059b3;
  margin-bottom: 0.5rem;
}
.l-careerup {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #006dda;
}
.l-careerup h2 {
  color: #fff;
}
.l-careerup p {
  color: #fff;
  margin: 0 auto 2rem;
}
.l-careerup img {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
@media (min-width: 64em) {
  .l-careerup p {
    width: 70%;
  }
}
.l-question {
  background-color: #ffea00;
  padding-top: 1rem;
  padding-bottom: 4rem;
}
.l-question section {
  background-color: #fff;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem 1rem 0.25rem;
}
.l-question h3 {
  color: #0059b3;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
@media (min-width: 48em) {
  .l-question section {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
  }
  .l-question h3 {
    font-size: 1.5rem;
  }
  .l-question p {
    font-size: 1.2rem;
  }
}
.l-request {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.l-request .p-request_pamphlet {
  width: 80%;
  margin: 0 auto 1rem;
}
@media (min-width: 48em) {
  .l-request {
    padding-bottom: 2rem;
  }
  .l-request .p-request_flex {
    display: -webkit-box;
    display: flex;
  }
  .l-request .p-request_pamphlet {
    -webkit-box-flex: 0;
    flex: 0 1 40%;
    margin: 0 1rem 0 0;
  }
  .l-request .p-request_button {
    -webkit-box-flex: 0;
    flex: 0 1 60%;
  }
  .l-request .p-request_button:hover {
    opacity: 0.9;
  }
}
@media (min-width: 64em) {
  .l-request {
    padding-bottom: 4rem;
  }
}
.l-button {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
@media (min-width: 48em) {
  .l-button h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 48em) {
  .l-button {
    padding-bottom: 4rem;
  }
}
.l-footer {
  padding-bottom: 1rem;
  text-align: center;
}
.l-footer_img {
  margin-bottom: 2rem;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.l-footer_link {
  border: 4px solid #0f2381;
  border-radius: 4rem;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  cursor: pointer;
}
.l-footer_link:hover {
  border: 4px solid #009a00;
}
.l-footer_link:hover a:hover {
  color: #009a00;
}
.l-footer_link a {
  text-decoration: none;
  display: block;
  color: #0f2381;
  width: 100%;
  height: 100%;
}
.l-footer_link img {
  height: 4rem;
  position: relative;
  z-index: -1;
}
@media (min-width: 64em) {
  .l-footer_link {
    width: 40%;
    margin: 0 auto 2rem;
  }
}
.l-footer_copyright {
  font-size: 0.8rem;
  color: #333;
  text-align: center;
  margin: 0;
}
.c-box_content {
  margin: 0 auto;
  padding: 0.5rem 0 2rem;
}
@media (min-width: 64em) {
  .c-box_content {
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
  }
}
.c-box_text {
  margin-bottom: 2rem;
}
@media (min-width: 64em) {
  .c-box_text {
    width: 42rem;
    margin: 0 auto 4rem;
  }
}
@media (min-width: 48em) {
  .c-box_message {
    text-align: center;
    margin: 1rem 0 4rem;
  }
}
@media (min-width: 48em) {
  .c-box_caption {
    text-align: left;
    margin: 1rem 0 2rem;
  }
}
.c-title {
  color: #0059b3;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  padding: 0.25rem;
  margin: 0 auto;
  padding: 2rem 0;
  line-height: 1;
}
@media (min-width: 64em) {
  .c-title {
    font-size: 3rem;
    padding: 4rem 0;
  }
}
.c-title:after {
  display: block;
  content: "";
  background: url("../img/title_line.png?1562227288418") repeat-x;
  background-size: auto 3rem;
  height: 1rem;
  margin: 0.5rem auto 0;
}
@media (min-width: 64em) {
  .c-title:after {
    background-size: auto 4rem;
    height: 1.5rem;
  }
}
.l-enoki .c-title:after {
  width: calc(1.75 * 9rem);
}
@media (min-width: 64em) {
  .l-enoki .c-title:after {
    width: calc(3 * 9rem);
  }
}
.l-message .c-title:after {
  width: calc(1.75 * 10rem);
}
@media (min-width: 64em) {
  .l-message .c-title:after {
    width: calc(3 * 10rem);
  }
}
.l-careerup .c-title:after {
  width: calc(1.75 * 7.2rem);
}
@media (min-width: 64em) {
  .l-careerup .c-title:after {
    width: calc(3 * 7rem);
  }
}
.l-question .c-title:after {
  width: calc(1.75 * 7.2rem);
  -webkit-filter: brightness(1000);
  filter: brightness(1000);
}
@media (min-width: 64em) {
  .l-question .c-title:after {
    width: calc(3 * 7rem);
  }
}
.l-request .c-title:after {
  width: calc(1.75 * 5rem);
}
@media (min-width: 64em) {
  .l-request .c-title:after {
    width: calc(3 * 5rem);
  }
}
.c-title_content {
  border-bottom: 4px solid;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #0059b3), color-stop(50%, #222));
  -webkit-border-image: linear-gradient(to right, #0059b3 50%, #222 50%);
  -o-border-image: linear-gradient(to right, #0059b3 50%, #222 50%);
  border-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #0059b3), color-stop(50%, #222));
  border-image: linear-gradient(to right, #0059b3 50%, #222 50%);
  border-image-slice: 1;
  font-size: 6vmin;
  font-weight: normal;
  margin: 1rem auto;
  text-align: center;
  position: relative;
}
@media (min-width: 64em) {
  .c-title_content {
    font-size: 2.25rem;
    width: 38rem;
    margin: 1rem auto 2rem;
  }
}
.c-title_sub {
  color: #0059b3;
  font-weight: normal;
  font-size: 1.25rem;
  padding-left: 1.25rem;
  text-indent: -1.25rem;
  margin-bottom: 1rem;
}
.c-title_sub:before {
  content: '■';
  font-family: sans-serif;
}
.c-title_small {
  color: #ffbf00;
  font-weight: normal;
  font-size: 1.125rem;
  padding-left: 1.25rem;
  text-indent: -1.25rem;
  margin-bottom: 1rem;
}
.c-title_block {
  color: #0059b3;
  font-size: 1.75rem;
  font-weight: normal;
  letter-spacing: 0.125rem;
  line-height: 1.2;
  margin: 1rem auto;
  padding: 0;
  text-align: center;
  position: relative;
}
.c-title_block span {
  display: block;
  color: #999;
  font-size: 1rem;
  font-weight: normal;
}
@media (min-width: 64em) {
  .c-title_block {
    font-size: 2rem;
  }
}
.c-flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-flex_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.c-flex_center {
  -webkit-box-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .c-flex_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-flex_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-flex_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-flex_1_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(25% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_1_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(25% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_1_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(25% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-flex_3_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(75% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_3_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(75% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_3_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(75% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_tab {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 48em) {
  .c-flex_tab_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_tab_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_tab_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_tab_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 48em) {
  .c-flex_tab_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_tab_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_pc {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 64em) {
  .c-flex_pc_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_pc_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 64em) {
  .c-flex_pc_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 1rem 0;
  }
}
.c-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-grid_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.c-grid_center {
  -webkit-box-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .c-grid_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-grid_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-grid_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-grid_1_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(25% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_1_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(25% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_1_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(25% - .5rem);
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .c-grid_3_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(75% - .25rem);
    margin: 0.25rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_3_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(75% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_3_4 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(75% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_tab {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 48em) {
  .c-grid_tab_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_tab_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_tab_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_tab_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 48em) {
  .c-grid_tab_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 0.5rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_tab_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_pc {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 64em) {
  .c-grid_pc_1_2 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(50% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_pc_1_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(33.33% - .5rem);
    margin: 1rem 0;
  }
}
@media (min-width: 64em) {
  .c-grid_pc_2_3 {
    -webkit-box-flex: 0;
    flex: 0 1;
    flex-basis: calc(66.66% - .5rem);
    margin: 1rem 0;
  }
}
.c-btn {
  background: #009a00;
  border-radius: 0.75rem;
  box-shadow: 0px 4px 0px #360;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin: 0.5rem auto 0.5rem;
  position: relative;
  width: 100%;
}
.c-btn a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.c-btn a:hover {
  background: #59b300;
  border-radius: 0.75rem;
  box-shadow: 0px 4px 0px #360;
}
.c-btn h4 {
  font-size: 2rem;
  font-weight: normal;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 0.75rem;
}
.c-btn p {
  margin: 0;
}
@media (min-width: 48em) {
  .c-btn a {
    padding: 1.5rem 1rem;
  }
}
.c-form {
  margin: 0 auto 4rem;
  text-align: center;
}
.c-form input {
  width: 100%;
  border: 2px solid #ddd;
  margin: 0.25rem auto;
  padding: 0.5rem;
  line-height: 1.2;
}
.c-form input::-webkit-input-placeholder {
  color: #aaa;
}
.c-form input::-moz-placeholder {
  color: #aaa;
}
.c-form input:-ms-input-placeholder {
  color: #aaa;
}
.c-form input::-ms-input-placeholder {
  color: #aaa;
}
.c-form input::placeholder {
  color: #aaa;
}
.c-form input[type="radio"] {
  width: auto;
}
.c-form select {
  border: 2px solid #ddd;
  margin: 0.25rem auto;
  padding: 0.25rem;
}
.c-form label {
  margin: 0 1.5rem 0 0;
}
.c-form textarea {
  border: 2px solid #ddd;
  width: 100%;
  height: 8rem;
  margin: 0.5rem auto;
  padding: 0.5rem;
}
.c-form .c-form_required {
  background-color: #c00;
  border-radius: 0.25rem;
  display: inline-block;
  color: #fff;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  vertical-align: middle;
}
.c-form .c-form_required:before {
  content: "必須";
}
.c-form_unit {
  display: inline-block;
  margin: 0 0.125rem 0 0.25rem;
}
@media (min-width: 48em) {
  .c-form_unit {
    margin: 0 0.5rem 0 0.25rem;
  }
}
.c-form_btn_box {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  width: 80%;
  margin: auto;
  text-align: center;
}
@media (min-width: 48em) {
  .c-form_btn_box {
    width: 40%;
    margin: 0 auto;
  }
}
input.c-form_btn {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-color: #ffc000;
  border-radius: 4px;
  border: none;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.1);
  color: #333;
  width: inherit;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 1rem;
  text-indent: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 1rem 2rem;
  margin: 0.5rem 1rem;
}
@media (min-width: 64em) {
  input.c-form_btn {
    padding: 1.25rem 1rem;
    margin: 2rem 1rem;
  }
}
input.c-form_btn:hover {
  background-color: rgba(255,192,0,0.9);
}
.c-list li {
  margin-left: 1.5rem;
}
.c-list_spacing li {
  margin: 1rem auto;
}
.c-list_bracket li {
  text-indent: -3rem;
  margin: 0.5rem 0 0.5rem 3rem;
}
.c-list_box section {
  margin: 2rem 0;
}
.c-list_box ul,
.c-list_box ol {
  margin: 1rem 0;
  padding: 0;
}
.c-list_box ul {
  list-style: disc;
}
.c-list_box li {
  margin: 1rem 0;
  margin-left: 1.5rem;
  padding: 0;
}
.c-table_vertical {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto 2rem;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: 0;
}
.c-table_vertical caption {
  background-color: #f7f7f9;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
.c-table_vertical th {
  display: block;
  background-color: #f7f7f9;
  font-weight: normal;
  letter-spacing: 0.1rem;
  padding: 0.5rem;
  text-align: left;
}
.c-table_vertical td {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 0.5rem;
  text-align: left;
}
@media (min-width: 64em) {
  .c-table_vertical {
    border-collapse: collapse;
    border-spacing: 0;
  }
  .c-table_vertical caption {
    font-size: 1.5rem;
  }
  .c-table_vertical th,
  .c-table_vertical td {
    border: 1px solid #ccc;
  }
  .c-table_vertical th {
    display: table-cell;
    text-align: left;
    padding: 1rem 1rem;
    width: auto;
    white-space: nowrap;
  }
  .c-table_vertical td {
    display: table-cell;
    padding: 1rem 1rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-table_caption {
    display: none;
  }
}
.c-table_horizontal {
  margin: 0 auto 2rem;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.c-table_horizontal caption {
  background-color: #da0000;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.25rem 0;
}
.c-table_horizontal th,
.c-table_horizontal td {
  text-align: left;
  line-height: 1.5;
  padding: 0.5rem;
  display: block;
}
.c-table_horizontal th {
  background-color: #0085b2;
  color: #fff;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 64em) {
  .c-table_horizontal caption {
    font-size: 1.5rem;
  }
  .c-table_horizontal th,
  .c-table_horizontal td {
    display: table-cell;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 64em) {
  .c-table_w80 {
    width: 80%;
    margin: auto;
  }
}
.c-table_scroll_box {
  overflow: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.c-table_scroll_box::-webkit-scrollbar {
/*tableにスクロールバーを追加*/
  height: 0.5rem;
}
.c-table_scroll_box::-webkit-scrollbar-track {
/*tableにスクロールバーを追加*/
  background: #eee;
}
.c-table_scroll_box::-webkit-scrollbar-thumb {
/*tableにスクロールバーを追加*/
  background: #ccc;
  border-radius: 0.5rem;
}
.c-table_scroll_box table {
  margin-bottom: 0;
}
.c-table_scroll_box td {
  white-space: nowrap;
}
.c-table_style_01 {
  margin: 0 auto 2rem;
}
.c-table_style_01 th {
  display: block;
  border-bottom: 1px solid #eee;
  color: #0059b3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  padding: 0.25rem 0 0.25rem 0.5rem;
  text-align: left;
}
.c-table_style_01 td {
  display: block;
  padding: 0.5rem 0 1rem 0.5rem;
  text-align: left;
}
@media (min-width: 64em) {
  .c-table_style_01 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }
  .c-table_style_01 th,
  .c-table_style_01 td {
    border: 1px solid #0059b3;
  }
  .c-table_style_01 th {
    display: table-cell;
    background-color: rgba(133,178,0,0.1);
    color: #0059b3;
    width: 12rem;
    text-align: center;
    padding: 0;
  }
  .c-table_style_01 td {
    display: table-cell;
    padding: 1rem 1.5rem;
  }
}
.c-table_style_02 {
  margin: 0 auto 2rem;
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table_style_02 caption {
  background-color: #0059b3;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
.c-table_style_02 th,
.c-table_style_02 td {
  border: 1px solid #0059b3;
}
.c-table_style_02 th {
  display: block;
  background-color: rgba(133,178,0,0.1);
  color: #0059b3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  margin-bottom: -1px;
  padding: 0.25rem 0 0.25rem 0.5rem;
  text-align: left;
}
.c-table_style_02 td {
  display: block;
  margin-bottom: -1px;
  padding: 0.5rem 0 1rem 0.5rem;
  text-align: left;
}
.c-table_style_02 td p:nth-last-of-type(1) {
  margin: 0;
  padding: 0;
}
@media (min-width: 64em) {
  .c-table_style_02 caption {
    font-size: 1.5rem;
  }
  .c-table_style_02 th {
    display: table-cell;
    background-color: rgba(133,178,0,0.1);
    color: #0059b3;
    width: 12rem;
    text-align: center;
    padding: 0;
  }
  .c-table_style_02 td {
    display: table-cell;
    padding: 1rem 1rem;
  }
}
.c-table_style_03 {
  margin: 0 auto 2rem;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.c-table_style_03 caption {
  background-color: #0059b3;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
.c-table_style_03 th,
.c-table_style_03 td {
  border: 1px solid #0059b3;
}
.c-table_style_03 th {
  background-color: rgba(133,178,0,0.1);
  color: #0059b3;
  font-weight: normal;
  padding: 0.5rem;
  text-align: center;
}
.c-table_style_03 td {
  padding: 0.5rem;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 64em) {
  .c-table_style_03 {
    width: 50%;
    margin-right: 2rem;
  }
  .c-table_style_03 caption {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }
}
.c-gmap {
  border: 2px solid #fff;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem auto;
}
.c-gmap iframe,
.c-gmap object,
.c-gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 64em) {
  .c-gmap {
    height: 400px;
    padding: 0;
  }
}
.p-page_title_about {
  background: url("/img/page_title_about.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_access {
  background: url("/img/page_title_access.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_aozora {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_entry {
  background: url("/img/page_title_recruit.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_facility {
  background: url("/img/page_title_access.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_gairai {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_inquiry {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_miyamaki {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_nyuuin {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_privacy {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_recruit {
  background: url("/img/page_title_recruit.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_soudan {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-page_title_tour {
  background: url("/img/page_title_nyuuin.jpg?1562227288418") no-repeat center top/cover;
}
.p-pagetop {
  display: none;
  position: fixed;
  z-index: 1000;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 3rem;
  height: 3rem;
  line-height: 1;
  font-size: 0;
  padding-top: 1.25rem;
  background-color: #0059b3;
  opacity: 0.8;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 64em) {
  .p-pagetop {
    right: 1rem;
    bottom: 1rem;
  }
}
.p-pagetop:after {
  display: block;
  content: '';
  margin: 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-pagetop:hover {
  opacity: 0.7;
}
.p-toglebtn {
  background: #0059b3 url("../img/btn_menu.png?1562227288418") no-repeat;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0.125rem;
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
}
@media (min-width: 64em) {
  .p-toglebtn {
    display: none !important;
  }
}
.p-toglebtn_scroll {
  width: 3rem;
  height: 3rem;
  opacity: 0.8;
}
.u-fz_08 {
  font-size: 0.8rem;
}
.u-fz_09 {
  font-size: 0.9rem;
}
.u-fz_10 {
  font-size: 1rem;
}
.u-fz_12 {
  font-size: 1.2rem;
}
.u-fz_15 {
  font-size: 1.5rem;
}
.u-ff_mincho {
  font-family: "Sawarabi Mincho", serif,;
}
.u-no_spacing {
  letter-spacing: 0 !important;
}
.u-fc_white {
  color: #fff;
}
.u-fc_black {
  color: #111;
}
.u-fc_red {
  color: #e00;
}
.u-fc_blue {
  color: #00e;
}
.u-fw_bold {
  font-weight: bold;
}
.u-notice {
  color: #c00;
  font-weight: bold;
}
@media (min-width: 64em) {
  .u-br_sp {
    display: none;
  }
}
.u-br_tab {
  display: none;
}
@media (min-width: 48em) {
  .u-br_tab {
    display: block;
  }
}
.u-br_pc {
  display: none;
}
@media (min-width: 64em) {
  .u-br_pc {
    display: block;
  }
}
@media (min-width: 64em) {
  .u-pb1_pc {
    padding-bottom: 1rem;
  }
}
.u-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.u-round {
  border: none;
  border-radius: 0.5rem;
}
.u-text_center {
  text-align: center;
}
.u-text_left {
  text-align: left;
}
.u-text_right {
  text-align: right;
}
.u-align_center {
  text-align: center;
}
.u-align_left {
  text-align: left;
}
.u-align_right {
  text-align: right;
}
.u-w100 {
  width: 100% !important;
}
@media (min-width: 64em) {
  .u-w80 {
    width: 80% !important;
  }
}
@media (min-width: 64em) {
  .u-w50 {
    width: 50% !important;
  }
}
.u-mb0 {
  margin-bottom: 0 !important;
}
.u-mb05 {
  margin-bottom: 0.5rem !important;
}
.u-mb1 {
  margin-bottom: 1rem !important;
}
.u-mb2 {
  margin-bottom: 2rem !important;
}
.u-mb3 {
  margin-bottom: 3rem !important;
}
.u-mb4 {
  margin-bottom: 4rem !important;
}
.u-mb-1 {
  margin-bottom: -1rem !important;
}
.u-mb-2 {
  margin-bottom: -2rem !important;
}
.u-pb0 {
  padding-bottom: 0 !important;
}
.u-mt-1 {
  margin-top: -1rem !important;
}
.u-mt-2 {
  margin-top: -2rem !important;
}
.u-th_align_left th {
  text-align: left !important;
}
.u-th_align_right th {
  text-align: right !important;
}
.u-th_align_center th {
  text-align: center !important;
}
.u-th_nowrap th {
  white-space: nowrap !important;
}
.u-td_align_left td {
  text-align: left !important;
}
.u-td_align_right td {
  text-align: right !important;
}
.u-td_align_center td {
  text-align: center !important;
}
.u-td_nowrap td {
  white-space: nowrap !important;
}
.u-hover:hover {
  opacity: 0.9;
}
.u-hidden {
  visibility: hidden;
}
.u-hide {
  display: none;
}
@media (max-width: 767px) {
  .u-sp_hide {
    display: none;
  }
}
@media (min-width: 64em) {
  .u-pc_hide {
    display: none;
  }
}
.u-bg_hidden {
  background: none !important;
}
.u-tag_red {
  display: inline-block;
  background-color: #ff9326;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1rem;
  margin-right: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.is-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 976px !important;
  margin: 0 auto;
  z-index: 1000;
}
.is-hover {
  opacity: 0.8;
}
.is-hide {
  display: none;
}
.js-fadein {
  opacity: 0;
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}
.js-fadein {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
.page-home_partner {
  background: url("/img/home_partner_back.jpg?1562227288418") center bottom no-repeat;
  background-size: 100% auto;
}
@media (min-width: 64em) {
  .page-home_partner {
    padding-bottom: 3rem;
  }
}
.page-home_merit h2 {
  margin-bottom: 2rem;
}
@media (min-width: 64em) {
  .page-home_merit h2 {
    margin-bottom: 4rem;
  }
}
.page-home_feature {
  background: url("/img/home_feature_back.jpg?1562227288418") center bottom no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 48em) {
  .page-home_feature .page-home_feature_box {
    margin-top: -1rem;
  }
}
.page-home_movie {
  background: url("/img/home_movie_back.jpg?1562227288418") center bottom no-repeat;
  background-size: 100% 100%;
  text-align: center;
}
.page-home_movie h2 {
  color: #fff;
}
.page-home_movie .page-home_movie_box {
  border: 4px solid #fff;
  position: relative;
  margin: 2rem auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page-home_movie .page-home_movie_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 64em) {
  .page-home_movie .page-home_movie_box {
    width: 800px;
    height: 450px;
    padding: 0;
  }
}
.page-home_products {
  background-color: #f3f3f3;
}
.page-home_products .page-home_products_box {
  background-color: #fff;
  border: 1px solid #ccc;
  padding-bottom: 3rem;
  margin-bottom: 1rem;
  position: relative;
}
.page-home_products .page-home_products_box figure {
  padding: 0.5rem;
  margin: 0;
}
.page-home_products .page-home_products_box figure a {
  display: block;
}
.page-home_products .page-home_products_box figure a:hover {
  opacity: 0.9;
}
.page-home_products .page-home_products_box dl {
  background-color: #0059b3;
  padding: 0.25rem 0.5rem;
  color: #fff;
  margin: 0;
  text-align: center;
}
.page-home_products .page-home_products_box dt {
  background-color: #b41513;
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1rem;
  padding: 0.25rem 0.25rem;
  margin: 0;
}
.page-home_products .page-home_products_box dd {
  display: inline-block;
  padding: 0.25rem 0.25rem;
  margin: 0;
}
.page-home_products .page-home_products_box dd:nth-of-type(1) {
  margin-right: 1rem;
}
.page-home_products .page-home_products_box p {
  text-align: center;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.page-home_products .page-home_products_box p span {
  display: block;
  padding-top: 0.5rem;
}
.page-home_products .page-home_products_btn {
  display: block;
  background-color: #fff;
  border: 1px solid #0059b3;
  color: #0059b3;
  width: 9rem;
  margin: 0 auto;
  padding: 0.25rem;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}
.page-home_products .page-home_products_btn:hover {
  background-color: #0059b3;
  color: #fff;
}
.page-home_products .page-home_products_btn:after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  margin-top: -0.25rem;
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-left: 1px solid #0059b3;
  border-top: 1px solid #0059b3;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.page-home_products .page-home_products_btn:hover:after {
  border-color: #fff;
}
.page_home_flow_box {
  border: 1px solid #0059b3;
  text-align: center;
  position: relative;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.page_home_flow_box h3 {
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0.5rem auto 0;
}
.page_home_flow_box:after {
  content: '';
  display: block;
  background: linear-gradient(45deg, #fff 50%, #0059b3 50%);
  width: 1rem;
  height: 1rem;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  margin-left: -0.5rem;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: -1;
}
@media (min-width: 64em) {
  .page_home_flow_box {
    margin: 0 2rem 2rem 0;
    padding: 1rem 1rem 0;
  }
  .page_home_flow_box:nth-last-of-type(1) {
    margin-right: 0;
  }
  .page_home_flow_box:after {
    bottom: 50%;
    right: -1.25rem;
    left: auto;
    margin: 0 0 -0.5rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.page_home_flow_box:nth-last-of-type(1) {
  background-color: rgba(218,0,0,0.03);
}
.page_home_flow_box:nth-last-of-type(1):after {
  display: none;
}
.page_home_flow_number {
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  padding: 0.25rem 3rem 0rem 0.5rem;
  margin: 0;
  overflow: hidden;
}
.page_home_flow_number:before {
  content: '';
  display: block;
  background-color: #0059b3;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: -6rem;
  left: -5rem;
  z-index: -1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page-home_news {
  margin: 1rem auto 1rem;
}
.page-home_news h2 {
  margin-bottom: 1rem;
}
.page-home_news dl {
  margin: 0;
  padding: 0;
}
.page-home_news dt {
  color: #0059b3;
  margin: 0 0 0.25rem;
  line-height: 1.5rem;
}
.page-home_news dd {
  margin: 0 0 1rem;
  padding: 0 0 0.5rem;
  line-height: 1.5rem;
  border-bottom: 1px dotted #ccc;
}
.page-home_news dd span {
  display: inline-block;
  background-color: #0059b3;
  color: #fff;
  font-size: 0.8rem;
  margin: 0 0.5rem 0 0;
  padding: 0 0.5rem;
  line-height: 1.5rem;
}
@media (min-width: 48em) {
  .page-home_news {
    margin: 4rem auto 0;
  }
  .page-home_news h2 {
    margin-bottom: 2rem;
  }
  .page-home_news dl {
    width: 70%;
    margin: 0 auto;
    padding: 0;
  }
  .page-home_news dt {
    float: left;
    clear: both;
    line-height: 1.8rem;
  }
  .page-home_news dd {
    margin: 0 0 1.5rem 7rem;
    padding: 0 0 1rem;
    line-height: 1.8rem;
  }
}
.page-products_name {
  margin-bottom: 1rem;
}
.page-products_name h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
@media (min-width: 48em) {
  .page-products_name h3 {
    font-size: 1.75rem;
    text-align: center;
  }
  .page-products_name p {
    text-align: center;
  }
}
.page-products_photo {
  text-align: center;
  margin-bottom: 1rem;
}
.page-products_description > div {
  padding: 1rem 0;
}
.page-products_description h4 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .page-products_description h4 {
    font-size: 1.5rem;
  }
}
.page-products_spec table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 2rem auto 2rem;
  width: 100%;
  border: 1px solid #ccc;
}
.page-products_spec caption {
  background-color: #dfdfdf;
  border: 1px solid #ccc;
  border-bottom: none;
  font-size: 1.25rem;
  padding: 1rem;
}
.page-products_spec th,
.page-products_spec td {
  display: block;
  border-top: 1px solid #ccc;
  text-align: left;
  padding: 0.5rem;
  font-weight: normal;
}
.page-products_spec th {
  background-color: #eee;
  display: block;
}
.page-products_spec td.page-products_spec_col2 {
  width: 50%;
}
@media (min-width: 48em) {
  .page-products_spec table {
    width: 100%;
    margin: 4rem auto 4rem;
  }
  .page-products_spec th,
  .page-products_spec td {
    display: table-cell;
    border: 1px solid #ccc;
    padding: 1rem 2rem;
  }
  .page-products_spec th {
    white-space: nowrap;
  }
  .page-products_spec td {
    width: 100%;
  }
}
.page-contact .c-page_title {
  background: url("/img/page_title_contact.jpg?1562227288418") no-repeat center top;
  background-size: cover;
}
.page-contact .p-message_block {
  background: url("/img/back_form.jpg?1562227288418") no-repeat bottom;
  margin-bottom: 2rem;
  padding: 1rem;
}
.page-contact .p-message_block .p-message_inner {
  background-color: rgba(255,255,255,0.8);
  padding: 1rem;
}
.page-contact .p-message_block hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 1.5rem auto;
}
.page-contact .p-message_block h3 {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 64em) {
  .page-contact .p-message_block {
    padding: 3rem;
    margin-bottom: 4rem;
  }
  .page-contact .p-message_block .p-message_inner {
    padding: 2rem 4rem;
  }
}
.page-contact form {
  text-align: center;
}
.page-contact form table {
  width: 100%;
}
.page-contact form input {
  width: 90%;
  border: 2px solid #ddd;
  padding: 0.5rem;
  line-height: 1;
}
.page-contact form input::-webkit-input-placeholder {
  color: #ccc;
}
.page-contact form input::-moz-placeholder {
  color: #ccc;
}
.page-contact form input:-ms-input-placeholder {
  color: #ccc;
}
.page-contact form input::-ms-input-placeholder {
  color: #ccc;
}
.page-contact form input::placeholder {
  color: #ccc;
}
.page-contact form input[type="submit"],
.page-contact form input[type="button"] {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffbf00), to(#ff9326));
  background: linear-gradient(#ffbf00, #ff9326);
  border: 2px solid #fff;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
  max-width: 16rem;
  color: #333;
  height: 4rem;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  margin: -1rem 1rem 2rem;
}
.page-contact form input[type="submit"] :hover,
.page-contact form input[type="button"] :hover {
  border: 1px solid #f00;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff9326), to(#ffbf00));
  background: linear-gradient(#ff9326, #ffbf00);
}
.page-contact form textarea {
  border: 2px solid #ddd;
  width: 90%;
  height: 8rem;
  padding: 0.5rem;
}
.page-contact form .p-subtitle {
  color: #0059b3;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
.page-contact form .msg {
  color: #a00;
}
@media (min-width: 64em) {
  .page-contact form table {
    width: 80%;
    margin-bottom: 3rem;
  }
  .page-contact form td {
    border: 1px solid #ccc;
  }
  .page-contact form input[type="submit"] {
    width: 16rem;
    font-size: 1.2rem;
    margin: 0 auto 2rem;
  }
}
@font-face {
  font-family: 'fontello';
  src: url("../font/fontello.eot?83261829");
  src: url("../font/fontello.eot?83261829#iefix") format('embedded-opentype'), url("../font/fontello.woff2?83261829") format('woff2'), url("../font/fontello.woff?83261829") format('woff'), url("../font/fontello.ttf?83261829") format('truetype'), url("../font/fontello.svg?83261829#fontello") format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
/* fix buttons height, for twitter bootstrap */
  line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
  margin-left: 0em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-clock:before {
  content: '\e800';
}
/*# sourceMappingURL=style.css.map */
