@charset "utf-8";
/*
Theme Name: Resonar
Theme URI: https://wordpress.com/themes/resonar/
Description: Resonar is an elegant blog theme that features full-screen featured images.
Version: 1.0.5
Author: Automattic
Author URI: https://wordpress.com/themes/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: resonar
Tags: blue, white, light, one-column, fixed-layout, responsive-layout, accessibility-ready, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, rtl-language-support, sticky-post, translation-ready
*/

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);


/**
 * Table of Contents
 *
 * 1.0 Normalize
 * 2.0 Keyframes
 * 3.0 Genericons
 * 4.0 Typography
 * 5.0 Elements
 * 6.0 Forms
 * 7.0 Navigation
 *    7.1 Links
 *    7.2 Menus
 *    7.3 Navigations
 * 8.0 Accessibility
 * 9.0 Alignments
 * 10.0 Clearings
 * 11.0 Widgets
 * 12.0 Site
 *    12.1 Header
 *    12.2 Posts and pages
 *    12.3 Comments
 *    12.4 Footer
 * 13.0 Media
 *    13.1 Captions
 *    13.2 Galleries
 * 14.0 Multisite
 * 15.0 Jetpack
 *    15.1 Infinite scroll
 *    15.2 Extra Widegts
 *    15.3 Shortcodes
 *    15.4 Tiled Gallery
 *    15.5 Responsive Videos
 *    15.6 Jetpack Comments
 *    15.7 Sharing
 *    15.8 Related Posts
 *    15.9 Site Logo
 *    15.10 Stats
 * 16.0 Media Queries
 *    16.1 >= 470px
 *    16.2 >= 601px
 *    16.3 >= 700px
 *    16.4 >= 828px
 *    16.5 >= 925px
 *    16.6 >= 1088px
 *    16.7 >= 1216px
 */


/**
 * 1.0 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,
ins {
	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: 0;
}

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;
	opacity: .5;
}

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-appearance: textfield;
	box-sizing: border-box;
}

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

fieldset {
	border: 1px solid rgba(0, 0, 0, 0.1);
	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;
}


/**
 * 2.0 Keyframes
 */

@-webkit-keyframes moveDown {
	from {
		-webkit-transform: translateY(0);
	}
	to {
		-webkit-transform: translateY(24px);
	}
}

@keyframes moveDown {
	from {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	to {
		-moz-transform: translateY(24px);
		transform: translateY(24px);
	}
}

@-webkit-keyframes moveUp {
	from {
		-webkit-transform: translateY(24px);
	}
	to {
		-webkit-transform: translateY(0);
	}
}

@keyframes moveUp {
	from {
		-moz-transform: translateY(24px);
		transform: translateY(24px);
	}
	to {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes opacityDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes opacityDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes opacityUp {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes opacityUp {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/**
 * 3.0 Genericons
 */

.site-header .menu-item-has-children > a:after,
.social-navigation a:before,
.sidebar-toggle:before,
.dropdown-toggle:after,
.bypostauthor > article .fn:after,
.comment-reply-title small a:before,
.cat-links:before,
.tags-links:before,
.comments-link:before,
.edit-link:before,
.full-size-link:before,
.pagination .prev:before,
.pagination .next:before,
.author-link:after,
.scroll-indicator:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: "Genericons";
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	speak: none;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	vertical-align: top;
}


/**
 * 4.0 Typography
 */

body,
button,
input,
select,
textarea {
	color: #232323;
	font-family: "SourceHanSansJP-Light, YuGothic, 'Yu Gothic', 游ゴシック体, 游ゴシック, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Arial, sans-serif";
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: "Playfair Display", georgia, serif;
	font-weight: 700;
	-webkit-font-variant-ligatures: common-ligatures;
	font-variant-ligatures: common-ligatures;
	text-rendering: optimizeLegibility;
}

p {
	margin: 0 0 24px;
}

b,
strong {
	font-weight: 700;
}

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

blockquote {
	border-left: 4px solid currentColor;
	color: #000;
	font-size: 16.5px;
	font-style: normal;
	line-height: 1.75 !important;
	margin: 0 0 24px;
	padding-left: 20px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

blockquote p {
	margin-bottom: 30px;
}

blockquote > p:last-child {
	margin-bottom: 0;
}

blockquote cite,
blockquote small {
	color: #232323;
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Lato, sans-serif;
	line-height: 1.6;
}

blockquote em,
blockquote i,
blockquote cite {
	font-style: normal;
}

blockquote strong,
blockquote b {
	font-weight: 700;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: Inconsolata, monospace;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre {
	background-color: rgba(0, 0, 0, 0.01);
	border: 1px solid rgba(0, 0, 0, 0.1);
	line-height: 1.2;
	margin: 0 0 24px;
	max-width: 100%;
	overflow: auto;
	padding: 12px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

abbr[title] {
	border-bottom: 1px dotted #232323;
	cursor: help;
}

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

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

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}


/**
 * 5.0 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. */
}

hr {
	background-color: rgba(0, 0, 0, 0.1);
	border: 0;
	height: 1px;
	margin-bottom: 24px;
}

ul, ol {
	margin: 0 0 24px 20px;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dl {
	margin-bottom: 24px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 24px;
}

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

table,
th,
td {
	border: 1px solid rgba(0, 0, 0, 0.1);
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 24px;
	table-layout: fixed;
	/* Prevents HTML tables from becoming too wide */
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th, td {
	padding: 6px;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

del {
	opacity: 0.8;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
}

:-moz-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
}

::-moz-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
}


/**
 * 6.0 Forms
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	background: #232323;
	border: 0;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	font-family: SourceHanSansJP-Light, YuGothic, 'Yu Gothic', 游ゴシック体, 游ゴシック, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Arial, sans-serif;
}
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	padding: 11px 16px 9px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #0074b8;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	background: #0074b8;
	outline: 2px solid #d2d2d2;
}

.search-form input[type="submit"],
.widget .search-form input[type="submit"] {
	padding: 0;
}

input,
select,
textarea {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	background-color: #f7f7f7;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
	color: #5b5b5b;
	padding: 3px 6px;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	background-color: #fff;
	border: 1px solid #5b5b5b;
	color: #232323;
	outline: 0;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 6px;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

.post-password-form label {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 24px;
	text-transform: uppercase;
}


/**
 * 7.0 Navigation
 */

/**
 * 7.1 Links
 */

a {
	color: #0074b8;
	text-decoration: none;
}

a:visited {
	color: #0074b8;
}

a:hover,
a:focus,
a:active {
	color: #232323;
}

a:focus {
	outline: 2px solid #d2d2d2;
}

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

a img {
	border: 0;
}

div.entry-date a:hover,
.entry-footer a:hover,
.comment-author a:hover,
.comment-metadata a:hover,
.pingback .edit-link a:hover,
.textwidget a,
.entry-date a:hover,
.entry-content a,
.entry-summary a,
.entry-footer .author-bio a,
.page-content a,
.comment-content a,
.pingback .comment-body > a,
.taxonomy-description a,
.logged-in-as a,
.site-info a,
.image-navigation a:hover,
.comment-navigation a:hover,
.widget_gravatar a,
.widget-grofile p a,
#infinite-footer .blog-credits a {
	color: #0074b8;
	background-image:none;
	background-image: none;
	background-position: 0 100%;
	background-repeat: repeat-x;
	-webkit-background-size: 100% 1px;
	background-size: 100% 1px;
	text-decoration: none;
}

.page-links a,
.entry-content .mejs-horizontal-volume-slider,
.entry-content .wp-playlist-caption,
.entry-content a:hover,
.entry-content a:focus,
.entry-summary a:hover,
.entry-summary a:focus,
.page-content a:hover,
.page-content a:focus,
.comment-content a:hover,
.comment-content a:focus,
.pingback .comment-body > a:hover,
.pingback .comment-body > a:focus,
.author-bio a:hover,
.author-bio a:focus,
.taxonomy-description a:hover,
.taxonomy-description a:focus,
.logged-in-as a:hover,
.logged-in-as a:focus,
.site-info a:hover,
.site-info a:focus,
.textwidget a:hover,
.textwidget a:focus,
.widget_gravatar a:hover,
.widget_gravatar a:focus,
.widget-grofile p a:hover,
.widget-grofile p a:focus,
.has-post-thumbnail div.entry-date a:hover {
	background-image: none;
}


/**
 * 7.2 Menus
 */

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
	font-weight: 700;
}

.site-header .main-navigation {
	display: none;
	float: right;
}

.site-header .main-navigation ul {
	list-style: none;
	margin: 0;
}

.site-header .nav-menu li {
	position: relative;
}

.site-header .nav-menu > li {
	float: left;
}

.site-header .nav-menu > li + li {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header .nav-menu a {
	color: #232323;
	display: block;
	font-size: 0.9375rem;
	font-size: 15px;
	line-height: 1.33334;
	padding: 6px 16px;
	text-decoration: none;
	white-space: nowrap;
}

.site-header .nav-menu a:hover,
.site-header .nav-menu a:focus {
	color: #0074b8;
}

.site-header .menu-item-has-children > a {
	padding-right: 38px;
}

.site-header .menu-item-has-children > a:after {
	content: "\f431";
	position: absolute;
	top: 7px;
	right: 12px;
}

.site-header .sub-menu {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: absolute;
	left: -1px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.site-header .sub-menu li {
	background-color: #fff;
	border-color: rgba(0, 0, 0, 0.1);
	border-style: solid;
	border-width: 1px 1px 0;
}

.site-header .nav-menu > li > .sub-menu {
	padding-top: 8px;
}

.site-header .nav-menu > li > .sub-menu:before,
.site-header .nav-menu > li > .sub-menu:after {
	content: "";
	border-style: solid;
	position: absolute;
}

.site-header .nav-menu > li > .sub-menu:before {
	top: -1px;
	left: 10px;
	border-width: 0 10px 10px;
	border-color: rgba(0, 0, 0, 0.1) transparent;
}

.site-header .nav-menu > li > .sub-menu:after {
	top: 1px;
	left: 12px;
	border-width: 0 8px 8px;
	border-color: #fff transparent;
}

.site-header .sub-menu a {
	padding: 14px 16px;
	white-space: normal;
	width: 240px;
}

.site-header .sub-menu ul {
	left: 100%;
	top: -1px;
}

.site-header .sub-menu .menu-item-has-children > a {
	padding-right: 30px;
}

.site-header .sub-menu .menu-item-has-children > a:after {
	content: "\f431";
	right: 8px;
	top: 15px;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.site-header .nav-menu li:hover > ul,
.site-header .nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.sidebar .main-navigation {
	margin: 7.6923%;
}

.sidebar .main-navigation a {
	display: block;
	padding: 12px 0;
	position: relative;
	text-decoration: none;
}

.sidebar .main-navigation ul {
	list-style: none;
	margin: 0;
}

.sidebar .main-navigation ul ul {
	display: none;
	margin-left: 12px;
}

.sidebar .main-navigation ul .toggled-on {
	display: block;
}

.sidebar .main-navigation li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
}

.sidebar .main-navigation .nav-menu {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar .main-navigation .nav-menu > ul > li:first-child,
.sidebar .main-navigation .nav-menu > li:first-child {
	border-top: 0;
}

.sidebar .main-navigation .menu-item-has-children > a {
	padding-right: 48px;
}

.no-js .sidebar .main-navigation ul ul {
	display: block;
}

.dropdown-toggle {
	background-color: transparent;
	border: 0;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	content: "";
	height: 42px;
	padding: 0;
	position: absolute;
	text-transform: lowercase;
	/* Stop screen readers to read the text as capital letters */
	top: 3px;
	right: 0;
	width: 42px;
}

.dropdown-toggle:after {
	color: #232323;
	content: "\f431";
	font-size: 24px;
	line-height: 42px;
	position: relative;
	top: 0;
	left: 1px;
	width: 42px;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
	background-color: #f5f5f5;
}

.dropdown-toggle:focus {
	outline: 1px solid #d2d2d2;
}

.dropdown-toggle.toggle-on:after {
	content: "\f432";
}

.social-navigation {
	margin: 15.3806% 7.6923%;
}

.social-navigation ul {
	list-style: none;
	margin: 0;
}

.social-navigation li {
	float: left;
	margin: 0 1px 1px 0;
}

.social-navigation a {
	background-color: rgba(0, 0, 0, 0.04);
	display: block;
	height: 48px;
	position: relative;
	width: 48px;
}

.social-navigation a:before {
	color: #232323;
	content: "\f415";
	font-size: 24px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	width: 48px;
}

.social-navigation a:hover:before,
.social-navigation a:focus:before {
	color: #0074b8;
}

.social-navigation a[href*="codepen.io"]:before {
	content: "\f216";
}

.social-navigation a[href*="digg.com"]:before {
	content: "\f221";
}

.social-navigation a[href*="dribbble.com"]:before {
	content: "\f201";
}

.social-navigation a[href*="dropbox.com"]:before {
	content: "\f225";
}

.social-navigation a[href*="facebook.com"]:before {
	content: "\f203";
}

.social-navigation a[href*="flickr.com"]:before {
	content: "\f211";
}

.social-navigation a[href*="foursquare.com"]:before {
	content: "\f226";
}

.social-navigation a[href*="plus.google.com"]:before {
	content: "\f206";
}

.social-navigation a[href*="github.com"]:before {
	content: "\f200";
}

.social-navigation a[href*="instagram.com"]:before {
	content: "\f215";
}

.social-navigation a[href*="linkedin.com"]:before {
	content: "\f208";
}

.social-navigation a[href*="pinterest.com"]:before {
	content: "\f210";
}

.social-navigation a[href*="getpocket.com"]:before {
	content: "\f224";
}

.social-navigation a[href*="polldaddy.com"]:before {
	content: "\f217";
}

.social-navigation a[href*="reddit.com"]:before {
	content: "\f222";
}

.social-navigation a[href*="stumbleupon.com"]:before {
	content: "\f223";
}

.social-navigation a[href*="tumblr.com"]:before {
	content: "\f214";
}

.social-navigation a[href*="twitter.com"]:before {
	content: "\f202";
}

.social-navigation a[href*="vimeo.com"]:before {
	content: "\f212";
}

.social-navigation a[href*="wordpress.com"]:before,
.social-navigation a[href*="wordpress.org"]:before {
	content: "\f205";
}

.social-navigation a[href*="youtube.com"]:before {
	content: "\f213";
}

.social-navigation a[href*="mailto:"]:before {
	content: "\f410";
}

.social-navigation a[href*="spotify.com"]:before {
	content: "\f515";
}

.social-navigation a[href*="twitch.tv"]:before {
	content: "\f516";
}

.social-navigation a[href$="/feed/"]:before {
	content: "\f413";
}

.sidebar-toggle {
	background-color: transparent;
	border: 1px solid transparent;
	height: 48px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: 50%;
	right: 7.6923%;
	text-align: center;
	-webkit-transform: translate(16px, -50%);
	-ms-transform: translate(16px, -50%);
	transform: translate(16px, -50%);
	width: 48px;
}

.no-js .sidebar-toggle {
	display: none;
}

.sidebar-toggle:before {
	color: #232323;
	content: "\f419";
	line-height: 46px;
	width: 48px;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus {
	background-color: transparent;
	outline: 0;
}

.sidebar-toggle:focus {
	border-color: rgba(0, 0, 0, 0.1);
}

.sidebar-toggle:hover:before,
.sidebar-toggle:focus:before {
	color: #0074b8;
}

.sidebar-toggle.toggled-on:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: 2px;
	left: -1px;
}

.sidebar-toggle.toggled-on:hover:before,
.sidebar-toggle.toggled-on:focus:before {
	color: #232323;
}


/**
 * 7.3 Navigations
 */

.post-navigation {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-family: Lato, sans-serif;
	margin: 0 7.6923% 7.6923%;
}

.post-navigation a {
	color: #232323;
	display: block;
	padding: 4.5465% 0;
}

.post-navigation span {
	display: block;
}

.post-navigation .meta-nav {
	color: #5b5b5b;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.post-navigation .post-title {
	display: inline;
	font-family: "Playfair Display", georgia, serif;
	font-size: 22px;
	font-size: 1.375rem;
	-webkit-font-variant-ligatures: common-ligatures;
	font-variant-ligatures: common-ligatures;
	font-weight: 700;
	line-height: 1.36364;
	text-rendering: optimizeLegibility;
}

.post-navigation a:hover .post-title,
.post-navigation a:focus .post-title {
	color: #0074b8;
}

.post-navigation div + div {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pagination {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font-family: Lato, sans-serif;
}

.sidebar-open .pagination {
	display: none;
}

.pagination a {
	color: #232323;
}

.pagination a:hover,
.pagination a:focus {
	color: #0074b8;
}

.pagination .nav-links {
	min-height: 48px;
	position: relative;
	text-align: center;
}

/* reset screen-reader-text */
.pagination .current .screen-reader-text {
	position: static !important;
}

.pagination .page-numbers {
	display: none;
	line-height: 48px;
	padding: 0 6px;
}

.pagination .current {
	color: #5b5b5b;
	display: inline-block;
}

.pagination .prev,
.pagination .next {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	display: inline-block;
	height: 48px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 48px;
}

.pagination .prev:before,
.pagination .next:before {
	font-size: 32px;
	height: 48px;
	line-height: 48px;
	position: relative;
	width: 48px;
}

.pagination .prev:hover,
.pagination .prev:focus,
.pagination .next:hover,
.pagination .next:focus {
	background-color: #0074b8;
	color: #fff;
}

.pagination .prev:focus,
.pagination .next:focus {
	outline: 0;
}

.pagination .prev {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	left: 0;
}

.pagination .prev:before {
	content: "\f430";
	left: -1px;
}

.pagination .next {

	border-left: 1px solid rgba(0, 0, 0, 0.1);
	right: 0;
}

.pagination .next:before {
	content: "\f429";
	right: -1px;
}

.image-navigation,
.comment-navigation {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.1);
	font-size: 12px;
	font-size: 0.75rem;
	font-family: Lato, sans-serif;
	line-height: 1.5;
	margin: 0 7.6923% 24px;
	padding: 12px 0;
}

.comment-navigation {
	margin: 0;
}

.image-navigation .nav-previous:not(:empty),
.image-navigation .nav-next:not(:empty),
.comment-navigation .nav-previous:not(:empty),
.comment-navigation .nav-next:not(:empty) {
	display: inline-block;
}

.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
	content: "\2215";
	font-weight: 400;
	margin: 0 6px;
}

.comments-title + .comment-navigation {
	border-bottom: 0;
}


/**
 * 8.0 Accessibility
 */

/* Text meant only for screen readers. */
.says,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	font: bold 14px/normal Lato, sans-serif;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	font: bold 14px/normal "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}


/**
 * 9.0 Alignments
 */

.alignleft {
	display: inline;
	float: left;
	margin: 4px 24px 24px 0;
}

.alignright {
	display: inline;
	float: right;
	margin: 4px 0 24px 24px;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 24px;
}

/**
 * 10.0 Clearings
 */

.clear:before,
.clear:after,
.site-header:before,
.site-header:after,
.site-branding:before,
.site-branding:after,
.site-navigation:before,
.site-navigation:after,
.site-header .nav-menu:before,
.site-header .nav-menu:after,
.hentry:before,
.hentry:after,
.entry-content:before,
.entry-content:after,
.entry-summary:before,
.entry-summary:after,
.entry-content-footer:before,
.entry-content-footer:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.nav-links:before,
.nav-links:after,
.comment-navigation:before,
.comment-navigation:after,
.social-navigation ul:before,
.social-navigation ul:after,
.textwidget:before,
.textwidget:after {
	content: "";
	display: table;
}

.clear:after,
.site-branding:after,
.site-header:after,
.site-navigation:after,
.site-header .nav-menu:after,
.hentry:after,
.entry-content:after,
.entry-summary:after,
.entry-content-footer:after,
.comment-content:after,
.site-content:after,
.nav-links:after,
.comment-navigation:after,
.social-navigation ul:after,
.textwidget:after {
	clear: both;
}


/**
 * 11.0 Widgets
 */

.widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	margin: 7.6923%;
	word-wrap: break-word;
}

.widget-title {
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Lato, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.widget > :last-child {
	margin-bottom: 0;
}

/* Calendar widget */
.widget_calendar table {
	margin: 0;
}

.widget_calendar td,
.widget_calendar th {
	line-height: 3.2;
	text-align: center;
	padding: 0;
}

.widget_calendar caption {
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Lato, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.widget_calendar tbody a {
	background-color: #232323;
	color: #fff;
	display: block;
	font-weight: 700;
}

.widget_calendar tbody a:hover,
.widget_calendar tbody a:focus {
	background-color: #0074b8;
	color: #fff;
}

/* List type widget */
.widget_archive ul,
.widget_categories ul,
.widget_links ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
}

.widget_archive ul ul,
.widget_categories ul ul,
.widget_links ul ul,
.widget_meta ul ul,
.widget_nav_menu ul ul,
.widget_pages ul ul,
.widget_recent_comments ul ul,
.widget_recent_entries ul ul {
	border-bottom: 0;
	margin: 12px 0 0 12px;
}

.widget_archive li,
.widget_categories li,
.widget_links li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li,
.widget_recent_comments li,
.widget_recent_entries li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}

.widget_archive li li:last-child,
.widget_categories li li:last-child,
.widget_links li li:last-child,
.widget_meta li li:last-child,
.widget_nav_menu li li:last-child,
.widget_pages li li:last-child,
.widget_recent_comments li li:last-child,
.widget_recent_entries li li:last-child {
	padding-bottom: 0;
}

/* Recent Posts widget */
.widget_recent_entries .post-date {
	color: #5b5b5b;
	display: block;
	font-family: Lato, sans-serif;
}

/* RSS widget */
.widget_rss ul {
	list-style: none;
	margin: 0;
}

.widget_rss li {
	margin-bottom: 24px;
}

.widget_rss li:last-child {
	margin-bottom: 0;
}

.widget_rss .rsswidget {
	font-weight: 700;
}

.widget_rss .rsswidget img {
	margin-top: -5px;
}

.widget_rss .rss-date,
.widget_rss cite {
	font-size: 12px;
	font-size: 0.75rem;
	font-family: Lato, sans-serif;
	font-style: normal;
	display: block;
	line-height: 2;
	opacity: 0.7;
}

/* Text Widget */
.textwidget > :last-child {
	margin-bottom: 0;
}


/**
 * 12.0 Site
 */

.site {
	overflow: hidden;
}

.content-area {
	margin: 0 auto;
	max-width: 1088px;
}

.sidebar-open .content-area {
	display: none;
}

.site-main {
	border-bottom: 1px solid transparent;
}

.sidebar {
	background-color: #fff;
	display: none;
	height: 100%;
	position: absolute;
	right: 100%;
	-webkit-transform: translateZ(0);
	top: 0;
	width: 100%;
}

.sidebar:before {
	background-color: rgba(0, 0, 0,0.03);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

.sidebar-open .sidebar {
	display: block;
	position: relative;
	right: 0;
	z-index: 1000;
}

.no-js .sidebar {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: block;
	height: auto;
	position: relative;
	top: auto;
	right: auto;
}

.sidebar-inner {
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	margin: 0 auto;
	max-width: 1088px;
}


/**
 * 12.1 Header
 */

.site-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 7.6923%;
	position: relative;
	width: 100%;
}

.site-branding {
	float: left;
	max-width: -webkit-calc(100% - 48px);
	max-width: calc(100% - 48px);
}

.site-title {
	font-family: Lato, sans-serif;
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 1.36364;
	margin: 0;
}

.site-title a {
	color: #232323;
}

.site-title a:hover,
.site-title a:focus {
	opacity: 0.7;
}

.site-description {
	display: none;
	font-family: "Libre Baskerville", georgia, serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	opacity: 0.7;
}

.site-title + .site-description {
	margin-top: 4px;
}

.header-image a {
	display: block;
}

.header-image a:focus img {
	opacity: 0.85;
}

.header-image img {
	width: 100%;
	height: auto;
}

.site-navigation {
	float: right;
}


/**
 * 12.2 Posts and pages
 */

.hentry {
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	position: relative;
}

.hentry + .hentry {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hentry + .hentry.sticky.has-post-thumbnail,
.hentry.sticky.has-post-thumbnail + .hentry.sticky:not(.has-post-thumbnail),
.hentry.sticky.has-post-thumbnail + .hentry:not(.sticky) {
	border-top: 0;
}

.post-thumbnail {
	display: block;
	float: right;
	margin: 36px 0 12px 4.54029457%;
	width: 22.72417674%;
}

.attachment-post-thumbnail {
	border-radius: 2px;
}

.post-thumbnail:hover,
.post-thumbnail:focus {
	opacity: 0.85;
}

.post-thumbnail:focus {
	outline: none;
}

div.entry-date a {
	color: #5b5b5b;
}

div.entry-date a:hover,
div.entry-date a:focus {
	color: #0074b8;
}

div.entry-date + .entry-header,
div.entry-date + .entry-title {
	margin-top: 6px;
}

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

.sticky .posted-on {
	display: none;
}

.entry-summary {
	color: #5b5b5b;
}

.entry-summary > :last-child {
	margin-bottom: 0;
}

.entry-summary {
	margin-top: 12px;
}

.entry-title {
	clear: none;
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	margin: 0;
}

.entry-title a {
	color: #232323;
}

.entry-title a:hover,
.entry-title a:focus {
	color: #0074b8;
}

.entry-content-footer {
	margin-top: 7.6923%;
}

.entry-content {
	margin: 0 7.6923%;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content,
.entry-summary,
.page-content,
.comment-content,
.textwidget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-summary h1,
.entry-summary h2,
.entry-summary h3,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6,
.textwidget h1,
.textwidget h2,
.textwidget h3,
.textwidget h4,
.textwidget h5,
.textwidget h6 {
	margin-top: 48px;
	margin-bottom: 24px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child,
.entry-summary h1:first-child,
.entry-summary h2:first-child,
.entry-summary h3:first-child,
.entry-summary h4:first-child,
.entry-summary h5:first-child,
.entry-summary h6:first-child,
.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child,
.page-content h4:first-child,
.page-content h5:first-child,
.page-content h6:first-child,
.comment-content h1:first-child,
.comment-content h2:first-child,
.comment-content h3:first-child,
.comment-content h4:first-child,
.comment-content h5:first-child,
.comment-content h6:first-child,
.textwidget h1:first-child,
.textwidget h2:first-child,
.textwidget h3:first-child,
.textwidget h4:first-child,
.textwidget h5:first-child,
.textwidget h6:first-child {
	margin-top: 0;
}

.entry-content h1,
.entry-summary h1,
.page-content h1,
.comment-content h1,
.textwidget h1 {
	font-size: 26px;
	font-size: 1.625rem;
	line-height: 1.38462;
}

.entry-content h2,
.entry-summary h2,
.page-content h2,
.comment-content h2,
.textwidget h2 {
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
}

.entry-content h3,
.entry-summary h3,
.page-content h3,
.comment-content h3,
.textwidget h3 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.33333;
}

.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6,
.page-content h4,
.page-content h5,
.page-content h6,
.comment-content h4,
.comment-content h5,
.comment-content h6,
.textwidget h4,
.textwidget h5,
.textwidget h6 {
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.2;
}

.entry-content h4,
.entry-summary h4,
.page-content h4,
.comment-content h4,
.textwidget h4 {
	letter-spacing: 0.13333em;
	text-transform: uppercase;
}

.entry-content h6,
.entry-summary h6,
.page-content h6,
.comment-content h6,
.textwidget h6 {
	font-style: italic;
	font-weight: 400;
}

.entry-summary h1,
.entry-summary h2,
.entry-summary h3,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6 {
	clear: none;
}

.entry-content a img,
.entry-summary a img,
.page-content a img,
.comment-content a img {
	display: block;
}

.entry-content .more-link,
.entry-summary .more-link {
	white-space: nowrap;
}

.entry-content blockquote.alignleft,
.entry-content blockquote.alignright {
	border-color: currentColor;
	border-style: solid;
	border-width: 4px 0 4px 0;
	padding: 20px 0;
	width: 50%;
}

.entry-footer {
	color: #5b5b5b;
	margin: 24px 7.6923% 0;
}

.entry-footer a {
	color: #0074b8;
}

.entry-footer a:hover,
.entry-footer a:focus {
	color: #0074b8;
}

.author-info {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
	margin: 24px 0 21px;
	padding: 24px 0;
}

.author-info .avatar {
	float: left;
	height: 48px;
	margin: 0 24px 24px 0;
	width: 48px;
}

.author-heading {
	clear: none;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin: 0;
	text-transform: uppercase;
}

.author-title {
	clear: none;
	color: #232323;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

.author-bio {
	overflow: hidden;
}

.author-bio a {
	color: #0074b8;
}

.author-description {
	font-family: Lato, sans-serif;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.author-description > :last-child {
	margin-bottom: 0;
}

.author-link {
	white-space: nowrap;
}

.sticky-post,
.posted-on,
.cat-links,
.tags-links,
.comments-link,
.edit-link,
.full-size-link {
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.cat-links,
.tags-links,
.comments-link,
.edit-link,
.full-size-link {
	display: block;
	padding: 3px 0 3px 19px;
	position: relative;
}

.cat-links:before,
.tags-links:before,
.comments-link:before,
.edit-link:before,
.full-size-link:before {
	position: absolute;
	top: 3px;
	left: 0;
}

.cat-links:before {
	content: "\f301";
}

.tags-links:before {
	content: "\f302";
}

.comments-link:before {
	content: "\f300";
}

.full-size-link:before {
	content: "\f402";
}

.edit-link:before {
	content: "\f411";
}

.page-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 7.6923%;
	padding: 7.6923% 0;
}

.page-title {
	font-size: 26px;
	font-size: 1.625rem;
	line-height: 1.38462;
	margin: 0;
}

.taxonomy-description {
	color: #5b5b5b;
	margin-top: 6px;
}

.taxonomy-description > :last-child {
	margin-bottom: 0;
}

.page-content {
	margin: 0 7.6923%;
	padding: 7.6923% 0;
}

.page-content > :last-child {
	margin-bottom: 0;
}

.page-links {
	clear: both;
	font-family: Lato, sans-serif;
	margin: 0 0 24px;
}

.page-links a,
.page-links > span {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	display: inline-block;
	font-size: 12px;
	font-size: 0.75rem;
	height: 24px;
	line-height: 23px;
	margin: 0 4px 4px 0;
	text-align: center;
	width: 24px;
}

.page-links a {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	background-color: #232323;
	border-color: #232323;
	color: #fff;
}

.page-links a:hover,
.page-links a:focus {
	background-color: #000;
	border-color: transparent;
	color: #fff;
}

.page-links > .page-links-title {
	border: 0;
	color: #232323;
	height: auto;
	margin: 0;
	padding-right: 19px;
	width: auto;
}

.sticky-post {
	font-weight: 700;
	text-transform: uppercase;
}

.single .hentry,
.sticky.hentry.has-post-thumbnail {
	margin: 0;
	padding: 7.6923% 0;
}

.sticky.hentry.has-post-thumbnail {
	padding: 0;
}

.single .hentry.has-post-thumbnail {
	padding-top: 0;
}

.entry-header-background {
	background-color: #232323;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-width: 100%;
	overflow: hidden;
	position: relative;
}

.no-js .entry-header-background {
	padding-top: 75%;
}

.entry-header-wrapper {
	background-image: -moz-linear-gradient(top, transparent, rgba(0,0,0,0.8));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0,0,0,0.8));
	background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
}

.single .entry-header,
.sticky .entry-header {
	margin: 0 auto;
	max-width: 1088px;
}

.single .has-post-thumbnail .entry-header {
	-webkit-animation: moveUp .5s ease both;
	animation: moveUp .5s ease both;
	-webkit-transform: translateZ(0);
}

.single .has-post-thumbnail .entry-header.scrolled {
	-webkit-animation: moveDown .5s ease both;
	animation: moveDown .5s ease both;
	-webkit-transform: translateZ(0);
}

.single .entry-header-inner,
.sticky.has-post-thumbnail .entry-header-inner {
	padding: 0 4.6923%;
}

.single .has-post-thumbnail .entry-header-inner {
	padding-top: 7.6923%;
	padding-bottom: 3.84615%;
}

.sticky.has-post-thumbnail .entry-header-inner {
	padding-bottom: 7.6923%;
}

.single .entry-title,
.sticky .entry-title {
	font-size: 26px;
	font-size: 1.625rem;
	line-height: 1.38462;
	margin-right: 0;
}

.entry-header-background div.entry-date a,
.entry-header-background .sticky-post,
.entry-header-background .entry-title,
.entry-header-background .entry-title a {
	color: #fff;
}

.entry-header-background div.entry-date a:hover,
.entry-header-background div.entry-date a:focus,
.entry-header-background .entry-title a:hover,
.entry-header-background .entry-title a:focus {
	opacity: 0.85;
}

.scroll-indicator-wrapper {
	height: 24px;
	margin-bottom: 3.84615%;
	position: relative;
}
.duration4{
  animation-iteration-count: 2;
}
.scroll-indicator {
	-webkit-animation: opacityUp .5s ease both;
	animation: opacityUp .5s ease both;
	bottom: 0;
	display: block;
	height: 24px;
	left: 50%;
	position: absolute;
	width: 48px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.scroll-indicator.scrolled {
	-webkit-animation: opacityDown .5s ease both;
	animation: opacityDown .5s ease both;
}

.scroll-indicator:before,
.scroll-indicator:after {
	content: '';
	width: 34px;
	height: 2px;
	background-color: #fff;
	position: absolute;
}

.scroll-indicator:before {
	left: -5px;
	top: 11px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.scroll-indicator:after {
	left: 19px;
	top: 11px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

.scroll-indicator:hover:before,
.scroll-indicator:hover:after {
	opacity: 0.75;
}

.scroll-indicator:focus {
	outline: dotted thin #fff;
}

.attachment .entry-header {
	margin: 0 7.6923%;
}

.entry-attachment {
	margin-bottom: 24px;
}

.type-attachment .entry-title {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.entry-caption {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	line-height: 1.5;
	padding-top: 6px;
	word-wrap: break-word;
}

.entry-caption > :last-child {
	margin-bottom: 0;
}


/**
 * 12.3 Comments
 */

.comments-area {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 7.6923%;
	padding: 7.6923% 0;
}

.comments-area > :last-child {
	margin-bottom: 0;
}

.comment-list + .comment-respond {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
	padding-top: 24px;
}

.comments-title,
.comment-reply-title {
	font-family: "Playfair Display", georgia, serif;
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	margin: 0;
}

.comments-title {
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
	margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	padding: 24px 0;
}

.comments-title + .comment-list > li:first-child > article,
.comments-title + .comment-list > li:first-child > .pingback,
.comments-title + .comment-list > li:first-child > .trackback {
	border-top: 0;
	padding-top: 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children > li {
	padding-left: 12px;
}

.comment-author {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	margin-bottom: 6px;
}

.comment-author .avatar {
	float: left;
	height: 24px;
	margin-right: 12px;
	position: relative;
	width: 24px;
}

.bypostauthor > article .fn:after {
	content: "\f304";
	position: relative;
	top: 4px;
	left: 3px;
}

.comment-metadata,
.pingback .edit-link {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.comment-metadata a {
	color: #5b5b5b;
}

.comment-metadata .comment-edit-link {
	color: #0074b8;
}

.comment-metadata {
	margin-bottom: 24px;
}

.comment-metadata .edit-link,
.pingback .edit-link {
	display: inline-block;
	margin-left: 6px;
}

.pingback .edit-link:before {
	top: 3px;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 24px 20px;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.comment-list .reply {
	font-size: 12px;
	font-size: 0.75rem;
}

.comment-list .reply a {
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #5b5b5b;
	display: inline-block;
	font-family: Lato, sans-serif;
	line-height: 1;
	margin-top: 24px;
	padding: 6px 12px 5px;
	text-transform: uppercase;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
	border-color: currentColor;
	color: #0074b8;
	outline: 0;
}

.comment-form {
	padding-top: 24px;
}

.comment-form label {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="submit"] {
	width: 100%;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
	color: #5b5b5b;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	margin-bottom: 24px;
}

.no-comments {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	color: #232323;
	font-weight: 700;
	margin: 0;
	padding-top: 24px;
}

.comment-navigation + .no-comments {
	border-top: 0;
}

.form-allowed-tags code {
	font-family: Inconsolata, monospace;
}

.form-submit {
	margin-bottom: 0;
}

.required {
	color: #c0392b;
}

.comment-reply-title small {
	font-size: 100%;
}

.comment-reply-title small a {
	border: 0;
	float: right;
	height: 32px;
	overflow: hidden;
	width: 26px;
}

.comment-reply-title small a:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: -3px;
}


/**
 * 12.4 Footer
 */

.site-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 3.84615% 7.6923%;
}

.sidebar-open .site-footer {
	display: none;
}

.site-info {
	color: #5b5b5b;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.site-info a {
	color: #5b5b5b;
}

.site-info a:hover,
.site-info a:focus {
	color: #0074b8;
}


/**
 * 13.0 Media
 */

.site .avatar {
	border-radius: 50%;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
	margin-bottom: 24px;
	max-width: 100%;
	vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
	margin-bottom: 0;
}

.entry-content .mejs-container .mejs-controls .mejs-time {
	padding-top: 11px;
}

.wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
	margin-top: 0;
	margin-bottom: 24px;
}

.wp-playlist.wp-playlist {
	padding-bottom: 0;
}

.wp-playlist .wp-playlist-tracks {
	margin-top: 0;
}

.wp-playlist-item .wp-playlist-caption {
	border-bottom: 0;
	padding: 10px 0;
}

.wp-playlist-item .wp-playlist-item-length {
	top: 10px;
}

.hentry .latex {
	margin: 0;
	max-width: 100%
}


/**
 * 13.1 Captions
 */

.wp-caption {
	margin-bottom: 24px;
	max-width: 100%;
}

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

.wp-caption-text {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	padding: 6px 0 0;
}


/**
 * 13.2 Galleries
 */

.gallery {
	margin-bottom: 24px;
}

.gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	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-icon img {
	margin: 0 auto;
}

.gallery-caption {
	color: #5b5b5b;
	display: block;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	padding: 6px 0 0;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


/**
 * 14.0 Multisite
 */

.widecolumn {
	padding: 7.6923%;
}

.widecolumn .mu_register {
	width: auto;
}

.widecolumn .mu_alert {
	margin-bottom: 24px;
}

.widecolumn form,
.widecolumn .mu_register form {
	margin-top: 0;
}

.widecolumn h2 {
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	margin: 0 0 24px;
}

.widecolumn p {
	margin: 24px 0;
}

.widecolumn p + h2 {
	margin-top: 48px;
}

.widecolumn label,
.widecolumn .mu_register label {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-transform: uppercase;
}

.widecolumn .mu_register label {
	margin: 24px 0 0;
}

.widecolumn #key,
.widecolumn .mu_register #blog_title,
.widecolumn .mu_register #user_email,
.widecolumn .mu_register #blogname,
.widecolumn .mu_register #user_name {
	font-size: 16px;
	font-size: 1rem;
	width: 100%;
}

.widecolumn .mu_register #blogname {
	margin: 0;
}

.widecolumn .mu_register #blog_title,
.widecolumn .mu_register #user_email,
.widecolumn .mu_register #user_name {
	margin: 0 0 6px;
}

.widecolumn #submit,
.widecolumn .mu_register input[type="submit"] {
	font-size: 12px;
	font-size: 0.75rem;
	margin: 0;
	width: 100%;
}

.widecolumn .mu_register .prefix_address,
.widecolumn .mu_register .suffix_address {
	font-size: inherit;
}

.widecolumn .mu_register > :last-child,
.widecolumn form > :last-child {
	margin-bottom: 0;
}


/**
 * 15.0 Jetpack
 */

/**
 * 15.1 Infinite Scroll
 */

.infinite-scroll .pagination,
.infinite-scroll.neverending .site-footer,
.sidebar-open.infinity-end.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

.infinite-wrap .hentry:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Spinner */
.infinite-loader {
	clear: both;
	height: 24px;
	margin: 7.6923% 0;
}

.infinite-loader .spinner {
	top: 50% !important;
	left: 50% !important;
}

/* Click-to-load */
#infinite-handle {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	clear: both;
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	text-align: center;
}

#infinite-handle span {
	background-color: #232323;
	border-radius: 2px;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	padding: 11px 16px 9px;
	text-transform: uppercase;
}

#infinite-handle span:hover,
#infinite-handle span:focus {
	background-color: #0074b8;
	color: #fff;
}

/* Footer */
#infinite-footer {
	display: none;
	z-index: 999;
}

#infinite-footer .container {
	background-color: rgba(255, 255, 255, 0.95);
	border-color: rgba(0, 0, 0, 0.1);
	padding: 0 32px;
	width: 100% !important;
}

#infinite-footer .blog-info,
#infinite-footer .blog-credits {
	height: 48px;
	line-height: 48px;
}

#infinite-footer .blog-info a:hover,
#infinite-footer .blog-info a:focus,
#infinite-footer .blog-credits a:hover,
#infinite-footer .blog-credits a:focus {
	text-decoration: none;
}

#infinite-footer .blog-info {
	font-family: Lato, sans-serif;
}

#infinite-footer .blog-info a {
	color: #232323;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 900;
}

#infinite-footer .blog-info a:hover,
#infinite-footer .blog-info a:focus {
	opacity: 0.7;
}

#infinite-footer .blog-credits {
	font-size: 13px;
	font-size: 0.8125rem;
}

#infinite-footer .blog-credits a {
	color: #5b5b5b;
}

#infinite-footer .blog-credits a:hover,
#infinite-footer .blog-credits a:focus {
	color: #0074b8;
}


/**
 * 15.2 Extra Widgets
 */

/* Blog Subscriptions Widget */
.jetpack_subscription_widget #subscribe-email input {
	padding: 3px 6px;
	width: 100%;
}

.jetpack_subscription_widget form > :last-child {
	margin-bottom: 0;
}

/* Display WordPress Posts Widget */
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts {
	margin: 0;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.33333;
	margin: 0 0 24px;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts img {
	margin: 0 0 24px;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts p {
	font-size: inherit;
	line-height: 1.6 !important;
	margin: 0 0 24px !important;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts > :last-child {
	margin-bottom: 0 !important;
}

/* Gallery Widget */
.widget-gallery .slideshow-window {
	border-radius: 0;
}

/* Goodreads Widget */
.widget_goodreads div[class^="gr_custom_container"] {
	background-color: transparent;
	border: 0;
	border-radius: 0;
	color: inherit;
	padding: 0;
}

.widget_goodreads div[class^="gr_custom_container"] a {
	color: inherit;
}

.widget_goodreads  div[class^="gr_custom_each_container"] {
	border: 0;
	margin-bottom: 0;
}

/* Gravatar Profile Widget */
.widget-grofile .grofile-thumbnail {
	border-radius: 50%;
	max-width: 200px;
}

.widget-area .widget-grofile h4 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.33333;
	margin: 24px 0 0;
}

.widget-area .widget-grofile .grofile-accounts {
	margin-top: 12px;
}

/* Image Widget */
.widget_image .wp-caption {
	margin-bottom: 0;
}

/* RSS Links Widget */
.widget_rss_links img {
	position: relative;
	top: -3px;
}

/* Top Posts & Pages Widget */
.widget_top-posts .widgets-list-layout .widgets-list-layout-blavatar {
	border-radius: 50%;
	margin-right: 12px;
	max-width: 48px;
}

.widget_top-posts .widgets-list-layout-links {
	width: auto;
	float: left;
	padding-top: 12px;
}

.widget_top-posts .widgets-list-layout li {
	margin-bottom: 0;
}

/* List type widgets */
.widget_rss_links ul,
.widget_top-posts ul,
.widget_upcoming_events_widget ul {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
}

.widget_rss_links ul ul,
.widget_top-posts ul ul,
.widget_upcoming_events_widget ul ul {
	border-bottom: 0;
	margin: 12px 0 0 12px;
}

.widget_rss_links li,
.widget_top-posts li,
.widget_upcoming_events_widget li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}

.widget_rss_links li li:last-child,
.widget_top-posts li li:last-child,
.widget_upcoming_events_widget li li:last-child {
	padding-bottom: 0;
}


/**
 * 15.3 Shortcodes
 */

/* Facebook */
.fb_iframe_widget {
	margin-bottom: 24px;
	max-width: 100%;
}

.fb_iframe_widget span {
	max-width: 100%;
}

/* Gist */
.gist table {
	table-layout: auto;
}

.site .gist .gist-file {
	margin-bottom: 24px;
}

/* Instagram */
.instagram-media {
	margin-bottom: 24px !important;
}

/* Polldaddy */
.PDS_Poll {
	display: block !important;
	margin-bottom: 24px;
}

.PDS_Poll .pds-box {
	max-width: 100%;
	width: auto;
}

/* Portfolio */
.site .portfolio-entry {
	margin-bottom: 48px;
}

.site .portfolio-featured-image + .portfolio-entry-title {
	margin: 12px 0 0;
}

.site .portfolio-entry-title a {
	color: #232323;
}

.site .portfolio-entry-meta {
	font-family: Lato, sans-serif;
}

.site .portfolio-entry-title a,
.site .portfolio-entry-meta a {
	background-image: none;
	text-shadow: none;
}

.site .portfolio-entry-title + .portfolio-entry-meta {
	margin-top: 6px;
}

.site .portfolio-entry-meta span,
.site .portfolio-entry-meta a {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.site .portfolio-entry-content {
	margin-top: 12px;
}

/* Presentation */
.site .presentation-wrapper {
	margin: 0 0 24px;
}

/* Recipes */
.site .jetpack-recipe {
	border: 0;
	margin: 0 0 24px;
	padding: 0;
}

.site .jetpack-recipe-title {
	border: 0;
	margin-top: 0;
	padding: 0;
}

.site .jetpack-recipe .jetpack-recipe-meta {
	font-size: inherit;
	margin: 0;
}

/* Slideshow */
.site .slideshow-window {
	border-radius: 0;
	margin-bottom: 24px;
}

/* Spotify */
iframe[src^="https://embed.spotify.com"] {
	margin: 0 0 24px !important;
}

/* Subscription */
.hentry .jetpack_subscription_widget {
	margin-bottom: 24px;
}

/* Twitter-timeline */
iframe[id*="twitter-widget-"] {
	display: block;
	margin-bottom: 24px !important;
}

/* Vine */
.vine-embed {
	display: block;
}

/* VideoPress */
.site .video-player {
	height: auto !important;
	margin: 0 0 24px;
	padding: 0;
}

.video-player object {
	margin-bottom: 0;
}


/**
 * 15.4 Tiled gallery
 */

.site .tiled-gallery {
	margin-bottom: 24px;
}


/**
 * 15.5 Responsive Videos
 */

.jetpack-video-wrapper {
	margin-bottom: 24px;
}

.jetpack-video-wrapper > embed,
.jetpack-video-wrapper > iframe,
.jetpack-video-wrapper > object,
.jetpack-video-wrapper > .wp-video {
	margin-bottom: 0;
}


/**
 * 15.6 Jetpack Comments
 */

.comment-form iframe {
	margin: 0;
}


/**
 * 15.7 Sharing
 */

.hentry div.sharedaddy h3.sd-title,
.hentry h3.sd-title {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 1em;
	text-transform: uppercase;
}


/**
 * 15.8 Related Posts
 */

.hentry #jp-relatedposts {
	margin: 0;
	padding-top: 0;
}

.hentry div#jp-relatedposts h3.jp-relatedposts-headline {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
}

.hentry div#jp-relatedposts h3.jp-relatedposts-headline em:before {
	border-color: rgba(0, 0, 0, 0.1);
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
	margin-bottom: 24px;
	width: 100%;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-child {
	margin-bottom: 0;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post {
	opacity: 1;
	padding-right: 0;
}

.entry-content .jp-relatedposts-post-a {
	background-image: none;
	text-shadow: none;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post span {
	max-width: 100%;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items p {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.hentry .jp-relatedposts-post-img {
	margin-bottom: 6px;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
.hentry .jp-relatedposts-post-title {
	font-family: "Playfair Display", georgia, serif;
	font-size: 15px;
	font-size: 0.9375rem;
	letter-spacing: 0;
	line-height: 1.6;
	font-weight: 700;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
	font-weight: inherit;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a,
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover {
	text-decoration: none;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt {
	color: #5b5b5b;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	opacity: 1;
}


/**
 * 15.9 Site Logo
 */

.site-logo-link {
	display: block;
	max-width: 192px;
}

.site-logo {
	max-height: 48px;
	width: auto;
}

.has-site-logo .site-title {
	margin-top: 12px;
}

/**
 * 15.10 Stats
 */

#wpstats {
	display: none;
}


/**
 * 16.0 Media Queries
 */

/*
 * Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}


/**
 * 16.1 >= 470px
 */

@media screen and (min-width: 29.375em) {
	.entry-title {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.38462;
	}

	.single .entry-title,
	.sticky .entry-title,
	.page-title {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
	}
}


/**
 * 16.2 >= 601px
 */

@media screen and (min-width: 37.5625em) {
	.site-header {
		padding: 3.84615%;
	}

	.sidebar-toggle {
		right: 3.84615%;
	}

	.social-navigation {
		margin-top: 7.6923%;
		margin-bottom: 7.6923%;
	}

	.sidebar .main-navigation,
	.social-navigation,
	.widget {
		margin-right: 15.3846%;
		margin-left: 15.3846%;
	}

	.entry-title {
		font-size: 31px;
		font-size: 1.9375rem;
		line-height: 1.35484;
	}

	.single .entry-title,
	.sticky .entry-title,
	.page-title {
		font-size: 45px;
		font-size: 2.8125rem;
		line-height: 1.24444;
	}
}


/**
 * 16.3 >= 700px
 */

@media screen and (min-width: 43.75em) {
	body,
	input,
	select,
	textarea {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.77778;
	}

	p,
	address,
	pre,
	hr,
	dl,
	dd,
	table,
	.alignleft,
	.alignright,
	.aligncenter,
	.post-thumbnail,
	.page-links,
	.entry-attachment,
	.comments-title,
	.comment-metadata,
	.comment-notes,
	.comment-awaiting-moderation,
	.logged-in-as,
	.form-allowed-tags,
	embed,
	iframe,
	object,
	video,
	.wp-audio-shortcode,
	.wp-video,
	.wp-playlist.wp-audio-playlist,
	.wp-caption,
	.gallery {
		margin-bottom: 32px;
	}

	.main-navigation,
	.post-navigation .meta-nav,
	.image-navigation,
	.comment-navigation,
	.widget,
	.sticky-post,
	.posted-on,
	.cat-links,
	.tags-links,
	.comments-link,
	.edit-link,
	.full-size-link,
	.author-heading,
	.page-links a,
	.page-links > span,
	.entry-caption,
	.comment-metadata,
	.pingback .edit-link,
	.comment-list .reply,
	.comment-form label,
	.comment-notes,
	.comment-awaiting-moderation,
	.logged-in-as,
	.form-allowed-tags,
	.site-info,
	.gallery-caption {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	blockquote {
		font-size: 22px;
		font-size: 1.375rem;
		line-height: 1.63636;
		margin-bottom: 32px;
		margin-left: -32px;
		padding-left: 28px;
	}

	blockquote p {
		margin-bottom: 36px;
	}

	blockquote cite,
	blockquote small {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.77778;
	}

	blockquote > blockquote {
		margin-left: 0;
	}

	pre {
		padding: 16px;
	}

	ul, ol {
		margin: 0 0 32px 0;
	}

	li > ul,
	li > ol,
	blockquote > ul,
	blockquote > ol {
		margin-left: 24px;
	}

	th, td {
		padding: 8px;
	}

	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 15px;
		font-size: 0.9375rem;
		padding: 17px 32px 16px;
	}

	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	textarea {
		padding: 7px;
	}

	input[type="checkbox"],
	input[type="radio"] {
		margin-right: 8px;
	}

	.post-password-form label {
		font-size: 15px;
		font-size: 0.9375rem;
		margin-bottom: 16px;
		padding-bottom: 8px;
	}

	.sidebar .main-navigation ul ul {
		margin-left: 16px;
	}

	.post-navigation .meta-nav {
		margin-bottom: 8px;
	}

	.post-navigation .post-title {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
	}

	.pagination .nav-links {
		min-height: 64px;
	}

	.pagination .current .screen-reader-text {
		position: absolute !important;
	}

	.pagination .page-numbers {
		display: inline-block;
		line-height: 64px;
		padding: 0 8px;
	}

	.pagination .prev,
	.pagination .next {
		height: 64px;
		width: 64px;
	}

	.pagination .prev:before,
	.pagination .next:before {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
		width: 64px;
	}

	.pagination .prev:before {
		left: -10px;
	}

	.pagination .next:before {
		right: 3px;
	}

	.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
	.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
		margin: 0 8px;
	}

	.image-navigation,
	.comment-navigation {
		padding: 16px 0;
	}

	.image-navigation {
		margin-bottom: 32px;
	}

	.alignleft {
		margin-top: 8px;
		margin-right: 32px;
	}

	.alignright {
		margin-top: 8px;
		margin-left: 32px;
	}

	.widget p,
	.widget address,
	.widget pre,
	.widget hr,
	.widget dl,
	.widget dd,
	.widget table,
	.widget .alignleft,
	.widget .alignright,
	.widget .aligncenter,
	.widget embed,
	.widget iframe,
	.widget object,
	.widget video,
	.widget .wp-audio-shortcode,
	.widget .wp-video,
	.widget .wp-playlist.wp-audio-playlist,
	.widget .wp-caption,
	.widget .gallery {
		margin-bottom: 24px;
	}

	.widget blockquote {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.66667;
		margin-left: -30px;
		padding-left: 26px;
	}

	.widget blockquote p {
		margin-bottom: 30px;
	}

	.widget blockquote cite,
	.widget blockquote small {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.widget blockquote > blockquote {
		margin-left: 0;
	}

	.widget pre,
	.widget th, .widget td {
		padding: 6px;
	}

	.widget h1,
	.widget h2,
	.widget h3,
	.widget h4,
	.widget h5,
	.widget h6 {
		margin: 0 0 24px;
	}

	.widget h1 {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.38462;
	}

	.widget h2 {
		font-size: 22px;
		font-size: 1.375rem;
		line-height: 1.36364;
	}

	.widget h3 {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;

	}

	.widget h4,
	.widget h5,
	.widget h6 {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.2;
	}

	.widget ul, .widget ol {
		margin: 0 0 24px 0;
	}

	.widget li > ul,
	.widget li > ol {
		margin-bottom: 0;
	}

	.widget li > ul,
	.widget li > ol,
	.widget blockquote > ul,
	.widget blockquote > ol {
		margin-left: 24px;
	}

	.widget button,
	.widget input[type="button"],
	.widget input[type="reset"],
	.widget input[type="submit"] {
		font-size: 12px;
		font-size: 0.75rem;
		padding: 11px 16px 9px;
	}

	.widget input[type="text"],
	.widget input[type="email"],
	.widget input[type="url"],
	.widget input[type="password"],
	.widget input[type="search"],
	.widget textarea {
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.5;
		padding: 3px 6px;
	}

	.widget .wp-caption-text {
		font-size: 0.75rem;
		font-size: 14px;
		line-height: 1.5;
		padding: 6px 0 0;
	}

	.widget .widget-title {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;
	}

	.widget_calendar table {
		margin: 0;
	}

	.widget_calendar td,
	.widget_calendar th {
		line-height: 3.2;
		padding: 0;
	}

	.widget_calendar caption {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;
	}

	.widget_archive ul,
	.widget_categories ul,
	.widget_links ul,
	.widget_meta ul,
	.widget_nav_menu ul,
	.widget_pages ul,
	.widget_recent_comments ul,
	.widget_recent_entries ul,
	.widget_rss ul {
		margin: 0;
	}

	.widget_rss li {
		margin-bottom: 24px;
	}

	.widget_rss .rss-date,
	.widget_rss cite {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.84615;
	}

	.textwidget > :last-child {
		margin-bottom: 0;
	}

	.site-title {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.2307692307;
	}

	.site-description {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.53846;
	}

	.post-thumbnail {
		margin-top: 48px;
		margin-bottom: 16px;
	}

	div.entry-date + .entry-header,
	div.entry-date + .entry-title {
		margin-top: 8px;
	}

	.entry-title {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.1891891891;
	}

	.single .entry-title,
	.sticky .entry-title,
	.page-title {
		font-size: 54px;
		font-size: 3.375rem;
		line-height: 1.1851851851;
	}

	.entry-summary {
		margin-top: 16px;
	}

	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.entry-summary h1,
	.entry-summary h2,
	.entry-summary h3,
	.entry-summary h4,
	.entry-summary h5,
	.entry-summary h6,
	.page-content h1,
	.page-content h2,
	.page-content h3,
	.page-content h4,
	.page-content h5,
	.page-content h6,
	.comment-content h1,
	.comment-content h2,
	.comment-content h3,
	.comment-content h4,
	.comment-content h5,
	.comment-content h6 {
		margin-top: 64px;
		margin-bottom: 32px;
	}

	.entry-content h1,
	.entry-summary h1,
	.page-content h1,
	.comment-content h1 {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
	}

	.entry-content h2,
	.entry-summary h2,
	.page-content h2,
	.comment-content h2 {
		font-size: 31px;
		font-size: 1.9375rem;
		line-height: 1.29032;
	}

	.entry-content h3,
	.entry-summary h3,
	.page-content h3,
	.comment-content h3 {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.23077;
	}

	.entry-content h4,
	.entry-summary h4,
	.page-content h4,
	.comment-content h4 {
		font-size: 22px;
		font-size: 1.375rem;
		line-height: 1.27273;
	}

	.entry-content h5,
	.entry-content h6,
	.entry-summary h5,
	.entry-summary h6,
	.page-content h5,
	.page-content h6,
	.comment-content h5,
	.comment-content h6 {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;
	}

	.entry-content blockquote.alignleft,
	.entry-content blockquote.alignright {
		padding: 28px 0;
	}

	.entry-footer {
		margin-top: 32px;
	}

	.author-info {
		margin: 32px 0 28px;
		padding: 32px 0;
	}

	.author-info .avatar {
		height: 64px;
		margin: 0 32px 32px 0;
		width: 64px;
	}

	.author-title,
	.author-bio {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.5555555555;
	}

	.cat-links,
	.tags-links,
	.comments-link,
	.edit-link,
	.full-size-link {
		padding: 4px 0 4px 19px;
	}

	.cat-links:before,
	.tags-links:before,
	.comments-link:before,
	.edit-link:before,
	.full-size-link:before {
		top: 8px;
	}

	.taxonomy-description {
		margin-top: 8px;
	}

	.page-links a,
	.page-links > span {
		height: 32px;
		line-height: 31px;
		width: 32px;
	}

	.page-links > .page-links-title {
		padding-right: 26px;
	}

	.entry-caption {
		padding-top: 8px;
	}

	.comment-list + .comment-respond,
	.comment-navigation + .comment-respond {
		padding-top: 32px;
	}

	.comments-title,
	.comment-reply-title {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.23077;
	}

	.comment-list article,
	.comment-list .pingback,
	.comment-list .trackback {
		padding: 32px 0;
	}

	.comment-list .children > li {
		padding-left: 32px;
	}

	.comment-author {
		margin-bottom: 0;
	}

	.comment-author .avatar {
		height: 56px;
		margin-right: 16px;
		top: 7px;
		width: 56px;
	}

	.bypostauthor > article .fn:after {
		top: 8px;
	}

	.comment-metadata .edit-link,
	.pingback .edit-link {
		margin-left: 8px;
	}

	.pingback .edit-link:before {
		top: 7px;
	}

	.comment-content ul,
	.comment-content ol {
		margin: 0 0 32px 0;
	}

	.comment-content li > ul,
	.comment-content li > ol,
	.comment-content blockquote > ul,
	.comment-content blockquote > ol {
		margin-left: 24px;
	}

	.comment-list .reply a {
		margin-top: 32px;
		padding: 8px 16px 7px;
	}

	.comment-form,
	.no-comments {
		padding-top: 32px;
	}

	.comment-form label {
		margin-bottom: 8px;
	}

	.comment-reply-title small a:before {
		top: 1px;
	}

	.wp-caption-text,
	.gallery-caption {
		padding-top: 8px;
	}

	.widecolumn .mu_alert {
		margin-bottom: 32px;
	}

	.widecolumn h2 {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
		margin: 0 0 32px;
	}

	.widecolumn p {
		margin: 32px 0;
	}

	.widecolumn p + h2 {
		margin-top: 64px;
	}

	.widecolumn label,
	.widecolumn .mu_register label {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.53846;
	}

	.widecolumn .mu_register label {
		margin: 32px 0 0;
	}

	.widecolumn .mu_register #blog_title,
	.widecolumn .mu_register #user_email,
	.widecolumn .mu_register #user_name {
		margin: 0 0 8px;
	}

	.widecolumn #submit,
	.widecolumn .mu_register input[type="submit"] {
		font-size: 13px;
		font-size: 0.8125rem;
	}

	.infinite-loader {
		height: 48px;
	}

	#infinite-handle span {
		display: block;
		font-size: 15px;
		font-size: 0.9375rem;
		padding: 17px 32px 16px;
	}

	.site .portfolio-entry {
		margin-bottom: 64px;
	}

	.site .portfolio-featured-image + .portfolio-entry-title {
		margin: 16px 0 0;
	}

	.site .portfolio-entry-title + .portfolio-entry-meta {
		margin-top: 12px;
	}

	.site .portfolio-entry-meta {
		line-height: 1.33333;
	}

	.site .portfolio-entry-meta span,
	.site .portfolio-entry-meta a {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.site .portfolio-entry-content {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
		margin-top: 16px;
	}

	.site .tiled-gallery {
		margin-bottom: 32px;
	}

	.jetpack-video-wrapper {
		margin-bottom: 32px;
	}

	.jetpack-video-wrapper > embed,
	.jetpack-video-wrapper > iframe,
	.jetpack-video-wrapper > object,
	.jetpack-video-wrapper > .wp-video {
		margin-bottom: 0;
	}

	.fb_iframe_widget {
		margin-bottom: 32px;
	}

	.site .gist .gist-file {
		margin-bottom: 32px;
	}

	.instagram-media {
		margin-bottom: 32px !important;
	}

	.PDS_Poll {
		margin-bottom: 32px;
	}

	.site .presentation-wrapper {
		margin: 0 0 32px;
	}

	iframe[src^="https://embed.spotify.com"] {
		margin: 0 0 32px !important;
	}

	.site .jetpack-recipe {
		margin: 0 0 32px;
	}

	.site .slideshow-window {
		margin-bottom: 32px;
	}

	/* Subscription */
	.hentry .jetpack_subscription_widget {
		margin-bottom: 32px;
	}

	.hentry .jetpack_subscription_widget #subscribe-email input {
		padding: 7px;
	}

	iframe[id*="twitter-widget-"] {
		margin-bottom: 32px !important;
	}

	.site .video-player {
		margin-bottom: 32px;
	}

	.video-player object {
		margin-bottom: 0;
	}

	.hentry div.sharedaddy h3.sd-title,
	.hentry h3.sd-title {
		font-size: 15px;
		font-size: 0.9375rem;
	}

	.hentry div#jp-relatedposts h3.jp-relatedposts-headline {
		font-size: 15px;
		font-size: 0.9375rem;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
		padding-right: 16px;
		width: 33%;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
		margin-bottom: 0;
	}

	.hentry .jp-relatedposts-post-img {
		margin-bottom: 8px;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items p {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.53846;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
	.hentry .jp-relatedposts-post-title {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.33333;
	}

	.site-logo {
		max-height: 96px;
	}
}


/**
 * 16.4 >= 828px
 */

@media screen and (min-width: 51.755em) {
	.sidebar .main-navigation,
	.social-navigation,
	.widget {
		margin-right: 23.0759%;
		margin-left: 23.0759%;
	}

	.image-navigation,
	.post-navigation,
	.entry-content,
	.entry-footer,
	.comments-area,
	.attachment .entry-header,
	.not-found .page-header,
	.page-content {
		margin-right: 15.3846%;
		margin-left: 15.3846%;
	}

	.single .entry-header-inner,
	.widecolumn {
		padding-right: 15.3846%;
		padding-left: 15.3846%;
	}

	.entry-title,
	.entry-summary {
		margin-right: 27.27891994%;
	}

	.entry-content blockquote.alignleft {
		margin-right: 11.11419486%;
		margin-left: -11.11419486%;
	}

	.entry-content blockquote.alignright {
		margin-right: -11.11419486%;
		margin-left: 11.11419486%;
	}

	.entry-content blockquote.aligncenter {
		border: 0;
		font-size: 1.9375rem;
		font-size: 31px;
		line-height: 1.6774193548;
		margin: 0 -11.11419486% 32px -11.11419486%;
		padding: 32px 0;
		max-width: 122.22838972%;
	}

	.size-big,
	.caption-big {
		clear: both;
		display: block;
		float: none;
		margin: 0 -11.11419486% 32px -11.11419486%;
		max-width: 122.22838972%;
	}

	.caption-big .wp-caption-text {
		margin-right: 9.09297331%;
		margin-left: 9.09297331%;
	}

	.caption-big .size-big,
	table .caption-big,
	table .caption-big .wp-caption-text,
	table .size-big {
		margin: 0 !important;
		max-width: 100% !important;
	}
}


/**
 * 16.5 >= 925px
 */

@media screen and (min-width: 57.8125em) {
	.sidebar .main-navigation,
	.social-navigation,
	.widget {
		margin-right: 23.5079%;
		margin-left: 23.5079%;
	}

	.image-navigation,
	.post-navigation,
	.entry-content,
	.entry-footer,
	.comments-area,
	.attachment .entry-header,
	.not-found .page-header,
	.page-content {
		margin-right: 17.6471%;
		margin-left: 17.6471%;
	}

	.single .entry-header-inner,
	.widecolumn {
		padding-right: 17.6471%;
		padding-left: 17.6471%;
	}

	.post-navigation {
		margin-bottom: 5.8824%;
	}

	.post-navigation a {
		padding: 4.5333% 0;
	}

	.site-header {
		padding: 2.9412%;
	}

	.sidebar-toggle {
		float: right;
		height: 32px;
		position: relative;
		top: auto;
		right: auto;
		-webkit-transform: translate(16px, 0);
		-ms-transform: translate(16px, 0);
		transform: translate(16px, 0);
	}

	.sidebar-toggle:before {
		content: "\f476";
		font-size: 24px;
		line-height: 30px;
	}

	.no-sidebar .sidebar-toggle {
		display: none;
	}

	.sidebar .main-navigation {
		display: none;
	}

	.custom-menu .site-branding {
		margin-right: 32px;
		max-width: -webkit-calc(100% - 80px);
		max-width: calc(100% - 80px);
	}

	.custom-menu .sidebar-toggle {
		border-left-color: rgba(0, 0, 0, 0.1);
	}

	.custom-menu .site-header .main-navigation {
		display: block;
		margin: 0 -16px;
	}

	.menu-left .site-branding {
		margin-right: 0;
		max-width: -webkit-calc(100% - 48px);
		max-width: calc(100% - 48px);
	}

	.menu-left .site-header .main-navigation {
		clear: both;
		float: left;
		margin-top: 16px;
		max-width: -webkit-calc(100% - 32px);
		max-width: calc(100% - 32px);
	}

	.menu-left .sidebar-toggle {
		border-color: transparent;
		height: 48px;
		position: absolute;
		right: 32px;
		top: 50%;
		-webkit-transform: translate(16px, -50%);
		-ms-transform: translate(16px, -50%);
		transform: translate(16px, -50%);
	}

	.menu-left .sidebar-toggle:focus {
		border-color: rgba(0, 0, 0, 0.1);
	}

	.menu-left .sidebar-toggle:before {
		line-height: 46px;
	}

	.hentry {
		margin: 0 5.8824%;
		padding: 5.8824% 0;
	}

	.post-thumbnail {
		margin-bottom: 0;
		margin-left: 6.66829507%;
		width: 26.67318026%;
	}

	.single .hentry,
	.sticky.hentry {
		padding: 5.8824% 0;
	}

	.entry-title,
	.entry-summary {
		margin-right: 33.34147533%;
	}

	.entry-content-footer {
		margin-top: 5.8824%;
	}

	.single .has-post-thumbnail .entry-header-inner {
		padding-top: 5.8824%;
		padding-bottom: 2.9412%;
	}

	.sticky.has-post-thumbnail .entry-header-inner {
		padding: 0 5.8824% 5.8824%;
	}

	.scroll-indicator-wrapper {
		margin-bottom: 2.9412%;
	}

	.comments-area {
		padding: 5.8824% 0;
	}

	.page-header {
		margin: 0 5.8824%;
		padding: 5.8824% 0;
	}

	.page-content {
		padding: 5.8824% 0;
	}

	.entry-content blockquote.alignleft {
		margin-right: 9.06666667%;
		margin-left: -18.16666667%;
	}

	.entry-content blockquote.alignright {
		margin-right: -18.16666667%;
		margin-left: 9.06666667%;
	}

	.entry-content blockquote.aligncenter,
	.size-big,
	.caption-big {
		margin-right: -18.16666667%;
		margin-left: -18.16666667%;
		max-width: 136.36666667%;
	}

	.caption-big .wp-caption-text {
		margin-right: 13.3431085%;
		margin-left: 13.3431085%;
	}

	.site-footer {
		padding: 2.9412%;
	}

	.widecolumn {
		padding-top: 5.8824%;
		padding-bottom: 5.8824%;
	}

	.infinite-loader {
		margin: 5.8824% 0;
	}

	#infinite-handle {
		display: block;
		margin: 0 5.8824%;
		padding: 5.8824% 0;
	}

	#infinite-footer {
		display: block;
	}

	.infinite-scroll.neverending .infinite-loader {
		padding-bottom: 48px;
	}
}


/**
 * 16.6 >= 1088px
 */

@media screen and (min-width: 68em) {
	.site-header,
	.site-footer {
		padding: 32px;
	}
}


/**
 * 16.7 >= 1216px
 */

@media screen and (min-width: 76em) {
	.entry-content blockquote.alignleft {
		margin-right: 64px;
		margin-left: -192px;
	}

	.entry-content blockquote.alignright {
		margin-right: -192px;
		margin-left: 64px;
	}

	.entry-content blockquote.aligncenter,
	.size-big,
	.caption-big {
		margin-right: -192px;
		margin-left: -192px;
		max-width: 1088px;
	}

	.caption-big .wp-caption-text {
		margin-right: 192px;
		margin-left: 192px;
	}
}


.site-header {
    border-top: 3px solid #e60008;
    padding:10px;
    position	:fixed;
    z-index:9999;
    background-color:#ffffff;
    opacity:1;
    height:45px;
}

.wpp_waku{
margin: 0;
}

.news_logo_sp{
display:block;
float:left;
padding-right:20px;
    position: fixed;
    opacity: 0.8;
}
.news_pop_sp{
display:block;
position:absolute;
top:30%;
right:20%;
}


h1, h2, h3, h4, h5, h6, h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, body {
    font-family: SourceHanSansJP-Light, YuGothic, 'Yu Gothic', 游ゴシック体, 游ゴシック, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Arial, sans-serif;
}

.site-header a {
    color: #444444;
    font-weight: bold;
}

.home .entry-header,
.wpp_2
{
display:none;
}
.entry-content{
margin: 0;
}


/* ------------------------------------
 # chumoku_top
 # add 2016.6.10 t.n
 # update ----
------------------------------------ */
.sp_post{
padding: 0.5em;
}
.sp_post ul.display-posts-listing li {
    line-height: 1.4;
}
.sp_post .chumoku_cat {
    padding-left: 5px;
}
.c_tab {
    display: inline;
    font-size: 8px;
    margin-right: 5px;
    background: #ff5252;
    color: #fff;
    border-radius: 3px;
    padding: 5px;
    margin-bottom: 3px;
    vertical-align: middle;
    line-height: 2.3;
}




.ajx_content {
    width: 50%;
    display: block;
    float: left;
    padding: 5px;
    position:relative;
    min-height: 190px;
}
.ajx_date {
    /* display: none; */
    font-size:80%;
}


.ajx_textarea {
    padding-top:50%;
}

.ajx_img {
    position: absolute;
    top: 0;
    padding-right: 5px;
    height: 90px;
    overflow: hidden;
}

.ajx_info {
    min-height: 170px;
}

div.ajx_meta {
    position: absolute;
    font-size: 80%;
    line-height: 1.4;
    z-index: 90;
    opacity: 0.85;
    background:none!important;
    top:0;
}
.ajx_cat {
   display: inline;
   padding: 2px 3px;
   background: #444444;
   color:#ffffff;
   line-height: 1.2;
   font-weight: bold!important;
    color: #fff;
    padding: 1px 7px!important;
    border-radius: 9px!important;
    font-size: 100%!important;
    margin-left: 5px!important;
}
.ajx_count {
    background-color: #ffffff;
    color: #444444;
    display: none;
    padding: 0;

}



.ajx_title {
     font-weight: bold;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
    text-decoration: none;
    text-align: justify;
    background:#ffffff;
    padding-top: 2px;
}
@media screen and (max-width: 780px) {
.ajx_title a  {
   color:#000000;
    text-decoration: none!important;

}
}

.metaslider .caption {
    padding: 15px;
    word-wrap: break-word;
    font-size: 16px;
    line-height: 1.3;
}


.sns_btns_box {
    margin: 0 -5px;
    max-height: 70px;
}
.sns_btns_box {
    text-align: center;
    vertical-align: middle;
    background: #fafafa;
    padding: 10px 0 0px 0;
}

.sns_btns {
    display: inline-block;
    zoom: 1;
    margin: 0;
    vertical-align: top;
}

.entry-content-footer {
    margin-top: 0;
}

p.nxplink,p.nxtplink{
        margin: 1em auto;
	padding:0 ;

}

p.nxplink:hover,p.nxtplink:hover{
	border-radius:3px;

}

p.nxtplink a,p.nxplink a {
        padding:0 15px;
	display:block;
	padding:15px 15px 15px 75px;
        background-color: #fff;
	color: #e80008;
	text-decoration:none;
	line-height:1.5;
        font-weight: bold;
	border-radius:3px;
	box-shadow: 1px 2px 0 #9c001f;
	border: 2px solid #e80008;
	border-radius:3px;
	background:#fff url(https://www.mag2.com/p/news/wp-content/uploads/2016/06/nextpage.png) no-repeat left ;
}
p.nxtplink a:hover,p.nxplink a:hover {
	color: #000;
	border: 2px solid #000;
	-webkit-transform: translate3d(1px, 2px, 1px);
       -moz-transform: translate3d(1px, 2px, 1px);
        transform: translate3d(1px, 2px, 1px);
        box-shadow: none;
	background:#fff url(https://www.mag2.com/p/news/wp-content/uploads/2016/06/nextpage_h.png) no-repeat left ;
}

.page-links a, .page-links > span {
    border-radius: 0;
    display: inline-block;
    font-size: 1em;
    height: 30px;
    line-height: 30px;
    margin: 0 4px 4px 0;
    text-align: center;
    width: 30px;

}

.page-links a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    background-color: #ff5252;
    border-color: #ff5252;
    color: #fff;
}

.entry-content h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    padding: 0 0 0 10px;
    border-left: 7px solid #444444;
    border-top: none;
    border-bottom: none;
}

h3.widget-title,h4.widget-title {
padding:10px;
background-color:#f2f2f2;
border-left: 7px solid #444444;
}

.rpwe-block h3 {
    /* background: none!important; */
    clear: none;
    margin-bottom: 0!important;
    /* margin-top: 0!important; */
    /* font-weight: 400; */
    font-size: 14px!important;
    line-height: 1.5em;
    text-align: left;
}
.rpwe-block h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    padding: 0 0 0 10px;
    border: none;
}

li#rpwe_widget-2 {
    list-style: none;
}

#facebook-main-btn {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 10px;
}
#facebook-main-btn #facebook-main-btn-img {
    width: 55%;
    float: left;
    background-color: #000000;
}
#facebook-main-btn #facebook-main-btn-btn {
    background-color: #000000;
    width: 45%;
    float: left;
    text-align: center;
    color: #ffffff;
    padding: 20px 0 20px;
    height: 200px;
}
.fb_iframe_widget {
    display: inline-block;
    position: relative;
}

@media screen and (max-width: 970px){
#facebook-main-btn{
height:50%;
}
#facebook-main-btn #facebook-main-btn-img,
#facebook-main-btn #facebook-main-btn-img img{
    width: 100%;
    height:auto;
}
#facebook-main-btn #facebook-main-btn-btn {
    width: 100%;
    height:200px;
}
}

.post-navigation{
display:none;
}

.pf_relatedpost img {
    display: block;
    float: left;
    margin-right: 10px;
    width: 160px;
    height: auto;
    margin-bottom: 10px;
   max-height:100px;
   overflow:hidden;
}
.pf_relatedpost li.format-standard {
    list-style: none;
    margin:0;
    padding:0;
    line-height	:1.2;
    min-height:85px;
}

.pf_relatedpost li div.post-thumb {
    clear: both;
}
.pf_relatedpost span.cat-tag {
    position: absolute;
    background: #ff5252;
    padding: 2px;
    font-size: 70%;
    line-height: 1;
    color: #ffffff;
    z-index: 90;
}
.logly-lift-ad-image-inner span.cat-tag{
    left:0;
}



@media screen and (max-width: 780px)
<style>…</style>
.logly-lift-ad-content-inner {
    margin-bottom: 5px;
    line-height: 1.2;
}

 ul{
    margin: 0px!important;
}
.popular_one {
   display: block;
    position: absolute;
    left: 5%;
    top: -80px;
    background: #ff5252;
    color: #ffffff;
    border-radius: 50%;
    padding: 20px;
    line-height: 60px;
    opacity: 0.8;
}

.entry-content-main {
    padding: 0.1em 0.5em 0.5em;
    margin: 0 auto;
    clear: both;

}

div#branding-bottom {
    padding: 4px 0;
}
.page .hentry {
    padding-top: 0;
}

.ajx_title a.no_line{
text-decoration:none!important;
}
.page .entry-content a,.nxplink a,nxtplink a{
background:none;
}

.entry-header-background {

    min-height: 570px;
}
.home div.entry-header-background {
display:none;
}

.ad_single_box {
    text-align: center;
}

div.bmwlink{
    text-align: center;
    width: 100%;
    padding: 10px 0;
    background-color: #000000;
    display: block;
    margin:0;
}
div.artlink a,div.bmwlink a{
    font-weight: bold;
    color: #ffffff;
}
div.artlink a:hover,div.bmwlink a:hover {
    background-color: #f2f2f2;
    color:#444444;
}

.scroll-indicator-wrapper {
    margin-bottom: 10%;
}
.scroll-indicator {
    -webkit-animation: opacityUp .10s ease both;
    animation: opacityUp .10s ease both;
}


ul.display-posts-listing li img {
    width: 110px;
    height: 70px;
    display: block;
    float: left;
    margin: 0 5px 10px 0;
}
ul.display-posts-listing li {
font-weight:bold;
clear:both;
list-style:none;
line-height:1.2;
}

li#text-22,li#text-29,li#text-31{
    list-style: none;
}

/* after post facebook twitter share button */

 .share_btn .social-BT {
    display: inline-block;
    width: 100%;
    line-height: 70px;
    color: #FFF;
    font-size: 18px;
   cursor: pointer;
    vertical-align: text-top;
    margin: 5px auto;
    text-align:center;
}

.share_btn>li {
  float: left;
  width: 49%;
    list-style:none;
}

.textwidget{
margin-bottom:0!important;
}

.share_btn>li:first-child {
  margin-right:2%;
}


.snsBT-FB {
  background: #3468af!important;
  border-color:#3468af!important;
  padding: 0 !important;
  -webkit-border-radius:0 !important;
  -moz-border-radius:0 !important;
  -ms-border-radius:0 !important;
  -o-border-radius:0 !important;
  border-radius:0 !important;
  border-width: 0 !important;
}


.snsBT-FB:hover{
    background-color:#3468af!important;
}

.snsBT-FB:focus{
    background-color:#3468af!important;
}

.social-BT:hover {
  opacity: .75!important;
}

.social-BTIC {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  float: left;
}

.social-BTIC-fb {
  background: #154c97;
}


.snsBT-TW {
  background: #333!important;
  text-align: center;
}

.snsBT-TW:focus{
    text-decoration:none;
}

.social-BTIC-tw {
  background: #000;
}


@media only screen and (max-width:640px) {

.share_btn .social-BT {
  display: inline-block;
  width: 100%;
  line-height: 50px;
  color: #FFF;
  font-size: 18px;
  margin-top:-20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.share_btn>li {
  width: 100%;
}

.share_btn>li:first-child {
  margin-right:5px;
}

.social-BTIC {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  float: left;
}

}

@media only screen and (max-width:450px) {

.share_btn .social-BT {
  font-size: 16px;
}

}

@media only screen and (max-width:414px) {

.share_btn .social-BT {
  width: 100%;
  line-height: 55px;
  color: #FFF;
  font-size: 18px;
  margin-bottom:0;
}

.share_btn>li {
  width: 100%;
}

.share_btn>li:first-child {
  margin-top:-2px;
  margin-bottom:20px;
  margin-right:0;
}

.social-BTIC {
  display: block;
  width: 55px;
  height: 55px;
  line-height: 55px;
}

}

li#text-10,li#text-7 {
    list-style: none;
    padding: 0 0 20px 0;
}

h4.widget-title{
margin:10px 0;
}

.metaslider div.caption{
padding: 40px 10px 15px 10px!important;
}
.metaslider div.caption-wrap{
background: -moz-linear-gradient(top,transparent,#000000); /* Firefox用 */
	background: -o-linear-gradient(transparent,#000000); /* Opera */
	background: -webkit-gradient(linear,left top,left bottom,from(transparent),to(#000000)); /* Safari,Google Chrome用 */
	background: linear-gradient(top,transparent,#000000);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='#000000', GradientType=0)"; /* IE8用 */
opacity:1;
}



.page div#content {
    margin: 0.5em;
}
.home div#content{
margin-left:0;
margin-right:0;
}

.page-links{
 text-align: center;
 font-size: 120%;

}
.page-links a, .page-links > span {
    border-radius: 0;
    display: inline-block;
    font-size: 1em;
    height: 40px;
    line-height: 40px;
    margin: 0 6px 6px 0;
    text-align: center;
    width: 40px;
}

.page-links a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    background-color: #e60008;
    border-color: #e60008;
    color: #fff;
}
.page-links a:hover {
    background-color: #000;
    border-color: #000;
    text-decoration:none;
    font-weight:bold;
}

.post-list a,.rpwe-title a,.display-posts-listing li.listing-item a {
    text-decoration: none!important;
    font-size: 14px;
    color: #000000!important;
    font-weight: bold;
}

.tag_list a:before {
    content: "\f02b";
    font-family: FontAwesome;
    padding: 0 0.1em 0 0.4em;
    color: #444444;
}
.tag_list a {
 text-decoration: none;
 color:#444444;
}
.tag_list a  {
   line-height: 1.3;
   padding: 0.5em 0.5em;
    margin-bottom: 2px;
    background: #d4d4d4;
}
.tag_list a{
line-height:1;
font-size:small;
margin:10px 10px 0 0;
display:inline-block;
}

p.tag_list a:hover {
   background:#ff5252;
   color:#ffffff;
}

li#menu-item-197002 a {
    width: 100%;
    height: 40px;

}

.keyword_inpost{
display:none;
}

.page:not(.parent-pageid-193617).entry-header-inner {
    display: none;
}

.page:not(.parent-pageid-193617).entry-header-background {
    display: none;
}

#page:not(.parent-pageid-193617) div#content{
    margin-top:45px;
}
.single-post div#content{
    margin-top:0px!important;
}


.single-post .site-header {
    opacity: 1.0;
    /* background: rgba(255,255,255,0.4); */
    background:none;
    border-bottom:0px;
}
.entry-content {
    font-size:110%!important;
     color:#000000!important;
      line-height:1.75!important;
}

.logly-lift-ad-title {
    line-height: 1.2;
    font-size: 80%;
}

.search .post-thumbnail {
    display: block;
    float: left;
    margin: 0 5px 0 0;
    width: 50%;
}

.wpp_main.wpp_1 {

     overflow:hidden;
}
/* ------------------------------------
 # weekly ranking 簡易版
 # add 2016.4.20 t.n
 # update ----
------------------------------------ */
ul.display-posts-listing {
    margin-left: 0;
    margin-bottom: 0;
}

ul.display-posts-listing li.listing-item {
 list-style:none;
}

.display-posts-listing img.attachment-y-image-180 {
    display: block;
    width:95%;
}

.display-posts-listing a.title {
    color: #333333;
    font-weight: bold;
    font-size: 110%;
   vertical-align: top;
}

div.display_best2 .display-posts-listing a.title{
font-size:150%;
}

div.mousugu_ranking ul.display-posts-listing li img.attachment-y-image-180{
display: block;
width: 25%;
margin-right:5px;
margin-bottom:10px;
float: left;
}


div.mousugu_ranking hr,div.mousugu_ranking ul.display-posts-listing li hr {
    margin-top: 10px;
    margin-bottom: 10px;
   clear:both;
}

.label-danger {
    display: inline;
    padding: 5px 10px;
    font-size: 120%;
    margin: 3px;
    position: absolute;
    background: #d9534f;
    ont-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

div.mousugu_ranking.label-danger{
  display: inline;
  padding: 3px;
  font-size: 70%;
  margin:2px;
  position: absolute;
}
div.mousugu_ranking span.label-danger{
  font-size:80%!important;
  background: #f2f2f2;
  color:#333333;
 }

.display_best2 img{
width:100%;
}

li#text-22, li#text-29, li#text-30,li#text-10,li#text-7,li#text-34{
list-style:none!important;
}
ul.share_btn li:first-child {
    margin-top:30px;
}

.single-post{
    background: #f2f2f2;
}

@media screen and (min-width:500px) {
.ajx_textarea {
    border:none!important;
}
.ajx_img {
    height: 180px;
    overflow: hidden;
}
.ajx_textarea {
    padding-top:48%;
}
}
@media screen and (max-width:500px) {
.ajx_img {
    height: 100px;
    overflow: hidden;
}
.ajx_textarea {
    padding-top:50%;
}
}
@media screen and (max-width:440px)  {
.ajx_img {
    height: 95px;
    overflow: hidden;
}
.ajx_textarea {
    padding-top:50%;
}
}
@media screen and (max-width:340px) {
.ajx_img {
    height: 100px;
    overflow: hidden;
}
.ajx_textarea {
    padding-top:55%;
}
}

#chumoku_sidebar img {
    width: 50px;
    height: 50px;
    display: block;
    float: left;
    margin: 0 10px 5px 0;
    object-fit : cover;
}
div#chumoku_sidebar {
    margin: 0;
}
span.cat-tag {
    position: absolute;
    left: 0.7em;
    font-size: 70%;
    padding: 3px;
    color: #ffffff;
    line-height: 1;
}
div#chumoku_sidebar li {
    list-style: none;
}

div#chumoku_sidebar li {
    list-style: none;
    line-height: 1.2;
    clear: both;
     min-height:80px;
}

.page:not(.parent-pageid-193617).header_banner{
margin-top:50px;
}
.single-post div.header_banner{
display:none;
}

div.sp_post_ad{
text-align:center;
}
div.sp_post_ad img{
margin:0 auto;
}

.error404 div.art_ad_header_sp,.error404 div.outdoor_ad_header_sp,
.search-no-results div.art_ad_header_sp,.search-no-results div.outdoor_ad_header_sp{
display:none;
}

.metaslider .caption a{
color:#ffffff!important;
}

.entry-header-background.right{
background-position: right!important;
}
.entry-header-background.left{
background-position: left!important;
}
.entry-header-background.center{
background-position: center!important;
}

/* ------------------------------------
 # 記事, コンテンツ中の文字、行間調整
 # add 2016.6.10 y.i

 # update ----
------------------------------------ */
.entry-content-main h4 {
    margin: 20px 0 20px 0;
    padding: 0 0 10px 0;
    font-weight: bold;
    border-bottom: 1px dotted #363b3f;
    font-size: 18px;
　　font-style: normal;
    line-height: 1.75;
    letter-spacing: 0px;
    text-transform: none;
}

/* ------------------------------------
 # 記事, コンテンツ中ol,ulの調整
 # add 2016.6.10 y.i
 # update 2016.6.21 n.h
------------------------------------ */
.entry-content-main ol,
.entry-content-main ul {
    margin-left: 0;
    margin-bottom: 15px!important;
    list-style: none;
}
.entry-content-main ol li,
.entry-content-main ul li {
    margin-left: 45px;
    margin-bottom: 5px;
    list-style: disc;
}

.entry-content-main ul.share_btn li {
	margin-left:0;
   	list-style: none;
}
.entry-content-main #chumoku_sidebar ul li {
	margin:0;
   	list-style: none;
}

ul.post-list.post-list-with-thumbnail.post-list-with-format-icon.secondary-2-primary.vertical,
ul.share_btn.clearfix {
    margin-left: 0!important;
    margin-bottom: 0!important;
}
ul.share_btn.clearfix {
    padding-top:30px;
}
#logly-lift-3747081 div .logly-lift-ad-content ul {
    margin: 0!important;
}
.logly-lift-ad ul li {
    list-style-type: disc;
}

ul.display-posts-listing li {
    line-height: 1.3;
    margin-left:0;
}
ul.display-posts-listing .c_num {
  color: #999999;
  display: inline;
  margin-left: 10px;
  font-size: 80%;
  font-weight: normal;
}
.chumoku_cat {
    display: inline;
    font-size:80%;
    color:#d4d4d4;
}

/* shareranking sidebar -t.n */
li#text-32,#text-32 ul li {
    list-style: none;
}
#text-32 ul{
margin-left:0!important;
}
#text-32 li{
clear:both;
min-height:80px;
padding-top:5px;
border-top:1px solid #d4d4d4;
font-size:90%;
}
#text-32 li:first-child{
border-top:none;
}
#text-32 img.attachment-related_image.size-related_image.wp-post-image {
    display: block;
    float: left;
    margin: 0 5px 0 0;
}

/* blockquote in post -t.n */
blockquote {
    border-left: none;
    font-style: normal;
    padding-left: 0;
    background-color: #fff;
}

/* slider - t.n */
.sp-thumbnails-container{
display:none;
}
.sp-caption-container {
    position: absolute;
    bottom: 0;
    font-size: 80%;
    text-align: left;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    padding: 10px;
    line-height: 1.3;
}

.sp-caption-container a{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-indent:-999px;
}
.sp-horizontal .sp-previous-arrow {
    left: 10px;
}
.sp-horizontal .sp-next-arrow {
    right: 10px;
}
.sp-fade-arrows {
    opacity: 1;
}



/* slider */
div#pointelle_slider_2-nav {
    display: none!important;
}
div#pointelle_slider_2{
margin-bottom: 0px!important;
}

/* chumoku */
.sp_post li.listing-item {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:90%;
    font-weight:bold;
}
.c_title{
display:inline;
}
.sp_post li{
list-style:none;
}


/*--------------------------------
SNSボタン
---------------------------------*/

.share-inc {
    width: 100%;
    background: #f2f2f2;
    margin:0 ;
    padding:5px 0;
　　text-align:center;
 }

/*ボタン全体*/
.sns-btn{
	width:36%;
	min-width:116px;
	padding:0;
	float:left;
	border-radius:5px;
	margin:2% 1% 2% 0;
}

.sns-btn div{
	float:left;
	margin:0;
}
.sns-btn a{
	margin:0!important;
}

.btn-l{
	width:58%;
	height:35px;
}
.btn-r{
	width:42%;
	height:35px;
}

.btn-l{
	-webkit-border-radius: 5px 0 0 5px / 5px 0 0 5px;
	-moz-border-radius:  5px 0 0 5px / 5px 0 0 5px;
	border-radius:  5px 0 0 5px / 5px 0 0 5px;
}
.btn-r{
	-webkit-border-radius: 0 5px 5px 0 /0 5px 5px 0;
	-moz-border-radius:  0 5px 5px 0 /0 5px 5px 0;
	border-radius:  0 5px 5px 0 /0 5px 5px 0;
}

.btn-l:hover,
.btn-r:hover{
	-webkit-transform: translate3d(0px, 5px, 1px);
	-moz-transform: translate3d(0px, 5px, 1px);
	transform: translate3d(0px, 5px, 1px);
    box-shadow: 0 0 2px 30px rgba(0, 0, 0, 0.3)inset;
}

/*ボタン左*/
.sbtn {
  display:block;
  border-radius:1px;
  -webkit-transition:all .5s;
  -moz-transition:all .5s;
  transition:all .5s;
  overflow:hidden;
  padding:12.5px 1%;
  line-height:1em;
  text-decoration:none;
  text-align:center;
  font-size:75%;
  color:#fff!important;

}


/*ボタン右*/
.btn-count{
	font-size:75%;
	display:block;
	color:#fff!important;
	padding:12.5px 0;
	text-align:center;
    line-height:1em;
	word-wrap:break-word;
	text-decoration:none;
    box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.15)inset;
}

.sbtn:hover,
.btn-count:hover{
	color:#fff;
	text-shadow: 1px 1px 1px #fff ;
        box-shadow: none;
        text-decoration:none;
}
.btn-count span {
	padding:0 2px;
}

/*fbいいね*/

.fb-likebox{
	margin-left:1%;
	max-width:82px!important;
	min-width:82px!important;
}

/*Facebook*/
.btn-facebookl:hover > i,.btn-facebookl:focus > i {
  color:#3b5998 ;
  text-shadow: 1px 1px 1px #fff,-1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff ;

}

.fb-l,.fb-r{
 background-color:#3b5998;
 box-shadow:0 5px 0 #2c4373;

}

/*Twitter*/
.btn-twitterl:hover > i,.btn-twitterl:focus > i {
  color:#55acee;
  text-shadow: 1px 1px 1px #fff,-1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff ;

}
.tw-l,.tw-r{
	background-color:#000;
    box-shadow:0 5px 0 #333;
}
.tw-l {
	width: 100%;
	border-radius: 5px;
}
.tw-r {
	display: none;
}



/* Pocket */
.btn-pocket:hover > i,.btn-pocket:focus > i {
	color:#f03e51;
    text-shadow: 1px 1px 1px #fff,-1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff ;

}
.pk-l,.pk-r{
	background-color:#f03e51;
    box-shadow:0 5px 0 #c0392b;
}

/* ポケットカウント非表示用 2016.11.28 y.i*/
.btn-l.pk-l {
    border-radius: 5px;
    width: 100%;
}
.btn-r.pk-r {
    display: none;
}

/* はてぶ */
.btn-hatena:hover > i,.btn-hatena:focus > i {
	color:#5d8ac1;
    text-shadow: 1px 1px 1px #fff,-1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff ;

}
.hb-l,.hb-r {
background:#5d8ac1;
box-shadow:0 5px 0 #43638b;
}
.fa-hatena:before {
    content: "B!";
    font-family: Verdana;
    font-weight: bold;
	font-style:normal;
}
/**
 * SIBERIA-528
 *
 * add: 2016.07.13 n.h
 */
.listing-item.share-ranking-ad {
  overflow: hidden;
  background: #ffedd5;
  padding: 8px;
  margin-bottom: 10px;
}
.listing-item.share-ranking-ad img {
  margin: 0 10px 0 0;
}


.ad_side_large a img{
    margin:0 auto;
}





blockquote {
    padding: 1em!important;
    width: 100%;
    margin-left: 0px!important;
}
@media screen and (min-width: 43.75em)
blockquote {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.63636;
    margin-bottom: 32px;
    margin-left: 0!important;
}
/* chumoku pr waku */
.ajx_pr_sp {
    color: #999999;
    font-size: small;
    display:inline;
    padding-left:5px;
}
.ajx_pr_pc{
    display:none;
}
.chumoku_ad {
    display: inline;
    color: #999999;
    font-size:small;
    font-wqeight:normal;
}

/* sidebar pr sp */
.pr_label_sp {
   display: block;
   float: right;
   background: #999999;
   color: #fff;
   padding: 2px 5px;
   font-size: 10px;
}
.sp_post li.listing-item:first-child {
   border-top: 1px dotted #222222;
}
/* post footer pr label */
.pr_label {
   display: block;
   background: #e60008;
   font-size: 14px;
   color: #fff;
   padding: 5px;
   line-height: 1;
   margin-right: 5px;
   float: left;
}
.ad-disclosure_chumoku{
    display: inline;
    color:#666666;
    font-size:small;
}

/* footer text ad */

div.pr_navi a {
 display: block;
 padding:10px;
 background:#5ae628;
 color:#ffffff;
 font-weight:bold;
}
div.pr_navi a:hover {
 background-color: #9de582;
 color: #333333;
  text-decoration:none;
  position:relative;
  top:3px;
  left:3px;
}
div.pr_navi_outdoor a {
 background:#3b71c6;
}
div.pr_navi_outdoor a:hover {
 background-color: #b1cdf9;
}
div.pr_navi_business a {
 background:#152c51;
}
div.pr_navi_business a:hover {
 background-color: #5977a8;
 color:#fff;
}


/***** お知らせ resonar 2016.12.1 y.i****/

.oshirase-box-inc{
	border: 1px solid #e80008;
	border-radius: 4px;
	margin: 3em 3% 2em;
	padding: 2em 1em 0.5em ;
	position:relative;
	line-height:1.3;
	font-size:12px;
	text-align:left;
	word-wrap:break-word;
}

.single-post .oshirase-box-inc .osirase-title{
	background-color:#f2f2f2;
}

.oshirase-box-inc .osirase-word{
	font-size:14px;
	font-weight:bold;
	color:#333;
}

.oshirase-box-inc .osirase-title{
	background-color:#ffffff;
	color:#e80008;
	font-weight: bold;
	left: 0;
	padding: 0 .5em;
	position: absolute;
	top: -1.5em;
	line-height:1.2;
	margin:0 0.5em;
	font-size:16px;
	text-align: center;
}
.oshirase-box-inc .osirase-word a{
	text-decoration: underline;
}

.oshirase-box-inc p {
    line-height: 1.3;
}

.oshirase-box-inc .osirase-step{
	display:none;
}


#logly-lift-3753629 #logly-lift-widget-label-caption {
    display:none;
}

/***** 記事中フォーム 2016.12.07 y.i****/
.rdmail-wrap2 {
	width:100%;
	padding:5px 0 10px;
}

.rdmail-wrap2 ul {
	list-style:none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 20px!important;
    justify-content:center;
	align-items:center;
	padding:0;
}

.rdmail-wrap2 ul li {
	padding:0 0.5px 5px!important;
	text-align:center;
	margin:0!important;
	list-style:none!important;
	align-self:flex-end;
}

.rdmail-wrap2 .supple {
    padding: 0;
    margin: 0 0 5px 5px!important;
    text-align: left;
    font-size: 14px;
    line-height:1;
	color: #333;
}

.rdmail-wrap2 p a{
	color: #e80008;
	text-decoration:none;
}

.rdmail-wrap2 p a:hover {
	text-decoration:underline;
}
.rdmail-wrap2 p {
    margin-bottom: 0!important;
    font-size:13px;
}


.rdmail-wrap2 .rdmail-title {
	font-size: 100%px;
	text-align:center;
	padding:10px 10px 15px;
	margin:0!important;
	color:#333;
}

.rdmail-wrap2 input[type="email"] {
	height:35px;
	width:180px;
	padding:0 10px;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	font-size:16px;
	border-radius: 3px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0 1px rgba(0, 0, 0, 0.2);
	outline: none!important;

}

.rdmail-wrap2 input[type="email"]:focus {
	border:2px solid #ef6767;
}


.rdmail-wrap2 .rdmail-reg {
    width: 100px;
    height:50px!important;
    padding: 2px 0;
    font-size:100%;
    color: #FFFFFF!important;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    line-height:1;
    background: #ef6767;
    border:none;
    border-radius:2px;
    transition:all 0.5s;
}

.rdmail-wrap2 .rdmail-reg:hover {
	background: #e80008!important;
}
p.sp_archive_magazine_desc{
    padding:0 0.5em!important;
}

/* seikyu button */
p.seikyu_btn {
	margin: 0 auto;
	text-align: center;
}

.btn-primary {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	display: inline-block;
	min-width: 150px;
	font-weight: bold;
	font-size: 16px;
	margin: 0 auto;
	cursor: pointer;
	padding: 15px 20px;
	color: #fff!important;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	-webkit-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
	transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s;
	-webkit-font-smoothing: antialiased;
	transform: perspective(0);
	width : 95%;
}

.btn-primary:hover {
	color:#fff;
	text-decoration: unset;
}



/*----------------------------------------------------
      矢印アイコン位置調整
-----------------------------------------------------*/
.btn-primary i {
	margin-left: 10px;
}

/*---------------------------------------------------
      ボタン青
-----------------------------------------------------*/
.btn-blue {
	background-color: #22a3df;
}

.btn-blue:hover {
	opacity: 0.8;
}

.btn-blue:active {
	opacity: 0.8;
}

/*---------------------------------------------------
      ボタン緑
-----------------------------------------------------*/
.btn-green {
	background-color: #82b916;
}

.btn-green:hover {
	opacity: 0.8;
}

.btn-green:active {
	opacity: 0.8;
}

/*---------------------------------------------------
      ボタンオレンジ
-----------------------------------------------------*/
.btn-orange {
	background-color: #f77b03;
}

.btn-orange:hover {
	opacity: 0.8;
}


/*----------------------------------------------------
      ボタン赤
-----------------------------------------------------*/
.btn-red {
	background-color: #e74242;
}

.btn-red:hover {
	opacity: 0.8;
}

.btn-red:active {
	opacity: 0.8;
}


/*----------------------------------------------------
      フォーカス枠なし
-----------------------------------------------------*/
.btn-primary-blue :focus,.btn-primary-green :focus,
.btn-primary-orenge :focus,.btn-primary-red :focus{
    outline: 0!important;
}

/* kokuchi style */
li#text-30,li#text-33,li#text-34{
    padding-bottom:15px;
    list-style:none;
}


/*---- 記事中フォーム目立たないver 2017.01.05 y.i ----*/
.rdmail-wrap2 {
	width:100%;
	padding:5px 0 10px;
}

.rdmail-wrap2 ul {
	list-style:none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 20px!important;
    justify-content:center;
	align-items:center;
	padding:0;
}

.rdmail-wrap2 ul li {
	padding:0 0.5px 5px!important;
	text-align:center;
	margin:0!important;
	list-style:none!important;
	align-self:flex-end;

}

.rdmail-wrap2 .supple {
    padding: 0;
    margin: 0 0 5px 5px!important;
    text-align: left;
    font-size: 14px;
    line-height:1;
	color: #333;
}

.rdmail-wrap2 p a{
	color: #e80008;
	text-decoration:none;
}

.rdmail-wrap2 p a:hover {
	text-decoration:underline;
}
.rdmail-wrap2 p {
    margin-bottom: 0!important;
    font-size:13px;
}


.rdmail-wrap2 .rdmail-title {
	font-size: 100%px;
	text-align:center;
	padding:10px 10px 15px;
	margin:0!important;
	color:#333;
}

.rdmail-wrap2 input[type="email"] {
	height:35px;
	width:100%;
	padding:0 10px;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	font-size:16px;
	border-radius: 3px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0 1px rgba(0, 0, 0, 0.2);
	outline: none!important;

}

.rdmail-wrap2 input[type="email"]:focus {
	border:2px solid #ef6767;
}


.rdmail-wrap2 .rdmail-reg {
    width: 100px;
    height:50px;
    padding: 2px 0;
    font-size:100%;
    color: #FFFFFF!important;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    line-height:1;
    background: #ef6767;
    border:none;
    border-radius:2px;
    transition:all 0.5s;
}

.rdmail-wrap2 .rdmail-reg:hover {
	background: #e80008!important;
}
p.sp_archive_magazine_desc{
    padding:0 0.5em!important;
}

@media only screen and (max-width:340px) {
.rdmail-wrap2 .rdmail-reg {
	width:70px;
}
.rdmail-wrap2 p {
    font-size: 11px;
}
}

/*有料メルマガ登録ボタン(目立たないver)*/

.excludefeed.rdmail-wrap3 {
	text-align:center;
}

.excludefeed.rdmail-wrap3 a {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    background: #ef6767;
    color: #fff;
    border-radius: 2px;
    font-weight: 400;
	transition:all 0.3s;
	text-decoration:none;
}


.excludefeed.rdmail-wrap3 a:hover {
    background: #e80008;
}

/* site margin */
.site-main {
    border-bottom: 1px solid transparent;
    margin: 0!important;
}

/* top slider button */
div#pointelle_slider_4-nav{
    display:none!important;
}

/* author info in post */
div#metaauthor, div#metaauthor a {
    font-size: small;
    margin-bottom: 10px;
    color: #666666;
}

/* tokushu page t.n 20170131*/
.parent-pageid-193617 .entry-header-inner {
    background: rgba( 0, 0, 0, 0.35 );
    padding-top: 5vw!important;
    padding-bottom: 5vw!important;
    width: 90%;
    margin: 0 auto;
}
.parent-pageid-193617 .ajx_img a:after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 100px rgba(0, 0, 0, 0.2);
}
.parent-pageid-193617 .entry-content {
padding: 1vw!important;
}
.parent-pageid-193617 article.ajx_content{
    width:48.5vw;
    margin: auto;
    min-height: 73vw;
    overflow:visible;
}
.parent-pageid-193617 .ajx_title,
.parent-pageid-193617 .ajx_date {
    position: relative;
    display:inline;
}
.parent-pageid-193617 .ajx_exerpt{
    display:none;
}
.parent-pageid-193617 .ajx_img img {
  max-width:180%;
  min-width:100%;
  width:auto;
  min-height:100%;
  max-height:120%;
  height:auto;
  position:relative;
  top:0;
  right:-30%;
  bottom:0;
  left:-30%;
  margin:auto;
}
.parent-pageid-193617 .ajx_img {
    max-height: 48vw;
    overflow: hidden;
    vertical-align: bottom;
    transition: 0.3s;
}
.parent-pageid-193617 .entry-header-background {
    height: 50vh!important;
}
.parent-pageid-193617 .ajx_info{
    min-height:auto!important;
    max-height: 120px;
}

.parent-pageid-193617 .ajx_textarea {
    padding-top: 48.5vw;
    line-height: 1.3;
    padding-left: 0.3em;
}
.parent-pageid-193617 .ajx_meta{
    display:inline;
    position:relative;
}
.parent-pageid-193617 div.ajx_img a:after{
  /* default filter -yellowgreen */
    background: rgba(0, 255, 0, 0.05);
}
.page-id-237599 div.ajx_img a:after,
.page-id-236755 div.ajx_img a:after{
  /* history retro -sepia */
    background: rgba(255, 153, 0, 0.05)!important;
}
.page-id-236739 div.ajx_img a:after{
  /* culture -purple */
    background: rgba(0, 157, 255, 0.05)!important;
}
.page-id-236756 div.ajx_img a:after{
  /* science -blue */
    background: rgba(0, 0, 255, 0.05)!important;
}
/*  p_num3 */
.parent-pageid-193617 article.ajx_content.p_num3 {
    width: 96vw;
    min-height: 35vw!important;
    height: 35vw!important;
    border: 1px solid #d4d4d4;
    margin: 10px 1vw;
    padding-left: 0!important;
}
.parent-pageid-193617 article.ajx_content.p_num9 {
    width: 96vw;
    min-height: 35vw!important;
    height: 35vw!important;
    border: 1px solid #d4d4d4;
    margin: 10px 1vw;
    padding-right: 0!important;
}

.parent-pageid-193617 .ajx_img.p_num9 {
    right: 0;
}
.parent-pageid-193617 .ajx_textarea.p_num3 {
    padding-top: 0;
    padding-left: 38vw;
}
.parent-pageid-193617 .ajx_textarea.p_num9 {
    padding-top: 0;
    padding-right: 38vw;
}
.parent-pageid-193617 .ajx_img.p_num3,
.parent-pageid-193617 .ajx_img.p_num9 {
    height: 35vw;
    width: 35vw;
}
/* pmun_6 */
.parent-pageid-193617 article.ajx_content.p_num6,
.parent-pageid-193617 article.ajx_content.p_num12 {
    width: 97vw;
    height: 60vw;
    min-height:60vw;
    overflow: hidden;
    margin-bottom:5px;
}
.parent-pageid-193617 .ajx_info.p_num6,
.parent-pageid-193617 .ajx_info.p_num12 {
    display: block;
    position: absolute;
    bottom: 3vw;
    width: 97vw;
}
.parent-pageid-193617 .ajx_textarea.p_num6,
.parent-pageid-193617 .ajx_textarea.p_num12{
    padding-top:0;
    line-height: 1.3;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
.parent-pageid-193617 .ajx_img.p_num6,
.parent-pageid-193617 .ajx_img.p_num12 {
    max-height: 60vw;
    width:97vw;
    height:60vw;
 }
.parent-pageid-193617 .ajx_title.p_num6 a,
.parent-pageid-193617 .ajx_title.p_num12 a{
    color: #fff!important;
    font-size: 120%;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.3), -1px 0 1px rgba(0,0,0,0.3), 1px 0 1px rgba(0,0,0,0.3), 0 1px 1px rgba(0,0,0,0.3), 1px 1px 1px #000, 2px 2px 2px rgba(0,0,0,0.4), 3px 3px 3px rgba(0,0,0,0.4);
padding: 35vw 0 5vw 0;
}
.parent-pageid-193617 article.ajx_content.p_num3 a,
.parent-pageid-193617 article.ajx_content.p_num9 a {
width: 100%;
height: 30vw;
display: block;
}
.parent-pageid-193617 .ajx_img.p_num6 img,
.parent-pageid-193617 .ajx_img.p_num12 img {
  max-width:120%;
  min-width:100%;
  width:auto;
  min-height:100%;
  max-height:120%;
  height:auto;
  position:relative;
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin:auto;
}

.parent-pageid-193617 .ajx_img.p_num1,
.parent-pageid-193617 .ajx_img.p_num2,
.parent-pageid-193617 .ajx_img.p_num4,
.parent-pageid-193617 .ajx_img.p_num5,
.parent-pageid-193617 .ajx_img.p_num7,
.parent-pageid-193617 .ajx_img.p_num8,
.parent-pageid-193617 .ajx_img.p_num10,
.parent-pageid-193617 .ajx_img.p_num11{
    height:48vw!important;
}
.parent-pageid-193617 .ajx_title.p_num1 a,
.parent-pageid-193617 .ajx_title.p_num2 a,
.parent-pageid-193617 .ajx_title.p_num4 a,
.parent-pageid-193617 .ajx_title.p_num5 a,
.parent-pageid-193617 .ajx_title.p_num7 a,
.parent-pageid-193617 .ajx_title.p_num8 a,
.parent-pageid-193617 .ajx_title.p_num10 a,
.parent-pageid-193617 .ajx_title.p_num11 a{
width:100%;
display:block;
height:30vw;
}

@media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2){
    /* iPhone5 */
.parent-pageid-193617 article.ajx_content {
    min-height: 80vw;
}
}
@media screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2){
    /* iPnohe6*/
}
@media screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 2){
    /* iPhone6 Plus*/
.parent-pageid-193617 article.ajx_content {
    min-height: 68vw;
}
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) {
    /* iPad*/
.parent-pageid-193617 .entry-content p {
    font-size: 150%;
}
.parent-pageid-193617 .ajx_title,
.parent-pageid-193617 .ajx_date,
.parent-pageid-193617 .ajx_meta {
    font-size: 140%;
    line-height: 1.3;
}
.parent-pageid-193617 .ajx_img img {
    max-width: 200%;
    min-width: 100%;
    width: auto;
    min-height: 100%;
    max-height: 120%;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
}

@media screen and (min-width:769px) {
/* iPad Pro */
.parent-pageid-193617 .page .entry-content a,.page-id-215640 .entry-content{
    font-size:2rem!important;
    color:#000;
}
.parent-pageid-193617 .ajx_img img {
    max-width: 200%;
    min-width: 100%;
    width: auto;
    min-height: 100%;
    max-height: 120%;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
}
.parent-pageid-193617 .entry-header-background{
    background-position-x:right;
}
.parent-pageid-193617 header#masthead {
    background: none!important;
}
.parent-pageid-193617 h1.entry-title {
    text-align: center;
    font-size:1.4rem;
}
.parent-pageid-193617 h1.entry-title .tokushu_title{
    font-family: 'Abril Fatface', cursive;
    font-size: 2.2rem;
    letter-spacing: 0.2em;
}
.parent-pageid-193617 div#content {
    margin: 0;
}
.parent-pageid-193617 .entry-content {
    padding: 1vw!important;
    margin-top: 10px;
}
.parent-pageid-193617 .header_banner {
    margin-top: -50px!important;
}
.parent-pageid-193617 .site-header{
    border:none!important;
}
.parent-pageid-193617 .ajx_title.p_num6,
.parent-pageid-193617 .ajx_title.p_num12{
    background:none;
}
.tokushu_banner.ban01 {
    margin-bottom: 5px;
}
.tokushu_wrap.tokushu_group {
    margin-bottom: 10px;
}
/* tokushu_gallery t.n */
.content-gallery {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 5px 0 15px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.content-gallery .content-gallery-card {
  max-width: 300px;
  min-width: 300px;
  margin: 0;
  padding: 5px;
  background-color: #FFF;
  border: solid 1px #CCC;
}

/* tokushu business t.n */
.pc_ban{
    display:none;
}
.tokushu_ban.sp_ban {
    margin: 0 auto;
    width: 95vw!important;
    padding-top: 3vw;
}
.tokushu_ban.sp_ban img {
    width: 100%;
}
.biz_ad_sp img {
    width: 100%;
    margin-bottom:3vw;
}
div#facebook-main-btn img.attachment-list_top.size-list_top.wp-post-image {
    width: 100%!important;
}
.ad_single_box img {
    margin: 0 auto;
}
.under_post_sp {
    text-align: center;
    margin: 0 auto;
}
.before_post_sp img {
    width: 100%;
}

@media only screen
and (orientation:landscape) {
div#click-menu {
    margin-top: 2%;
}
}

@media only screen
and (orientation:portrait){
div#click-menu {
    margin-top: 3%;
}
}


/* mag_author */
p.mag_author_p {
    margin-bottom: 0!important;
}


/* prime ad style */
@charset "utf-8";
.aaprad {
    display: table;
    width: 100%;
    position: relative;
    clear: both;
    line-height: 1.2;
    margin-bottom: 0px;
}
/*サムネイル画像*/
.aaprad-img {
    float: left;
    line-height: 1;
    overflow: hidden;
    position: relative;
    padding: 0 ;
    /*サムネイル画像枠サイズはこちら*/
    width: 160px;
    height: 100px;
    overflow: hidden;
    margin:0 10px 10px 0 ;

}

.aaprad-img > a {
    display: block;
    width: 160px;
    height: 120px;
    overflow: hidden;
}

.aaprad-img a img {
    width: 160px;
    height: 120px;
    border: none;
}
/*タイトル*/
.aaprad-title {
    overflow: hidden;
}

.aaprad-title a {
    padding: 0 0 5px;
    display: block;
    /*タイトルのフォント指定等はこちら*/
    color: #000000;
    font-size: 14px;
    font-weight:bold;
    line-height:1.3;
}

.aaprad-description {
    overflow: hidden;
}

.aaprad-description a {
    padding: 0 5px 5px;
    display: block;
    /*本文のフォント指定等はこちら*/
    color: #000;
    font-size: 0.76rem;
    text-decoration: none;
}
/*広告主体主名称*/
.aaprad-company {
    overflow: hidden;
    margin-bottom: 24px;
}

.aaprad-company a {
    padding: 0 8px;
    display: block;
    /*広告主体主名称のフォント指定等はこちら*/
    color: #999;
    font-size: 0.70rem;
    text-decoration: none;
    text-align: right;

}

.aaprad-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.aaprad-info img {
   display:inline;
}


.aaprad-info a {
    text-decoration: none;
    font-family: Arial,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif;
    vertical-align: middle;
    color: #555;
    font-size: 10px;
}

.aaprad-info img {
    margin-left: 4px;
    display: inline-block!important;
    vertical-align: middle;
}

.aaprad-thumbnail .aaprad-title ,
.aaprad-thumbnail .aaprad-description ,
.aaprad-thumbnail .aaprad-company {
    margin-left: 116px;
}
/* prime ad style end */

/*ハンバーガーメニューの位置調整*/
#responsive_menu_pro_header_bar.responsive_menu_pro_admin_bar_showing, #responsive_menu_pro_button.responsive_menu_pro_admin_bar_showing {
    margin-top: 8px!important;
}

div#responsive_menu_pro_button #responsive_menu_x {
    color: #fff!important;
    top: -2px!important;
}
div#responsive_menu_pro.responsive_menu_pro_admin_bar_showing {
    padding-top: 0px!important;
}

/* temporary change 20170426 nishimu */
.page-id-233298 header#masthead,
.page-id-233298 div#responsive_menu_pro_button {
    display: none!important;
}


/*フローディングメニュー　20170420*/
	#fixheader {
    position: fixed;
    z-index: 999999;
    width: 100%;
    left: 0;
    top: 0px;
    opacity: 1;
    box-sizing: border-box;
    background: rgba(0,0,0,0.7);
		border-bottom: 1px solid #ffffff;
}
	#fixheader 	.fh_warp{
		width: 100%;
		max-width: 1170px;
		display: block;
		margin: 0 auto;
		padding: 0;
	}
	#fixheader .fh_warp .logo-box{
		display: inline-block;
    padding:  7px 0 8px 0;
	}

/*ham menu*/
#fixheader .ham-box-inc  #ham-menu-box {
    background-color: #333; /*メニュー背景色*/
    box-sizing: border-box;
    height: 100%;
    padding: 0; /*メニュー内左右上下余白*/
    position: fixed;
    right: -280px; /*メニュー横幅 width と合わせる*/
    top: 0;
    transition: transform 0.2s linear 0s; /*0.3s はアニメーションにかかる時間*/
    width: 280px; /*メニュー横幅*/
    z-index: 999999;
	 list-style: none;
}

#fixheader  .ham-box-inc #menu-background {
    background-color: #333; /*黒背景*/
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.2s linear 0s; /*0.3s はアニメーションにかかる時間*/
    z-index: -1;
}

#fixheader  .ham-box-inc .ham-title {
  color: #999999;
  font-weight: bold;
  line-height: 30px;
  margin:  10px ;
  font-size: 16px;
	text-align: center;
}
#fixheader .ham-box-inc  #menu-icon {
    background-color: none; /*アイコン部分背景色*/
    border-radius: 0 0 0 10px; /*左下角丸*/
    color: #666; /*アイコン（フォント）色*/
    cursor: pointer;
    display: block;
    height: 50px; /*アイコン縦高さ*/
    line-height: 50px; /*縦位置中央化*/
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 50px; /*アイコン横幅*/
    transition: all 0.1s linear 0s; /*0.3s はアニメーションにかかる時間*/
    z-index: 1000;
	margin-top: -5px;
	font-size: 30px;
}
#fixheader .ham-box-inc  #menu-nonecb {
    display: none; /*チェックボックス本体は消しておく*/
}
#fixheader .ham-box-inc  #menu-nonecb:checked ~ #ham-menu-box,
 #fixheader .ham-box-inc #menu-nonecb:checked ~ #menu-icon {
    transform: translate(-280px); /*メニュー本体横幅 width と合わせる*/
}
#fixheader .ham-box-inc  #menu-nonecb:checked ~ #menu-icon .menu-icon-close {
	 display: block;
   transition: all 0.1s;
	 color: #fff;
   position: fixed;
   top: 5px;
   left: 18px;
}
#fixheader .ham-box-inc  #menu-nonecb:checked ~ #menu-icon .menu-icon-open {
   display: none;
   transition: all 0.1s;
 }
#fixheader .ham-box-inc  #menu-nonecb:checked ~ #menu-background {
    opacity: 0.1;
    z-index: 999;
}
#fixheader .ham-box-inc  .-ham-menu-list {
  list-style-type: none;
  margin: 20px 0 0;
  padding: 0;
}
#fixheader .ham-box-inc  ul.-ham-menu-list li.ham-bold-line{
 border-bottom: 1px solid #fff;
}
#fixheader .ham-box-inc  ul.-ham-menu-list li form  input.ham-search-box {
  width: 80%;
	padding: 3px 0 2px 4px;
	margin: 0 6px 0 7px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

#fixheader .ham-box-inc  ul.-ham-menu-list li.ham_subtitle{
   color:#fff;
	 font-weight: bold;
}

#fixheader .ham-box-inc  .ham-item {
  margin: 0;
	text-align: left;
}
#fixheader .ham-box-inc  a {
    color: #fff;
    display: block;
    padding: 5px 0px 5px 10px;
    position: relative;
    text-decoration: none;
    z-index: 1;
    font-size: 13px;
    line-height: 20px;
    border-bottom: 1px solid #4a4a4a;
}
#fixheader .ham-box-inc  .ham_search a {
	padding: 2px 0;
	border:none;
}
#fixheader .ham-box-inc  a::before {
  background: #333;
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
  z-index: -1;
}
#fixheader .ham-box-inc  a::after {
  content: attr(name);
  color: #fff;
  float: right;
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.4s;
  transition: opacity 0.8s, transform 0.4s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
#fixheader .ham-box-inc  a:hover::before {
  right: 0;
}
#fixheader .ham-box-inc  a:hover::after {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.page-header {
  padding: 1% 0 0;
}
/*新デザイン　20170421*/



/* primead adjust */
.aaprad-info img {
    width: 10px!important;
}
.aaprad-img a img {
    max-height: 100%;
}

/* single footer top contents */
.single-post .ajax-load-more-wrap.infinite button.alm-load-more-btn {
    background-image: url('https://www.mag2.com/p/news/wp-content/uploads/2017/05/scroll.gif')!important;
    opacity: 1!important;
    height:150px;
}

/* panel quiz 2017.6.8 n */
.flip-box-i {
    width: 100%;
	height: 330px;
    margin: 0 auto;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -o-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
	position: relative;
}

@media screen and (max-width: 375px) {
.flip-box-i {
	height: 300px;
}
}

@media screen and (max-width: 320px) {
	.flip-box-i {
		height: 260px;
	}
	.ajx_content{
		min-height: 194px!important;
	}
	.ajx_cat{
		padding: 1px 3px!important;
		margin-left: 3px!important;
	}
}

.flip-box-i .inner {
    position: relative;
    -webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    -ms-transition: .6s;
    transition: .6s;
}
.flip-box-i .flip-front,
.flip-box-i .flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: ;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
 z-index: 100;

}
.flip-box-i .flip-back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-box-i input[type="radio"]{
	visibility:hidden;
	cursor: pointer;
	position: absolute;
}
.flip-wrap label {
		display: block;
		margin: 0 auto;
		text-align: center;
		cursor: pointer;

}

.flip-box-i input[type="radio"]:checked~.inner{
	    -webkit-transform: rotateY(180deg);
	    -moz-transform: rotateY(180deg);
	    -o-transform: rotateY(180deg);
	    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

p label {
    padding: 20px 70px;
    width:70%;
    background: #ff0000;
    color: #ffffff;
    border-radius: 20px;
}
p label:hover{
    background:#ff5252;
}

/* coffee hide ad */
.postid-1251423 div.ad_single_left,
.postid-1251423 div.ad_single_right{
    display:none!important;
}


/* common mailmagazine  */
.sp_archive_magazine_desc {
    /* border: 1px solid #999999; */
    /* padding: 0 0.5em; */
    /* background: #d4d4d4; */
    /* text-align:left; */
}
.common_mailmagazine p,.sp_archive_magazine_desc p {
    /* line-height: 1.5; */
    /* font-size: 95%!important; */
}

/* オレンジボタンCSS追加　20171213　*/
.doc-btn-tsubo {
    font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
      display:inline-block;
      min-width: 150px;
      font-weight: bold;
      font-size: 18px;
      margin: 10px auto 30px;
      cursor: pointer;
      padding: 15px 40px;
      color: #fff!important;
      text-align: center;
      text-decoration: none;
      border-radius: 5px;
      -webkit-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
      transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s;
      -webkit-font-smoothing: antialiased;
	 transform:perspective(0);
      background-color: #ef850c;
      box-shadow: 0 6px 0 #cc6d00, 0 12px 0 rgba(0,0,0,0.2);

 }
.doc-btn-tsubo:hover  {
	color: #fff;
      -webkit-transform: translateY(3px);
      transform: translateY(3px);
      background-color: #f29225;
      box-shadow: 0 3px 0 #a75b04, 0 6px 0px rgba(0,0,0,0.2);
      text-decoration: none;
   }
.doc-btn-tsubo:active   {
     color: #cdcdcd;
     -webkit-transform: translateY(6px);
     transform: translateY(6px);
     transition-duration: 0.1s;
     background-color: #a75b04;
     box-shadow: 0 0 0 #ad5c00, 0 0 0px rgba(0,0,0,0.2);
   }
/* /オレンジボタンCSS追加　20171213　*/


/*　記事中フォーム　目立つver 2016.02.20 y.i　*/

.rdmail-largewrap {
	width:100%;
	background:#000;
	border-radius:2px;
	box-sizing:border-box;
	padding:5px 0 10px;
	margin:20px auto;
}

.rdmail-largewrap ul {
	list-style:none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
	align-items:center;
	padding:0;
    margin-left: 0!important;
}

.rdmail-largewrap ul li {
	padding:5px;
	text-align:center;
}

.rdmail-largewrap p {
    padding: 0;
    margin: 0 0 5px 5px!important;
    text-align: left;
    font-size: 14px;
    line-height:1.2;
	color:#ccc;
}

.rdmail-largewrap p a:hover {
	text-decoration:underline;
}


.rdmail-largewrap .rdmail-title {
	font-size: 22px;
	text-align:center;
	font-weight:bold;
	padding:10px 10px 15px;
	margin:0;
	color:#fff;
	font-weight:bold;


}

.rdmail-largewrap input[type="email"] {
	height:50px;
	width:400px;
	padding:0 10px;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	font-size:22px;
	border-radius: 3px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	color:#000000;
}

.rdmail-largewrap input[type="email"]:focus {
	border:2px solid #e80008;

}


.rdmail-largewrap .rdmail-reg {
    width: 150px;
    padding: 13px 0;
    font-size: 22px;
    border: #96792F solid 1px;
    color: #FFFFFF!important;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    line-height:1;
	font-weight:bold;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f6a648), to(#f88600));
	background-image: -webkit-linear-gradient(top, #f6a648, #f88600);
	background-image: -moz-linear-gradient(top, #f6a648, #f88600);
	background-image: -ms-linear-gradient(top, #f6a648, #f88600);
	background-image: -o-linear-gradient(top, #f6a648, #f88600);
	background-image: linear-gradient(top, #f6a648, #f88600);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6a648', endColorstr='#f88600',GradientType=0 ); /* IE6-9 */

	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-shadow:0 1px 2px rgba(0, 0, 0, 0.6);

}

.rdmail-largewrap .rdmail-reg:hover {
    border: #e80008 solid 1px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e80008), to(#e84a4a));
	background-image: -webkit-linear-gradient(top, #e80008, #e84a4a);
	background-image: -moz-linear-gradient(top, #e80008, #e84a4a);
	background-image: -ms-linear-gradient(top, #e80008, #e84a4a);
	background-image: -o-linear-gradient(top, #e80008, #e84a4a);
	background-image: linear-gradient(top, #e80008, #e84a4a);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e80008', endColorstr='#e84a4a',GradientType=0 ); /* IE6-9 */

}

.rdmail-largewrap .mailmagazine-about {
    background: none!important;
	margin: 0 !important;
    padding: 5px 20px !important;
    border: none !important;
}

.rdmail-largewrap .mailmagazine-about h3 {
    border: none;
    margin: 5px ;
    line-height: 1.2;
    font-size: 18px;
    padding: 0;
    color: #ffffff;
}

.rdmail-largewrap .mailmagazine-about h3 a {
    color: #ffffff;
}
.rdmail-largewrap .mailmagazine-about h3:before {
    content: url(https://www.mag2.com/img/point-o.png) !important;
    margin: 0 5px 0 0 !important;
    position: relative !important;
    top: 1px !important;
}


@media only screen and (max-width:700px) {
.rdmail-largewrap input[type="email"] {
	width:260px;
}
.rdmail-largewrap .mailmagazine-about {
    padding: 5px 10px !important;
}
}

/*-------------------------------------
会話形式用のcss 2018.01.10
---------------------------------------*/
div.talk-wrap{
    display: block;
    clear: both;
    margin:0 auto 10px auto;
   overflow:hidden;
    }
   .talk-wrap p{
    margin:0;
    font-size: 100%!important;
    }
    .left-icon{
    width: 15%;
    float:left;
    display:inline-block;
    margin-bottom: 10px;
    }

   div.talk-wrap .left-icon img {
    width: 100%;
    box-shadow: 0 1px 5px #aaa;
   border: 1px solid #eeeeee;
   }

   div.talk-wrap .talk-left{
    float:right;
    position: relative;
    background: #fff; /*左の会話の背景色*/
    border: 1px solid #eee;
    padding: 10px 3%;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 1px 5px #aaa; /*左の会話の影の設定*/
    margin-bottom: 10px;
    box-sizing:border-box;
    }
   div.talk-wrap .talk-left:before {
    content: "";
    display: inline-block;
    border: 10px solid transparent;
    border-right-color: #eee;
    position: absolute;
    left: -20px;
    top: 20px;
    margin-top: -9px;
   }
   div.talk-wrap .talk-left:after {
    content: "";
    display: inline-block;
    border: 9px solid transparent;
    border-right-color: #fff;
    position: absolute;
    left: -16px;
    top: 20px;
    margin-top: -8px;
   }
   div.talk-wrap .right-icon{
    width: 15%;
    float:right;
    display:inline-block;
    margin-bottom: 10px;
    }

   div.talk-wrap .right-icon img {
    width: 100%;
    box-shadow: 0 1px 5px #aaa;
   border: 1px solid #eeeeee;
   }

   div.talk-wrap .talk-right{
    float:left;
    position: relative;
    background: #fff; /*右の会話の背景色*/
    border: 1px solid #eee;
    padding: 10px 3%;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 1px 5px #aaa; /*右の会話の影*/
    margin-bottom:10px;
    box-sizing:border-box;
    }
   div.talk-wrap .talk-right:before {
    content: "";
    display: inline-block;
    border: 10px solid transparent;
    border-left-color: #eee;
    position: absolute;
    right: -20px;
    top: 20px;
    margin-top: -9px;
   }
   div.talk-wrap .talk-right:after {
    content: "";
    display: inline-block;
    border: 9px solid transparent;
    border-left-color: #fff;
    position: absolute;
    right: -16px;
    top: 20px;
    margin-top: -8px;
   }
   div.talk-wrap .talk-end{
    clear:both;
   }

   div.talk-wrap .talk-left span,
   div.talk-wrap .talk-right span {
       font-weight : bold;
   }

   /*****レスポンシブ設定*****/

   @media screen and (max-width: 480px){
   div.talk-wrap .left-icon{
    width: 20%;
    }
   div.talk-wrap .talk-left{
    width: 75%;
    }
   div.talk-wrap .right-icon{
    width: 20%;
    }
   div.talk-wrap .talk-right{
    width: 75%;
    }


   div.talk-wrap .talk-right:before {
    top: 20px;
   }
   div.talk-wrap .talk-right:after {
     top: 20px;
   }

   div.talk-wrap .talk-left:before {
    top: 20px;
   }
   div.talk-wrap .talk-left:after {
    top: 20px;
   }


   }

   .chumoku_box0621 {
       position: relative;
       padding: 0 12px;
       box-sizing: border-box;
       color: #fff;
       border: solid 3px #3d69c6;
        background: #567bc7;

   }

   .chumoku_box0621:before{
       display: inline-block;
       position: absolute;
       top: 17px;
       left: 11px;
       vertical-align: middle;
       color: #77c0c9;
       font-size: 30px;
       line-height: 1;
   }

   .chumoku_box0621 p {
       padding: 0;
       margin: 10px 0;
       line-height: 1.4;
       font-weight : 400;
   }

   .chumoku_box0621 .inner_title {
       font-size : 110%;
       font-weight : bold;
   }

   .chumoku_box0621 .inner_list {
       font-weight : bold;
       font-size: 100%;
   }

   .chumoku_box0621 cite {
       display: block;
       text-align: right;
       color: #888888;
       font-size: 0.9em;
   }

/* pr normal content center */
.single-post.postid-346261 div#content,
.single-post.postid-351257 div#content,
.single-post.postid-352090 div#content{
    margin:0 auto!important;
    margin-left:auto!important;
    margin-right:auto!important;
}
/* PR post hidden items */
.postid-346261 section.pf_relatedpost,
.postid-346261 div[id^="adnw_nakamen_"],
.postid-346261 h3.widget-title,
.postid-351257 section.pf_relatedpost,
.postid-351257 div[id^="adnw_nakamen_"],
.postid-351257 h3.widget-title,
.postid-352090 section.pf_relatedpost,
.postid-352090 div[id^="adnw_nakamen_"],
.postid-352090 h3.widget-title,
.postid-352086 section.pf_relatedpost,
.postid-352086 div[id^="adnw_nakamen_"],
.postid-352086 h3.widget-title,
.postid-352088 section.pf_relatedpost,
.postid-352088 div[id^="adnw_nakamen_"],
.postid-352088 h3.widget-title{
    display: none!important;
}

/* 記事広告対応　*/
.postid-352086 div.talk-wrap .left-icon img{
    box-shadow:none;
    }
.postid-352086 div.talk-wrap{
    max-width:95%;
    margin:0 auto;
    }

/*------------------------------------------------------------
          著者コンバージョンボタン_デザイン1用CSS
--------------------------------------------------------------*/
.author_cv_container {
	margin-top: 30px;
	padding:0 5px;
}
span.author_cv_author_name{
  font-size: 17.5px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: bold;
}
span.author_cv_author_name a{
  font-size: 14px;
  color: #ed6569;
  margin-left: 5px;
}
.author_cv_container p{
  font-size: 16px;
}

.author_cv_container > p.author_cv_pr_txt{
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
}
.author_cv_container > p.author_cv_pr_txt > i {
  margin-right: 5px;
  color: #ed6569;
}

.author_cv_info_box{
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: auto;
}
.author_cv_info_box > .author_cv_bg_img{
width: 50%;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: auto;
/*box-shadow: inset 0 0 0 200px rgba(0,0,0,0.3);*/
}
.author_cv_info_box > .author_cv_info{
  width:  100%;
  height: auto;
  background-color: #EEE;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.author_cv_info ul li{
    margin-left: 0;
    line-height: 1;
}

.author_cv_info_box > .author_cv_info p.rdmail-reg{
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  padding: 10px 20px;
  background: #F78C1A;
  color: #fff;
  border-radius: 2px;
  font-weight: 400;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 16px;
}

.author_cv_info > span,
.author_cv_info p span {
  text-align: center;
  font-size: 16px;
  color: #000;
  width: 100%;
  padding: 10px 0 0!important;
  line-height: 1.4;
}
.author_cv_info > span.author_cv_mmtaitle{
  font-size: 16px;
  color:#ed6569!important;
}
.author_cv_info > span.author_cv_mmtaitle a{
  color:#ed6569!important;
}
.author_cv_mmtaitle{
  font-size: 20px!important;
	color:#ed6569!important;
	padding: 0!important;
	margin: 0!important;
}
.author_cv_info > p{
  font-size: 12px;
  color: #000;
  text-align: center;
  margin: 0;
}
.author_cv_container > a:hover,.author_cv_container > a:hover > .author_cv_info_box {
  text-decoration: none;
  opacity: 0.8;
}
.author_cv_width100{
  width: 100%;
}
.author_cv_width100 p a{
    color: #ed6569!important;
}
.author_cv_info > form > ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:0!important;
  padding: 0!important;
	list-style: none!important;
}
.author_cv_info > form > ul > li{
	list-style: none!important;
	margin:0;
}
.author_cv_info > form > ul li a{
	color: #ed6569;
}
.author_cv_info > form > ul > li.author_cv_rdemail{
  width: 70%;
}
.author_cv_info > form > ul > li.author_cv_submit{
  width: 30%;
}
.author_cv_info > form > ul > li > p{
  margin-bottom: 0;
  font-size: 14px;
}
.author_cv_info > form > ul > li > p > input[type="submit"]{
    background: #F78C1A;
    font-weight: 500;
    border-radius: 2px;
    -webkit-appearance: none;
    padding: 10px 46px;
    width: auto;
    color: #fff;
    border: none;
    font-size: 16px;
    text-align: center;
}
.author_cv_info > form > ul > li > p > input[type="email"]{
  padding: 12px 15px 7px;
  width: 98%;
  border-radius: 2px;
}

@media (max-width: 650px){
  span.author_cv_author_name{
      font-size: 16.5px;
  }
  .author_cv_info_box{
    flex-wrap: wrap;
  }
  .author_cv_info_box > .author_cv_info,
  .author_cv_info_box > .author_cv_bg_img{
    width: 100%;
  }
  .author_cv_info_box > .author_cv_bg_img{
    min-height: 250px;
    height: auto;
  }
  .author_cv_info_box > .author_cv_info{
    padding: 10px 5px;
  }
  .author_cv_info_box > .author_cv_info > p{
    width: 85%;
  }
  .author_cv_info_box > .author_cv_info > p.rdmail-reg{
    padding:10px 28px;
    width: auto;
  }
  .author_cv_info > form > ul > li.author_cv_rdemail ,
  .author_cv_info > form > ul > li > p > input[type="email"] ,
  .author_cv_info > form > ul > li.author_cv_submit{
    width: 100%!important;
  }
  .author_cv_info > form > ul > li.author_cv_submit{
   text-align: center;
   margin-top: 10px;
   margin:10px 0 0;
  }
 }
/*------------------------------------------------------------
          著者コンバージョンボタン_デザイン1用CSS_end
--------------------------------------------------------------*/


/*------------------------------------------------------------
          著者コンバージョンボタン_デザイン2用CSS
--------------------------------------------------------------*/
	.author_cv2_container{
		margin-top: 20px;
		background-repeat: no-repeat;
		background-size: cover;
		height: auto;
		box-shadow: inset 0 0 0 600px rgba(0,0,0,0.7);
	}

	.author_cv2_container > a > .author_cv2_info_box,.author_cv2_container > .author_cv2_info_box{
		padding: 40px 0;
	}
	.author_cv2_container > a:hover,.author_cv2_container > a > .author_cv2_info_box:hover{
		text-decoration: none;
		opacity: 0.7;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul{
		list-style: none!important;
		color:#fff;
		display: block;
		margin: 0 auto!important;
		max-width: 350px;
		width: 100%;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li{
		text-align: left;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li > p{
		font-size: 14px;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_info_prtxt{
		font-size: 14px;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_info_prtxt > i{
		color:#ef6767;
		margin-right: 5px;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_mmtaitle{
		font-size: 22px;
		color:#ef6767;
		margin-top: 5px;
		font-feature-settings : "palt";
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_info_txt{
		font-size: 14px;
		font-feature-settings : "palt";
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_info_txt > b{
		margin-right: 5px;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_info_read{
		margin-top: 10px;
		font-size: 14px;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.rdmail-reg{
		margin-top: 15px;
	}
	.author_cv2_info_box > ul.author_cv2_info_box_ul > li.rdmail-reg > p{
    margin: 0 auto!important;
    text-align: center!important;
    padding: 10px 20px;
    background: #ef6767;
    color: #fff;
    border-radius: 2px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
		font-size: 16px;
	}
	.author_cv2_free_magazine > form > ul{
		list-style: none!important;
		display: flex;
		justify-content:space-between;
		flex-wrap: wrap;
		width: 100%;
		margin:10px 0!important;
		padding: 0!important;
	}
  .author_cv2_free_magazine > form > ul	> li.author_cv2_width100{
		font-size: 12px;
		width: 100%;
	}
	.author_cv2_free_magazine > form > ul	> li.author_cv2_width100 p,
	.author_cv2_free_magazine > form > ul	> li.author_cv2_rdemail p{
		margin-bottom: 0;
	}
	.author_cv2_free_magazine > form > ul	> li.author_cv2_rdemail{
		width: 70%;
	}
	.author_cv2_free_magazine > form > ul	> li.author_cv2_rdemail > p > input[type="email"]{
		padding: 12px 15px 7px;
		width: 98%;
		border-radius: 2px;
	}
	.author_cv2_free_magazine > form > ul	> li.author_cv_submit{
		width: 30%;
	}
	.author_cv2_free_magazine > form > ul	> li.author_cv_submit > p > input[type="submit"]{
		font-weight: 500;
		border-radius: 2px;
	}
	@media (max-width: 650px){
		.author_cv2_container > a > .author_cv2_info_box,.author_cv2_container > .author_cv2_info_box{
			padding: 30px 40px;
		}
		.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_mmtaitle{
			font-size:18px;
			margin: 15px 0;
		}
		.author_cv2_info_box > ul.author_cv2_info_box_ul > li.author_cv2_info_txt{
			font-size:12px;
		}
		.author_cv2_free_magazine > form > ul{
			margin: 10px 0 0!important;
		}
		.author_cv2_free_magazine > form > ul > li.author_cv2_rdemail,
		.author_cv2_free_magazine > form > ul > li.author_cv_submit{
			width: 100%;
		}
		.author_cv2_free_magazine > form > ul	> li.author_cv_submit > p{
			margin: 0!important;
		}
		.author_cv2_free_magazine > form > ul	> li.author_cv_submit > p > input[type="submit"]{
			text-align: center;
      margin: 10px auto 0;
      display: block;
		}
	}
/*------------------------------------------------------------
          著者コンバージョンボタン_デザイン2用CSS_end
--------------------------------------------------------------*/

/*-----------------
YKTR-2913 20180823
--------------------*/
.back-numbers-wrap{
margin : 20px 0;
}
ul#back-numbers {
    list-style-type: disc;
    margin: 0 0 0 1.5em!important;
    font-size: 14px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    font-weight : 500;
}
ul#back-numbers li {
    margin-left : 0;
}

span.back-numbers-date {
    font-weight: bold;
}
.back-numbers-link {
    display: inline-block;
    padding-left: 0.3em;
}
.back-numbers-link:before{
    content: "\f101";
    font-family: FontAwesome;
margin-right : 0.5em;
}
/*-----------------
end:YKTR-2913 20180823
--------------------*/

/*-----------------
YKTR-xxxx 20181017
--------------------*/


.d-flex {
  display: flex;
  justify-content: center;
  align-items : center;
}
.daytra {
  max-width : 650px;
  width : 100%;
  margin : 50px auto 0;
border : 1px solid #333333;
padding : 10px 10px 0;
box-sizing : border-box;
position : relative;
background : #ffffff;
flex-wrap: wrap;
}
.d-flex .daytra-img {
  padding : 10px 10px 0;
  width : 100%;
  font-size : 80%;
  line-height : 1.6;
  text-align : center;
}
.d-flex .daytra-img img {
  border-radius : 50%;
  max-width : 120px;
}
.d-flex .daytra-prof {
  font-size : 80%;
  padding : 10px ;
}
.daytra-icon {
    position: absolute;
    left: -10px;
    top: -30px;
    width: 160px;
    transform: rotate(-10deg);
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.pc_img { display: none !important; }
.sp_img { display: block !important; }


/************YKTR-3327メルマガ登録フォーム2019/03/26************/

.rdmail-wrap2 {
	width:100%;
	background:#000;
	/*border:5px solid #d19f19;*/
	border-bottom:5px solid #d19f19;
	border-radius:2px;
	/*box-shadow:0 0 15px rgba(0, 0, 0, 0.5);*/
	box-sizing:border-box;
	padding:5px 0 10px;
}

.rdmail-wrap2 ul {
	list-style:none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
	align-items:center;
	padding:0;
}

.rdmail-wrap2 ul li {
	padding:5px;
	text-align:center;
}

.rdmail-wrap2 p {
    padding: 0;
    margin: 0 0 5px 5px;
    text-align: left;
    font-size: 14px;
    line-height:1;
	color:#f2f2f2;
	color: #888;
}

.rdmail-wrap2 p a:hover {
	color:#d19f19
}


.rdmail-wrap2 .rdmail-title {
	font-size: 22px;
	text-align:center;
	font-weight:bold;
	padding:10px 10px 15px;
	margin:0;
	color:#fff;
	font-weight:bold;


}

.rdmail-wrap2 input[type="email"] {
	height:50px;
	width:450px;
	padding:0 10px;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	font-size:22px;
	border-radius: 3px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	color:#000000;
}

::-webkit-input-placeholder {
  color: #a6a6a6;
}
::-moz-placeholder {
  color: #a6a6a6; opacity: 1;
}
:-ms-input-placeholder {
  color: #a6a6a6;
}
.rdmail-wrap2 input[type="email"]:focus {
	border:2px solid #d19f19;
}
.rdmail-wrap2 .rdmail-reg {
    width: 150px;
    padding: 13px 0;
    font-size: 22px;
    border: #96792F solid 1px;
    color: #FFFFFF!important;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    line-height:1;
	font-weight:bold;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f6a648), to(#f88600));
	background-image: -webkit-linear-gradient(top, #f6a648, #f88600);
	background-image: -moz-linear-gradient(top, #f6a648, #f88600);
	background-image: -ms-linear-gradient(top, #f6a648, #f88600);
	background-image: -o-linear-gradient(top, #f6a648, #f88600);
	background-image: linear-gradient(top, #f6a648, #f88600);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6a648', endColorstr='#f88600',GradientType=0 ); /* IE6-9 */

	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-shadow:0 1px 2px rgba(0, 0, 0, 0.6);
}

.rdmail-wrap2 .rdmail-reg:hover {
    border: #629805 solid 1px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#95e30d), to(#7cc300));
	background-image: -webkit-linear-gradient(top, #95e30d, #7cc300);
	background-image: -moz-linear-gradient(top, #95e30d, #7cc300);
	background-image: -ms-linear-gradient(top, #95e30d, #7cc300);
	background-image: -o-linear-gradient(top, #95e30d, #7cc300);
	background-image: linear-gradient(top, #95e30d, #7cc300);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#95e30d', endColorstr='#7cc300',GradientType=0 ); /* IE6-9 */
}

.rdmail-wrap2 .common_mailmagazine {
    background: none!important;
	margin: 0 !important;
    padding: 5px 20px !important;
    border: none !important;
    border-radius: none;
}
.rdmail-wrap2 .common_mailmagazine p {
    color: #e6e6e6 !important;
}

@media only screen and (max-width:700px) {
.rdmail-wrap2 input[type="email"] {
	width:260px;
}
.rdmail-wrap2 .common_mailmagazine {
    padding: 5px 10px !important;
}
}

/*-----------------
fpo YKTR-2811 2019/03/26
--------------------*/

.f-form.rdmail-wrap2 {
    background: #4472c4;
    border-bottom: none;
    border-radius: 5px;
max-width: 660px;
    margin: auto;
}
.f-form.rdmail-wrap2 .f-form-titlewrap {
display : flex;
justify-content : center;
flex-wrap : nowrap;
margin : 10px 0 ;
align-items: center;
}
.f-form-titlewrap img {
display : block;
width : 90px;
height : 90px;
margin-left: 20px;
border-radius: 50%;
}
.f-form.rdmail-wrap2 .f-form-title {
	font-size: 24px;
	font-weight:nomal;
        line-height : 1.4;
	text-align:center;
	color: #ffffff;
	padding:10px 10px 0 ;
}
.f-form.rdmail-wrap2 input[type="email"] {
border : 1px solid #666666;
}
.f-form + .fpo-formtext {
max-width:660px;
line-height:1.4;
color:#666666;
margin: 0 auto;
font-size : 12px;
padding : 10px;
}
.f-form.rdmail-wrap2 input.rdemail{
background:#ffffff;
}
.f-form-forsp {
display : none;
}
div.talk-wrap.f-comment .talk-right {
    float: left;
    position: relative;
    background: #fff;
    border: 1px solid #aaa;
    padding: 10px 3%;
    border-radius: 10px;
    width: 83%;
    box-shadow: none;
    margin-bottom: 10px;
    box-sizing: border-box;
}
div.talk-wrap.f-comment .talk-right:before {
    content: "";
    display: inline-block;
    border: 10px solid transparent;
    border-left-color: #aaa;
    position: absolute;
    right: -20px;
    top: 20px;
    margin-top: -9px;
}
div.talk-wrap.f-comment .talk-right:after {
    content: "";
    display: inline-block;
    border: 8px solid transparent;
    border-left-color: #fff;
    position: absolute;
    right: -16px;
    top: 20px;
    margin-top: -8px;
}
div.talk-wrap.f-comment .right-icon img {
    width: 100%;
    box-shadow: none;
    border: none;
    box-sizing: border-box;
    max-width:60px;
}
div.talk-wrap.f-comment span {
border-bottom:1px dotted #666666;
font-weight:normal;
font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体" ;
    font-weight: 500!important;
}
div.talk-wrap.f-comment .right-icon {
text-align : center;
font-size : 14px;
}
.f-form.rdmail-wrap2 input[type="email"] {
width: 420px;
}
.f-form.rdmail-wrap2 .rdmail-reg {
width: 180px;
}
@media only screen and (max-width:700px) {
.f-form.rdmail-wrap2 .f-form-title {
	font-size: 17px;
padding:10px 0 0;
}
.f-form.rdmail-wrap2 input[type="email"] ,
.f-form.rdmail-wrap2 .rdmail-reg {
width : 280px;
}
.f-form-titlewrap img {
width : 50px;
height : 50px;
}
.f-form-forpc {
display : none;
}
.f-form-forsp {
display : block;
}
   div.talk-wrap.f-comment .talk-right{ width: 75%;}

}
@media only screen and (max-width: 320px){
.f-form.rdmail-wrap2 .f-form-title {
    font-size: 15px;
}
}

.yktr_3327_font_size{
    font-size: 16px;
}

/* profitX background */
.ca_profitx_ad_overlay{
    background: black;
}

/* docomo tag */
.logly-lift-ad {
    border-bottom: none!important;
}
div .logly-lift-ad-inner {
    margin-bottom: 5px!important;
    margin-top: -5px!important;
}
.recommend_area2 figure {
    width: 160px!important;
    height: 100px!important;
    margin: 0 5px 10px 0!important;
}
@media screen and (max-width: 780px){
.recommend_area2 p.title {
    color: #000000!important;
}
}
/* jiji latest_post */
li.widget_recent_entries,
li.widget_recent_entries ul li{
    list-style:none!important;
    margin-left:0px!important;
}
li.widget_recent_entries h4{
    padding-left:10px!important;
}



/* SIBERIA-792 */
.page_bottom_fixed_ad_box{
	height: 65px;
	position: fixed!important;
	display: flex;
	justify-content: center;
	text-align: center;
	bottom: 0!important;
	left: 0;
	width: 100%!important;
	z-index: 10000;
	max-height: 100px!important;
	box-sizing: border-box;
	opacity: 1!important;
	background-image: none!important;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.2)!important;
	margin-bottom: 0!important;
	padding: 10px 0;
}
.page_bottom_fixed_ad_button{
	width: 28px;
	height: 28px;
	font-size: 21px;
	bottom: 63px;
	right: 0;
	position: fixed;
	z-index: 10001;
	color: #000;
	background-size: 13px 13px;
	background-position: 9px;
	background-color: #fff;
	background-repeat: no-repeat;
	box-shadow: 0 -1px 1px 0 rgba(0,0,0,0.2);
	border: none;
	border-radius: 12px 0 0 0;
	padding: 0 5px 0;
	font-weight: bold;
}
.page_bottom_fixed_ad_wap_hide{
	visibility:hidden;
	opacity:0;
}
.ca_profitx_ad_overlay{
	display:none;
}
/* SIBERIA-792 */

/*  SIBERIA-806  */

.aaprad-img a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.aaprad-img {
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
}

.aaprad-thumbnail .aaprad-title, .aaprad-thumbnail .aaprad-description, .aaprad-thumbnail .aaprad-company {
    margin-left: 60px;
}

.aaprad-img > a {
    height: 70px;
}

.aaprad-title a {
    font-size: 15px;
    font-weight: 500;
}

.uz-5-mag2_sp .__uz__widget .__uz__articles-area .__uz__article .__uz__article-content .__uz__article-text {
    font-size:15px!important;
}

.pf_relatedpost img {
    max-width: 50px!important;
    max-height: 50px!important;
    object-fit: cover;
}
.ad-disclosure {
    font-size : 12px;
}

.pf_relatedpost li.format-standard {
    min-height: 50px;
}

.format-standard .post-list a {
    font-weight : 500;
}


/* SIBERIA-810 */
.relatedAdBox {
	width: 100%;
	margin-bottom: 20px;
}
.relatedAdBox ul.relatedAdContent {
	width: 100%;
}
.relatedAdBox ul.relatedAdContent li{
	list-style: none;
}
/* SIBERIA-810 */

/*SIBERIA-828 2020/07/17*/
ul.ArticleThums {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-left: 0;
    margin: 0 0 15px 0!important;
    padding: 10px 0 !important;
    background-color: #f2f2f2;
}

ul.ArticleThums li {
    display: inline-block;
    height: auto;
    margin: 0 5px;
    vertical-align: top;
}
ul.ArticleThums li a img{
	width: 100%;
	max-width: 200px;
}
ul.ArticleThums li a img::after{
	content:attr(alt);
	display:block;
	color:#777;
	width:300px;
	text-align:center;
	margin-top:5px;
}
.ArticleFigureWrapper  a img{
    max-width: 100%;
}

/*　MEDIA-22 */
.post_text_recommend_box {
	margin-bottom: 30px;
}
.post_text_recommend_box .post_text_recommend_title {
	margin: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #999;
}
.post_text_recommend_box .post_text_recommend_content {
}
.post_text_recommend_box .post_text_recommend_ul {
	list-style: none!important;
}
.post_text_recommend_ul li{
	position:relative;
	padding-left:15px;
	list-style:none!important;
	margin-left: 15px!important;
	line-height: 1.5;
}
.post_text_recommend_ul li:before{
	 content:'';
	 display:inline-block;
	 position:absolute;
	 left:0px;
	 top:11px;
	 width:5px;
	 height:5px;
	 border-bottom:1px solid #888;
	 border-right:1px solid #888;
	 transform:rotateZ(-45deg);
}
.post_text_recommend_box a {
	color: #444444;
	font-size: 14px;
}
/*　/MEDIA-22 */

/* YKTR-4506 */
.money-h2 {
    background: #f5f5f5;
    font-size: 22px;
    line-height: 160%;
    padding: 20px 20px;
    margin: 10px 0;
    display: block;
    font-weight: bold;
}
.money-h3{
	font-size: 20px;
    line-height: 160%;
    padding: 10px 0 10px 20px;
    margin: 35px 0 15px 0;
    border-left: #d19f19 3px solid;
    display: block;
    font-weight: bold;
}
.wp-caption p.wp-caption-text {
	font-size: 12px!important;
    line-height: 17px!important;
    margin: 0 auto!important;
    padding: 0!important;
    font-style: normal!important;
}
/*　SHARE-3846 */
@media only screen and (max-width:430px) {
  #onetrust-banner-sdk.otFloatingRoundedCorner {
    margin-bottom: 76px!important;
  }
}
/*  */


/* MEDIA-33 */
.ad-h250 {
  min-height: 250px
}
.ad-h280 {
  min-height: 280px
}

/* YKTR-4683 */
_:lang(x)+_:-webkit-full-screen-document,.sp_header_menu .ham-search-box .searchsubmit i{
	left:-5px;
}

.entry-header-background.entry-header-container {
    min-height: 0;
}

.entry-header-background .entry-header-img {
	/* DEV-789　*/
    /* margin-top: 40px; */
}

.entry-header-background .entry-header-img img {
    width:100%;
    height:auto;
}

.entry-header-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    padding: 0.1em 0.5em;
}

.entry-header-date-cat{
    display:flex;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin: 10px 0;
    padding: 0.1em 0.5em;
    justify-content: space-between;
}

.entry-header-date-cat a {
    color: #232323;
}

/* YKTR-5618 str　*/
.mbform_box {
    background: #4472c4;
    border-bottom: none;
    border-radius: 5px;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 20px 10px;
}
.mbform_title_box {
    width: 100%;
}
.mbform_title_box p.mbform_title{
    font-size: 24px;
    font-weight: nomal;
    line-height: 1.4;
    text-align: center;
    color: #ffffff;
    padding: 10px 10px 0;
    margin: 0;
}
.mbform_input_box {
    width: 100%;
    display: flex;
    justify-content:space-between;
}
.mbform_input_box ul{
    width: calc(70% - 10px);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    margin-left: 0!important;
}
.mbform_input_box ul li {
    width: 100%;
    list-style: none;
	margin-left: 0!important;
}
.mbform_input_box ul li input{
    width: 100%;
    border: 1px solid #666666;
    height: 45px;
    box-sizing: border-box;
    font-size: 22px;
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
    color: #000000;
}
.mbform_input_box ul li p {
    margin: 0;
}
.mbform_input_box input[type="name"],
.mbform_input_box input[type="email"]{
    padding: 7px 15px 7px 15px;
}
.mbform_input_box input[type="name"]:focus ,
.mbform_input_box input[type="email"]:focus {
color:#000!important;
}
.mbform_input_box input[type="name"]::placeholder,
.mbform_input_box input[type="email"]::placeholder {
  color: #a4a4a4;
}
.mbform_input_box li .li_subtitle{
    font-size: 14px;
    color: #c0cdde;
    margin-left: 5px;
    margin-top: 6px;
    line-height:1;
}
.mbform_input_ul li .rdemail {
}
.mbform_input_button {
    width: calc(30% - 10px);
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}
.mbform_input_button input.rdmail-reg {
    width: 100%;
    padding: 13px 0;
    height: 115px;
    font-size: 22px;
    border: #96792F solid 1px;
    color: #FFFFFF!important;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 20px auto 0;
    line-height:1;
	font-weight:bold;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f6a648), to(#f88600));
	background-image: -webkit-linear-gradient(top, #f6a648, #f88600);
	background-image: -moz-linear-gradient(top, #f6a648, #f88600);
	background-image: -ms-linear-gradient(top, #f6a648, #f88600);
	background-image: -o-linear-gradient(top, #f6a648, #f88600);
	background-image: linear-gradient(top, #f6a648, #f88600);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6a648', endColorstr='#f88600',GradientType=0 ); /* IE6-9 */
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-shadow:0 1px 2px rgba(0, 0, 0, 0.6);
}
.mbform_checkbox_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 10px 0 0;
    color:#FFF;
}
form .mbform_checkbox_box p:not(.intv_img_l) {
    font-size: 12px!important;
    margin: 0!important;
    width: fit-content!important;
}
.mbform_checkbox_box p input{
    height:12px;
    margin-right: 5px;
}
.mbform_checkbox_box p a{
    color:#FFF;
    text-decoration: underline;
}
p.mbform_notes_p{
    margin: 10px auto 0!important;
    color: #777!important;
    font-size: 12px!important;
    max-width: 690px!important;
    word-break: break-all!important;
    width: 100%!important;
    line-height:1.6!important;
}

    .mb_kabu_h4_box{
        margin-bottom: 5px!important;
    }
    .mb_kabu_h4{
        max-width: 100%;
        padding:15px 30px;
	background-color:#bd0211;
    }
    .mb_kabu_h4 p.mb_kabu_h4_sub {
        font-size: 24px;
    }
    .mb_kabu_h4 p.mb_kabu_h4_txt {
        font-size: 18px;
    }
    .mb_kabu_h4_box p.mb_kabu_h4_txt2 {
        font-size: 14px;
        display: block;
        margin: 0;
        text-align: right;
    }
.mb_kabu_h4 p.mb_kabu_h4_txt ,.mb_kabu_h4 p.mb_kabu_h4_sub{
    margin: 0;
    font-weight: 800;
    color:#fff;
}

@media only screen and (max-width: 480px){
    .mbform_input_box{
        flex-wrap: wrap;
    }
    .mbform_title_box p.mbform_title{
        font-size: 16px;
        margin: 10px 0 20px;
    }
    .mbform_input_box ul{
        width:100%;
    }
    .mbform_input_button {
        width:100%;
    }
   .mbform_input_button input.rdmail-reg {
        height: 50px;
    }
    .mbform_checkbox_box{
        flex-wrap: wrap;
    }
    .mbform_checkbox_box p{
        font-size: 13px;
        margin: 0;
        display: flex;
        align-items: center;
    }
}

/* YKTR-5618 end　*/

/* DEV-789　*/
.breadcrumb .breadcrumb-list {
    display: flex;
    font-size: 13px;
    padding: 2px 16px;
}

.breadcrumb {
    white-space: nowrap;
    word-break: break-all;
    overflow: scroll;
    margin-top:40px;
    background-color:#f2f2f2;
}
.breadcrumb ul{
    list-style: none;
}
/* DEV-789 end　*/

/* DEV-791 */
h1.widget-title{
padding:10px;
background-color:#f2f2f2;
border-left: 7px solid #444444;
}
/* PR post hidden items */
.postid-346261 section.pf_relatedpost,
.postid-346261 div[id^="adnw_nakamen_"],
.postid-346261 h1.widget-title,
.postid-351257 section.pf_relatedpost,
.postid-351257 div[id^="adnw_nakamen_"],
.postid-351257 h1.widget-title,
.postid-352090 section.pf_relatedpost,
.postid-352090 div[id^="adnw_nakamen_"],
.postid-352090 h1.widget-title,
.postid-352086 section.pf_relatedpost,
.postid-352086 div[id^="adnw_nakamen_"],
.postid-352086 h1.widget-title,
.postid-352088 section.pf_relatedpost,
.postid-352088 div[id^="adnw_nakamen_"],
.postid-352088 h1.widget-title{
    display: none!important;
}
/* DEV-791 end　*/

/**************************************/
/** mag-affiliate-style */
/**************************************/

.mag-affiliate-article {
	width: 620px;
	margin-right: auto;
	margin-left: auto;
}

@media only screen and (max-width: 768px) {
	.mag-affiliate-article {
		width: auto;
	}
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container {
		padding-right: 16px;
		padding-left: 16px;
	}
}

.mag-affiliate-container {
	border-radius: 4px;
}

.mag-affiliate-container > ol, .mag-affiliate-container > ul, .mag-affiliate-container blockquote, .mag-affiliate-container figure, .mag-affiliate-container h2, .mag-affiliate-container h3, .mag-affiliate-container hr, .mag-affiliate-container p {
	margin-top: 36px;
	margin-bottom: 36px;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container > ol, .mag-affiliate-container > ul, .mag-affiliate-container blockquote, .mag-affiliate-container figure, .mag-affiliate-container h2, .mag-affiliate-container h3, .mag-affiliate-container hr, .mag-affiliate-container p {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.mag-affiliate-container address,
.mag-affiliate-container blockquote,
.mag-affiliate-container dl,
.mag-affiliate-container fieldset,
.mag-affiliate-container figure,
.mag-affiliate-container h1,
.mag-affiliate-container h2,
.mag-affiliate-container h3,
.mag-affiliate-container h4,
.mag-affiliate-container h5,
.mag-affiliate-container h6,
.mag-affiliate-container hr,
.mag-affiliate-container ol,
.mag-affiliate-container p,
.mag-affiliate-container pre,
.mag-affiliate-container table,
.mag-affiliate-container ul {
	padding: 0;
	margin: 0;
}
.mag-affiliate-container address,
.mag-affiliate-container cite,
.mag-affiliate-container dfn,
.mag-affiliate-container em,
.mag-affiliate-container i {
	font-style: normal;
}


.mag-affiliate-container  .mag-affiliate-widget {
	display: table;
	width: 100%;
	border: 1px solid rgba(8, 19, 26, 0.14);
	border-radius: 4px;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .mag-shopping {
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}
}

@media only screen and (min-width: 769px) {
	.mag-affiliate-button[data-type=primary] {
		transition: background-color .2s cubic-bezier(1, 0, 0, 1);
	}
}

.mag-affiliate-button, .mag-affiliate-button .mag-affiliate-button__inner {
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .mag-shopping > a:first-child {
		order: 2;
	}
}

.mag-affiliate-container  .mag-affiliate-widget > a {
	display: table-cell;
	padding: 16px;
	vertical-align: middle;
}

.mag-affiliate-container  a:first-child {
	width: 100%;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  a {
		padding: 16px;
	}
}

.mag-affiliate-container  a {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
	text-decoration: none;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .mag-affiliate-widget-title {
		max-height: 2.8em;
		font-size: 1rem;
	}
}

.mag-affiliate-container  .mag-affiliate-widget-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  strong {
		font-size: 1rem;
	}
}

.mag-affiliate-container  strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1rem;
	font-weight: 700;
	word-break: break-all;
	color: #000;
}


.mag-affiliate-container  .widget-description {
	display: -webkit-box;
	max-height: 3em;
	overflow: hidden;
	color: rgba(8, 19, 26, 0.6);
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.mag-affiliate-container  em {
	display: block;
	margin-bottom: 4px;
	font-size: 0.75rem;
	line-height: 1.5;
	color: rgba(8, 19, 26, 0.6)
}


.mag-affiliate-container  .widget-price {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	margin-top: 16px;
	margin-bottom: 16px;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .widget-price {
		display: block;
		margin-top: 8px;
		margin-bottom: 8px;
	}
}

.mag-affiliate-container  em:nth-child(3) {
	margin-bottom: 0;
	color: #08131a;;
}

.mag-affiliate-container  .widget-regularprice, .mag-affiliate-container  .widget-saleprice {
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	color: #08131a;;
}


.mag-affiliate-container  .widget-currency {
	padding-left: 2px;
	font-size: 0.75rem;
}

.mag-affiliate-container  .widget-update {
	margin-left: 8px;
	font-size: 0.75rem;
	line-height: 1;
	color: rgba(8, 19, 26, 0.6)
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .widget-update {
		display: block;
		margin-top: 4px;
		margin-left: 0;
	}
}


.mag-affiliate-container  .widget-button .mag-affiliate-button {
	min-height: 32px;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .widget-button .mag-affiliate-button {
		padding-right: 12px;
		padding-left: 12px;
	}
}

.mag-affiliate-container  .widget-button .mag-affiliate-button {
	padding: 0 0px;
}

.mag-affiliate-container  .widget-button .mag-affiliate-button__inner {
	margin-top: 8px;
	margin-bottom: 8px;
	font-size: 0.75rem;
	white-space: normal;
}

.mag-affiliate-button .mag-affiliate-button__inner {
	font-size: 0.75rem;
}

.mag-affiliate-button .mag-affiliate-button__inner {
	position: relative;
	display: flex;
	font-size: 1rem;
}

.mag-affiliate-button {
	width: 100%;
	display: inline-block;
	display: inline-flex;
	min-height: 40px;
	padding: 0 16px;
	margin: 0;
	font-weight: 700;
	line-height: 1;
	color: rgba(8, 19, 26, 0.6588235294117647);
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: top;
	touch-action: manipulation;
	cursor: pointer;
	background: #fff;
	border: none;
	border-radius: 4px;
	-webkit-appearance: none;
	appearance: none;
	color: #fff;
	background-color: #0a6753;

}


.mag-affiliate-container  .mag-shopping .widget-image {
	display: flex;
	width: 225px;
	height: 225px;
	padding: 16px;
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  .mag-shopping .widget-image {
		order: 1;
		width: 100%;
		height: 190px;
		min-height: 190px;
		padding: 16px 16px 0;
		border: none;
	}
}

@media only screen and (max-width: 480px) {
	.mag-affiliate-container  a:nth-child(2) {
		min-width: 120px;
	}
}

.mag-affiliate-container  a:nth-child(2) {
	flex: 0;
	min-width: 220px;
	padding: 0;
	background-position: 50%;
	background-size: cover;
	border-left: 1px solid rgba(8, 19, 26, 0.03137254901960784);
}

.mag-affiliate-container  .widget-productImage {
	display: block;
	flex-grow: 1;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
}

.mag-affiliate-container a {
	cursor: pointer;
}

.mag-affiliate-container *, :after, :before {
	box-sizing: inherit;
}
.mag-affiliate-container p {
	margin: inherit;
	box-sizing: inherit;
	font-size: inherit;
	color: inherit;
	line-height:inherit;
}

.mag-affiliate-container p > a {
	padding: 0;
	margin: 0;
}

.mag-affiliate-container br {
	display: none;
}

@media only screen and (max-width: 480px) {
    .mag-sp-only {
        display: block;
    }
    .mag-pc-only {
        display: none;
    }
}

@media only screen and (min-width: 481px) {
    .mag-sp-only {
        display: none;
    }
    .mag-pc-only {
        display: block;
    }
}

/* add DEV-982 itemPR*/
.araklet.araklet-template-default_v2 {
background-color: transparent;
display: flex;
font-family: Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Meiryo, sans-serif !important;
gap: 30px
}
.araklet.araklet-template-default_v2 .araklet-detail {
flex: 1
}
.araklet.araklet-template-default_v2 .araklet-image {
container-type: inline-size
}
.araklet.araklet-template-default_v2 .araklet-image img {
height: auto;
max-height: 100vw;
max-height: 100cqw;
width: 100%
}
.araklet.araklet-template-default_v2 .araklet-image-link:after,
.araklet.araklet-template-default_v2 .araklet-image-link:before {
content: none !important
}
.araklet.araklet-template-default_v2 .araklet-title {
font-size: 16px;
line-height: 1.4;
word-break: break-all
}
.araklet.araklet-template-default_v2 .araklet-title-link {
color: #232F3E;
font-weight: 700 !important;
text-decoration: none !important
}
.araklet.araklet-template-default_v2 .araklet-title-link:after,
.araklet.araklet-template-default_v2 .araklet-title-link:before {
content: none !important
}
.araklet.araklet-template-default_v2 .araklet-item {
align-items: center;
border-radius: 3px;
color: #fff !important;
display: flex;
flex-direction: column;
gap: 6px;
justify-content: center;
margin-top: 10px;
padding: 36px 12px 10px;
position: relative;
width: 100%
}
.araklet.araklet-template-default_v2 .araklet-item.araklet-has-sale {
margin-top: 24px;
padding-top: 51px
}
.araklet.araklet-template-default_v2 .araklet-item.araklet-has-sale .araklet-buy-button {
padding-top: 30px
}
.araklet.araklet-template-default_v2 .araklet-item.araklet-has-sale+.araklet-item.araklet-has-sale {
margin-top: 32px
}
.araklet.araklet-template-default_v2 .araklet-item-amazon {
background-color: #232f3e
}
.araklet.araklet-template-default_v2 .araklet-item-rakuten {
background-color: #ad1413
}
.araklet.araklet-template-default_v2 .araklet-note,
.araklet.araklet-template-default_v2 .araklet-price {
font-size: 12px;
z-index: 1
}
.araklet.araklet-template-default_v2 .araklet-price {
white-space: nowrap
}
.araklet.araklet-template-default_v2 .araklet-price .araklet-price-unit,
.araklet.araklet-template-default_v2 .araklet-price .price {
font-weight: 700
}
.araklet.araklet-template-default_v2 .araklet-price .araklet-price-unit.striked,
.araklet.araklet-template-default_v2 .araklet-price .price.striked {
font-weight: 400;
text-decoration: line-through
}
.araklet.araklet-template-default_v2 .araklet-price span {
line-height: inherit
}
.araklet.araklet-template-default_v2 .araklet-price.araklet-price-amazon {
display: flex
}
.araklet.araklet-template-default_v2 .araklet-price.araklet-price-amazon.has-savings {
gap: 5px
}
.araklet.araklet-template-default_v2 .araklet-price.araklet-price-amazon .sale-price-wrapper {
display: flex
}
.araklet.araklet-template-default_v2 .araklet-price.araklet-price-amazon .sale-price {
font-weight: 700
}
.araklet.araklet-template-default_v2 .araklet-price.araklet-price-amazon .discount {
margin-left: 5px
}
.araklet.araklet-template-default_v2 .prime-member-price-wrapper {
font-size: 13px;
font-weight: 700;
margin-left: 5px
}
.araklet.araklet-template-default_v2 .prime-member-price-wrapper .discount {
margin-left: 5px
}
.araklet.araklet-template-default_v2 .araklet-note {
line-height: 1.2
}
.araklet.araklet-template-default_v2 .araklet-buy-button-box {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 2
}
.araklet.araklet-template-default_v2 .araklet-buy-button {
color: #fff !important;
display: flex;
font-size: 14px;
font-weight: 700;
height: 100%;
justify-content: center;
padding: 15px 12px 12px;
width: 100%
}
.araklet.araklet-template-default_v2 .has-sale-seal {
align-items: center;
background-color: #fff;
border-radius: 100px;
border-style: solid;
border-width: 1px;
display: flex;
flex-direction: column;
font-size: 12px;
font-weight: 400;
gap: 2px;
height: 28px;
inset: 0 auto auto;
justify-content: center;
margin: auto;
padding: 0 20px;
position: absolute;
transform: translateY(-50%);
width: auto;
}
.araklet.araklet-template-default_v2 .has-sale-seal:has(>span+span) {
height: 40px
}
.araklet.araklet-template-default_v2 .araklet-item-amazon .has-sale-seal {
border-color: #232f3e;
color: #232f3e
}
.araklet.araklet-template-default_v2 .araklet-item-rakuten .has-sale-seal {
border-color: #ad1413;
color: #ad1413
}
.araklet.araklet-template-default_v2 .araklet-image {
flex: 0 0 240px
}
.araklet.araklet-template-default_v2 .araklet-button-label {
background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAwCAYAAAC8NUKEAAAABHNCSVQICAgIfAhkiAAAAeVJREFUaEPtmI1NwzAQhesNGIENYAMyQkdoJ0BMAExANyhMABuQbAAbdIR2gvAOJZK5JrbjnGsHnaWqyo8v9/neS2ybVYbWtm2Nx94JP7oxwgGDwimMf5iyVWaH3G79+Z3dcYUzNyP98sBEQKwgTQL5dAzCMmACQGh8yocByDUSfR+oyDeTXGNw82NM2T19GmMMvX5nNeRGviJpkcTstsXBobvWn/+FaWc9cbjzM2Ce5sR1gSD2K65Xi4DxgdAgLQImBCQYBiXMMivoEtzg/4V55ITjDdL6sGUbVJlcMEiOQPbMZwRSIacv7r9iYaaCFCuzGJAiYQByj8Ronma3UWkV6xmAkD/IJ3ajr/oaHjlwjxTrGQcImf3oAylGZhIgRcBIgWSF6abw5JE1k1DTeSRIWuwFQJNPe4F3PJtoSn80HWuRNzyLvwBC7DJ6T1KYS4IQYTKYS4Mkg8kBkgTGMYV/gEf4136WR3hncZmNbPBtaXUomvlAsBQw9Mqs8ev3t6JBMDD2Fu5paClgM4nD9MGRCFWinlMRtj9BmySVq7rJYCQkpTB/dJdxD4BXUyujlZFwuCeGykxlpjKbNgLqGfXMNMVE3a0y+7cy6xZWUbJI0Mlev0xfzyRISCqkwkiNpHQcb2V+AMZ62zEGrTIfAAAAAElFTkSuQmCC") no-repeat 99% 0/1em 1em;
display: inline-block;
padding-right: calc(10px + 1em)
}
.araklet.araklet-template-default_v2 .araklet-pr-display {
bottom: 10px;
font-size: 11px;
position: absolute;
right: 10px
}
.araklet.araklet-template-default_v2 .araklet-item-amazon .araklet-pr-display {
color: #f8ddc7
}
.araklet.araklet-template-default_v2 .araklet-item-rakuten .araklet-pr-display {
color: #e6b8ba
}
.araklet.araklet-template-default_v2.araklet-image_size-large .araklet-title-link {
color: #232F3E !important
}
.araklet.araklet-template-default_v2.araklet-image_size-large .araklet-image {
flex: 1
}
.araklet.araklet-template-default {
display: flex;
overflow: hidden
}
.araklet.araklet-template-default .araklet-image {
flex: 0 0 175px;
padding-bottom: 15px;
padding-top: 18px;
text-align: center;
width: 175px
}
.araklet.araklet-template-default .araklet-image img {
height: auto;
width: 60%
}
.araklet.araklet-template-default .araklet-detail {
flex: 1;
padding-bottom: 20px;
padding-right: 20px;
padding-top: 20px
}
.araklet.araklet-template-default .araklet-title {
color: #323232;
font-size: 13px;
line-height: 1.44;
margin-bottom: 15px
}
.araklet.araklet-template-default .araklet-item {
align-items: center;
display: flex;
flex-wrap: wrap;
padding-left: 4px
}
.araklet.araklet-template-default .araklet-item+.araklet-item {
margin-top: 12px
}
.araklet.araklet-template-default .araklet-price {
display: inline-block;
margin-right: 17px
}
.araklet.araklet-template-default .araklet-price .price {
color: #9f9f9f;
font-size: 14px
}
.araklet.araklet-template-default .araklet-price .price:before {
content: "\0a5"
}
.araklet.araklet-template-default .araklet-note {
color: #323232;
font-size: 13px;
line-height: 1.5;
margin-right: 17px
}
.araklet.araklet-template-default .araklet-price+.araklet-note {
margin-top: 5px
}
.araklet.araklet-template-default .araklet-buy-button {
align-items: center;
border: 2px solid #ffd86e;
border-radius: 100px;
color: #000;
display: inline-flex;
font-size: 13px;
height: 24px;
justify-content: center;
padding-left: 13px;
padding-right: 13px
}
.araklet.araklet-template-default .araklet-note+.araklet-buy-button {
margin-top: 5px
}
.araklet.araklet-template-rich {
background-color: #fff;
border: 2px solid #232F3E;
display: flex;
margin-bottom: 40px;
padding: 30px
}
.araklet.araklet-template-rich .araklet-item+.araklet-item {
margin-top: 20px
}
.araklet.araklet-template-rich .araklet-image {
flex: 0 0 160px;
height: 160px;
width: 160px
}
.araklet.araklet-template-rich .araklet-image-link {
align-items: center;
align-self: stretch;
background-color: #f7f7f9;
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
overflow: hidden;
width: 100%
}
.araklet.araklet-template-rich .araklet-detail {
flex: 1;
padding-left: 20px
}
.araklet.araklet-template-rich .araklet-title-link {
color: #232F3E;
font-size: 17.5px;
font-weight: 700;
line-height: 1.9;
text-decoration: none
}
.araklet.araklet-template-rich .araklet-price {
color: #8c9093;
font-size: 11px;
font-weight: 700;
line-height: 1.6;
margin-bottom: 20px
}
.araklet.araklet-template-rich .price:after {
content: "円"
}
.araklet.araklet-template-rich .araklet-buy-button-box {
max-width: 300px
}
.araklet.araklet-template-rich .araklet-buy-button {
background-color: #21b24c;
border-radius: 5px;
color: #fff;
display: block;
font-size: 17.5px;
line-height: 1.9;
padding: 10px 5px;
text-align: center;
width: 100%
}
.araklet.araklet-template-rich .araklet-buy-button-amazon {
background-color: #232f3e
}
.araklet.araklet-template-rich .araklet-buy-button-rakuten {
background-color: #ad1413
}
.araklet.araklet-template-rich.roomie .araklet-buy-button-extra {
background-color: #232F3E
}
.araklet.araklet-template-rich.lifehacker .araklet-buy-button-extra {
background-color: #232F3E
}
.araklet.araklet-template-rich.bi .araklet-buy-button-extra {
background-color: #232F3E
}
.araklet.araklet-template-rich.gizmodo .araklet-buy-button-extra {
background-color: #232F3E
}
.araklet.araklet-template-rich.digiday .araklet-buy-button-extra {
background-color: #f15060
}
.araklet.araklet-template-size-l {
background-color: transparent;
display: flex;
font-family: Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Meiryo, sans-serif !important;
gap: 30px
}
.araklet.araklet-template-size-l .araklet-detail {
flex: 1
}
.araklet.araklet-template-size-l .araklet-image {
container-type: inline-size
}
.araklet.araklet-template-size-l .araklet-image img {
height: auto;
max-height: 100vw;
max-height: 100cqw;
width: 100%
}
.araklet.araklet-template-size-l .araklet-image-link:after,
.araklet.araklet-template-size-l .araklet-image-link:before {
content: none !important
}
.araklet.araklet-template-size-l .araklet-title {
font-size: 16px;
line-height: 1.4;
word-break: break-all
}
.araklet.araklet-template-size-l .araklet-title-link {
color: #232F3E;
font-weight: 700 !important;
text-decoration: none !important
}
.araklet.araklet-template-size-l .araklet-title-link:after,
.araklet.araklet-template-size-l .araklet-title-link:before {
content: none !important
}
.araklet.araklet-template-size-l .araklet-item {
align-items: center;
border-radius: 3px;
color: #fff !important;
display: flex;
flex-direction: column;
gap: 6px;
justify-content: center;
margin-top: 10px;
padding: 36px 12px 10px;
position: relative;
width: 100%
}
.araklet.araklet-template-size-l .araklet-item.araklet-has-sale {
margin-top: 24px;
padding-top: 51px
}
.araklet.araklet-template-size-l .araklet-item.araklet-has-sale .araklet-buy-button {
padding-top: 30px
}
.araklet.araklet-template-size-l .araklet-item.araklet-has-sale+.araklet-item.araklet-has-sale {
margin-top: 32px
}
.araklet.araklet-template-size-l .araklet-item-amazon {
background-color: #232f3e
}
.araklet.araklet-template-size-l .araklet-item-rakuten {
background-color: #ad1413
}
.araklet.araklet-template-size-l .araklet-note,
.araklet.araklet-template-size-l .araklet-price {
font-size: 12px;
z-index: 1
}
.araklet.araklet-template-size-l .araklet-price {
white-space: nowrap
}
.araklet.araklet-template-size-l .araklet-price .araklet-price-unit,
.araklet.araklet-template-size-l .araklet-price .price {
font-weight: 700
}
.araklet.araklet-template-size-l .araklet-price .araklet-price-unit.striked,
.araklet.araklet-template-size-l .araklet-price .price.striked {
font-weight: 400;
text-decoration: line-through
}
.araklet.araklet-template-size-l .araklet-price span {
line-height: inherit
}
.araklet.araklet-template-size-l .araklet-price.araklet-price-amazon {
display: flex
}
.araklet.araklet-template-size-l .araklet-price.araklet-price-amazon.has-savings {
gap: 5px
}
.araklet.araklet-template-size-l .araklet-price.araklet-price-amazon .sale-price-wrapper {
display: flex
}
.araklet.araklet-template-size-l .araklet-price.araklet-price-amazon .sale-price {
font-weight: 700
}
.araklet.araklet-template-size-l .araklet-price.araklet-price-amazon .discount {
margin-left: 5px
}
.araklet.araklet-template-size-l .prime-member-price-wrapper {
font-size: 13px;
font-weight: 700;
margin-left: 5px
}
.araklet.araklet-template-size-l .prime-member-price-wrapper .discount {
margin-left: 5px
}
.araklet.araklet-template-size-l .araklet-note {
line-height: 1.2
}
.araklet.araklet-template-size-l .araklet-buy-button-box {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 2
}
.araklet.araklet-template-size-l .araklet-buy-button {
color: #fff !important;
display: flex;
font-size: 14px;
font-weight: 700;
height: 100%;
justify-content: center;
padding: 15px 12px 12px;
width: 100%
}
.araklet.araklet-template-size-l .has-sale-seal {
align-items: center;
background-color: #fff;
border-radius: 100px;
border-style: solid;
border-width: 1px;
display: flex;
flex-direction: column;
font-size: 12px;
font-weight: 400;
gap: 2px;
height: 28px;
inset: 0 auto auto;
justify-content: center;
margin: auto;
padding: 0 20px;
position: absolute;
transform: translateY(-50%);
width: auto
}
.araklet.araklet-template-size-l .has-sale-seal:has(>span+span) {
height: 40px
}
.araklet.araklet-template-size-l .araklet-item-amazon .has-sale-seal {
border-color: #232f3e;
color: #232f3e
}
.araklet.araklet-template-size-l .araklet-item-rakuten .has-sale-seal {
border-color: #ad1413;
color: #ad1413
}
.araklet.araklet-template-size-l .araklet-price .price:after {
content: "円"
}
.araklet.araklet-template-size-l .araklet-buy-button-box:after {
bottom: 10px;
font-size: 11px;
pointer-events: none;
position: absolute;
right: 10px
}
.araklet.araklet-template-size-l .araklet-buy-button:after {
background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAwCAYAAAC8NUKEAAAABHNCSVQICAgIfAhkiAAAAeVJREFUaEPtmI1NwzAQhesNGIENYAMyQkdoJ0BMAExANyhMABuQbAAbdIR2gvAOJZK5JrbjnGsHnaWqyo8v9/neS2ybVYbWtm2Nx94JP7oxwgGDwimMf5iyVWaH3G79+Z3dcYUzNyP98sBEQKwgTQL5dAzCMmACQGh8yocByDUSfR+oyDeTXGNw82NM2T19GmMMvX5nNeRGviJpkcTstsXBobvWn/+FaWc9cbjzM2Ce5sR1gSD2K65Xi4DxgdAgLQImBCQYBiXMMivoEtzg/4V55ITjDdL6sGUbVJlcMEiOQPbMZwRSIacv7r9iYaaCFCuzGJAiYQByj8Ronma3UWkV6xmAkD/IJ3ajr/oaHjlwjxTrGQcImf3oAylGZhIgRcBIgWSF6abw5JE1k1DTeSRIWuwFQJNPe4F3PJtoSn80HWuRNzyLvwBC7DJ6T1KYS4IQYTKYS4Mkg8kBkgTGMYV/gEf4136WR3hncZmNbPBtaXUomvlAsBQw9Mqs8ev3t6JBMDD2Fu5paClgM4nD9MGRCFWinlMRtj9BmySVq7rJYCQkpTB/dJdxD4BXUyujlZFwuCeGykxlpjKbNgLqGfXMNMVE3a0y+7cy6xZWUbJI0Mlev0xfzyRISCqkwkiNpHQcb2V+AMZ62zEGrTIfAAAAAElFTkSuQmCC") no-repeat;
background-size: contain;
content: "" !important;
display: inline-block;
flex: 0 0 1em;
height: 1em;
margin-left: 10px;
width: 1em
}
.araklet.araklet-template-size-l .araklet-item-amazon .araklet-buy-button-box:after,
.araklet.araklet-template-size-l .araklet-item-extra.araklet-is-display-ad .araklet-buy-button-box:after,
.araklet.araklet-template-size-l .araklet-item-rakuten .araklet-buy-button-box:after {
content: "PR"
}
.araklet.araklet-template-size-l .araklet-item-amazon .araklet-buy-button-box:after {
color: #f8ddc7
}
.araklet.araklet-template-size-l .araklet-item-rakuten .araklet-buy-button-box:after {
color: #e6b8ba
}
.araklet.araklet-template-size-l .araklet-image {
flex: 1
}
.araklet {
background-color: #fff;
font-style: normal;
font-weight: 400;
position: relative;
text-decoration: none;
width: 100%
}
.araklet img {
max-width: 100%
}
.araklet p:has(script) {
display: none
}
.araklet p:empty {
display: none
}
.araklet,
.araklet *,
.araklet :after,
.araklet :before {
box-sizing: border-box !important;
color: inherit;
line-height: 1
}
.araklet *,
.araklet :after,
.araklet :before {
margin: 0;
padding: 0
}
.araklet .araklet-image-link {
display: block;
height: 100%;
width: 100%
}
.araklet .araklet-title-link {
line-height: inherit
}
.araklet .araklet-title-link:hover {
color: inherit
}
.araklet .araklet-buy-button-box .araklet-buy-button {
text-decoration: none !important
}
.araklet .araklet-buy-button-box .araklet-buy-button:after {
content: none
}
.araklet .araklet-image img {
max-height: 100%;
object-fit: contain
}
.araklet-detail>br,
.araklet-detail>p,
.araklet-item>br,
.araklet-item>p,
.araklet>br,
.araklet>p {
font-size: 0;
line-height: 0;
margin: 0
}
.araklet+.araklet {
margin-top: 50px
}
.araklet.araklet-template-size-s {
background-color: transparent;
display: flex;
font-family: Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Meiryo, sans-serif !important;
gap: 30px
}
.araklet.araklet-template-size-s .araklet-detail {
flex: 1
}
.araklet.araklet-template-size-s .araklet-image {
container-type: inline-size
}
.araklet.araklet-template-size-s .araklet-image img {
height: auto;
max-height: 100vw;
max-height: 100cqw;
width: 100%
}
.araklet.araklet-template-size-s .araklet-image-link:after,
.araklet.araklet-template-size-s .araklet-image-link:before {
content: none !important
}
.araklet.araklet-template-size-s .araklet-title {
font-size: 16px;
line-height: 1.4;
word-break: break-all
}
.araklet.araklet-template-size-s .araklet-title-link {
color: #232F3E;
font-weight: 700 !important;
text-decoration: none !important
}
.araklet.araklet-template-size-s .araklet-title-link:after,
.araklet.araklet-template-size-s .araklet-title-link:before {
content: none !important
}
.araklet.araklet-template-size-s .araklet-item {
align-items: center;
border-radius: 3px;
color: #fff !important;
display: flex;
flex-direction: column;
gap: 6px;
justify-content: center;
margin-top: 10px;
padding: 36px 12px 10px;
position: relative;
width: 100%
}
.araklet.araklet-template-size-s .araklet-item.araklet-has-sale {
margin-top: 24px;
padding-top: 51px
}
.araklet.araklet-template-size-s .araklet-item.araklet-has-sale .araklet-buy-button {
padding-top: 30px
}
.araklet.araklet-template-size-s .araklet-item.araklet-has-sale+.araklet-item.araklet-has-sale {
margin-top: 32px
}
.araklet.araklet-template-size-s .araklet-item-amazon {
background-color: #232f3e
}
.araklet.araklet-template-size-s .araklet-item-rakuten {
background-color: #ad1413
}
.araklet.araklet-template-size-s .araklet-note,
.araklet.araklet-template-size-s .araklet-price {
font-size: 12px;
z-index: 1
}
.araklet.araklet-template-size-s .araklet-price {
white-space: nowrap
}
.araklet.araklet-template-size-s .araklet-price .araklet-price-unit,
.araklet.araklet-template-size-s .araklet-price .price {
font-weight: 700
}
.araklet.araklet-template-size-s .araklet-price .araklet-price-unit.striked,
.araklet.araklet-template-size-s .araklet-price .price.striked {
font-weight: 400;
text-decoration: line-through
}
.araklet.araklet-template-size-s .araklet-price span {
line-height: inherit
}
.araklet.araklet-template-size-s .araklet-price.araklet-price-amazon {
display: flex
}
.araklet.araklet-template-size-s .araklet-price.araklet-price-amazon.has-savings {
gap: 5px
}
.araklet.araklet-template-size-s .araklet-price.araklet-price-amazon .sale-price-wrapper {
display: flex
}
.araklet.araklet-template-size-s .araklet-price.araklet-price-amazon .sale-price {
font-weight: 700
}
.araklet.araklet-template-size-s .araklet-price.araklet-price-amazon .discount {
margin-left: 5px
}
.araklet.araklet-template-size-s .prime-member-price-wrapper {
font-size: 13px;
font-weight: 700;
margin-left: 5px
}
.araklet.araklet-template-size-s .prime-member-price-wrapper .discount {
margin-left: 5px
}
.araklet.araklet-template-size-s .araklet-note {
line-height: 1.2
}
.araklet.araklet-template-size-s .araklet-buy-button-box {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 2
}
.araklet.araklet-template-size-s .araklet-buy-button {
color: #fff !important;
display: flex;
font-size: 14px;
font-weight: 700;
height: 100%;
justify-content: center;
padding: 15px 12px 12px;
width: 100%
}
.araklet.araklet-template-size-s .has-sale-seal {
align-items: center;
background-color: #fff;
border-radius: 100px;
border-style: solid;
border-width: 1px;
display: flex;
flex-direction: column;
font-size: 12px;
font-weight: 400;
gap: 2px;
height: 28px;
inset: 0 auto auto;
justify-content: center;
margin: auto;
padding: 0 20px;
position: absolute;
transform: translateY(-50%);
width: auto
}
.araklet.araklet-template-size-s .has-sale-seal:has(>span+span) {
height: 40px
}
.araklet.araklet-template-size-s .araklet-item-amazon .has-sale-seal {
border-color: #232f3e;
color: #232f3e
}
.araklet.araklet-template-size-s .araklet-item-rakuten .has-sale-seal {
border-color: #ad1413;
color: #ad1413
}
.araklet.araklet-template-size-s .araklet-price .price:after {
content: "円"
}
.araklet.araklet-template-size-s .araklet-buy-button-box:after {
bottom: 10px;
font-size: 11px;
pointer-events: none;
position: absolute;
right: 10px
}
.araklet.araklet-template-size-s .araklet-buy-button:after {
background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAwCAYAAAC8NUKEAAAABHNCSVQICAgIfAhkiAAAAeVJREFUaEPtmI1NwzAQhesNGIENYAMyQkdoJ0BMAExANyhMABuQbAAbdIR2gvAOJZK5JrbjnGsHnaWqyo8v9/neS2ybVYbWtm2Nx94JP7oxwgGDwimMf5iyVWaH3G79+Z3dcYUzNyP98sBEQKwgTQL5dAzCMmACQGh8yocByDUSfR+oyDeTXGNw82NM2T19GmMMvX5nNeRGviJpkcTstsXBobvWn/+FaWc9cbjzM2Ce5sR1gSD2K65Xi4DxgdAgLQImBCQYBiXMMivoEtzg/4V55ITjDdL6sGUbVJlcMEiOQPbMZwRSIacv7r9iYaaCFCuzGJAiYQByj8Ronma3UWkV6xmAkD/IJ3ajr/oaHjlwjxTrGQcImf3oAylGZhIgRcBIgWSF6abw5JE1k1DTeSRIWuwFQJNPe4F3PJtoSn80HWuRNzyLvwBC7DJ6T1KYS4IQYTKYS4Mkg8kBkgTGMYV/gEf4136WR3hncZmNbPBtaXUomvlAsBQw9Mqs8ev3t6JBMDD2Fu5paClgM4nD9MGRCFWinlMRtj9BmySVq7rJYCQkpTB/dJdxD4BXUyujlZFwuCeGykxlpjKbNgLqGfXMNMVE3a0y+7cy6xZWUbJI0Mlev0xfzyRISCqkwkiNpHQcb2V+AMZ62zEGrTIfAAAAAElFTkSuQmCC") no-repeat;
background-size: contain;
content: "" !important;
display: inline-block;
flex: 0 0 1em;
height: 1em;
margin-left: 10px;
width: 1em
}
.araklet.araklet-template-size-s .araklet-item-amazon .araklet-buy-button-box:after,
.araklet.araklet-template-size-s .araklet-item-extra.araklet-is-display-ad .araklet-buy-button-box:after,
.araklet.araklet-template-size-s .araklet-item-rakuten .araklet-buy-button-box:after {
content: "PR"
}
.araklet.araklet-template-size-s .araklet-item-amazon .araklet-buy-button-box:after {
color: #f8ddc7
}
.araklet.araklet-template-size-s .araklet-item-rakuten .araklet-buy-button-box:after {
color: #e6b8ba
}
.araklet.araklet-template-size-s .araklet-image {
flex: 0 0 240px
}
@media screen and (max-width:767px) {
.araklet.araklet-template-rich {
padding: 15px 4.225352112676056%
}
.araklet.araklet-template-rich .araklet-item+.araklet-item {
margin-top: 10px
}
.araklet.araklet-template-rich .araklet-image {
flex: 0 0 100px;
height: 100px;
width: 100px
}
.araklet.araklet-template-rich .araklet-title-link {
font-size: 14px
}
.araklet.araklet-template-rich .araklet-price {
margin-bottom: 10px
}
.araklet.araklet-template-rich .araklet-buy-button {
font-size: 14px
}
}
@media (max-width:599px) {
.araklet.araklet-template-default_v2 {
gap: 10px
}
.araklet.araklet-template-default_v2 .araklet-item.araklet-has-sale {
margin-top: 23px
}
.araklet.araklet-template-default_v2 .araklet-price {
font-size: 13px
}
.araklet.araklet-template-default_v2 .araklet-image {
flex: 0 0 30%;
min-width: 100px
}
.araklet.araklet-template-default_v2 .araklet-title {
font-size: 12px
}
.araklet.araklet-template-default_v2 .araklet-item {
flex-direction: column;
gap: 3px;
padding: 32px 10px 10px
}
.araklet.araklet-template-default_v2 .araklet-buy-button {
font-size: 12px;
padding: 10px
}
.araklet.araklet-template-default .araklet-image {
flex: 0 0 110px;
padding-top: 10px;
width: 110px
}
.araklet.araklet-template-default .araklet-image img {
width: 75%
}
.araklet.araklet-template-default .araklet-detail {
padding-bottom: 12px;
padding-right: 12px;
padding-top: 12px
}
.araklet.araklet-template-default .araklet-title {
line-height: 1.7;
margin-bottom: 12px
}
.araklet.araklet-template-default .araklet-item {
padding-left: 2px
}
.araklet.araklet-template-default .araklet-item+.araklet-item {
margin-top: 10px
}
.araklet.araklet-template-default .araklet-price {
margin-right: 5px;
margin-top: -3px
}
.araklet.araklet-template-default .araklet-price .price {
font-size: 15px
}
.araklet.araklet-template-default .araklet-note {
font-size: 13px;
line-height: 1.5;
margin-right: 3px
}
.araklet.araklet-template-default .araklet-buy-button {
border-width: 1px;
font-size: 14px;
height: 28px;
padding-left: 7px;
padding-right: 7px
}
.araklet.araklet-template-size-l {
gap: 10px
}
.araklet.araklet-template-size-l .araklet-item.araklet-has-sale {
margin-top: 23px
}
.araklet.araklet-template-size-l .araklet-price {
font-size: 13px
}
.araklet.araklet-template-size-l {
flex-direction: column
}
.araklet.araklet-template-size-l .araklet-detail,
.araklet.araklet-template-size-l .araklet-image {
flex: auto
}
.araklet.araklet-template-size-l .araklet-title {
font-size: 17px;
margin-top: 10px
}
.araklet.araklet-template-size-s {
gap: 10px
}
.araklet.araklet-template-size-s .araklet-item.araklet-has-sale {
margin-top: 23px
}
.araklet.araklet-template-size-s .araklet-price {
font-size: 13px
}
.araklet.araklet-template-size-s .araklet-image {
flex: 0 0 30%;
min-width: 100px
}
.araklet.araklet-template-size-s .araklet-title {
font-size: 12px
}
.araklet.araklet-template-size-s .araklet-item {
flex-direction: column;
gap: 3px;
padding: 32px 10px 10px
}
.araklet.araklet-template-size-s .araklet-buy-button {
font-size: 12px;
padding: 10px
}
}
/** YKTR-6240 MAG2NEWSにCSS追加依 **/
.prof_card{
        background-color:#fff;
        overflow:hidden;
        margin-top:2em;
        padding:15px;
        margin-bottom:2em;
        border: 1px solid #000;
}
.prof_card strong{
        display: block;
        font-size:18px;
        font-weight: normal;
        margin-bottom:5px;
}
.prof_card_box{
        overflow:hidden;
        display: -webkit-flex;
        display: flex;
}
.prof_card_img{
        width:100px;
        margin-right:10px;
}
.prof_card_img img{
        margin-top:0px !important;
}
.prof_card_name{
        flex: 1;
}
.prof_card_name span{
        font-size:15px;
        margin-bottom: 5px;
        display: block;
}
.prof_card_text{
        background: #fff;
        padding: 10px;
        border-radius: 10px;
        margin-top: 10px;
}