@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.
 */
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/**
 * 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: 'Noto Serif JP', 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 {
	background: transparent;
}

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a: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.
 */
/**
 * 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.
 */
/**
 * Address differences between Firefox and other browsers.
 */
/*
 * 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: 'Noto Serif JP', 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.
 */
/* ==========================================================================
  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.
 */
/* ==========================================================================
   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: 'Noto Serif JP', 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/
*********************/
.red {
	color: #ef3751;
}

/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
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)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Noto Serif JP','Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
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/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
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? */
/******************************************************************
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.

******************************************************************/
/*
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;
	}

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

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

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

	.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-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-2of7 {
		float: left;
		padding-right: 0.75em;
		width: 28.5714286%;
	}

	.d-5of7 {
		float: left;
		padding-right: 0.75em;
		width: 71.4285715%;
	}
}
/*********************
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.
*********************/
/**
 * Swiper 4.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 11, 2018
 */
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	/* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
	visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	-o-transition-property: transform, height;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAoCAYAAAAR87HlAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEhJREFUeNpiZKAi+P//fwIDtQ0E4vdAbDBq4KiBowaOGjhq4CA3MICqBgIBEwOtANW9P2rwqMGjBo8aPGrw4DWYkRZdHoAAAwAIe4nM2ZUF0QAAAABJRU5ErkJggg==');
	left: 10px;
	right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAoCAYAAAAR87HlAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAENJREFUeNpi+P//fwIIM1ATAA00AOL3owaPGjxq8KjBowaPGky2wQFMDIMVUN37owaOGjhq4KiBowbSsH6hRZcHIMAAWuGQhJgg30IAAAAASUVORK5CYII=');
	right: 10px;
	left: auto;
}

.swiper-button-lock {
	display: none;
}

/*pagination **/
/* Scrollbar */
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

/** zoom **/
/* Preloader */
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

/** cube **/
/**** flip ****/
.swiper-container-coverflow .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}

/*********************
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
*********************/
body {
	font-family: 'Noto Serif JP', YakuHanJPs, '游ゴシック', 'Helvetica Neue',
		Helvetica, Arial, sans-serif;
	font-size: 100%;
	line-height: 1.6;
	color: #130c0f;
	font-weight: 500;
	letter-spacing: 0.03em;
	/* background-color: #ffffff; */
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: none;
	/*　フェードイン */
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

main,
footer {
	font-feature-settings: 'pkna';
}
main h2,
main h3,
main h4,
footer h2,
footer h3,
footer h4 {
	font-feature-settings: 'palt';
}

header {
	font-feature-settings: 'palt';
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.sp-only {
	display: block;
}

.pc-only {
	display: none;
}

ul.dot-s li {
	position: relative;
	margin-left: 0.3em;
	margin-right: 1.5em;
	padding-left: 0.7em;
	float: left;
	margin-bottom: 0.5em;
}
ul.dot-s li:before {
	content: '';
	display: block;
	height: 5px;
	width: 5px;
	background: #750000;
	border-radius: 50%;
	margin-top: -2.5px;
	position: absolute;
	top: 0.8em;
	left: 0;
}

.underline-p {
	background: linear-gradient(transparent 60%, #ffd9e6 60%);
}

ul.buttons {
	display: flex;
}
ul.buttons li {
	flex: 1;
}

.green {
	color: #750000;
}

.chu:before {
	content: '\0274B';
	color: #750000;
	margin-right: 0.5em;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* 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 {
	width: 100%;
	margin: 0 auto;
}

.mt0 {
	margin-top: 0 !important;
}

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

.margin_0 {
	margin: 0 !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.margin-b_40 {
	margin-bottom: 40px !important;
}

.margin-b_15 {
	margin-bottom: 15px !important;
}

.margin-r17 {
	margin-right: 17px;
}

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

.width50 {
	width: 50%;
}

.width30 {
	width: 30%;
}

.bor_b_0 {
	border-bottom: none !important;
}

.letterspacing1 {
	letter-spacing: -1px;
}

.br-in {
	display: inline-block;
}

.other {
	font-family: 'Noto Serif JP', 'Yu Mincho', 'Georgia', Cambria, Times New Roman,
		Times, serif;
	letter-spacing: 0.1em;
	color: #750000;
}

.txt-right {
	text-align: right !important;
}

.txt-left {
	text-align: left !important;
}

.alg-center {
	text-align: center !important;
}

.serif {
	font-family: 'Noto Serif JP', 'Yu Mincho', 'Georgia', Cambria, Times New Roman,
		Times, serif;
}

.col2 {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.col2 ul {
	margin-top: 0;
}

.col2-in {
	flex: 1;
}

.col2-in:nth-of-type(1) > ul {
	margin-bottom: 0;
}

.att {
	color: #ef3751;
	border: 1px solid #ef3751;
	display: inline-block;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	text-align: center;
	margin-right: 0.5em;
}

.col3 {
	display: block;
}
.col3 img {
	max-height: 300px;
}
.col3 .col3-1 {
	flex-basis: 100%;
}
.col3 .col3-2 {
	flex-basis: 100%;
}

.col2-b {
	display: block;
	justify-content: flex-end;
	padding-left: 0;
	margin: 1em auto;
}
.col2-b a {
	width: 98%;
}

/*********************
LINK STYLES
*********************/
a {
	outline: 0;
}
/*
a,
a:visited {
	color: #750000;
	word-break: break-all;

}
a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
	color: #750000;
	text-decoration: none;
}
  */
a:link,
a:visited:link {
	outline: 0;
	/*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

a.page-link {
	display: block;
	margin: 5px 0;
	color: #ffffff;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	background: #750000;
	text-decoration: none;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	padding: 0.6em;
}
a.page-link:after {
	display: block;
	position: absolute;
	right: 1em;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	top: 50%;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
}
a.page-link:hover {
	opacity: 0.7;
	color: #fff;
}

a.page-link:visited {
	color: #fff;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
	text-rendering: optimizelegibility;
	font-family: 'Noto Serif JP', YakuHanJPs, 'Shuei KakuGo Gin L',
		'Helvetica Neue', Helvetica, Arial, sans-serif;
	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 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
	text-decoration: none;
}

h1,
.h1 {
	font-size: 1.4em;
	line-height: 1.333em;
	font-family: 'Noto Serif JP', YakuHanJPs, '游ゴシック', 'Helvetica Neue',
		Helvetica, Arial, sans-serif;
	letter-spacing: 0.01em;
	color: #750000;
}

h2,
.h2 {
	font-size: 1.3em;
	line-height: 1.4em;
	margin-bottom: 0.375em;
}

h3,
.h3 {
	font-size: 1.125em;
}

h4,
.h4 {
	font-size: 1.1em;
	font-weight: 700;
}

h5,
.h5 {
	font-size: 1em;
	line-height: 2.09em;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #750000;
}

.blue {
	color: #750000;
}

/*********************
HEADER STYLES
*********************/
.header {
	background-color: #ffffff;
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	border-radius: 2px;
	padding: 0.5em 0.5em 0 0.5em;
}

.header-middle a {
	display: block;
	padding: 1.5% 2%;
	text-decoration: none;
	color: #000;
}

.header-right {
	width: 100%;
}
.header-right div .web,
.header-right div .sesshu_sp {
	position: relative;
}
.header-right a {
	display: block;
}
.header-right .tel a,
.header-right .web a,
.header-right .sesshu_sp a {
	text-align: center;
	font-family: 'Noto Serif JP', YakuHanJPs, '游ゴシック', 'Helvetica Neue',
		Helvetica, Arial, sans-serif;
	color: #fff;
	background: #750000;
	text-decoration: none;
	font-size: 1.4em;
	letter-spacing: 1px;
	line-height: 2rem;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.header-right .tel a .icon-phone,
.header-right .web a .icon-phone,
.header-right .sesshu_sp a .icon-phone {
	font-size: 0.7em;
}
.header-right .tel a:hover,
.header-right .web a:hover,
.header-right .sesshu_sp a:hover {
	opacity: 0.7;
}
.header-right .web a,
.header-right .sesshu_sp a {
	background: #ff3161;
}
.header-right .web a:after,
.header-right .sesshu_sp a:after {
	display: block;
	position: absolute;
	right: 1em;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	top: 50%;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
}
.header-right p.sesshu_sp {
	margin-bottom: 20px !important;
}
.header-right p.sesshu_sp a {
	background: #006c7a;
	line-height: 1.4em;
	padding: 0.4em;
}
.header-right .green,
.header-right .pink {
	display: inline-block;
	color: #fff;
	width: 5em;
	text-align: center;
	border-left: 5px solid #c1f0e1;
	margin-right: 0.5em;
}
.header-right .pink {
	background: #ef3751;
}
.header-right .green {
	background: #750000;
}
.header-right a.page-link {
	height: auto;
	margin: 1px;
	font-size: 0.8em;
	line-height: 1.5em;
	padding: 10px 30px;
}
.header-right a.page-link span {
	display: block;
}
.header-right a.page-link:after {
	top: 50%;
	right: 0px;
	margin-top: -5px;
}

@media screen and (max-width: 767px) {
	.header-right .header-right-upper .acc-info {
		background: #c1f0e1;
		margin: 0;
		padding: 8px;
	}

	#inner-header {
		font-size: 0.9em;
		display: block;
	}
	#inner-header .header-left {
		text-align: center;
		font-size: 1em;
	}
	#inner-header .header-left #logo {
		margin: 10px 0 15px 0;
		line-height: 1em;
	}
	#inner-header p {
		margin: 0;
	}
	#inner-header p.add {
		margin-bottom: 1em;
		padding-left: 0.5em;
		text-align: center;
	}
	#inner-header p.time:nth-child(3) {
		margin-bottom: 1em;
	}
	#inner-header p.add,
	#inner-header p.time {
		line-height: 1.5em;
	}

	.header-middle {
		width: 100%;
		border-left: none;
		background: #c1f0e1;
		text-align: center;
		position: relative;
	}
	.header-middle:after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		border-right: 1px solid #750000;
		border-bottom: 1px solid #750000;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		position: absolute;
		top: 50%;
		right: 10px;
		margin-top: -5px;
	}

	.head-info {
		color: #fff;
		background: #750000;
	}
	.head-info p {
		margin: 0;
	}

	.visual-texts {
		display: none;
	}

	.main-visual {
		height: 300px;
	}

	.top-shinryo {
		display: block;
	}

	/* 健診・検査 */
	.exam > div {
		width: 100%;
	}

	.exam {
		padding-top: 0.5em;
		display: block;
	}
	.exam h2 {
		position: relative;
	}
	.exam .left,
	.exam .middle {
		padding-bottom: 0;
	}
	.exam .left .box:nth-of-type(2) {
		margin-top: 1.3em;
	}
}
/*********************
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.
*/
nav {
	/* end .menu li */
	/* highlight current page */
	/* end current highlighters */
}
nav ul#menu-mainmenu {
	margin: 0;
	background: #fff;
}
nav ul#menu-mainmenu li {
	/*
      so you really have to rethink your dropdowns for mobile.
      you don't want to have it expand too much because the
      screen is so small. How you manage your menu should
      depend on the project. Here's some great info on it:
      http://www.alistapart.com/articles/organizing-mobile/
      */
}
nav ul#menu-mainmenu li a {
	display: block;
	color: #000000;
	text-decoration: none;
	padding: 24px 0 20px 10px;
	line-height: 0.8em;
	position: relative;
	/*
        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!
        */
}
nav ul#menu-mainmenu li:nth-of-type(1):before,
nav ul#menu-mainmenu li:nth-of-type(6):after {
	display: none;
}
nav ul#menu-mainmenu li ul.sub-menu li,
nav ul#menu-mainmenu li ul.children li {
	border-left: none;
}
nav ul#menu-mainmenu li ul.sub-menu li a,
nav ul#menu-mainmenu li ul.children li a {
	padding: 5px 0;
	background: #750000;
	text-align: left;
	color: #ffffff;
	line-height: 2em;
}
nav ul#menu-mainmenu li ul.sub-menu li a:hover,
nav ul#menu-mainmenu li ul.sub-menu li a:focus,
nav ul#menu-mainmenu li ul.children li a:hover,
nav ul#menu-mainmenu li ul.children li a:focus {
	background: #c1f0e1;
}

/* end .nav */
ul#menu-page {
	margin: 0;
	font-size: 0.9em;
}
ul#menu-page li {
	color: #750000;
	background: #fcf8f8;
}
ul#menu-page li a {
	text-decoration: none;
	padding: 0.5em;
	display: block;
	position: relative;
	color: #000;
}
ul#menu-page li a:after {
	display: block;
	position: absolute;
	right: 1em;
	width: 12px;
	height: 12px;
	margin-top: -7px;
	top: 50%;
	border-right: 1px solid #750000;
	border-bottom: 1px solid #750000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
}
ul#menu-page ul.sub-menu {
	margin: 0;
}
ul#menu-page ul.sub-menu li {
	background: #fff;
}

@media screen and (max-width: 767px) {
	.fixed {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
		width: 100%;
	}

	.header-right .tel a {
		margin-bottom: 10px;
	}

	.header-right .web a {
		margin-bottom: 20px;
	}
}
/*********************
SLIDE STYLES 追加
*********************/
#slide {
	width: 100%;
	margin-top: 0;
}
#slide img {
	width: 100%;
}

.slide1,
.slide2,
.slide3,
.slide4,
.slide5 {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	background-size: cover;
	padding-top: 58%;
}

.slide1 {
	background-image: url(../../images/slide1sp.jpg);
}

.slide2 {
	background-image: url(../../images/slide2sp.jpg);
}

.slide3 {
	background-image: url(../../images/slide3sp.jpg);
}

.slide4 {
	background-image: url(../../images/slide4sp.jpg);
}

.slide5 {
	background-image: url(../../images/slide5sp.jpg);
}

#slide ul {
	display: none;
}

.visual-texts p {
	text-align: center;
}
.visual-texts span.green {
	background: #750000;
	color: #fff;
	font-size: 1.7em;
	display: inline-block;
	padding: 0 0.5em;
	margin-top: -3px;
	line-height: 1.5em;
	vertical-align: 10%;
}
.visual-texts span.str {
	display: block;
	text-align: center;
	font-size: 1.4em;
	margin-bottom: 10px;
	letter-spacing: 2px;
}
.visual-texts span.sta {
	font-size: 2.5em;
	line-height: 1.3em;
	text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff,
		-1px -1px 0 #fff;
}
.visual-texts h2 {
	font-size: 1em;
	border-top: 1px solid #750000;
	margin: 0;
	padding: 0.5em 0;
	text-align: center;
}
.visual-texts ul {
	margin: 0;
}
.visual-texts ul a {
	display: block;
	margin: 5px 0;
	color: #750000;
	font-size: 1.3em;
	font-weight: normal;
	line-height: 1em;
	background: #fff;
	text-decoration: none;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	text-decoration: none;
	padding: 0.6em;
	border: 1px solid #750000;
}
.visual-texts ul a:after {
	display: block;
	position: absolute;
	right: 1em;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	top: 50%;
	border-right: 2px solid #750000;
	border-bottom: 2px solid #750000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
}
.visual-texts ul a:hover {
	opacity: 0.7;
}
.visual-texts ul a span {
	color: #750000;
	background: #fff;
	font-size: 0.8em;
	display: block;
	margin-bottom: 0.4em;
}
.visual-texts ul a:nth-of-type(1) {
	margin-top: 0;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.page-content-o {
	background: #fff;
	padding-top: 1em;
}

.page-contents {
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-attachment: fixed;
	position: relative;
	margin-top: 0;
}

.a-h-back {
	position: fixed;
	top: 0px;
	background: url(../../images/article-header-sp.jpg) left -10% no-repeat;
	background-size: 100% auto;
	height: 800px;
	width: 100%;
	z-index: -1;
}

.hentry .page-all {
	border-top: 3px solid #750000;
}
.hentry footer {
	padding: 1.5em;
	color: #750000;
	border-top: 1px solid #f5f5f5;
	background: #fff;
}
.hentry footer p {
	margin: 0;
}

/* end .hentry */
.article-header {
	padding-top: 0;
	background-size: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 57px 0;
	height: auto;
	margin-bottom: 20px;
}

.article-single .article-header {
	padding: 1em;
}
.article-single .single-all-side {
	margin-top: 70px;
}

.single-title,
.page-title,
.entry-title {
	margin: 0;
}

.single-title {
	border-bottom: 1px solid #750000;
	padding: 0 1.5em 0 1.5em;
	display: inline;
	color: #750000;
	font-size: 1.3em;
}

.page-title {
	padding: 0 1.5em 0 0.7em;
	display: block;
	color: #750000;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
	color: #9fa6b4;
	font-style: italic;
	margin: 0;
}

/* entry content */
.page-content {
	background: #fff;
}

.entry-content {
	padding: 0 0 0 0.75em;
	/*
  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 p {
	margin: 0 0.3em 1em;
}
.entry-content p.numb {
	font-size: 1.8em;
}
.entry-content .top-contents-news .news {
	width: 100%;
}
.entry-content h2 {
	color: #750000;
	padding: 1.2em 0.5em 0.8em 0.5em;
	border-top: 1px solid #750000;
}
.entry-content h2:first-child {
	margin-top: 0;
}
.entry-content h3,
.entry-content .h3 {
	margin-top: 0.5em;
	padding: 12px 5px 10px 18px;
	color: #750000;
	background: #fcf8f8;
	position: relative;
}
.entry-content h4 {
	font-weight: normal;
	padding: 0 10px 0 20px;
	position: relative;
	color: #750000;
}
.entry-content h4:before {
	content: '';
	background-color: #750000;
	width: 5px;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 5px;
	margin-top: -0.5em;
}
.entry-content .card,
.entry-content .box {
	border: solid 1px #d2d2d2;
	margin-top: 0;
	padding: 5px;
	margin-bottom: 1.5em;
}
.entry-content .card h4 {
	margin: 0.5em 0;
	text-align: center;
	color: #750000;
}
.entry-content .card h4:before {
	display: none;
}
.entry-content .card ul {
	margin-bottom: 0;
}
.entry-content .box.center h3 {
	padding-left: 0.5em;
	padding-right: 0.5em;
}
.entry-content .box h4 {
	margin-top: 0.5em;
	margin-bottom: 5px;
}
.entry-content .box h5 {
	margin: 0.5em;
}
.entry-content .box table,
.entry-content .box ul {
	margin-bottom: 0;
}
.entry-content .box h3 {
	margin-top: 0;
	margin-bottom: 5px;
}
.entry-content .box p {
	margin: 0.5em 1em;
}
.entry-content ol {
	margin-top: 0;
}
.entry-content ol li {
	margin-bottom: 0.5em;
}
.entry-content ol li:nth-of-type(1):before {
	content: '1';
}
.entry-content ol li:nth-of-type(2):before {
	content: '2';
}
.entry-content ol li:nth-of-type(3):before {
	content: '3';
}
.entry-content ol li:nth-of-type(4):before {
	content: '4';
}
.entry-content ol li:nth-of-type(5):before {
	content: '5';
}
.entry-content ol li:nth-of-type(1):before,
.entry-content ol li:nth-of-type(2):before,
.entry-content ol li:nth-of-type(3):before,
.entry-content ol li:nth-of-type(4):before,
.entry-content ol li:nth-of-type(5):before {
	color: #750000;
	display: inline-block;
	border: 1px solid #750000;
	vertical-align: -0.1em;
	text-align: center;
	padding: 0.1em;
	width: 1.6em;
	border-radius: 50%;
	margin-right: 0.5em;
}
.entry-content dl.list {
	margin-left: 0.3em;
}
.entry-content dl.list dt,
.entry-content dl.list dd {
	float: none;
	padding: 0.3em 0.5em;
}
.entry-content dl.list dt {
	margin-bottom: 0.5em;
	background: #fcf8f8;
	width: 100%;
	font-size: 1.2em;
}
.entry-content dl.list dt .numb {
	color: #750000;
	border: 1px solid #750000;
	display: inline-block;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	text-align: center;
	margin-right: 0.5em;
}
.entry-content dl.list dd {
	margin-bottom: 0.8em;
}
.entry-content dl.list > dd dl.list {
	border: 1px solid #750000;
	padding: 0 0.4em 0.8em 0.4em;
}
.entry-content dl.list > dd dl.list p:last-child {
	margin-bottom: 0;
}
.entry-content dl.list > dd dl.list dt {
	background: #fff;
	border-top: 1px solid #750000;
	padding-top: 0.8em;
}
.entry-content dl.list > dd dl.list dt:nth-of-type(1) {
	border-top: none;
}
.entry-content dl.list > dd dl.list dd:last-child {
	margin-bottom: 0;
}
.entry-content ul.dot {
	margin-top: 0;
}
.entry-content ul.dot li {
	position: relative;
	padding-left: 1em;
}
.entry-content ul.dot li:before {
	content: '';
	width: 5px;
	height: 5px;
	display: inline-block;
	border-radius: 100%;
	background: #750000;
	position: absolute;
	left: 0.3em;
	top: 0.8em;
	margin-top: -2px;
}
.entry-content ul.line {
	margin-top: 0;
}
.entry-content ul.line li {
	border-bottom: 1px solid #d0d0d0;
	padding: 0.3em;
}
.entry-content ul.line li:before {
	content: '\0274B';
	color: #750000;
	margin-right: 0.5em;
}
.entry-content ul.buttons {
	flex-wrap: wrap;
}
.entry-content ul.buttons li {
	width: 100%;
	flex: auto;
}
.entry-content table {
	width: 100%;
	border: 1px solid #d2d2d2;
	margin-bottom: 1.5em;
}
.entry-content table caption {
	margin: 0 0 7px;
	font-size: 0.75em;
	color: #9fa6b4;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.entry-content table th:last-child {
	border-right: 0;
}
.entry-content tr {
	border-bottom: 1px solid #d2d2d2;
}
.entry-content tr:nth-child(even) {
	background-color: #f5f5f5;
}
.entry-content td {
	padding: 7px;
	border-right: 1px solid #d2d2d2;
}
.entry-content td:last-child {
	border-right: 0;
}
.entry-content .br {
	display: inline-block;
}
.entry-content th {
	color: #fff;
	font-weight: normal;
	border-bottom: 1px solid #d2d2d2;
	border-right: 1px solid #d2d2d2;
	background: #750000;
}
.entry-content th:last-child {
	border-right: 0;
}
.entry-content table.time td {
	text-align: center;
}
.entry-content table.time td.blank {
	background: #c4c4c4;
	color: #555;
}
.entry-content table.green th {
	background: #750000;
	color: #000;
}
.entry-content table.green tr:nth-child(even) {
	background-color: #f5f5f5;
}
.entry-content table.green td {
	padding: 4px;
}
.entry-content .page-link p {
	margin-bottom: 0;
}
.entry-content .page-link .tel {
	font-size: 1.3em;
}
.entry-content .page-link .time {
	font-size: 1em;
}
.entry-content ul.buttons2 li,
.entry-content ul.buttons3 li {
	width: 98%;
	float: none;
	position: relative;
}
.entry-content ul.buttons2 li a.page-link,
.entry-content ul.buttons3 li a.page-link {
	display: block;
	margin: 5px;
	padding: 10px;
}
.entry-content ul.buttons2 li a.page-link:after,
.entry-content ul.buttons3 li a.page-link:after {
	top: 40%;
	right: 5px;
}
.entry-content ul.buttons3 a.page-link {
	display: block;
	margin: 5px 0;
	color: #ffffff;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	background: #750000;
	text-decoration: none;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	padding: 0.6em;
}
.entry-content ul.buttons3 a.page-link:after {
	display: block;
	position: absolute;
	right: 1em;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	top: 50%;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
}
.entry-content ul.buttons3 a.page-link:hover {
	opacity: 0.7;
	color: #fff;
}
.entry-content ul.buttons3 .page-link {
	font-size: 1rem;
}
.entry-content ul.buttons4 {
	display: flex;
	flex-wrap: wrap;
}
.entry-content ul.buttons4 li {
	flex: auto;
	width: 100%;
}
.entry-content a.phone {
	color: #000000;
	text-decoration: none;
}
.entry-content blockquote {
	margin: 0 0 1.5em 0.75em;
	padding: 0 0 0 0.75em;
	border-left: 3px solid #750000;
	font-style: italic;
	color: #9fa6b4;
}
.entry-content dl {
	width: 100%;
	margin-left: 10px;
}
.entry-content dl dd {
	margin-bottom: 0.5em;
}
.entry-content dl.raw {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.entry-content dl.raw dt,
.entry-content dl.raw dd {
	border-bottom: #d0d0d0 1px solid;
	padding: 0.5em;
}
.entry-content dl.raw dt {
	width: 20%;
}
.entry-content dl.raw dd {
	width: 80%;
	padding-left: 0;
	margin-bottom: 0;
}
.entry-content img {
	margin: 0 0 0.5em 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: #000000;
	color: #f5f5f5;
	font-size: 0.9em;
	padding: 1.5em;
	margin: 0 0 1.5em;
	border-radius: 3px;
}
.entry-content .about-doctor .other {
	color: #000000;
	font-family: 'Noto Serif JP', 'Yu Mincho', 'Georgia', Cambria, Times New Roman,
		Times, serif;
}
.entry-content p.tel {
	color: #750000;
}
.entry-content p.tel span {
	display: inline-block;
	margin-left: 1em;
	color: #000;
	font-size: 1.4em;
}
.entry-content .telemedicine {
	display: flex;
	flex-wrap: wrap;
}
.entry-content .telemedicine div {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	justify-content: center;
	margin-bottom: 15px;
}
.entry-content .telemedicine div p {
	margin-bottom: 5px;
}
.entry-content a {
	color: #750000;
	text-decoration: underline;
}

/* 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;
}

ul.tag-g li,
ul.tag li {
	display: inline-block;
	padding: 3px 5px;
	margin: 3px;
	line-height: 1.3em;
	border-radius: 2px;
}
ul.tag-g li .br,
ul.tag li .br {
	display: inline-block;
}

ul.tag li {
	border: 1px solid #d0d0d0;
}

ul.tag-g li {
	background-color: #750000;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.entry-content .page-link {
		padding: 15px;
	}

	.header {
		border-bottom: 2px solid #750000;
	}

	.page header.article-header,
	.single-all .article-header {
		margin-top: 40px !important;
		margin-bottom: 30px !important;
	}

	.single .article-header {
		margin-top: 0 !important;
	}

	.entry-content p.numb {
		margin: 0 0.3em;
	}
}
/******************************************************************
お知らせ
******************************************************************/
.posts,
.post {
	margin-bottom: 20px;
	background: #fff;
}
.posts h2,
.post h2 {
	padding: 0 10px;
	margin: 0;
}
.posts .posts-title,
.post .posts-title {
	padding: 1.5em 0;
	border-bottom: 2px solid #750000;
	margin-bottom: 1em;
}
.posts .date-author,
.post .date-author {
	padding: 0 10px;
	margin: 0;
	color: #d2d2d2;
}

h1.all-title {
	font-family: 'Noto Serif JP', YakuHanJPs, 'Shuei KakuGo Gin L',
		'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #750000;
	padding: 10px;
	font-size: 1.5em;
	margin-top: 1em;
}

.post .posts-title,
.posts .posts-title {
	color: #fff;
	background-size: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 0;
	background-color: #750000;
	height: auto;
}
.post .posts-title h2,
.posts .posts-title h2 {
	border-bottom: 1px solid #750000;
}
.post .posts-title h2 a,
.posts .posts-title h2 a {
	color: #fff;
}

.widgettitle {
	margin-bottom: 0.75em;
	margin-top: 5px;
	padding: 5px 4px 4px 4px;
	color: #750000;
	border: 1px solid #750000;
	text-align: center;
	background: rgba(255, 255, 255, 0.7);
	font-weight: normal;
}

@media screen and (max-width: 767px) {
	ul {
		margin: 1em 0.5em;
	}
	ul li a {
		display: block;
		padding: 8px;
	}

	#breadcrumbs ul li a {
		padding: 0;
	}
}
#sidebar1 {
	background: rgba(255, 255, 255, 0.7);
}

.page-numbers {
	display: inline-block;
	padding: 5px 15px;
	margin: 0 4px 20px 4px;
}

.pagination h2.screen-reader-text {
	display: none;
}

.post-items {
	border: 1px solid #750000;
	margin-bottom: 1em;
}
.post-items .entry-content {
	border: none;
}
.post-items footer {
	background: #fff;
}

.single #inner-content .entry-content {
	border-left: 0;
}
.single #inner-content article {
	border: 1px solid #750000;
}
.single #inner-content .article-header {
	background: #750000;
}
.single #inner-content .article-header h1 {
	color: #fff;
	padding-left: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/*
.commentlist {
	margin: 0;
	list-style-type: none;
}
*/
.comment {
	/* vcard 
  	.vcard {
  		margin-left: 50px;
  
  		cite.fn {
  			font-weight: 700;
  			font-style: normal;
  
  			a.url {}
  
  		}
  
  		time {
  			display: block;
  			font-size: 0.9em;
  			font-style: italic;
  
  			a {
  				color: $meta-gray;
  				text-decoration: none;
  
  				&:hover {
  					text-decoration: underline;
  				}
  
  			}
  
  		}
  
  		.photo {}
  
  		.avatar {
  			position: absolute;
  			left: 16px;
  			border-radius: 50%;
  		}
  
  	}  end .commentlist .vcard */
	/* general comment classes */
}

/* comment meta */
/* comment content 
	.comment_content {

		p {
			margin: 0.7335em 0 1.5em;
			font-size: 1em;
			line-height: 1.5em;
		}

	} end .commentlist .comment_content */
/* comment reply link 
	.comment-reply-link {
		@extend .blue-btn;
		font-size: 0.9em;
		float: right;

		&:hover,
		&:focus {
		}

	} end .commentlist .comment-reply-link */
/* edit comment link */
/*
.comment-edit-link {
	font-style: italic;
	margin: 0 7px;
	text-decoration: none;
	font-size: 0.9em;
}
*/
/* ページネーション */
.pagination a {
	display: inline-block;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/*
.comment-respond {
	@extend .cf;
	padding: 1.5em;
	border-top: 1px solid $light-gray;
}

	#reply-title {
		margin: 0;
	}

	.logged-in-as {
		color: $meta-gray;
		font-style: italic;
		margin: 0;

		a {
			color: $text-color;
		}
	}

	.comment-form-comment {
		margin: 1.5em 0 0.75em;
	}

	.form-allowed-tags {
		padding: 1.5em;
		background-color: $light-gray;
		font-size: 0.9em;
	}
	/*

	/* comment submit button */
/*
	#submit {
		@extend .blue-btn;
		float: right;
		font-size: 1em;
	}
*/
/* comment form title */
/*
#comment-form-title {
	margin: 0 0 1.1em;
}
*/
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* no comments */
/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
	/* deep nesting */
}

#sidebar1 .page-link {
	width: 90%;
	line-height: 1.3em;
	margin: 0 auto 20px auto;
}
#sidebar1 h2 {
	margin: 0;
	text-align: center;
	border-bottom: 1px solid #750000;
	border-top: 1px solid #750000;
	color: #750000;
	font-size: 1em;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
}
#sidebar1 p {
	font-size: 0.9em;
	padding: 0.5em;
}
#sidebar1 .menu-item-184,
#sidebar1 .menu-item-183,
#sidebar1 .menu-item-396,
#sidebar1 .menu-item-395,
#sidebar1 .menu-item-242 {
	border-top: 1px solid #750000;
}
#sidebar1 .flex {
	display: flex;
}
#sidebar1 .tag-g {
	background: #750000;
	color: #fff;
	display: inline-block;
	padding: 5px;
	margin-right: 0.5em;
}
#sidebar1 .sub-menu li {
	border-top: 1px dashed #750000;
}
#sidebar1 a:hover {
	background: #d63d51;
}

/*********************
FOOTER STYLES
*********************/
/* footer {
  border-top: 1px solid #c1f0e1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(1, #fcf8f8),
    color-stop(0.51, #ffffff)
  );
  background: -webkit-linear-gradient(top, #ffffff 51%, #fcf8f8 100%);
  background: -moz-linear-gradient(top, #ffffff 51%, #fcf8f8 100%);
  background: -ms-linear-gradient(top, #ffffff 51%, #fcf8f8 100%);
  background: linear-gradient(to bottom, #ffffff 51%, #fcf8f8 100%);
} */

.footer-link {
	margin: 30px 0 10px 0;
}
.footer-link a {
	color: #000;
	text-decoration: none;
}

.footer-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 1em;
}
.footer-inner .br {
	display: inline-block;
}
.footer-inner ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer-inner ul li {
	position: relative;
	padding: 0.5em 0;
	text-align: center;
	width: 50%;
}
.footer-inner ul li:after {
	content: '';
	display: block;
	width: 1px;
	background: #000;
	height: 1em;
	position: absolute;
	margin-top: -0.5em;
	top: 50%;
	right: 0;
}
.footer-inner ul li:nth-of-type(2):after,
.footer-inner ul li:last-child:after {
	display: none;
}

.footer-logo {
	display: block;
}
.footer-logo span.icon-phone,
.footer-logo span.icon-pin {
	background: #750000;
	color: #fff;
	font-size: 1.4em;
	padding: 0.2em;
	display: inline-block;
	margin-top: 3px;
}
.footer-logo p {
	margin: 0.5em;
	line-height: 1em;
	font-size: 1em;
	position: relative;
	padding-left: 35px;
}
.footer-logo span.tel {
	font-size: 1.9em;
	background: none;
	color: #000;
}

.footer {
	clear: both;
}
.footer p {
	margin: 10px 0;
}

@media screen and (max-width: 767px) {
	.footer-logo .left {
		text-align: center;
		margin-bottom: 1em;
	}
	.footer-logo span.icon-phone,
	.footer-logo span.icon-pin {
		margin-right: 0.5em;
	}
	.footer-logo span.icon-phone {
		position: absolute;
		left: 0;
		top: -36%;
	}
	.footer-logo span.icon-pin {
		position: absolute;
		left: 0;
	}
}
.time-access-o {
	overflow: hidden;
	border-top: 1px solid #d0d0d0;
}

.time-access {
	display: block;
	background: #fff;
}
.time-access .time {
	background: #fcf8f8;
	position: relative;
	z-index: 3;
}
.time-access .time table {
	border-spacing: 3px;
	border-collapse: separate;
	width: 100%;
}
.time-access .time th {
	padding: 1em 0.5em;
	width: 40%;
}
.time-access .time td {
	padding: 0.5em;
}
.time-access .time td .note {
	font-size: 0.8em;
	margin-top: -0.2em;
	display: block;
}
.time-access .time .time1,
.time-access .time .time2,
.time-access .time .time3,
.time-access .time .time4 {
	color: #fff;
	font-weight: normal;
}
.time-access .time .time1 {
	background: #00515c;
}
.time-access .time .time2 {
	background: #006c7a;
}
.time-access .time .time3 {
	background: #750000;
}
.time-access .time .time4 {
	background: #ff3161;
}
.time-access .time td {
	background: #fff;
}
.time-access .time:before {
	position: absolute;
	content: '';
	height: 100%;
	width: 500%;
	top: 0;
	right: 0;
	background: #fcf8f8;
	z-index: -1;
}
.time-access .access {
	position: relative;
}
.time-access .access dt {
	background: #fcf8f8;
	color: #750000;
}
.time-access .access:before {
	position: absolute;
	content: '';
	height: 100%;
	width: 500%;
	top: -1px;
	left: 0;
	background: #fff;
	z-index: -1;
}
.time-access .time,
.time-access .access {
	width: 100%;
	padding: 1em;
}
.time-access .time h2,
.time-access .access h2 {
	position: relative;
	margin-top: 0;
	padding-left: 0.3em;
}
.time-access .time h2 span,
.time-access .access h2 span {
	position: absolute;
	top: 0.1em;
	color: #750000;
	display: inline-block;
	font-size: 1.3em;
	margin-left: 0.3em;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
.copyright {
	text-align: center;
	color: #000000;
}

/*---------------------------------------------------
  トップページのコンテンツ
---------------------------------------------------*/
.type-post ul {
	margin-left: 20px;
}

#breadcrumbs ul {
	margin-bottom: 70px;
	margin-top: 10px;
	margin-left: 20px;
}
#breadcrumbs ul li {
	float: left;
	font-size: 0.85em;
}

.visual-texts {
	position: relative;
	z-index: 2;
}

/*ご挨拶　*/
.top-greeting {
	border-top: 1px solid #d0d0d0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+42,fcf5ed+100 */
}
.top-greeting p .br {
	display: inline;
}
.top-greeting .wrap {
	background: url(../../images/top-greeting.jpg) 280px 245% / auto no-repeat
		#ffffff;
	background-size: cover;
}
.top-greeting p:nth-of-type(1) {
	padding-bottom: 1em;
}
.top-greeting p {
	width: 96%;
	line-height: 1.8em;
	margin: 0 auto 1em auto;
}
.top-greeting h2 {
	margin: 0;
	padding: 1em 0.5em;
	font-size: 1.4em;
	color: #006c7a;
	background-image: -webkit-linear-gradient(45deg, #77b878, #006c7a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-feature-settings: 'palt';
}
.top-greeting h2 span.br {
	display: block;
}
.top-greeting ul.buttons {
	display: block;
	margin: 0 auto;
	width: 96%;
}
.top-greeting ul.buttons li:nth-of-type(1) {
	margin-right: 0;
}
.top-greeting ul.buttons a {
	text-align: center;
}

/* トップページ診療内容 */
.top-shinryo-in {
	display: block;
}

.points {
	align-self: stretch;
	padding: 1.3em;
}

.points-in {
	border: 1px solid #750000;
	height: 100%;
	position: relative;
	padding: 0.4em;
}
.points-in span {
	position: absolute;
	top: -1em;
	left: -0.5em;
	background: #ef3751;
	color: #fff;
	display: block;
	padding: 3px 15px;
	font-size: 0.9em;
	letter-spacing: 1px;
}
.points-in h3 {
	text-align: center;
	margin: 1em 0;
	font-size: 1.2em;
}
.points-in p {
	font-size: 0.9em;
}
.points-in a.page-link {
	margin-bottom: 0;
	text-align: center;
}

.top-shinryo {
	border-top: 3px solid #750000;
}
.top-shinryo .br {
	display: inline-block;
}
.top-shinryo p.underline {
	display: inline-block;
	margin-bottom: 2em;
	color: #750000;
	padding-bottom: 0.3em;
	border-bottom: 3px solid #ffd9e6;
}

.exam > div {
	padding: 1.3em;
}

.exam-h2 {
	border-top: 1px solid #750000;
}

.exam a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.top-tokutei {
	width: 100%;
}

.exam a:hover {
	opacity: 0.7;
}

.top-shinryo h2,
.exam-h2 h2 {
	margin: 1.3em 0;
	font-size: 1.4em;
	text-align: center;
	color: #750000;
	background-image: -webkit-linear-gradient(45deg, #006c7a, #afd197);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.exam-stomach-in {
	background: url(../../images/top-exam-keibi.jpg) no-repeat right bottom;
	border: 8px solid #c1f0e1;
	margin-bottom: 20px;
	padding: 0.5em 0.8em 0 0.8em;
}
.exam-stomach-in .br {
	display: inline-block;
	background: transparent;
	color: #000;
}
.exam-stomach-in h3 {
	text-align: center;
	border-bottom: 1px solid #750000;
	padding-bottom: 0.3em;
	font-size: 1.4em;
	line-height: 1.4em;
	margin-bottom: 0;
	margin-top: 0.5em;
}
.exam-stomach-in h3 span {
	color: #fff;
	background: #750000;
	padding: 0.3em;
	font-size: 0.8em;
	vertical-align: 8%;
	margin-right: 0.3em;
}
.exam-stomach-in h4 {
	font-weight: normal;
	margin: 0;
	background-color: #c1f0e1;
	padding: 0.3em;
}
.exam-stomach-in p {
	margin-top: 0.3em;
}
.exam-stomach-in ul {
	margin: 0.5em 0;
}

.exam-stomach-in2 {
	padding: 0 0 0.7em 0;
	display: block;
}
.exam-stomach-in2 .right {
	width: 100%;
	display: flex;
	align-items: center;
}
.exam-stomach-in2 .right a {
	width: 100%;
	padding: 1em 0.5em;
}
.exam-stomach-in2 .left {
	font-size: 0.9em;
	width: 100%;
	padding-right: 0;
}

.exam-outer {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f4e6+0,f4f8ff+100 */
	background: #f7f4e6;
	/* Old browsers */
	background: -moz-linear-gradient(-45deg, #fcf5ed 0%, #f4f8ff 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #fcf5ed 0%, #f4f8ff 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #fcf5ed 0%, #f4f8ff 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.exam {
	margin: 0 auto;
	width: auto;
	padding-bottom: 0;
	background: #c1f0e1;
	position: relative;
}
.exam .box {
	background: #fff;
	outline: 1px solid #750000;
	outline-offset: -10px;
	padding: 10px;
}
.exam h2 {
	padding: 0.3em 1.125em;
	background: #fff;
	color: #750000;
	letter-spacing: 1px;
}
.exam h3 {
	text-align: center;
}
.exam h4 {
	margin: 0;
	padding: 5px;
	font-weight: normal;
	background: #750000;
	color: #fff;
	font-size: 1em;
}
.exam p {
	font-size: 0.8em;
}
.exam .left {
	background: url(../../images/top_kensa1.jpg) center center/cover no-repeat;
}
.exam .left p {
	background: #750000;
	color: #fff;
	margin: 0;
	padding: 5px;
}
.exam .left .box:nth-of-type(2) > h3 {
	line-height: 2.81em;
}
.exam .middle {
	background: url(../../images/top_kensa2.jpg) center center/cover no-repeat;
}
.exam .middle p {
	margin: 3px 1em;
}
.exam .right {
	background: url(../../images/top_kensa3.jpg) center center/cover no-repeat;
}
.exam .right h3 {
	background: #750000;
	color: #fff;
	margin: 0;
}
.exam .right p {
	color: #750000;
	text-align: center;
}
.exam ul {
	display: flex;
	flex-wrap: wrap;
	margin: 1em 1.4em;
}
.exam li {
	font-size: 1.1em;
	width: 50%;
	padding: 0.3em;
}
.exam li:nth-of-type(3) {
	width: 100%;
}

/* 強化加算 */
.kyouka-kasan {
	text-align: center;
	border-top: 1px solid #009688;
}
.kyouka-kasan .btn {
	border: 1px solid #009688;
	margin: 1.5em;
}
.kyouka-kasan .btn a {
	text-decoration: none;
	display: block;
	position: relative;
}
.kyouka-kasan .btn a:hover {
	background: #fcf8f8;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.kyouka-kasan .btn a p {
	padding: 0.6em 0;
	margin: 0;
}

/* 求人 */
.joboffer-box {
	text-align: center;
	margin: 0 auto;
}
.joboffer-box .pc {
	display: none;
}
.joboffer-box .pc img {
	width: 100%;
}
.joboffer-box .pc a {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.joboffer-box .pc a:hover {
	opacity: 0.7;
}
.joboffer-box .sp {
	margin: 0 1.5em 1.5em;
}
.joboffer-box .sp img {
	width: 100%;
}

.top-contents-news {
	width: 98%;
	display: block;
}
.top-contents-news .left {
	padding: 0.5em;
	width: 100%;
	background: #fcf8f8;
}
.top-contents-news .right {
	flex: 1;
}
.top-contents-news h2 {
	font-size: 1.2em;
	text-align: center;
	font-family: 'Noto Serif JP', YakuHanJPs, 'Shuei KakuGo Gin L',
		'Helvetica Neue', Helvetica, Arial, sans-serif;
	border: none;
	margin: 0;
}
.top-contents-news ul {
	margin: 0;
	text-align: left;
}
.top-contents-news ul li {
	margin-bottom: 0;
}
.top-contents-news ul li:nth-child(2),
.top-contents-news ul li:nth-child(3) {
	border-top: 1px solid #d0d0d0;
}
.top-contents-news ul li a {
	display: block;
	position: relative;
	padding: 12px 0 12px 5px;
	color: #4c4746;
	text-decoration: none;
}
.top-contents-news ul li a:hover {
	background: #d63d51;
}
.top-contents-news ul li a span.cate-d,
.top-contents-news ul li a span.cate-i,
.top-contents-news ul li a span.cate-y {
	margin: 0 10px;
	padding: 3px 7px;
	color: #ffffff;
	font-size: 0.75em;
	border-radius: 2px;
}
.top-contents-news ul li a span.cate-d {
	background: #750000;
	padding: 3px 13px;
}
.top-contents-news ul li a span.cate-i {
	background: #006c7a;
}
.top-contents-news ul li a span.cate-y {
	background: #ef3751;
}
.top-contents-news ul li a span.cate-d:after,
.top-contents-news ul li a span.cate-i:after,
.top-contents-news ul li a span.cate-y:after {
	position: absolute;
	top: 50%;
	right: 1em;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 2px solid #d0d0d0;
	border-bottom: 2px solid #d0d0d0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
}
.top-contents-news ul li a span.excerpt {
	padding-right: 30px;
}
.top-contents-news ul li a span.title_data {
	border-bottom: 1px dashed #d672a7;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 5px;
}

.page .top-contents-news ul li {
	border-bottom: 1px solid #d0d0d0;
}
.page .top-contents-news ul li:nth-child(2) {
	border-top: 0;
}

.border-g {
	border: 1px solid #d2d2d2;
}

.serif {
	font-family: 'Noto Serif JP', 'Yu Mincho', 'Georgia', Cambria, Times New Roman,
		Times, serif;
}

img.f-right {
	display: block;
}

.photo-box {
	margin-bottom: 15px;
}
.photo-box p {
	color: #750000;
	font-size: 1.1em;
	font-family: 'Noto Serif JP', YakuHanJPs, 'Shuei KakuGo Gin L',
		'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.photo-box img {
	display: block;
	width: 70%;
	margin: 0 auto;
}

.inside-box {
	position: relative;
	width: 98%;
	margin: 0 1%;
}
.inside-box img {
	width: 100%;
}

.inside h2 {
	font-size: 1em;
	padding: 0 0 0 20px;
	border: none;
}
.inside h2:before {
	content: '';
	width: 8px;
	height: 8px;
	display: inline-block;
	border: 2px solid #750000;
	border-radius: 100%;
	background: #750000;
	position: relative;
	left: -15px;
	top: 0px;
}

.tel-time .numb {
	font-size: 1.4em;
	display: block;
	margin: 0em 0.5em;
	color: #750000;
}

/**********
ニコチン依存症テスト
*************/
.table-header-blue {
	background: #750000;
	color: #fff;
	font-size: 0.8em;
}
.table-header-blue td {
	text-align: center;
	padding: 3px !important;
}

.tohokuret {
	text-align: center;
}
.tohokuret .bigger,
.tohokuret .normal {
	color: #d672a7;
	font-weight: bold;
}
.tohokuret .bigger {
	font-size: 1.8em;
}

.entry-content table.kinen td {
	padding: 3px !important;
}

.kinen td.numb {
	text-align: center;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

table.kinen ul li {
	float: left;
	margin-right: 0.5em;
}

.checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 10px 10px 10px 30px;
	border-radius: 8px;
	vertical-align: middle;
	cursor: pointer;
}

.checkbox:after,
.checkbox:before {
	position: absolute;
	display: block;
	content: '';
}

.checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	top: 50%;
	left: 10px;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	background-color: #fff;
	z-index: 1;
}

.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	top: 50%;
	left: 16px;
	margin-top: -13px;
	width: 8px;
	height: 15px;
	border-right: 3px solid #750000;
	border-bottom: 3px solid #750000;
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 30;
}

input[type='radio']:checked + .checkbox:before,
input[type='checkbox']:checked + .checkbox:before {
	opacity: 1;
}

.x-name {
	display: none;
}

@media screen and (max-width: 767px) {
	.article-footer a {
		display: block;
		margin: 5px 0;
		color: #ffffff;
		font-size: 1em;
		font-weight: normal;
		line-height: 1em;
		background: #750000;
		text-decoration: none;
		position: relative;
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
		text-decoration: none;
		padding: 0.6em 1.5em 0.6em 0.6em;
	}
	.article-footer a:after {
		display: block;
		position: absolute;
		right: 1em;
		width: 14px;
		height: 14px;
		margin-top: -8px;
		top: 50%;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		content: '';
	}
	.article-footer a:hover {
		opacity: 0.7;
		color: #fff;
	}

	.news-title {
		display: block;
		margin-top: 0.5em;
	}

	ul.buttons3 li,
	ul.buttons2 li {
		margin: 10px 0;
	}

	.ul-res li {
		float: none;
	}

	p.side-tel {
		text-align: center;
	}

	p .side-tel-in {
		color: #750000;
		margin: 0 auto;
		font-size: 1.3em;
		width: auto;
	}
	p .side-tel-in a {
		text-decoration: none;
	}

	main header {
		border: none;
	}

	#breadcrumbs {
		padding-left: 10px;
		padding-top: 5px;
	}
	#breadcrumbs ul {
		margin-bottom: 55px;
	}

	.header-right .tel a,
	.header-right .web a {
		padding: 5px;
	}
	.header-right p.time {
		padding-bottom: 2px;
		text-align: center;
	}
	.header-right .green,
	.header-right .pink {
		width: 100%;
	}

	#inner-header .header-left #logo {
		line-height: 1em;
	}

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

	/*　ナビ　*/
	.top-nav {
		text-align: left;
		margin: 0;
	}
	.top-nav li a {
		color: #fff;
	}

	.inner-footer-link ul a {
		padding: 10px 0;
		border-bottom: 1px solid #d0d0d0;
	}

	#breadcrumb ul {
		margin-bottom: 20px;
	}

	/*コンテンツ*/
	.page-contents {
		background-image: url(../../images/article-header.png);
		background-repeat: no-repeat;
		background-position: -8% 10%;
	}
	.page-contents:before {
		height: 234px;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: -1;
	}

	.entry-content {
		padding-right: 0.75em;
	}
	.entry-content tr {
		border-bottom: 0;
	}
	.entry-content p.numb {
		margin: 0 0.3em;
	}

	.article-header h1 {
		margin-left: 10px;
	}

	table.sp-col .thread {
		display: block;
		float: left;
	}
	table.sp-col .thread th {
		display: block;
		width: 100% !important;
		padding: 7px;
	}
	table.sp-col .thread th:first-child,
	table.sp-col .thread th:nth-of-type(2) {
		height: 3em;
		line-height: 1em;
	}
	table.sp-col .thread th:nth-of-type(9) {
		border-right: 1px solid #d2d2d2;
	}
	table.sp-col .thread {
		border-top: 1px solid #d0d0d0;
	}
	table.sp-col .thread-tbody {
		display: block;
		float: left;
		width: 27.666% !important;
		border-top: 1px solid #d0d0d0;
	}
	table.sp-col .thread-tbody td {
		display: block;
		padding: 7px;
		border-bottom: 1px solid #d2d2d2;
		border-right: 1px solid #d2d2d2;
	}
	table.sp-col .thread-tbody td span {
		display: inline-block;
	}
	table.sp-col .thread-tbody td:first-child,
	table.sp-col .thread-tbody td:nth-of-type(2) {
		height: 3em;
		line-height: 1em;
		padding: 7px;
	}

	.sp-col.times .col1 {
		width: 17% !important;
	}
	.sp-col.times span.sp {
		display: inline-block;
	}
	.sp-col.times .colspan2 {
		border-right: 0;
	}
	.sp-col.times .emptd {
		background: #f5f5f5;
	}
	.sp-col.times .display-n {
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1026px) {
	.top-greeting .wrap {
		padding: 0 1em;
	}
}
/* IE11 のみ適用される */
_:lang(x)::-ms-backdrop,
.page-link {
	padding: 0.8em 0.6em 0.4em 0.6em !important;
}

_:lang(x)::-ms-backdrop,
.header-right a,
.header-right .pink,
.header-right .green {
	padding-top: 0.3em !important;
}

_:lang(x)::-ms-backdrop,
dl.list .numb {
	padding-top: 0.2em !important;
}

_:lang(x)::-ms-backdrop,
ol li:before {
	padding-bottom: 0 !important;
	padding-top: 0.3em !important;
}

_:lang(x)::-ms-backdrop,
ul#menu-page li a {
	padding: 0.7em 0.5em 0.4em 0.5em !important;
}

_:lang(x)::-ms-backdrop,
.time-access .access dt {
	padding: 0.3em 0.3em 0 0.3em !important;
}

_:lang(x)::-ms-backdrop,
.entry-content dl.list dt {
	padding: 0.6em 0.5em 0.3em 0.5em !important;
}

_:lang(x)::-ms-backdrop,
nav ul#menu-mainmenu li ul.children li a {
	padding: 10px 5px 0 5px !important;
}

.yoyaku_tab {
	position: fixed;
	top: 220px;
	right: 0;
	z-index: 500;
}

.post-items > header {
	margin-top: 0 !important;
}

.post-items > footer {
	padding: 0 !important;
}

.entry-content .border-box {
	padding: 10px;
	border: 2px solid #aaa;
	margin-bottom: 30px;
}
.entry-content .border-box .box-direction {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-top: 1px solid #d2d2d2;
	border-left: 1px solid #d2d2d2;
	margin-bottom: 30px;
}
.entry-content .border-box .box-direction .box-direction-title {
	width: 30%;
	background: #750000;
	color: #fff;
	padding: 5px;
	text-align: center;
	border-right: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
}
.entry-content .border-box .box-direction .box-direction-in {
	width: 35%;
	padding: 5px;
	text-align: center;
	border-right: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
}
.entry-content .border-box .box-direction .box-direction-in.gray {
	background: #f5f5f5;
}
.entry-content .border-box .box-direction.timetable div {
	text-align: center;
	border-right: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
	padding: 5px;
}
.entry-content .border-box .box-direction.timetable div.day {
	width: 30%;
	background: #750000;
	color: #fff;
}
.entry-content .border-box .box-direction.timetable div.am {
	width: 35%;
}
.entry-content .border-box .box-direction.timetable div.am:nth-child(odd) {
	background: #f5f5f5;
}
.entry-content .border-box .box-direction.timetable div.pm {
	width: 35%;
}
.entry-content .border-box .box-direction.timetable div.pm:nth-child(even) {
	background: #f5f5f5;
}
.entry-content .border-box p.location {
	background: #fcf8f8;
	padding: 10px;
	text-align: center;
}

/*********************
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 {
		/*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */
	}

	/* end .menu */
	/*********************
  POSTS & CONTENT STYLES
  *********************/
	/* 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;
	}
	.entry-content ul.buttons2 li,
	.entry-content ul.buttons3 li {
		margin: 10px;
	}

	/* end .entry-content */
	/*********************
  FOOTER STYLES
  *********************/
	/*
  check your menus here. do they look good?
  do they need tweaking?
  */
	/* end .footer-links */
	/*********************
  HEADER STYLES
  *********************/
	/*********************
  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.
  */
	h1,
	.h1 {
		font-size: 1.8em;
	}

	.wrap {
		width: 100%;
	}

	img.f-right {
		display: inline;
		float: right;
		padding-left: 12px;
	}

	img.f-left {
		display: inline;
		float: left;
		padding-right: 12px;
	}

	.photo-box p {
		font-size: 1.1em;
	}
	.photo-box img {
		float: left;
		padding-bottom: 10px;
		padding-right: 10px;
	}

	.top-greeting .wrap {
		background: url(../../images/top-greeting.jpg) 550px 0% / auto no-repeat
			#ffffff;
	}

	/* 求人 */
	.joboffer-box .pc {
		display: block;
		margin: 0 1.5em 1em;
	}
	.joboffer-box .pc img {
		width: 100%;
	}
	.joboffer-box .sp {
		display: none;
	}

	/*********************
  FOOTER STYLES
  *********************/
	.inner-footer-link {
		width: 100%;
	}
	.inner-footer-link ul {
		width: 100%;
	}

	.header-right div {
		display: flex;
		flex-wrap: wrap;
	}
	.header-right div p {
		width: calc(50% - 2px);
		margin: 1px !important;
	}
	.header-right div .sesshu_sp {
		width: 100%;
	}
	.header-right .tel a,
	.header-right .web a {
		padding: 5px 0;
	}
	.header-right .tel a:after,
	.header-right .web a:after {
		margin-top: -16px;
	}
	.header-right .tel a .icon-phone,
	.header-right .web a .icon-phone {
		font-size: 0.7em;
	}
}
/*********************
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!
  
  ******************************************************************/
	/*********************
  GENERAL STYLES
  *********************/
	.sp-only {
		display: none;
	}

	.pc-only {
		display: block;
	}
	.pc-only.yoyaku_tab {
		display: flex;
		flex-direction: column;
	}
	.pc-only.yoyaku_tab a {
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
	}
	.pc-only.yoyaku_tab a:hover {
		opacity: 0.7;
	}

	.br-d {
		display: block;
	}

	/*********************
  LAYOUT & GRID STYLES
  *********************/
	.wrap {
		width: 760px;
	}

	.col2 {
		flex-direction: row;
		align-items: stretch;
	}

	.col2-in:nth-of-type(1) {
		padding-right: 2em;
	}

	.col2-in:nth-of-type(1) > ul {
		margin-bottom: 1em;
	}

	/*********************
  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.
  */
	nav {
		border-bottom: 0;
		margin: 0 auto;
		text-align: center;
		width: 100%;
		padding: 0;
		z-index: 8999;
		position: relative;
	}
	nav ul#menu-mainmenu {
		border-radius: 0 0 3px 3px;
		display: flex;
	}
	nav ul#menu-mainmenu li {
		white-space: nowrap;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		-ms-transition: all 0.4s;
		transition: all 0.4s;
		/*
        plan your menus and drop-downs wisely.
        */
		/* showing sub-menus */
	}
	nav ul#menu-mainmenu li a {
		/*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */
	}
	nav ul#menu-mainmenu li ul.sub-menu,
	nav ul#menu-mainmenu li ul.children {
		margin-top: 0;
		border-top: 0;
		color: #ffffff;
		background: #5b1c2c;
		position: absolute;
		line-height: 2em;
		visibility: hidden;
		box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.3);
		opacity: 0;
		z-index: 8999;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		-ms-transition: all 0.4s;
		transition: all 0.4s;
		/* highlight sub-menu current page */
	}
	nav ul#menu-mainmenu li ul.sub-menu li,
	nav ul#menu-mainmenu li ul.children li {
		/*
            if you need to go deeper, go nuts
            just remember deeper menus suck
            for usability. k, bai.
            */
	}
	nav ul#menu-mainmenu li ul.sub-menu li a,
	nav ul#menu-mainmenu li ul.children li a {
		padding-left: 10px;
		border-right: 0;
		display: block;
		width: 320px;
		border-bottom: 1px solid #c1f0e1;
	}
	nav ul#menu-mainmenu li ul.sub-menu li a:hover,
	nav ul#menu-mainmenu li ul.sub-menu li a:focus,
	nav ul#menu-mainmenu li ul.children li a:hover,
	nav ul#menu-mainmenu li ul.children li a:focus {
		background: #66c6a6;
		color: #fff;
	}
	nav ul#menu-mainmenu li ul.sub-menu li:last-child a,
	nav ul#menu-mainmenu li ul.children li:last-child a {
		border-bottom: 0;
	}
	nav ul#menu-mainmenu li ul.sub-menu li ul,
	nav ul#menu-mainmenu li ul.children li ul {
		top: 0;
		left: 100%;
	}
	nav ul#menu-mainmenu li:hover > ul {
		top: auto;
		visibility: visible !important;
		opacity: 1 !important;
	}

	/* end .nav */
	.nav {
		border: 0;
		margin: 0;
		/* highlight current page */
		/* end current highlighters */
	}
	.nav li {
		flex: 1;
	}
	.nav li a {
		/*
        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!
        */
	}
	.nav li a:hover,
	.nav li a:focus {
		text-decoration: underline;
	}
	.nav li:nth-child(1),
	.nav li:nth-child(3),
	.nav li:nth-child(4),
	.nav li:nth-child(5),
	.nav li:nth-child(6) {
		flex-grow: 1;
	}
	.nav li:hover {
		background: #d63d51;
	}
	.nav li:hover span {
		color: #fff;
	}

	/* end .nav */
	.drawer--left button {
		display: none;
	}

	/******************
   slide style追加
   ****************/
	#slide {
		position: relative;
		margin-top: -17%;
		text-align: center;
	}
	#slide ul {
		display: block;
	}
	#slide .metaslider {
		margin: 0 auto;
		padding: 0;
	}

	.slide1 {
		background-image: url(../../images/slide1.jpg);
	}

	.slide2 {
		background-image: url(../../images/slide2.jpg);
	}

	.slide3 {
		background-image: url(../../images/slide3.jpg);
	}

	.slide4 {
		background-image: url(../../images/slide4.jpg);
	}

	.slide5 {
		background-image: url(../../images/slide5.jpg);
	}

	.slide-alter {
		display: none;
	}

	.slide-inner {
		height: 100%;
	}

	.slide1,
	.slide2,
	.slide3,
	.slide4,
	.slide5 {
		position: relative;
		padding-top: 21%;
		min-height: 700px;
	}

	.visual-texts-o {
		position: relative;
		width: 100%;
		max-width: 980px;
		margin: 0 auto;
	}

	.visual-texts {
		width: 260px;
		color: #750000;
		position: absolute;
		top: 15px;
		right: -130px;
		-webkit-transform: translateY(0) translateX(-50%);
		transform: translateY(0) translateX(-50%);
	}

	/*********************
  SIDEBARS & ASIDES
  *********************/
	.widget {
		padding: 0 10px;
		margin: 0 0 2.2em;
	}
	.widget ul li {
		margin-bottom: 0.75em;
		/* deep nesting */
	}
	.widget ul li ul {
		margin-top: 0.75em;
		padding-left: 1em;
	}

	/* 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 */
	/*********************
  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 ul li {
		/*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
	}

	/* end .footer-links */
	/* footer {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1, #fcf8f8),
      color-stop(0.51, #ffffff)
    );
    background: -webkit-linear-gradient(top, #ffffff 51%, #fcf8f8 100%);
    background: -moz-linear-gradient(top, #ffffff 51%, #fcf8f8 100%);
    background: -ms-linear-gradient(top, #ffffff 51%, #fcf8f8 100%);
    background: linear-gradient(to bottom, #ffffff 51%, #fcf8f8 100%);
  } */

	.footer-link {
		margin-top: 30px;
	}

	.footer-inner {
		padding: 0.3em;
	}
	.footer-inner ul li:last-child:after {
		display: none;
	}

	.footer-logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footer-logo span {
		padding: 0.2em;
		display: inline-block;
		margin-top: 3px;
	}
	.footer-logo p {
		margin: 0.5em;
		line-height: 1em;
		font-size: 1em;
	}
	.footer-logo p span {
		vertical-align: -8%;
		margin-right: 0.3em;
	}

	/*********************
  HEADER STYLES
  *********************/
	.header {
		margin-top: 0 !important;
	}

	#inner-header {
		font-size: 0.9em;
		padding: 5px;
		display: flex;
	}
	#inner-header .header-left {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 43%;
	}
	#inner-header .header-left #logo {
		margin: 0;
	}
	#inner-header p {
		margin: 0;
	}
	#inner-header p.add,
	#inner-header p.time {
		line-height: 1.5em;
	}

	.header-middle {
		width: 16%;
		border-left: 5px solid #c1f0e1;
	}
	.header-middle a {
		padding: 9% 15%;
	}
	.header-middle a:hover {
		background: #fcf8f8;
	}

	.header-right {
		width: 40%;
	}
	.header-right p.time {
		padding-bottom: 2px;
	}
	.header-right .tel a {
		font-size: 1.3em;
	}
	.header-right .web a:after {
		margin-top: -8px;
	}
	.header-right .sesshu_sp {
		display: none;
	}

	.head-info {
		color: #fff;
		background: #5b1c2c;
	}
	.head-info p {
		margin: 0;
	}

	h1,
	.h1 {
		font-size: 1.8em;
	}

	.single-all .hentry .article-header {
		height: auto !important;
	}

	.wrap {
		width: 100%;
	}

	.margin-r17 {
		margin-right: 17px;
	}

	.photo-box p {
		font-size: 1em;
	}

	/*ご挨拶　*/
	.top-greeting {
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+42,fcf5ed+100 */
		background: #ffffff;
		/* Old browsers */
		background: -moz-linear-gradient(left, #ffffff 42%, #fcf5ed 100%);
		/* FF3.6-15 */
		background: -webkit-linear-gradient(left, #ffffff 42%, #fcf5ed 100%);
		/* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right, #ffffff 42%, #fcf5ed 100%);
		/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}
	.top-greeting .wrap {
		background: url(../../images/top-greeting.jpg) right bottom/auto no-repeat
			#ffffff;
	}
	.top-greeting .wrap p {
		width: 60%;
		margin: 0 0 1em 0;
	}
	.top-greeting .wrap h2 {
		padding: 1.4em 0;
		text-align: left;
	}
	.top-greeting .wrap h2 span.br {
		display: inline;
	}
	.top-greeting ul.buttons {
		display: flex;
		margin: 0;
		width: 60%;
	}
	.top-greeting ul.buttons li:nth-of-type(1) {
		margin-right: 15px;
	}

	.top-shinryo-in {
		display: flex;
	}

	.exam-stomach-in h3 {
		text-align: left;
		padding-bottom: 0.7em;
		margin-bottom: 0.3em;
	}
	.exam-stomach-in p {
		margin-top: 0.7em;
	}

	.exam-stomach-in2 {
		padding: 0.5em 0 0.7em 0;
		display: flex;
	}
	.exam-stomach-in2 .right {
		width: 33.33%;
	}
	.exam-stomach-in2 .left {
		width: 66.66%;
		padding-right: 2em;
	}

	/* 健診・検査 */
	.exam > div {
		width: 33.33%;
	}

	.exam {
		display: flex;
	}
	.exam h2 {
		top: 2.3em;
		left: 50%;
		margin: 0;
		-webkit-transform: translateY(-50%) translateX(-50%);
		transform: translateY(-50%) translateX(-50%);
	}
	.exam .left,
	.exam .right {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	/* 時間・アクセス・ご挨拶・お知らせ */
	.top-contents .top-contents-inner {
		margin: 0 auto 50px;
	}
	.top-contents .top-contents-inner .top-contents-inner-left {
		float: left;
		width: 28%;
	}
	.top-contents .top-contents-inner .top-contents-inner-right {
		width: 71%;
		margin-left: 1%;
	}
	.top-contents .top-contents-inner .top-contents-inner-right .yoyaku-sp {
		display: none;
	}

	.top-contents-news {
		width: 98%;
		display: flex;
	}
	.top-contents-news .left {
		padding: 0.5em 1em;
		width: 30%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.top-shinryo {
		display: flex;
	}
	.top-shinryo .col-3 {
		display: flex;
		flex-direction: column;
	}

	#sidebar1 {
		float: right;
	}
	#sidebar1 p {
		font-size: 0.9em;
	}

	.page-menu {
		width: 96%;
		margin: 30px auto 10px;
		margin-right: 0.5em;
	}
	.page-menu ul {
		overflow: hidden;
		padding: 10px;
		border-top: solid 1px #d0d0d0;
		border-bottom: solid 1px #d0d0d0;
	}
	.page-menu ul li {
		float: left;
		line-height: 2em;
		padding-right: 35px;
		border-bottom: none;
	}
	.page-menu ul li:nth-child(1) {
		border-top: none;
	}
	.page-menu ul li a {
		display: inline;
	}

	#content-page {
		background-image: url(../../images/article-header.png);
		background-repeat: no-repeat;
		background-position: right top;
		position: relative;
	}
	#content-page:before {
		background-color: #eff7d3;
		height: 234px;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: -1;
	}

	h1.page-title {
		padding: 0em 1.5em 0 0.5em;
	}

	.entry-content ul.buttons3 li {
		width: 33.3333%;
		float: left;
	}
	.entry-content ul.buttons3 li a.page-link {
		margin: 5px;
		padding: 10px;
	}
	.entry-content ul.buttons3 li a.page-link:after {
		top: 40%;
		right: 5px;
	}
	.entry-content ul.buttons4 {
		display: flex;
	}
	.entry-content ul.buttons4 li {
		flex: 1;
	}
	.entry-content ul.buttons3 li,
	.entry-content ul.buttons2 li,
	.entry-content a.page-link li {
		margin: 0;
	}
	.entry-content ul.buttons2 li {
		width: 50%;
		float: left;
	}
	.entry-content ul.buttons2 li a.page-link {
		margin: 5px;
		padding: 10px;
	}
	.entry-content ul.buttons2 li a.page-link:after {
		top: 40%;
		right: 5px;
	}
	.entry-content ul.buttons {
		flex-wrap: wrap;
	}
	.entry-content ul.buttons li {
		width: 50%;
	}
	.entry-content ul.buttons li:nth-child(odd) {
		padding-right: 15px;
	}
	.entry-content ul.buttons li:last-child {
		padding-right: 0 !important;
	}
	.entry-content .about-doctor .other {
		margin-top: 1em;
	}
	.entry-content .page-content {
		border-left: 1px solid #750000;
		float: left;
	}
	.entry-content .telemedicine div {
		width: 33%;
	}

	.page-content-o {
		padding-bottom: 50px;
	}

	.page-content {
		float: right;
	}

	.page-contents {
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-attachment: fixed;
		position: relative;
		margin-top: -150px;
	}

	.a-h-back {
		position: fixed;
		top: 0;
		background: url(../../images/article-header.jpg);
		height: 400px;
		width: 100%;
		z-index: -1;
	}

	.article-single .article-header {
		padding: 2em;
	}

	.article-header {
		padding-top: 200px;
		background-size: 100%;
		height: auto;
	}

	.page-img div.p {
		float: left;
		width: 67%;
	}
	.page-img img {
		float: right;
		width: 30%;
	}

	.inside.long {
		text-align: center;
	}
	.inside.long img {
		width: 70%;
	}

	.inside {
		text-align: center;
		float: left;
		width: 50%;
	}
	.inside:nth-child(even) {
		padding-left: 0.5em;
	}
	.inside:nth-child(odd) {
		padding-right: 0.5em;
	}
	.inside h2 {
		width: auto;
		margin: 0;
		font-size: 0.9em;
		padding: 0 0 0 8px;
		border: none;
		display: inline-block;
	}
	.inside h2:before {
		content: '';
		width: 8px;
		height: 8px;
		border-radius: 100%;
		position: relative;
		left: -10px;
		top: 0px;
	}

	.single-all-side {
		margin-top: 184px;
	}

	.entry-content .sp-col.times tr {
		border-bottom: 0;
	}
	.entry-content .sp-col.times .colspan2 {
		border-bottom: 0;
	}
	.entry-content .sp-col.times .emptd {
		background: #f5f5f5;
	}

	.col3 {
		display: flex;
	}
	.col3 .col3-1 {
		flex-basis: 33.33%;
	}
	.col3 .col3-2 {
		flex-basis: 66.66%;
	}

	.col2-b {
		display: flex;
		justify-content: flex-end;
		padding-left: 2em;
	}
	.col2-b a {
		width: 50%;
	}

	/*********************
  FOOTER STYLES
  *********************/
	.inside-box {
		float: left;
		width: 48%;
	}

	.drawer button {
		display: none;
	}

	.drawer--left {
		max-width: 980px;
		margin: 0 auto;
	}

	.time-access {
		display: flex;
	}
	.time-access .time {
		width: 33.33%;
	}
	.time-access .access {
		width: 66.66%;
	}
	.time-access .time,
	.time-access .access {
		padding: 1em;
	}

	.footer-inner ul {
		flex-wrap: nowrap;
	}
	.footer-inner ul li {
		padding: 0.5em 1em;
		width: auto;
	}
	.footer-inner ul li:nth-of-type(2):after {
		display: block;
	}

	.hentry footer {
		padding: 0;
	}
	.hentry footer p {
		margin-top: 0em;
		color: #750000;
	}

	.article-footer {
		padding: 0;
	}

	.single #inner-content {
		margin-top: 165px;
	}
	.single #inner-content header.article-header {
		margin-top: 0 !important;
	}
}
/*********************
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.
  
  ******************************************************************/
	.entry-content dl dt {
		float: left;
		width: 20%;
	}
	.entry-content dl dd {
		margin-bottom: 0.5em;
		padding-left: 20%;
	}
	.entry-content.page-link:before {
		display: none;
	}

	/*********************
  HEADER STYLES
  *********************/
	/*********************
  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.
  */
	nav .wrap {
		/* end .menu li */
	}
	nav .wrap ul#menu-mainmenu li {
		/*
      so you really have to rethink your dropdowns for mobile.
      you don't want to have it expand too much because the
      screen is so small. How you manage your menu should
      depend on the project. Here's some great info on it:
      http://www.alistapart.com/articles/organizing-mobile/
      */
	}

	/* end .nav */
	.wrap {
		width: 980px;
	}

	.photo-box p {
		padding-top: 20px;
		font-size: 1.2em;
	}

	/* 診療内容 */
	.exam {
		width: 980px;
	}
	.exam h2 {
		font-family: 'Noto Serif JP', 'Yu Mincho', 'Georgia', Cambria,
			Times New Roman, Times, serif;
	}

	.exam-inner {
		width: 100%;
		display: flex;
	}
	.exam-inner a {
		width: 16.6%;
	}
	.exam-inner a:nth-child(2),
	.exam-inner a:nth-child(3),
	.exam-inner a:nth-child(4),
	.exam-inner a:nth-child(5) {
		padding: 0 3px;
	}
	.exam-inner a:nth-child(1) {
		padding: 0 3px 0 0;
	}
	.exam-inner a:nth-child(6) {
		padding: 0 0 0 3px;
	}
	.exam-inner a p {
		font-size: 0.8em;
		color: #5b1c2c;
		padding: 0.7em;
		margin: 0;
		text-align: center;
	}
	.exam-inner a p span {
		display: block;
	}
	.exam-inner .exam-inner-box:nth-child(2) {
		padding: 3px;
	}

	/* 強化加算へのリンク */
	.kyouka-kasan {
		text-align: center;
	}
	.kyouka-kasan .btn {
		margin: 1.5em auto;
		width: 980px;
	}
	.kyouka-kasan a {
		text-decoration: none;
	}

	/* 求人 */
	.joboffer-box {
		max-width: 980px;
	}
	.joboffer-box .pc {
		margin: 0 0 1.5em;
	}

	/* 時間・アクセス・ご挨拶・お知らせ */
	/******************
  slider
  *****************/
	.slide1,
	.slide2,
	.slide3,
	.slide4,
	.slide5 {
		position: relative;
		padding-top: 15%;
		padding-bottom: 30%;
		height: auto;
	}

	/*********************
  FOOTER STYLES
  *********************/
	.inner-footer-link {
		width: 980px;
	}

	.header-right .tel a {
		font-size: 1.5em;
		letter-spacing: 2px;
	}
}
/*********************
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.
  
  ******************************************************************/
	.margin-r17 {
		margin-right: 17px;
	}

	/* 時間・アクセス・ご挨拶・お知らせ */
}
/*********************
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. 
  
  */
}
/*********************
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,
	a:visited {
		color: #444 !important;
		text-decoration: underline;
	}
	a:after,
	a:visited:after {
		content: ' (' attr(href) ')';
	}
	a abbr[title]:after,
	a:visited abbr[title]:after {
		content: ' (' attr(title) ')';
	}

	.ir a:after,
	a[href^='javascript:']:after,
	a[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;
	}
}
/*************
ドロワーメニュー
*************/
@media only screen and (max-width: 768px) {
	/*****************************
      Base
  *****************************/
	.drawer-open {
		overflow: hidden !important;
	}

	.drawer-nav {
		position: fixed;
		z-index: 101;
		top: 0;
		overflow: hidden;
		width: 260px;
		height: 100%;
		color: #750000;
		background-color: #fff;
	}

	.drawer-brand {
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 3.75rem;
		display: block;
		padding-right: 0.74rem;
		padding-left: 0.74rem;
		text-decoration: none;
		color: #750000;
	}

	.drawer-menu {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.drawer-menu-item {
		font-size: 1rem;
		display: block;
		padding: 0.74rem;
		text-decoration: none;
		color: #750000;
	}

	.drawer-menu-item:hover {
		text-decoration: underline;
		color: #555;
		background-color: transparent;
	}

	/* overlay */
	.drawer-overlay {
		position: fixed;
		z-index: 100;
		top: 0;
		left: 0;
		display: none;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.2);
	}

	.drawer-open .drawer-overlay {
		display: block;
	}

	header {
		margin-top: 56px !important;
		border-top: 1px solid #750000;
	}

	.x-name {
		position: fixed;
		text-align: center;
		margin: 0 !important;
		margin-top: -57px !important;
		background: #fff;
		width: 100%;
		padding: 7px 0 4px 0;
		color: #fff;
		background: white;
		display: none;
		transition: all 0.8s;
		z-index: 100;
		border-bottom: 1px solid #750000;
	}
	.x-name img {
		width: 45px;
	}

	.x-n-show {
		display: block;
	}

	.drawer-tel {
		text-align: center;
		color: #000;
		margin: 0;
		padding: 1em;
		border-bottom: 1px solid #d0d0d0;
	}
	.drawer-tel a {
		display: block;
		width: 96%;
		margin: 5px auto;
		color: #fff;
		background: #750000;
		text-decoration: none;
		padding: 10px 0;
	}
	.drawer-tel .web a {
		background: #ff3161;
	}

	.drawer ul.sub-menu {
		display: none;
	}

	/*********************
  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.
  */
	nav {
		border-bottom: 0;
		margin: 0 auto;
		border-top: solid 1px #750000;
		border-bottom: solid 1px #750000;
		text-align: center;
		width: 100%;
		padding: 0;
	}
	nav .wrap {
		/* end .menu li */
		/* highlight current page */
		/* end current highlighters */
	}
	nav .wrap ul#menu-mainmenu {
		margin: 0;
	}
	nav .wrap ul#menu-mainmenu li {
		padding: 0;
	}
	nav .wrap ul#menu-mainmenu li a {
		display: block;
		color: #000000;
		padding: 13px 10px;
		text-decoration: none;
		line-height: 1.4em;
		position: relative;
		border-bottom: 1px solid #d0d0d0;
		border-left: 3px solid #750000;
		/*
            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!
            */
	}
	nav .wrap ul#menu-mainmenu li:before {
		content: '';
		width: 0px;
		height: 40px;
		background: #750000;
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -20px;
	}
	nav .wrap ul#menu-mainmenu li ul.sub-menu,
	nav .wrap ul#menu-mainmenu li ul.children {
		padding: 0;
		margin: 0;
	}
	nav .wrap ul#menu-mainmenu li ul.sub-menu li,
	nav .wrap ul#menu-mainmenu li ul.children li {
		border-left: none;
	}
	nav .wrap ul#menu-mainmenu li ul.sub-menu li a,
	nav .wrap ul#menu-mainmenu li ul.children li a {
		background: #ffffff;
		text-align: left;
		color: #000000;
		border-left: 3px solid #d0d0d0;
		padding-left: 10px;
	}

	/****************************
      Left
  ****************************/
	.drawer--left .drawer-nav {
		left: -260px;
		transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	}

	.drawer--left.drawer-open .drawer-nav,
	.drawer--left .drawer-hamburger,
	.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
		left: 0;
	}

	.drawer--left.drawer-open .drawer-hamburger {
		left: 260px;
	}

	/****************************
      Hamburger
  ****************************/
	.drawer-hamburger {
		position: fixed;
		z-index: 104;
		top: 0;
		display: block;
		box-sizing: content-box;
		width: 70px;
		padding: 0;
		padding-top: 10px;
		padding-right: 0.74rem;
		padding-bottom: 20px;
		padding-left: 0.74rem;
		transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		transform: translate3d(0, 0, 0);
		border: 0;
		outline: 0;
		background-color: transparent;
		border: 1px solid #750000;
		border-radius: 5px;
		margin: 6px 0 0 6px;
		background-color: #fff;
	}

	.drawer-hamburger:after {
		content: 'MENU';
		position: absolute;
		font-size: 13px;
		margin-top: -9px;
		color: #750000;
	}

	.drawer-hamburger:hover {
		cursor: pointer;
		background-color: transparent;
	}

	.drawer-hamburger-icon {
		position: relative;
		display: block;
		margin-top: 10px;
	}

	.drawer-hamburger-icon,
	.drawer-hamburger-icon:before,
	.drawer-hamburger-icon:after {
		width: 1.7rem;
		height: 2px;
		transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		background-color: #750000;
	}

	.drawer-hamburger-icon:before,
	.drawer-hamburger-icon:after {
		position: absolute;
		top: -10px;
		left: 0;
		content: ' ';
	}

	.drawer-hamburger-icon:after {
		top: 10px;
	}

	.drawer-open .drawer-hamburger-icon {
		background-color: transparent;
	}

	.drawer-open .drawer-hamburger-icon:before,
	.drawer-open .drawer-hamburger-icon:after {
		top: 0;
	}

	.drawer-open .drawer-hamburger-icon:before {
		transform: rotate(45deg);
	}

	.drawer-open .drawer-hamburger-icon:after {
		transform: rotate(-45deg);
	}

	/*
  　accessibility
  */
	/*
   * Only display content to screen readers
   * See: http://a11yproject.com/posts/how-to-hide-content
   */
	.sr-only {
		position: absolute;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		border: 0;
	}

	/*
   * Use in conjunction with .sr-only to only display content when it's focused.
   * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
   * Credit: HTML5 Boilerplate
   */
	.sr-only-focusable:active,
	.sr-only-focusable:focus {
		position: static;
		overflow: visible;
		clip: auto;
		width: auto;
		height: auto;
		margin: 0;
	}

	/*****************************
      Container
  *****************************/
	.drawer-container {
		margin-right: auto;
		margin-left: auto;
	}
}
@media only screen and (max-width: 768px) and (min-width: 64em) {
	.drawer-container {
		max-width: 60rem;
	}
}
@media only screen and (max-width: 768px) and (min-width: 75em) {
	.drawer-container {
		max-width: 70rem;
	}
}

/*# sourceMappingURL=style.css.map */
