@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
    ## Comments
# Infinite scroll
# Media
    ## Captions
    ## Galleries
# Grid Supplement
# Utility
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

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

mark {
	background: #ff0;
	color: #000;
}

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 {
	border: 0;
}

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

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

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

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

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

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

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

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea,
.pure-g [class *= "pure-u"] {
	color: #000;
	font-family: sans-serif;
	font-size: 17px;
	font-size: 1.0625rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: monospace;
	font-size: 16px;
	font-size: 0.94118rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 16px;
	font-size: 0.94118rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

html, body {
	overflow-x: hidden;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li {
	line-height: 1.3em;
	margin-bottom: .2em;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 17px;
	font-size: 1.0625rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #333;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.mw_wp_form .inner {
	margin-top: 3em;
}

.mw_wp_form_input p {
	margin: 0;
}

.mw_wp_form .pure-g {
	margin-bottom: 1em;
}

.mw_wp_form_input div > label,
.mw_wp_form_confirm div > label {
	display: block;
	font-weight: bold;
}

.mw_wp_form .vertical-item {
	line-height: 1;
}

.mw_wp_form textarea {
	margin-top: -.5em;
}

/*　 必須　　*/
.mw_wp_form .required {
	display: inline-block;
	margin-left: .8em;
	margin-right: .8em;
	padding: .3em 1em;
	background: rgb(253, 106, 106);
	color: white;
	font-size: 65%;
	font-weight: normal;
	vertical-align: text-bottom;
	border-radius: 10px;

}


.mw_wp_form_confirm .required {
	display: none;
}

.mw_wp_form input[type=submit] {
	margin: 1em;
	background: #4AA98B;
	color: #fff;
	border: none;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a,
a:visited {
	color: #333;
	text-decoration: none;

}

a:hover,
a:focus,
a:active {
	color: #5795ce;
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a[href^="tel:"] {
	cursor: default;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	text-align: center;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em), print {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: -webkit-flex;
		display: flex;
	}

	.main-navigation ul > li {
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft,
.alignright,
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 48em), print {
	.alignleft {
		clear: inherit;
		display: inline;
		float: left;
		margin-right: 1.5em;
		max-width: 60%;
	}

	.alignright {
		clear: inherit;
		display: inline;
		float: right;
		margin-left: 1.5em;
		max-width: 60%;
	}
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.clearfix::after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.clearfix::after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

.clearfix h1,
.clearfix h2,
.clearfix h3,
.clearfix h4,
.clearfix h5,
.clearfix h6 {
	clear: none;
	width: auto;
	overflow: hidden;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.site {
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 64em), print {

	.site-content {
		display: flex;
		flex-wrap: wrap;
	}

	.site-content-sticker {
		width: 100%;
	}

	.content-area {
		flex-grow: 1;
	}

	.widget-area {
		padding-left: 2em;
	}

}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Pure Grid Supplement
--------------------------------------------------------------*/

/* pure-hidden-xs */
@media screen and (max-width: 35.438em) {
	.pure-visible-sm {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-xs {
		display: none
	}
}

/* pure-hidden-sm */
@media screen and (min-width: 35.5em) and (max-width: 47.938em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-sm {
		display: none
	}
}

/* pure-hidden-md */
@media screen and (min-width: 48em) and (max-width: 63.938em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-sm {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-md {
		display: none
	}
}

/* pure-hidden-lg */
@media screen and (min-width: 64em) and (max-width: 79.938em), print {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-sm {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-lg {
		display: none
	}


}

/* pure-hidden-xl */
@media screen and (min-width: 80em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-sm {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-hidden-xl {
		display: none
	}

}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-nowrap {
	white-space: nowrap;
}

.list-unstyled {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.list-inline > li {
	float: left;
}

.list-inline::after {
	content: '';
	display: block;
	clear: both;
}

.pull-left,
.floatleft {
	float: left;
}

.pull-right,
.floatright {
	float: right;
}

.full-width {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.font-small {
	font-size: 80%;
	line-height: inherit;
}

.font-large {
	font-size: 120%;
	line-height: inherit;
}

.font-normal {
	font-weight: normal;
}

.line-space-1 {
	margin-bottom: 1.5em;
}

.line-space-2 {
	margin-bottom: 3em;
}

.tbl-col1-center td:first-child,
.tbl-col1-center th:first-child,
.tbl-col2-center td:nth-child(2),
.tbl-col2-center th:nth-child(2),
.tbl-col3-center td:nth-child(3),
.tbl-col3-center th:nth-child(3),
.tbl-last-center td:last-child,
.tbl-last-center th:last-child {
	text-align: center;
}

.tbl-col1-right td:first-child,
.tbl-col1-right th:first-child,
.tbl-col2-right td:nth-child(2),
.tbl-col2-right th:nth-child(2),
.tbl-col3-right td:nth-child(3),
.tbl-col3-right th:nth-child(3),
.tbl-last-right td:last-child,
.tbl-last-right th:last-child {
	text-align: right;
}

.tbl-col1-nowrap td:first-child,
.tbl-col1-nowrap th:first-child,
.tbl-col2-nowrap td:nth-child(2),
.tbl-col2-nowrap th:nth-child(2),
.tbl-col3-nowrap td:nth-child(3),
.tbl-col3-nowrap th:nth-child(3),
.tbl-last-nowrap td:last-child,
.tbl-last-nowrap th:last-child {
	white-space: nowrap;
}

.zero::before {
	display: inline;
	content: '0';
	color: transparent;
}

.red {
	color: #c00;
}

/*--------------------------------------------------------------
# Printing
--------------------------------------------------------------*/

@media print {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 16px;
	}

	html, body {
		width: 1080px;
		margin-left: auto;
		margin-right: auto;
	}
}

/*--------------------------------------------------------------
# Pure Grid
--------------------------------------------------------------*/

@media screen and (min-width: 35.5em), print {
	.pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-1-12, .pure-u-sm-1-2, .pure-u-sm-1-24, .pure-u-sm-1-3, .pure-u-sm-1-4, .pure-u-sm-1-5, .pure-u-sm-1-6, .pure-u-sm-1-8, .pure-u-sm-10-24, .pure-u-sm-11-12, .pure-u-sm-11-24, .pure-u-sm-12-24, .pure-u-sm-13-24, .pure-u-sm-14-24, .pure-u-sm-15-24, .pure-u-sm-16-24, .pure-u-sm-17-24, .pure-u-sm-18-24, .pure-u-sm-19-24, .pure-u-sm-2-24, .pure-u-sm-2-3, .pure-u-sm-2-5, .pure-u-sm-20-24, .pure-u-sm-21-24, .pure-u-sm-22-24, .pure-u-sm-23-24, .pure-u-sm-24-24, .pure-u-sm-3-24, .pure-u-sm-3-4, .pure-u-sm-3-5, .pure-u-sm-3-8, .pure-u-sm-4-24, .pure-u-sm-4-5, .pure-u-sm-5-12, .pure-u-sm-5-24, .pure-u-sm-5-5, .pure-u-sm-5-6, .pure-u-sm-5-8, .pure-u-sm-6-24, .pure-u-sm-7-12, .pure-u-sm-7-24, .pure-u-sm-7-8, .pure-u-sm-8-24, .pure-u-sm-9-24 {
		display: inline-block;
		zoom: 1;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
		text-rendering: auto
	}

	.pure-u-sm-1-24 {
		width: 4.1667%
	}

	.pure-u-sm-1-12, .pure-u-sm-2-24 {
		width: 8.3333%
	}

	.pure-u-sm-1-8, .pure-u-sm-3-24 {
		width: 12.5%
	}

	.pure-u-sm-1-6, .pure-u-sm-4-24 {
		width: 16.6667%
	}

	.pure-u-sm-1-5 {
		width: 20%
	}

	.pure-u-sm-5-24 {
		width: 20.8333%
	}

	.pure-u-sm-1-4, .pure-u-sm-6-24 {
		width: 25%
	}

	.pure-u-sm-7-24 {
		width: 29.1667%
	}

	.pure-u-sm-1-3, .pure-u-sm-8-24 {
		width: 33.3333%
	}

	.pure-u-sm-3-8, .pure-u-sm-9-24 {
		width: 37.5%
	}

	.pure-u-sm-2-5 {
		width: 40%
	}

	.pure-u-sm-10-24, .pure-u-sm-5-12 {
		width: 41.6667%
	}

	.pure-u-sm-11-24 {
		width: 45.8333%
	}

	.pure-u-sm-1-2, .pure-u-sm-12-24 {
		width: 50%
	}

	.pure-u-sm-13-24 {
		width: 54.1667%
	}

	.pure-u-sm-14-24, .pure-u-sm-7-12 {
		width: 58.3333%
	}

	.pure-u-sm-3-5 {
		width: 60%
	}

	.pure-u-sm-15-24, .pure-u-sm-5-8 {
		width: 62.5%
	}

	.pure-u-sm-16-24, .pure-u-sm-2-3 {
		width: 66.6667%
	}

	.pure-u-sm-17-24 {
		width: 70.8333%
	}

	.pure-u-sm-18-24, .pure-u-sm-3-4 {
		width: 75%
	}

	.pure-u-sm-19-24 {
		width: 79.1667%
	}

	.pure-u-sm-4-5 {
		width: 80%
	}

	.pure-u-sm-20-24, .pure-u-sm-5-6 {
		width: 83.3333%
	}

	.pure-u-sm-21-24, .pure-u-sm-7-8 {
		width: 87.5%
	}

	.pure-u-sm-11-12, .pure-u-sm-22-24 {
		width: 91.6667%
	}

	.pure-u-sm-23-24 {
		width: 95.8333%
	}

	.pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-24-24, .pure-u-sm-5-5 {
		width: 100%
	}
}

@media screen and (min-width: 48em), print {
	.pure-u-md-1, .pure-u-md-1-1, .pure-u-md-1-12, .pure-u-md-1-2, .pure-u-md-1-24, .pure-u-md-1-3, .pure-u-md-1-4, .pure-u-md-1-5, .pure-u-md-1-6, .pure-u-md-1-8, .pure-u-md-10-24, .pure-u-md-11-12, .pure-u-md-11-24, .pure-u-md-12-24, .pure-u-md-13-24, .pure-u-md-14-24, .pure-u-md-15-24, .pure-u-md-16-24, .pure-u-md-17-24, .pure-u-md-18-24, .pure-u-md-19-24, .pure-u-md-2-24, .pure-u-md-2-3, .pure-u-md-2-5, .pure-u-md-20-24, .pure-u-md-21-24, .pure-u-md-22-24, .pure-u-md-23-24, .pure-u-md-24-24, .pure-u-md-3-24, .pure-u-md-3-4, .pure-u-md-3-5, .pure-u-md-3-8, .pure-u-md-4-24, .pure-u-md-4-5, .pure-u-md-5-12, .pure-u-md-5-24, .pure-u-md-5-5, .pure-u-md-5-6, .pure-u-md-5-8, .pure-u-md-6-24, .pure-u-md-7-12, .pure-u-md-7-24, .pure-u-md-7-8, .pure-u-md-8-24, .pure-u-md-9-24 {
		display: inline-block;
		zoom: 1;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
		text-rendering: auto
	}

	.pure-u-md-1-24 {
		width: 4.1667%
	}

	.pure-u-md-1-12, .pure-u-md-2-24 {
		width: 8.3333%
	}

	.pure-u-md-1-8, .pure-u-md-3-24 {
		width: 12.5%
	}

	.pure-u-md-1-6, .pure-u-md-4-24 {
		width: 16.6667%
	}

	.pure-u-md-1-5 {
		width: 20%
	}

	.pure-u-md-5-24 {
		width: 20.8333%
	}

	.pure-u-md-1-4, .pure-u-md-6-24 {
		width: 25%
	}

	.pure-u-md-7-24 {
		width: 29.1667%
	}

	.pure-u-md-1-3, .pure-u-md-8-24 {
		width: 33.3333%
	}

	.pure-u-md-3-8, .pure-u-md-9-24 {
		width: 37.5%
	}

	.pure-u-md-2-5 {
		width: 40%
	}

	.pure-u-md-10-24, .pure-u-md-5-12 {
		width: 41.6667%
	}

	.pure-u-md-11-24 {
		width: 45.8333%
	}

	.pure-u-md-1-2, .pure-u-md-12-24 {
		width: 50%
	}

	.pure-u-md-13-24 {
		width: 54.1667%
	}

	.pure-u-md-14-24, .pure-u-md-7-12 {
		width: 58.3333%
	}

	.pure-u-md-3-5 {
		width: 60%
	}

	.pure-u-md-15-24, .pure-u-md-5-8 {
		width: 62.5%
	}

	.pure-u-md-16-24, .pure-u-md-2-3 {
		width: 66.6667%
	}

	.pure-u-md-17-24 {
		width: 70.8333%
	}

	.pure-u-md-18-24, .pure-u-md-3-4 {
		width: 75%
	}

	.pure-u-md-19-24 {
		width: 79.1667%
	}

	.pure-u-md-4-5 {
		width: 80%
	}

	.pure-u-md-20-24, .pure-u-md-5-6 {
		width: 83.3333%
	}

	.pure-u-md-21-24, .pure-u-md-7-8 {
		width: 87.5%
	}

	.pure-u-md-11-12, .pure-u-md-22-24 {
		width: 91.6667%
	}

	.pure-u-md-23-24 {
		width: 95.8333%
	}

	.pure-u-md-1, .pure-u-md-1-1, .pure-u-md-24-24, .pure-u-md-5-5 {
		width: 100%
	}
}

@media screen and (min-width: 64em), print {
	.pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-1-12, .pure-u-lg-1-2, .pure-u-lg-1-24, .pure-u-lg-1-3, .pure-u-lg-1-4, .pure-u-lg-1-5, .pure-u-lg-1-6, .pure-u-lg-1-8, .pure-u-lg-10-24, .pure-u-lg-11-12, .pure-u-lg-11-24, .pure-u-lg-12-24, .pure-u-lg-13-24, .pure-u-lg-14-24, .pure-u-lg-15-24, .pure-u-lg-16-24, .pure-u-lg-17-24, .pure-u-lg-18-24, .pure-u-lg-19-24, .pure-u-lg-2-24, .pure-u-lg-2-3, .pure-u-lg-2-5, .pure-u-lg-20-24, .pure-u-lg-21-24, .pure-u-lg-22-24, .pure-u-lg-23-24, .pure-u-lg-24-24, .pure-u-lg-3-24, .pure-u-lg-3-4, .pure-u-lg-3-5, .pure-u-lg-3-8, .pure-u-lg-4-24, .pure-u-lg-4-5, .pure-u-lg-5-12, .pure-u-lg-5-24, .pure-u-lg-5-5, .pure-u-lg-5-6, .pure-u-lg-5-8, .pure-u-lg-6-24, .pure-u-lg-7-12, .pure-u-lg-7-24, .pure-u-lg-7-8, .pure-u-lg-8-24, .pure-u-lg-9-24 {
		display: inline-block;
		zoom: 1;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
		text-rendering: auto
	}

	.pure-u-lg-1-24 {
		width: 4.1667%
	}

	.pure-u-lg-1-12, .pure-u-lg-2-24 {
		width: 8.3333%
	}

	.pure-u-lg-1-8, .pure-u-lg-3-24 {
		width: 12.5%
	}

	.pure-u-lg-1-6, .pure-u-lg-4-24 {
		width: 16.6667%
	}

	.pure-u-lg-1-5 {
		width: 20%
	}

	.pure-u-lg-5-24 {
		width: 20.8333%
	}

	.pure-u-lg-1-4, .pure-u-lg-6-24 {
		width: 25%
	}

	.pure-u-lg-7-24 {
		width: 29.1667%
	}

	.pure-u-lg-1-3, .pure-u-lg-8-24 {
		width: 33.3333%
	}

	.pure-u-lg-3-8, .pure-u-lg-9-24 {
		width: 37.5%
	}

	.pure-u-lg-2-5 {
		width: 40%
	}

	.pure-u-lg-10-24, .pure-u-lg-5-12 {
		width: 41.6667%
	}

	.pure-u-lg-11-24 {
		width: 45.8333%
	}

	.pure-u-lg-1-2, .pure-u-lg-12-24 {
		width: 50%
	}

	.pure-u-lg-13-24 {
		width: 54.1667%
	}

	.pure-u-lg-14-24, .pure-u-lg-7-12 {
		width: 58.3333%
	}

	.pure-u-lg-3-5 {
		width: 60%
	}

	.pure-u-lg-15-24, .pure-u-lg-5-8 {
		width: 62.5%
	}

	.pure-u-lg-16-24, .pure-u-lg-2-3 {
		width: 66.6667%
	}

	.pure-u-lg-17-24 {
		width: 70.8333%
	}

	.pure-u-lg-18-24, .pure-u-lg-3-4 {
		width: 75%
	}

	.pure-u-lg-19-24 {
		width: 79.1667%
	}

	.pure-u-lg-4-5 {
		width: 80%
	}

	.pure-u-lg-20-24, .pure-u-lg-5-6 {
		width: 83.3333%
	}

	.pure-u-lg-21-24, .pure-u-lg-7-8 {
		width: 87.5%
	}

	.pure-u-lg-11-12, .pure-u-lg-22-24 {
		width: 91.6667%
	}

	.pure-u-lg-23-24 {
		width: 95.8333%
	}

	.pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-24-24, .pure-u-lg-5-5 {
		width: 100%
	}
	.mw_wp_form .pure-u-md-1-4 {
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
		}
}

@media screen and (min-width: 80em) {
	.pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-1-12, .pure-u-xl-1-2, .pure-u-xl-1-24, .pure-u-xl-1-3, .pure-u-xl-1-4, .pure-u-xl-1-5, .pure-u-xl-1-6, .pure-u-xl-1-8, .pure-u-xl-10-24, .pure-u-xl-11-12, .pure-u-xl-11-24, .pure-u-xl-12-24, .pure-u-xl-13-24, .pure-u-xl-14-24, .pure-u-xl-15-24, .pure-u-xl-16-24, .pure-u-xl-17-24, .pure-u-xl-18-24, .pure-u-xl-19-24, .pure-u-xl-2-24, .pure-u-xl-2-3, .pure-u-xl-2-5, .pure-u-xl-20-24, .pure-u-xl-21-24, .pure-u-xl-22-24, .pure-u-xl-23-24, .pure-u-xl-24-24, .pure-u-xl-3-24, .pure-u-xl-3-4, .pure-u-xl-3-5, .pure-u-xl-3-8, .pure-u-xl-4-24, .pure-u-xl-4-5, .pure-u-xl-5-12, .pure-u-xl-5-24, .pure-u-xl-5-5, .pure-u-xl-5-6, .pure-u-xl-5-8, .pure-u-xl-6-24, .pure-u-xl-7-12, .pure-u-xl-7-24, .pure-u-xl-7-8, .pure-u-xl-8-24, .pure-u-xl-9-24 {
		display: inline-block;
		zoom: 1;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
		text-rendering: auto
	}

	.pure-u-xl-1-24 {
		width: 4.1667%
	}

	.pure-u-xl-1-12, .pure-u-xl-2-24 {
		width: 8.3333%
	}

	.pure-u-xl-1-8, .pure-u-xl-3-24 {
		width: 12.5%
	}

	.pure-u-xl-1-6, .pure-u-xl-4-24 {
		width: 16.6667%
	}

	.pure-u-xl-1-5 {
		width: 20%
	}

	.pure-u-xl-5-24 {
		width: 20.8333%
	}

	.pure-u-xl-1-4, .pure-u-xl-6-24 {
		width: 25%
	}

	.pure-u-xl-7-24 {
		width: 29.1667%
	}

	.pure-u-xl-1-3, .pure-u-xl-8-24 {
		width: 33.3333%
	}

	.pure-u-xl-3-8, .pure-u-xl-9-24 {
		width: 37.5%
	}

	.pure-u-xl-2-5 {
		width: 40%
	}

	.pure-u-xl-10-24, .pure-u-xl-5-12 {
		width: 41.6667%
	}

	.pure-u-xl-11-24 {
		width: 45.8333%
	}

	.pure-u-xl-1-2, .pure-u-xl-12-24 {
		width: 50%
	}

	.pure-u-xl-13-24 {
		width: 54.1667%
	}

	.pure-u-xl-14-24, .pure-u-xl-7-12 {
		width: 58.3333%
	}

	.pure-u-xl-3-5 {
		width: 60%
	}

	.pure-u-xl-15-24, .pure-u-xl-5-8 {
		width: 62.5%
	}

	.pure-u-xl-16-24, .pure-u-xl-2-3 {
		width: 66.6667%
	}

	.pure-u-xl-17-24 {
		width: 70.8333%
	}

	.pure-u-xl-18-24, .pure-u-xl-3-4 {
		width: 75%
	}

	.pure-u-xl-19-24 {
		width: 79.1667%
	}

	.pure-u-xl-4-5 {
		width: 80%
	}

	.pure-u-xl-20-24, .pure-u-xl-5-6 {
		width: 83.3333%
	}

	.pure-u-xl-21-24, .pure-u-xl-7-8 {
		width: 87.5%
	}

	.pure-u-xl-11-12, .pure-u-xl-22-24 {
		width: 91.6667%
	}

	.pure-u-xl-23-24 {
		width: 95.8333%
	}

	.pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-24-24, .pure-u-xl-5-5 {
		width: 100%
	}
}