@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:
Stylesheet: Main Stylesheet
Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions
******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a, .term-name span {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus, .term-name span:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, .term-name span:active,
a:hover,
.term-name span:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
/******************************************************************
Site Name:
Author:
Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.
******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* mixinの定義 */
/* 2色グラデーション */
/* 3色グラデーション */
/* アニメーション */
/*********************
Common Styles
*********************/
/*********************
Margin
*********************/
/* 40px */
/*********************
Padding
*********************/
/*********************
Contents Width
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*********************
Font Size
*********************/
/* 35px */
/* 30px */
/* 26px */
/* 22px */
/* 20px */
/* 18px */
/* 12px */
/* 20px */
/* 15px */
/* 12px */
/******************************************************************
 TITLE STYLES
******************************************************************/
/* 30px */
.title-xlarge {
  font-size: 1.875rem !important;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.038rem; }

/* 26px */
.title-large, .Single-style .single-title, .single-article .single-title {
  font-size: 1.625rem !important;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.038rem; }

/* 22px */
.title-medium-large, .Single-style .entry-content h2, .single-article .entry-content h2 {
  font-size: 1.375rem !important;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.03em; }

/* 20px */
.title-medium, .Single-style .entry-content h3, .single-article .entry-content h3 {
  font-size: 1.25rem !important;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.0230769em; }

/* 18px */
.title-medium-small, .article-list .entry-title, .article-list-thin .entry-title {
  font-size: 1.125rem !important;
  font-weight: 500;
  line-height: 1.563rem;
  letter-spacing: 0.0375rem; }

/* 12px */
.title-small {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.0375em; }

/******************************************************************
 Weght STYLES
******************************************************************/
.fwb {
  font-weight: 600; }

p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3; }

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
画像のパス
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
Thumnail
*********************/
/*********************
Border
*********************/
/*********************
background
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
    margin-left: 0; }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
    margin-left: 0; }

  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }
/*********************
Grid STYLES
*********************/
.d-flex {
  display: flex;
  flex-wrap: wrap; }

.d-flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around; }

.d-flex-alg-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }

.d-flex-stretch {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around; }

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4,
.col-md-4 {
  flex: 0 0 auto;
  width: calc(33.33% - 50px); }

.col-6 {
  flex: 0 0 auto;
  width: calc(50% - 6px); }

@media (max-width: 767px) {
  .col-md-4 {
    width: 100%; }

  .col-md-6 {
    width: 50%; } }
/******************************************************************
Site Name:
Author:
Stylesheet: Categories

******************************************************************/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.entry-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.75rem; }

.vcard, .vcard-small, .vcard-mediam {
  display: flex;
  align-items: center;
  width: 100%; }

.author .avatar, .vcard-small .avatar, .vcard-mediam .avatar, .vcard-tiles .avatar {
  margin-right: 10px; }
  .author .avatar img, .vcard-small .avatar img, .vcard-mediam .avatar img, .vcard-tiles .avatar img {
    height: auto;
    border-radius: 50%;
    float: left; }
.author img.avatar, .vcard-small img.avatar, .vcard-mediam img.avatar, .vcard-tiles img.avatar {
  margin-right: 0; }
.author-name {
  font-size: 0.75rem;
  color: #3E4551;
  font-weight: 400 !important; }

.vcard-small img {
  width: 24px !important; }

.vcard-mediam img {
  width: 24px; }

@media screen and (min-width: 480px) {
  .vcard-mediam img {
    width: 40px; } }
@media screen and (min-width: 768px) {
  .vcard-mediam img {
    width: 48px; } }
.vcard-tiles {
  display: flex;
  align-items: center;
  text-align: center;
  flex-flow: column; }
  .vcard-tiles .avatar {
    margin-right: 0;
    margin-bottom: .2rem; }
  .vcard-tiles img {
    width: 122px; }

/******************************************************************
Site Name:
Author:

Stylesheet: Entry-List Styles

******************************************************************/
.article-list, .article-list-thin {
  display: flex;
  flex-direction: column; }
  .article-list article, .article-list-thin article {
    margin-bottom: 1rem;
    padding-bottom: 1rem; }
  .article-list-inner {
    display: flex;
    flex-direction: flex-start; }
  .article-list .entry-wrap, .article-list-thin .entry-wrap {
    margin-left: 16px;
    flex: 1;
    position: relative; }
  .article-list .entry-title, .article-list-thin .entry-title {
    margin-top: 0; }
  .article-list .article-image, .article-list-thin .article-image {
    width: calc(100% /3);
    min-width: 80px;
    max-width: 125px; }
  .article-list .article-image img, .article-list-thin .article-image img {
    width: 100%;
    display: inherit;
    height: auto; }
  .article-list .entry-meta, .article-list-thin .entry-meta {
    width: 100%;
    bottom: 0; }
  .article-list time, .article-list-thin time {
    margin-left: auto; }

#sidebar .article-list .entry-title, #sidebar .article-list-thin .entry-title {
  font-size: 1rem !important;
  line-height: 1.4em; }

/* widget_yarpp_widget */
.article-list-tiles {
  display: flex;
  flex-wrap: wrap;
  /* 偶数のみ左余白0 */
  /* 奇数のみ左余白0 */ }
  .article-list-tiles article {
    width: 50%;
    padding-bottom: 0;
    box-sizing: content-box; }
  .article-list-tiles img {
    width: 100%;
    height: auto; }
  .article-list-tiles .entry-title {
    margin: .1rem 0 0 0; }
  .article-list-tiles article:nth-of-type(even) .article-inner {
    margin: 0 0 1.25rem 0.375rem; }
  .article-list-tiles article:nth-of-type(odd) .article-inner {
    margin-left: 0 !important;
    margin-right: 0.375rem; }
  .article-list-tiles .entry-header {
    font-size: 0.75rem; }

/* 画面サイズ512pxから1029pxまで */
@media screen and (min-width: 512px) and (max-width: 1029px) {
  .entry-meta {
    position: absolute; } }
@media screen and (min-width: 512px) {
  .article-list-inner
  .entry-meta {
    position: absolute !important; } }
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #ffe27f;
  background: #FFE898; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Noto Sans JP", Arial, "Hiragino Sans", sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: all background-color 0.14s ease-in-out ease;
  -moz-transition: all background-color 0.14s ease-in-out ease;
  -o-transition: all background-color 0.14s ease-in-out ease;
  transition: all background-color 0.14s ease-in-out ease; }
  .blue-btn:hover, .blue-btn:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  .blue-btn:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #4D91E9; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #3b86e7; }
  .blue-btn:active {
    background-color: #3683e6; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  -webkit-appearance: none;
  border-radius: 3px;
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-top: 6px;
  margin-bottom: 5px;
  font-size: 1em;
  color: #3E4551;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Lato", "Noto Sans JP", Arial, "Hiragino Sans", sans-serif;
  background-color: #fff;
  border: 1px solid #cccccc;
  -webkit-transition: all background-color 0.24s ease-in-out ease;
  -moz-transition: all background-color 0.24s ease-in-out ease;
  -o-transition: all background-color 0.24s ease-in-out ease;
  transition: all background-color 0.24s ease-in-out ease; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: rgba(255, 229, 104, 0.5);
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #222222;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #222222;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #cfcfcf;
    border: 1px solid #cfcfcf;
    color: #cccccc; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #FFE898; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  margin-top: 6px; }

select {
  margin-top: 6px;
  display: inline-block !important;
  width: auto !important;
  min-width: 2rem;
  padding-right: 30px;
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 90% center; }

em.hissu {
  color: #e74882;
  font-size: 11px;
  margin-right: .5rem;
  border: 1px solid #e74882;
  font-style: normal;
  padding: 4px;
  margin-bottom: 5px;
  border-radius: 3px; }

em.nini {
  color: #5c6b80;
  font-size: 11px;
  margin-right: .5rem;
  border: 1px solid #5c6b80;
  font-style: normal;
  padding: 4px;
  border-radius: 3px; }

span.error {
  color: #C91F22;
  font-size: .85rem;
  margin: 0 0 1.2rem 0; }

input[type="radio"] {
  margin-top: 6px; }

input[type="button"],
input[type="submit"] {
  height: 40px;
  padding: 0 2rem;
  margin-top: 6px;
  background: #FFE568;
  color: #3E4551;
  font-size: 1rem !important;
  border: 1px solid #FFE568;
  /* Chrome and Safari */
  -webkit-border-radius: 30px;
  /* Firefox */
  -moz-border-radius: 30px;
  /* Standard Syntax */
  border-radius: 30px;
  min-width: 120px; }
  input[type="button"].reedit,
  input[type="submit"].reedit {
    background: #FFE568;
    border: 0 solid #FFE568;
    color: #3E4551;
    margin-left: 2rem; }

input:disabled {
  background: #cfcfcf;
  border: 0 solid #cfcfcf;
  color: #AAAAAA; }

form dt {
  margin: 1.5rem 0 6px 0; }
form dd {
  margin: 6px 0; }
form dd.d-flex {
  align-items: baseline; }

.mw_wp_form mw_wp_form_input form dt {
  margin: 1.5rem 0 6px 0; }
.mw_wp_form mw_wp_form_input form dd {
  padding-top: 0 !important; }

button {
  border: none;
  color: #3E4551; }

/******************************************************************
Site Name:
Author:

Stylesheet: Footer Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  /* 都道府県アコーディオンボックス */ }
  .footer .acc-box_inner {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%; }
  .footer .acc-box label {
    display: inline-block;
    background: none;
    color: #fff;
    margin: 0; }
  .footer .acc-box label::after {
    display: inline;
    position: static;
    padding-left: .5rem;
    line-height: 10px; }

/*カテゴリから探す 2022*/
.footer-links:nth-of-type(1) {
  margin-bottom: 2.5rem; }
  .footer-links:nth-of-type(1) .widgettitle:after {
    display: block;
    margin-top: 1rem;
    content: " ";
    height: 10px;
    background-image: url(/wp-content/themes/bones/library/images/common/border.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: repeat-x;
    background-size: contain; }

/*検索 2022*/
.footer-links:nth-of-type(2) {
  background: #F9F7EE;
  padding-top: 2.5rem; }

/*リンク 2022*/
.footer-links:nth-of-type(3) {
  background: #F9F7EE;
  padding-top: 2.8125rem; }
  .footer-links:nth-of-type(3) .footer-logo a, .footer-links:nth-of-type(3) .footer-logo .term-name span, .term-name .footer-links:nth-of-type(3) .footer-logo span {
    display: inherit; }
  .footer-links:nth-of-type(3) .footer-logo img {
    width: 156px;
    height: auto; }

.footer-links .list-title {
  font-weight: 600;
  margin-top: 8px; }
.footer-links .sub-list-title {
  font-size: 0.8rem !important;
  margin-left: 10px;
  font-weight: 600; }
  .footer-links .sub-list-title ul li {
    font-weight: normal; }
.footer-links .acc-box label {
  font-size: 0.8rem !important; }
.footer-links .nav ul {
  background: none; }
.footer-links .nav li ul.sub-menu {
  padding-top: 0;
  visibility: visible;
  display: block;
  background: none;
  visibility: none;
  position: static; }
  .footer-links .nav li ul.sub-menu li {
    margin-left: 20px; }
  .footer-links .nav li ul.sub-menu li a, .footer-links .nav li ul.sub-menu li .term-name span, .term-name .footer-links .nav li ul.sub-menu li span {
    border: none;
    padding-left: 0; }
  .footer-links .nav li ul.sub-menu .menu-sub-title {
    margin-top: 0;
    padding-left: 16px; }
.footer-links .nav li:last-child {
  float: none; }
.footer-links ul {
  padding-top: 1rem; }
  .footer-links ul li a, .footer-links ul li .term-name span, .term-name .footer-links ul li span, .footer-links ul li a:link, .footer-links ul li .term-name span:link, .term-name .footer-links ul li span:link, .footer-links ul li a:visited, .footer-links ul li .term-name span:visited, .term-name .footer-links ul li span:visited {
    display: block;
    word-break: keep-all;
    white-space: nowrap;
    padding: 3px 6px;
    font-size: 0 0.875rem; }
.footer-links #menu-fnav-pref-hall, .footer-links #menu-fnav-article-cat,
.footer-links #menu-fnav-pref-shop {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 0;
  margin-left: 20px; }
  .footer-links #menu-fnav-pref-hall li, .footer-links #menu-fnav-article-cat li,
  .footer-links #menu-fnav-pref-shop li {
    flex: 1 0 5%;
    max-width: 5%;
    margin-left: 0; }
.footer-links #menu-fnav-article-cat {
  max-width: 560px;
  margin: auto;
  padding-top: 0.65rem; }
  .footer-links #menu-fnav-article-cat li {
    flex: 1 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 1.25rem;
    padding-left: 7px;
    padding-right: 7px; }
  .footer-links #menu-fnav-article-cat li a, .footer-links #menu-fnav-article-cat li .term-name span, .term-name .footer-links #menu-fnav-article-cat li span {
    width: 100%;
    padding: 0.8rem; }
.footer-links #menu-fnav2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  max-width: 560px;
  padding-top: 0;
  margin: 1.875rem auto 0 auto; }
  .footer-links #menu-fnav2 li {
    flex: 1 0 33.33%;
    max-width: 33.33%;
    height: auto; }
  .footer-links #menu-fnav2 li:nth-of-type(4) {
    flex: 1 0 100%;
    max-width: 100%; }
  .footer-links #menu-fnav2 li a, .footer-links #menu-fnav2 li .term-name span, .term-name .footer-links #menu-fnav2 li span {
    font-size: 0.75rem;
    text-align: center;
    padding: 0;
    line-height: 3; }
.footer-links #menu-fnav-pref-hall li, .footer-links #menu-fnav-article-cat li,
.footer-links #menu-fnav-pref-shop li {
  flex: 1 0 33%;
  max-width: 33%; }
  .footer-links #menu-fnav-pref-hall li a, .footer-links #menu-fnav-article-cat li a, .footer-links #menu-fnav-pref-hall li .term-name span, .term-name .footer-links #menu-fnav-pref-hall li span, .footer-links #menu-fnav-article-cat li .term-name span, .term-name .footer-links #menu-fnav-article-cat li span,
  .footer-links #menu-fnav-pref-shop li a,
  .footer-links #menu-fnav-pref-shop li .term-name span,
  .term-name .footer-links #menu-fnav-pref-shop li span {
    font-size: 1rem;
    letter-spacing: 0.116667em; }

/* end .footer-links */
.copyright {
  background: #F9F7EE;
  text-align: center;
  font-size: 0.75rem;
  line-height: 3;
  padding: 0 0 1.875rem 0;
  margin: 0; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
/******************************************************************
/******************************************************************
Site Name:
Author:
Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html {
  scroll-behavior: smooth; }

body {
  font-family: "Lato", "Noto Sans JP", Arial, "Hiragino Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #3E4551;
  background-color: #cccccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/** Coloring **/
.btn-primary {
  background: #FFE568; }

.btn-primary:hover {
  background: rgba(255, 229, 104, 0.5); }

.bg-primary {
  background: #F9F7EE; }

.bg-secondary {
  background: #AAAAAA; }

/* Layout */
section {
  margin-top: 2rem; }

/* Figure */
.img-fluid {
  width: 100%;
  height: auto; }

/* Button */
a.btn, .term-name span.btn,
a.btn-primary,
.term-name span.btn-primary,
.btn-primary {
  display: block;
  margin: auto;
  width: 75%;
  max-width: 410px;
  border-radius: 30px;
  padding: .5rem 0;
  color: #3E4551 !important;
  text-decoration: none !important;
  text-align: center;
  font-size: 1.125rem; }
  a.btn a, .term-name span.btn a, a.btn .term-name span, .term-name a.btn span, .term-name span.btn span,
  a.btn-primary a,
  .term-name span.btn-primary a,
  a.btn-primary .term-name span,
  .term-name a.btn-primary span,
  .term-name span.btn-primary span,
  .btn-primary a,
  .btn-primary .term-name span,
  .term-name .btn-primary span {
    color: #3E4551 !important; }

.btn-secondary {
  position: relative;
  z-index: 1;
  padding: 10px;
  /* Archers　ボタングラデーション */
  background: linear-gradient(90deg, #7889E3 0%, #FF6DA4 70%, #FBBCAB 100%);
  text-align: center; }
  .btn-secondary:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    box-sizing: border-box;
    padding: 2px;
    width: 100%;
    height: 100%;
    background: #fff;
    background-clip: content-box;
    content: ""; }

.btn-third {
  display: inline-block;
  padding: 8px 15px;
  border: 2px solid #3E4551;
  color: #3E4551;
  font-size: .8em;
  text-decoration: none; }
  .btn-third:hover {
    color: #FFF;
    background: #3E4551; }

/* Popup */
.popup_wrap input {
  display: none; }

.popup_overlay {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.8);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.popup_content {
  position: relative;
  top: 40px;
  width: 90%;
  max-width: 800px;
  box-sizing: border-box;
  overflow: scroll;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(94, 94, 94, 0.7); }
  .popup_content p {
    text-align: left;
    padding: 0 20px; }
  .popup_content h2 {
    margin-top: 2rem;
    font-weight: 600 !important;
    font-size: 0.9375rem !important; }
  .popup_content h2 + p {
    margin-top: 0 !important; }

.close_btn {
  position: absolute;
  width: 100vw;
  height: 100%;
  display: block;
  font-size: 30px;
  cursor: pointer;
  color: #3E4551; }

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.open_btn {
  display: inline-block;
  padding: 8px 2rem;
  border: 2px solid #3E4551;
  border-radius: 30px;
  color: #222;
  font-size: .8em;
  text-decoration: none; }

.open_btn:hover {
  background: #3E4551;
  color: #fff; }

/* Background */
/* white-parallelogram-backbround　*/
section.bg-prl {
  position: relative;
  z-index: 0; }

section.bg-prl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(5deg);
  transform-origin: bottom left;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff; }

.bg-pink-box, .tag-list {
  padding: 10px;
  border: 1px solid rgba(255, 179, 186, 0.3);
  background: rgba(255, 179, 186, 0.1); }

/* Marker */
.marker-pink {
  background: linear-gradient(transparent 70%, #ffb3ba 70%); }

.marker-yellow {
  background: linear-gradient(transparent 60%, #FFE898 60%); }

.marker-gold {
  border-bottom: dotted #c9b06e; }

/********************
ARCHIVE 
********************/
/* search page */
/* archive page */
body.archive .widgettitle,
body.search-results .widgettitle {
  margin-top: 2rem; }
body.archive .serires-banner img,
body.search-results .serires-banner img {
  width: 100%;
  height: auto; }

/* 連載一覧 */
body.single-article_series #main > article {
  margin-top: 2rem; }

/* 連載コラム一覧 */
h4.series-title {
  margin-top: 2rem;
  align-items: center;
  justify-content: center; }
  h4.series-title img, h4.series-title span {
    min-width: 102px;
    padding-right: 0;
    padding-left: 1rem;
    background: #fff; }
  h4.series-title:before {
    content: " ";
    display: block;
    height: 1px;
    z-index: -1;
    width: 680px;
    position: absolute;
    background-image: url(/wp-content/themes/bones/library/images/common/line.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: repeat-x;
    background-size: contain; }

.series-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 680px;
  margin: auto -2%; }
  .series-list-banner {
    width: 100%;
    height: auto;
    margin: 0 0 0.625rem 0; }
  .series-list-banner img {
    width: 100%;
    height: auto; }

/* 681以上は左右余白あり */
@media screen and (min-width: 681px) {
  .series-list {
    margin: auto; } }
/* 記事カテゴリ一覧のAllのタイトル非表示 */
.term-all h4.widgettitle {
  display: none; }

/*  taxonomy.php */
.tax-article-category .thumb-left {
  width: 80px !important; }

/*  Archers page */
.page-template-page-archers a.archers-secondry:link, .page-template-page-archers .term-name span.archers-secondry:link, .term-name .page-template-page-archers span.archers-secondry:link, .page-template-page-archers a.archers-secondry:visited, .page-template-page-archers .term-name span.archers-secondry:visited, .term-name .page-template-page-archers span.archers-secondry:visited {
  color: #4D91E9 !important; }
.page-template-page-archers a.archers-secondry:hover, .page-template-page-archers .term-name span.archers-secondry:hover, .term-name .page-template-page-archers span.archers-secondry:hover {
  color: 　 #2478e4 !important; }
.page-template-page-archers .entry-content .hentry:nth-of-type(1) {
  margin-top: 0;
  padding: 8px 0; }
.page-template-page-archers .hentry {
  border-bottom: none; }
  .page-template-page-archers .hentry .hentry {
    border-bottom: 1px solid #ccc; }

/* card style */
.card-thin .hentry {
  padding-bottom: 1em; }
.card-thin .entry-wrap {
  margin-left: 16px; }
.card-thin .archive-thumbnail {
  width: 75px;
  height: 75px; }
.card-thin section {
  margin-top: 0 !important; }
.card-thin .entry-date {
  float: left;
  min-width: 8rem; }
.card-thin .term-name {
  margin-top: .45rem;
  margin-left: auto; }

/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
.error404 #searchform {
  padding-top: 0; }

/* 404 page */
/* replace the number to the corresponding page number */
/* widget_tag_cloud */
.term-name {
  display: flex;
  margin-bottom: 4px;
  white-space: nowrap;
  flex-wrap: wrap; }
  .term-name a, .term-name span {
    font-size: 10px !important;
    text-decoration: none; }
  .term-name span {
    display: inline;
    font-weight: 400 !important;
    padding-right: .5rem; }
  .term-name-promotion {
    display: inline-block;
    height: 16px;
    color: #999 !important;
    margin-right: 4px;
    line-height: 16px;
    padding: 0 4px !important;
    border: 1px solid  #CCC;
    font-size: 10px;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-weight: normal; }

.tag-features {
  display: inline-block;
  padding: 1px .4rem 0 8px;
  border-radius: 10px;
  background: rgba(255, 229, 104, 0.1);
  font-size: 11px !important;
  color: #FFE568;
  text-decoration: none;
  line-height: 2;
  margin: 4px 2px;
  border: 1px solid rgba(255, 229, 104, 0.3); }
  .tag-features:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    content: "";
    background-image: url(/wp-content/themes/bones/library/images/ico/ico-tag-stars.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-position: 0px 1px; }

/* tag page */
.tag-list h5 {
  margin: .45rem; }

/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
.page-template-default h1.page-title {
  margin-top: 2rem; }
.page-template-default .hentry {
  border-bottom: none; }
  .page-template-default .hentry .hentry {
    border-bottom: 1px solid #ccc; }
.page-template-default .byline {
  display: none; }

/* custom page template page */
/* ring */
.our-brand-list article {
  align-items: center; }
.our-brand-list__thumb {
  width: 75px !important;
  max-width: 75px !important;
  margin-right: 16px; }
.our-brand-list .entry-wrap header {
  padding: 0 !important; }

/* brand */
.single-brand .shop-list {
  margin-bottom: 1rem; }
  .single-brand .shop-list__prefacture-name {
    margin-top: 1.6rem;
    margin-bottom: 0;
    padding: 6px;
    background: #ececec; }
  .single-brand .shop-list__prefacture-container:nth-of-type(1) h5 {
    margin-top: 6px; }
  .single-brand .shop-list__prefacture-name + .hentry {
    margin-top: 0 !important; }
  .single-brand .shop-list .hentry {
    border-top: 1px solid #cccccc;
    padding-top: 1rem;
    padding-bottom: 0;
    margin-top: 1rem;
    border-bottom: none; }
  .single-brand .shop-list .hentry header {
    padding-top: 0 !important; }
  .single-brand .shop-list .thumb-left {
    max-width: 80px; }
    .single-brand .shop-list .thumb-left img {
      width: 100%;
      height: auto; }
  .single-brand .shop-list .entry-wrap {
    width: 66.66%;
    margin-left: 16px; }
  .single-brand .shop-list header {
    font-size: 12px; }
  .single-brand .shop-list dl {
    width: 100%;
    margin: 8px 0 -8px 0;
    display: flex;
    flex-wrap: wrap; }
  .single-brand .shop-list dt {
    width: 22%;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0 0 4px 0;
    max-width: 5rem; }
  .single-brand .shop-list dd {
    width: 78%;
    font-size: 0.75rem;
    padding: 0 0 4px 0;
    margin: 0;
    box-sizing: border-box; }
.single-brand .our-brand-list {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #cccccc; }
  .single-brand .our-brand-list article {
    align-items: center; }
  .single-brand .our-brand-list__thumb {
    width: 75px !important;
    max-width: 75px !important;
    margin-right: 16px; }
  .single-brand .our-brand-list .entry-wrap header {
    font-size: 1.25rem;
    padding: 0 !important; }
  .single-brand .our-brand-list .entry-wrap h3 {
    margin: 0 0 6px 0; }
  .single-brand .our-brand-list .entry-wrap h3:after {
    content: none; }
  .single-brand .our-brand-list .entry-wrap__sns {
    background: #DDD;
    font-size: 24px; }

/* list-brand */
.search-tag-features {
  margin-top: 20px;
  padding: 10px; }
  .search-tag-features .tag-features {
    border: 1px solid rgba(255, 229, 104, 0.3); }

/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  margin: 0 1.5rem; }

/* 左右余白をなくして幅を100%にしたい時 */
.width-full {
  margin: 0 -1.5rem !important; }

/*********************
LINK STYLES
*********************/
a, .term-name span {
  color: #3E4551;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, .term-name span:hover, a:focus, .term-name span:focus {
    color: black;
    text-decoration: none; }
  a:link, .term-name span:link {
    color: #3E4551; }
  a.read-more, .term-name span.read-more {
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid #222;
    color: #222;
    font-size: .8em;
    text-decoration: none;
    font-weight: 600 !important; }
  a p, .term-name span p {
    color: #3E4551;
    font-weight: normal; }
  a.external-link:after, .term-name span.external-link:after {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    margin-left: 5px;
    margin-bottom: -2px;
    content: "";
    background-image: url(/wp-content/themes/bones/library/images/ico/ico_external.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */ }
  h1 a, h1 .term-name span, .term-name h1 span,
  .h1 a,
  .h1 .term-name span,
  .term-name .h1 span,
  h2 a,
  h2 .term-name span,
  .term-name h2 span,
  .h2 a,
  .h2 .term-name span,
  .term-name .h2 span,
  h3 a,
  h3 .term-name span,
  .term-name h3 span,
  .h3 a,
  .h3 .term-name span,
  .term-name .h3 span,
  h4 a,
  h4 .term-name span,
  .term-name h4 span,
  .h4 a,
  .h4 .term-name span,
  .term-name .h4 span,
  h5 a,
  h5 .term-name span,
  .term-name h5 span,
  .h5 a,
  .h5 .term-name span,
  .term-name .h5 span {
    text-decoration: none; }

h1,
.h1 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-top: 0; }

h2,
.h2 {
  margin-bottom: 0.375rem; }

h3,
.h3 {
  font-size: .95rem;
  line-height: 1.4;
  font-weight: 500; }

h4,
.h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.375rem; }

h4.widgettitle {
  letter-spacing: 1px; }

h5,
.h5 {
  font-size: 1.25rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500; }

h6, .h6 {
  font-size: 1.25rem;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 500; }

h6:nth-of-type(2) {
  font-size: .8rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 400; }

/******************************************************************
ALIGN STYLES
******************************************************************/
.txt-c {
  text-align: center; }

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

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

/******************************************************************
MARGIN STYLES
******************************************************************/
.mt0 {
  margin-top: 0 !important; }

.mt-mt {
  margin-top: 2rem; }

.mb-mt {
  margin-bottom: 2rem; }

.pb-mt {
  padding-bottom: 2rem; }

.mt10 {
  margin-top: 10px; }

.mt20 {
  margin-top: 20px; }

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

h1 + p, h1 + ul, h2 + p, h2 + ul {
  margin-top: 0; }

/******************************************************************
 TEXT STYLES
******************************************************************/
p {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
  font-size: 1.125rem;
  line-height: 1.8rem;
  font-weight: 400; }

.small, .caption, .Single-style .entry-content .caption-table, .single-article .entry-content .caption-table {
  font-size: 11px; }

em {
  font-style: normal;
  font-weight: 500; }

strong {
  font-weight: 500; }

/*********************
HEADER STYLES
*********************/
.header {
  position: relative; }

#logo {
  text-align: center;
  height: 77px;
  margin-bottom: 0; }
  #logo img {
    height: 60px;
    width: auto;
    margin-top: 7px; }

#inner-header nav {
  background: #FFE568; }

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
#inner-header nav {
  width: 100%;
  /* コンテンツが見切れて見えるようにする */
  overflow-x: auto;
  /* 横スクロールの指定 */
  white-space: nowrap;
  /* 横スクロールの指定 */
  overflow-scrolling: touch;
  /* スクロールを滑らかにする */
  -webkit-overflow-scrolling: touch;
  /* スクロールを滑らかにする */ }
  #inner-header nav ul {
    display: flex;
    justify-content: space-evenly;
    width: max-content;
    margin: 0 auto; }
  #inner-header nav li {
    display: table-cell;
    font-size: 0.9rem;
    list-style: none;
    height: 44px;
    /* 横スクロールする範囲の高さを指定 */ }
  #inner-header nav li a, #inner-header nav li .term-name span, .term-name #inner-header nav li span {
    font-size: 0.9rem;
    display: inline-block;
    text-decoration: none;
    padding: 0.75em 1em;
    /*
			remember this is for mobile ONLY, so there's no need
			to even declare hover styles here, you can do it in
			the style.scss file where it's relevant. We want to
			keep this file as small as possible!
			*/ }
    #inner-header nav li a:hover, #inner-header nav li .term-name span:hover, .term-name #inner-header nav li span:hover, #inner-header nav li a:focus, #inner-header nav li .term-name span:focus, .term-name #inner-header nav li span:focus {
      color: #222222; }
  #inner-header nav li.current-menu-item a, #inner-header nav li.current-menu-item .term-name span, .term-name #inner-header nav li.current-menu-item span {
    font-weight: 500; }
  #inner-header nav li.current-menu-item {
    background: linear-gradient(transparent 96%, #3E4551 4%); }

.box::-webkit-scrollbar {
  height: 14px;
  /* スクロールバーの高さ */ }

.box::-webkit-scrollbar-thumb {
  background: #d2b48c;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */ }

.box::-webkit-scrollbar-track {
  background: #f5deb3;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */ }

/*
 WP responsive menu
*/
html body div.wprm-overlay {
  background: rgba(0, 0, 0, 0.8) !important; }

#wprmenu_menu_ul li {
  border-bottom: 1px solid #ccc; }

/*********************
BREADCRUMB STYLES
*********************/
.breadcrumbs {
  padding: 1.25rem 1.25rem 3.75rem 1.25rem;
  font-size: 11px;
  color: #2a2f37; }
  .breadcrumbs a:link, .breadcrumbs .term-name span:link, .term-name .breadcrumbs span:link, .breadcrumbs a:visited, .breadcrumbs .term-name span:visited, .term-name .breadcrumbs span:visited {
    color: #3E4551; }

/*********************
Display
*********************/
.pc-hide {
  display: block; }

.sp-hide {
  display: none; }

/*********************
POSTS & CONTENT STYLES
*********************/
/*コラム・式場・指輪の記事　共通スタイル*/
.Single-style, .single-article {
  /*次の記事、前の記事*/ }
  .Single-style .serires-banner img, .single-article .serires-banner img {
    width: 100%;
    height: auto; }
  .Single-style .single-title, .single-article .single-title {
    font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
    margin: 30px 0 0 0;
    padding-bottom: 0; }
  .Single-style .entry-content, .single-article .entry-content {
    margin-top: 0; }
    .Single-style .entry-content a:link, .single-article .entry-content a:link, .Single-style .entry-content .term-name span:link, .term-name .Single-style .entry-content span:link, .single-article .entry-content .term-name span:link, .term-name .single-article .entry-content span:link, .Single-style .entry-content a:visited, .single-article .entry-content a:visited, .Single-style .entry-content .term-name span:visited, .term-name .Single-style .entry-content span:visited, .single-article .entry-content .term-name span:visited, .term-name .single-article .entry-content span:visited {
      text-decoration: underline;
      color: #222222; }
    .Single-style .entry-content h2, .single-article .entry-content h2 {
      margin-top: 2.5rem;
      margin-bottom: 0; }
    .Single-style .entry-content h2:after, .single-article .entry-content h2:after {
      display: block;
      margin-top: .4rem;
      margin-bottom: 1rem;
      content: " ";
      height: 10px;
      background-image: url(/wp-content/themes/bones/library/images/common/border.png);
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: contain;
      background-repeat: repeat-x;
      background-size: contain; }
    .Single-style .entry-content h3, .single-article .entry-content h3 {
      border-left: solid 3px #faf339;
      padding-left: 10px;
      margin-top: 3.5rem;
      margin-bottom: 2.5rem; }
    .Single-style .entry-content p, .single-article .entry-content p {
      margin-top: 1.125rem;
      margin-bottom: 1.125rem;
      font-size: 1.125rem;
      line-height: 1.8rem;
      font-weight: 300;
      color: #222222; }
    .Single-style .entry-content h3 + p, .single-article .entry-content h3 + p {
      margin-top: 0; }
    .Single-style .entry-content .caption, .single-article .entry-content .caption, .Single-style .entry-content .caption-table, .single-article .entry-content .caption-table {
      font-size: 1.25rem;
      color: #fff;
      display: inline-block;
      margin: 0 !important;
      padding: 0.3rem 1.25rem;
      background: #ffb3ba;
      border-radius: 3px 3px 0 0; }
      .Single-style .entry-content .caption-table, .single-article .entry-content .caption-table {
        color: #3E4551;
        background: #cccccc; }
    .Single-style .entry-content p > ul p + ul, .single-article .entry-content p > ul p + ul, .Single-style .entry-content .caption + ul, .single-article .entry-content .caption + ul, .Single-style .entry-content .caption-table + ul, .single-article .entry-content .caption-table + ul, .Single-style .entry-content .caption + ol, .single-article .entry-content .caption + ol, .Single-style .entry-content .caption-table + ol, .single-article .entry-content .caption-table + ol {
      margin-top: 0 !important; }
    .Single-style .entry-content ul, .single-article .entry-content ul, .Single-style .entry-content ol, .single-article .entry-content ol {
      padding: 10px;
      list-style: inside disc;
      line-height: 2 !important;
      background-color: #FFE568; }
    .Single-style .entry-content ol, .single-article .entry-content ol {
      list-style: inside decimal; }
    .Single-style .entry-content dt, .single-article .entry-content dt {
      display: flex;
      align-items: center; }
    .Single-style .entry-content ul li::marker, .single-article .entry-content ul li::marker {
      margin-right: 0.5rem; }
    .Single-style .entry-content figure ul, .single-article .entry-content figure ul {
      border: none;
      background: none; }
    .Single-style .entry-content ul.toc_list, .single-article .entry-content ul.toc_list {
      border: none; }
      .Single-style .entry-content ul.toc_list li, .single-article .entry-content ul.toc_list li {
        line-height: 1.4;
        margin-bottom: 1rem !important; }
      .Single-style .entry-content ul.toc_list li::before, .single-article .entry-content ul.toc_list li::before {
        content: "・"; }
    .Single-style .entry-content #toc_container, .single-article .entry-content #toc_container {
      width: 100% !important;
      display: block !important; }
    .Single-style .entry-content .wp-block-buttons > .wp-block-button, .single-article .entry-content .wp-block-buttons > .wp-block-button {
      margin: auto; }
    .Single-style .entry-content .wp-block-button__link, .single-article .entry-content .wp-block-button__link {
      margin: auto;
      background: #FFE568 !important; }
    .Single-style .entry-content .pink-box, .single-article .entry-content .pink-box {
      padding: 1rem;
      background-color: rgba(255, 179, 186, 0.1); }
  .Single-style .article-footer, .single-article .article-footer {
    padding: 1.5em 0;
    font-size: 0.75rem; }
  .Single-style .prev-next-page, .single-article .prev-next-page {
    /*次の記事だけ右寄よせ*/ }
    .Single-style .prev-next-page__list, .single-article .prev-next-page__list {
      padding: 0 !important;
      background-color: #FFF !important; }
    .Single-style .prev-next-page__listitem, .single-article .prev-next-page__listitem {
      display: block;
      width: 46%; }
    .Single-style .prev-next-page__listitem a, .single-article .prev-next-page__listitem a, .Single-style .prev-next-page__listitem .term-name span, .term-name .Single-style .prev-next-page__listitem span, .single-article .prev-next-page__listitem .term-name span, .term-name .single-article .prev-next-page__listitem span {
      display: flex;
      flex-direction: column;
      font-size: 1rem;
      line-height: 1.5rem !important; }
    .Single-style .prev-next-page__listitem span.listitem-name, .single-article .prev-next-page__listitem span.listitem-name {
      margin-top: 10px;
      font-size: .9rem;
      font-weight: 600; }
    .Single-style .prev-next-page .prev-next-page__listitem:nth-of-type(2) .listitem-title, .single-article .prev-next-page .prev-next-page__listitem:nth-of-type(2) .listitem-title {
      text-align: right; }

/*コラム*/
.single-article {
  /*この記事を書いた人　共通*/
  /*この記事を書いた人　監修*/
  /*連載タイトル*/
  /*バックナンバー*/ }
  .single-article .saboxplugin-wrap {
    border: 0;
    background: rgba(255, 229, 104, 0.2);
    margin-top: 2.5rem;
    padding-top: 1rem; }
    .single-article .saboxplugin-wrap-title {
      transform: rotate(-2deg);
      position: absolute;
      background: #fff;
      border: 2px solid #ffe568;
      z-index: 10;
      margin-top: 0;
      margin-left: -3px;
      padding: 6px 10px;
      border-radius: 15px;
      font-size: .8rem;
      letter-spacing: 1pt; }
      .single-article .saboxplugin-wrap-title:before {
        content: "";
        position: absolute;
        bottom: -23px;
        left: 30%;
        margin-left: -15px;
        border: 12px solid transparent;
        border-top: 12px solid #FFF;
        z-index: 2; }
      .single-article .saboxplugin-wrap-title:after {
        content: "";
        position: absolute;
        bottom: -28px;
        left: 30%;
        margin-left: -17px;
        border: 14px solid transparent;
        border-top: 14px solid rgba(255, 229, 104, 0.5);
        z-index: 1; }
    .single-article .saboxplugin-wrap .saboxplugin-tab {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
    .single-article .saboxplugin-wrap .saboxplugin-gravatar {
      padding-bottom: 0; }
    .single-article .saboxplugin-wrap .saboxplugin-gravatar img {
      border-radius: 50px; }
    .single-article .saboxplugin-wrap .saboxplugin-authorname {
      font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
      font-weight: 500;
      margin-top: 0.2rem !important;
      margin-bottom: 0 !important;
      margin-left: 0 !important; }
    .single-article .saboxplugin-wrap .saboxplugin-desc {
      text-align: center;
      margin-bottom: 0; }
    .single-article .saboxplugin-wrap .saboxplugin-socials {
      background: none;
      border: none; }
    .single-article .saboxplugin-wrap .saboxplugin-socials a svg, .single-article .saboxplugin-wrap .saboxplugin-socials .term-name span svg, .term-name .single-article .saboxplugin-wrap .saboxplugin-socials span svg {
      width: 24px;
      height: auto; }
  .single-article .procedure-container {
    margin-top: 2rem !important; }
    .single-article .procedure-container h4 {
      margin-top: 0; }
    .single-article .procedure-container ul {
      font-size: 0.9375rem;
      text-indent: -1rem;
      margin-left: 1rem; }
      .single-article .procedure-container ul li {
        margin-bottom: 16px; }
  .single-article .series-header {
    background: #F9F7EE; }
  .single-article .series-header__title {
    flex: 2;
    box-sizing: border-box;
    padding-left: 1rem; }
    .single-article .series-header__title h1 {
      font-size: 0.75rem;
      margin: 0;
      font-weight: 500; }
  .single-article .backnumber-list-container {
    padding: 2.5rem; }

/*２０２２/１０月より前のスタイル*/
.hentry {
  background-color: #fff;
  border-radius: 3px;
  padding-bottom: .4em;
  /* SNS list */ }
  .hentry header {
    padding: 0; }
  .hentry .entry-title a, .hentry .entry-title .term-name span, .term-name .hentry .entry-title span {
    font-weight: 500; }
  .hentry .acf-map {
    width: 100%;
    height: 400px;
    border: #ccc solid 1px;
    margin: 20px 0; }
  .hentry .acf-map img {
    max-width: inherit !important; }
  .hentry footer {
    padding: 1.5em;
    font-size: 1.25rem; }
    .hentry footer p {
      margin: 0; }
  .hentry .sns-list {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 179, 186, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem; }
    .hentry .sns-list h4 {
      margin-top: 0; }
    .hentry .sns-list ul {
      margin-bottom: 0; }
    .hentry .sns-list li {
      margin: 20px 0 0 0; }

/* end .hentry */
/* post thumbnail */
.thumb-left {
  max-width: 110px;
  width: auto;
  float: left; }

/* post meta */
.byline {
  color: #5c6b80;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2rem; }

/* prefecture-name */
.prefecture-name {
  display: inline-block;
  background: #ececec;
  padding: .15rem .25rem; }

/* cashback-badge */
.single-hall .badge-cashback, .single-hall .count-cashback, .single-shop .badge-cashback, .single-shop .count-cashback {
  margin-bottom: 1.25rem; }

.badge-cashback, .count-cashback {
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 1px 8px;
  font-size: 12px;
  margin-bottom: .3rem;
  font-weight: 500;
  background: linear-gradient(90deg, #7889E3 0%, #FF6DA4 80%, #FBBCAB 100%); }

/* count-cashback */
.count-cashback {
  padding: 0 22px; }
  .count-cashback span {
    font-weight: 500;
    font-size: 1rem; }

/* entry content */
.entry-content {
  /*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/ }
  .entry-content dl {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #cccccc;
    border-top: none; }
  .entry-content dt {
    font-size: 1.25rem;
    background: #ececec;
    width: 27%;
    padding: 10px;
    box-sizing: border-box;
    border-top: 1px solid #cccccc; }
  .entry-content dd {
    font-size: 1.25rem;
    padding: 10px;
    margin: 0;
    border-left: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    width: 73%;
    box-sizing: border-box; }
  .entry-content table {
    width: 100%;
    border: 1px solid #cccccc;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #AAAAAA;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #cccccc; }
    .entry-content tr:nth-child(even) {
      background-color: #ececec; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #cccccc; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    background-color: #ececec;
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #cccccc; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote {
    margin: 0 0 1.5em 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #cccccc;
    font-style: italic;
    color: #AAAAAA; }
  .entry-content dd {
    margin-left: 0;
    font-size: 1.25rem; }
  .entry-content dt.shop__head,
  .entry-content dd.shop__detail {
    font-size: 12px;
    padding: 10px 4px; }
  .entry-content img {
    margin: 0;
    max-width: 100%;
    height: auto; }
  .entry-content .size-auto, .entry-content .size-full, .entry-content .size-large, .entry-content .size-medium, .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #222222;
    color: #ececec;
    font-size: 1.25rem;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }
  .entry-content form dl {
    flex-direction: row;
    border: none; }
  .entry-content form dt, .entry-content form dd {
    width: 100%;
    padding-bottom: 0;
    background: none;
    border: none;
    margin-bottom: .5rem; }
  .entry-content .our-brand-sns {
    display: flex;
    align-items: center; }
    .entry-content .our-brand-sns .sab-instagram {
      margin-top: -2px; }
    .entry-content .our-brand-sns a, .entry-content .our-brand-sns .term-name span, .term-name .entry-content .our-brand-sns span {
      display: block;
      height: 24px;
      width: 24px;
      margin-right: 16px;
      float: left;
      color: #444; }

/* .acc-box */
.acc-box label {
  position: relative;
  display: block;
  margin: 1.5px 0;
  padding: 11px 12px;
  color: #fff;
  font-weight: bold;
  background: #FFE568;
  cursor: pointer;
  transition: all 0.5s; }
.acc-box label:hover {
  background: rgba(255, 229, 104, 0.8); }
.acc-box label::after {
  content: "⌄";
  position: absolute;
  right: 1rem;
  top: .5rem;
  display: inline-block;
  width: 100%;
  height: auto;
  text-align: right; }
.acc-box input {
  display: none; }
.acc-box .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s; }

.entry-content .acc-box dl {
  margin-top: 0; }

.cssacc:checked + .accshow {
  height: auto;
  opacity: 1; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
  font-size: 12px; }
  .tags a, .tags .term-name span, .term-name .tags span {
    display: inline-block;
    margin: .2rem;
    padding: .1rem 1rem;
    background: #FFE568;
    border-radius: 30px; }
  .tags a:before, .tags .term-name span:before, .term-name .tags span:before {
    content: "#"; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 0; }
  .pagination ul {
    display: inline-block;
    margin-bottom: 0;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden; }
  .pagination a.prev, .pagination .term-name span.prev, .term-name .pagination span.prev, .pagination a.next, .pagination .term-name span.next, .term-name .pagination span.next {
    text-decoration: none; }
  .pagination a, .pagination .term-name span, .term-name .pagination span,
  .pagination span {
    margin: 0;
    text-decoration: underline;
    padding: 0;
    line-height: 1em;
    font-size: 1.25rem;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block; }
    .pagination a:hover, .pagination .term-name span:hover, .term-name .pagination span:hover, .pagination a:focus, .pagination .term-name span:focus, .term-name .pagination span:focus,
    .pagination span:hover,
    .pagination span:focus {
      background-color: #FFE568;
      color: #fff; }
  .pagination .current {
    cursor: default;
    text-decoration: none;
    background-color: #FFE568; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #FFE568;
      color: #fff; }

/* end .bones_page_navi */
.article-pagenation {
  display: flex;
  justify-content: space-between; }

/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }
.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/*********************
SIDEBARS & ASIDES
*********************/
.sidebar .widget_media_image {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid #ECECEC; }

.widgettitle {
  margin-top: 0;
  padding-bottom: 1rem !important;
  text-align: center; }

.widget ul li {
  /* deep nesting */ }

/* 新着式場、新着指輪の余白調整 */
#wpsp_widget-2, #wpsp_widget-6 {
  margin-bottom: 0 !important; }

#custom_html-32, #custom_html-37 {
  margin-top: 0 !important;
  border-bottom: 2px solid #FFE568; }

.no-widgets {
  margin-bottom: 1.5em;
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #FFF;
  border-radius: 2px; }

.series-header__banner {
  flex: 1; }
  .series-header__banner img {
    width: 100%;
    height: auto;
    float: left; }
  .series-header__banner p {
    display: inline-block;
    width: calc(100% - 20px);
    font-size: 1rem;
    position: relative;
    margin: 10px 10px 1rem 10px;
    line-height: 1.8;
    padding: 1rem;
    top: 0;
    letter-spacing: -0.01rem; }
  .series-header__banner p:before {
    position: absolute;
    top: 0;
    content: '';
    width: 16px;
    height: 40%;
    display: inline-block;
    border-left: solid 1px #cccccc;
    border-top: solid 1px #cccccc;
    left: 0; }
  .series-header__banner p:after {
    position: absolute;
    bottom: 0;
    content: '';
    width: 16px;
    height: 40%;
    display: inline-block;
    content: '';
    border-right: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    right: 0; }

/*連載概要*/
.article-overview-text p {
  font-size: 0.875rem; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
        plan your menus and drop-downs wisely.
        */ }
        .menu ul li a, .menu ul li .term-name span, .term-name .menu ul li span {
          /*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */ }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .single .single-title {
    font-size: 1.6rem; }

  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  .footer-links #menu-fnav-pref-hall li, .footer-links #menu-fnav-article-cat li,
  .footer-links #menu-fnav-pref-shop li {
    flex: 1 0 10%;
    max-width: 10%; }

  #searchform #searchsubmit {
    font-size: 1rem; } }
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  Display
  *********************/
  .pc-hide {
    display: none; }

  .sp-hide {
    display: block; }

  /*********************
  CARD STYLES
  *********************/
  .wpsp-image-left {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 33.333333%;
    margin-bottom: 0; }
    .wpsp-image-left img {
      width: 100%;
      height: auto; }

  .wp-show-posts-columns .wp-show-posts-image {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden; }

  .wpsp-read-more {
    margin: 0; }

  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  #inner-content {
    justify-content: space-between; }

  #main {
    width: 656px;
    margin: auto; } }
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1029px) {
  #main {
    width: 100%;
    padding-right: 0; }

  .series-title:before {
    width: 740px !important; }

  aside {
    width: 100%; }

  .widget {
    padding: 0 !important; } }
@media only screen and (min-width: 768px) {
  aside {
    float: right;
    margin-left: auto;
    margin-right: auto; }

  .wrap {
    width: 760px; }

  /*********************
  BOX STYLES
  *********************/
  /* accodion box */
  .acc-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .acc-box_inner {
      flex: 1 0 48%;
      width: 48%;
      max-width: 48%; }
    .acc-box label {
      background: none;
      color: #3E4551;
      mamargin-bottom: 0.375em;
      padding-bottom: 0;
      padding-left: 0; }
    .acc-box label::after {
      display: none; }
    .acc-box .accshow {
      height: auto;
      opacity: 1; }
    .acc-box dl {
      margin: 1em 0 !important; }

  /* Popup */
  .popup_content {
    width: 75%;
    overflow-x: hidden;
    overflow-y: hidden; }
    .popup_content p {
      padding: 0 50px !important; }

  /*********************
  HEADER STYLES
  *********************/
  #logo {
    height: 90px; }
    #logo img {
      height: 70px; }

  #menu-gnav {
    display: block;
    max-width: 1080px;
    margin: auto; }

  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav ul {
      background: #fff;
      margin-top: 0; }
    .nav li {
      float: left;
      position: relative;
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      .nav li a, .nav li .term-name span, .term-name .nav li span {
        border-bottom: 0;
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }
        .nav li a:hover, .nav li .term-name span:hover, .term-name .nav li span:hover, .nav li a:focus, .nav li .term-name span:focus, .term-name .nav li span:focus {
          color: rgba(34, 34, 34, 0.8); }
      .nav li:last-child {
        float: right; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        background: rgba(255, 255, 255, 0.8);
        margin-top: 0;
        border-top: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .nav li ul.sub-menu li,
        .nav li ul.children li {
          /*
          if you need to go deeper, go nuts
          just remember deeper menus suck
          for usability. k, bai.
          */ }
          .nav li ul.sub-menu li a, .nav li ul.sub-menu li .term-name span, .term-name .nav li ul.sub-menu li span,
          .nav li ul.children li a,
          .nav li ul.children li .term-name span,
          .term-name .nav li ul.children li span {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px solid #ccc; }
          .nav li ul.sub-menu li:last-child a, .nav li ul.sub-menu li:last-child .term-name span, .term-name .nav li ul.sub-menu li:last-child span,
          .nav li ul.children li:last-child a,
          .nav li ul.children li:last-child .term-name span,
          .term-name .nav li ul.children li:last-child span {
            border-bottom: 0; }
          .nav li ul.sub-menu li ul,
          .nav li ul.children li ul {
            top: 0;
            left: 100%; }
      .nav li:hover > ul {
        top: auto;
        visibility: visible; }

  /* end .nav */
  /********************
  ARCHIVE 
  ********************/
  /* search page */
  /* archive page */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /*コラム・式場・指輪の記事　共通スタイル*/
  .Single-style .single-title, .single-article .single-title {
    font-size: 1.875rem; }

  .hentry {
    margin-top: 0;
    padding-bottom: 1.25rem; }

  /* title new line */
  span.d-block {
    display: inline; }

  .series-list {
    max-width: 100%; }

  .series-title:before {
    width: 624px; }

  .single-article .series-header__title {
    padding-left: 2rem; }

  .single-article .series-header__title h1 {
    font-size: 1.625rem; }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  .t-1of3 {
    width: 100%;
    padding-right: 0; }

  .sidebar {
    margin-top: 2.2em; }
    .sidebar .widget:nth-of-type(1) {
      margin-top: 0 !important; }
    .sidebar .widget_media_image {
      max-width: 400px;
      margin: auto; }

  .widget {
    padding: 0;
    margin: 2.2em 0; }
    .widget ul li {
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }

  /* widget_yarpp_widget */
  .widget_yarpp_widget img.sab-custom-avatar {
    width: 24px; }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  #sidebar
  .wpp-tiles li .wpp-post-data {
    padding: .75em .75em .75em; }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links:nth-of-type(3) {
    padding-top: 2.8125rem; }

  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */ }
  .footer-links #menu-fnav-article-cat li {
    flex: 1 0 33.33% !important;
    max-width: 33.33% !important; }
  .footer-links #menu-fnav2 {
    padding-top: 0; }
  .footer-links #menu-fnav-pref {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem; }
    .footer-links #menu-fnav-pref li {
      display: inline-block;
      flex: 1 0 5rem;
      max-width: 4rem; }
    .footer-links #menu-fnav-pref a, .footer-links #menu-fnav-pref .term-name span, .term-name .footer-links #menu-fnav-pref span {
      padding: .1rem 0 .1rem .75rem; }

  /* end .footer-links */ }
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  .wrap {
    width: 1040px;
    margin: auto; }

  #sidebar {
    width: 300px; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /*コラム・式場・指輪の記事　共通スタイル*/
  .Single-style, .single-article {
    /*次の記事、前の記事*/ }
    .Single-style .single-title, .single-article .single-title {
      font-size: 2.188rem !important; }
    .Single-style .entry-content, .single-article .entry-content {
      margin-top: 0; }
      .Single-style .entry-content h2, .single-article .entry-content h2 {
        font-size: 1.375rem !important;
        line-height: 2rem; }
      .Single-style .entry-content h3, .single-article .entry-content h3 {
        font-size: 1.125rem !important; }
    .Single-style .prev-next-page__listitem span.listitem-name, .single-article .prev-next-page__listitem span.listitem-name {
      font-size: 1rem; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/ }
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
  .icon {
    background: url(img/test@2x.png) no-repeat;
    background-size: 24px 24px; } }
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, .term-name span, a:visited, .term-name span:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, .term-name span:after, a:visited:after, .term-name span:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, .term-name span abbr[title]:after, a:visited abbr[title]:after, .term-name span:visited abbr[title]:after {
      content: " (" attr(title) ")"; }

  .ir a:after, .ir .term-name span:after, .term-name .ir span:after,
  a[href^="javascript:"]:after,
  .term-name span[href^="javascript:"]:after,
  a[href^="#"]:after,
  .term-name span[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
