@charset "UTF-8";
/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
.bold,
strong,
em {
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
	font-weight: 600;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Foundation
ブラウザ仕様をフラットにする

文字色 : palette('color');
リンク : $link_color
ホバー : $hover_color

*/
body {
	-webkit-font-smoothing: antialiased;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
}

li {
	list-style: none;
}

input,
textarea {
	outline: 0;
}

input::-moz-placeholder {
	color: #999;
	opacity: 0.75;
}

input::-webkit-input-placeholder {
	color: #999;
	opacity: 0.75;
}

input:-ms-input-placeholder {
	color: #999;
	opacity: 0.75;
}

.none {
	display: none;
}

body {
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	background: #fff;
	color: #111111;
}

.gmap {
	width: 100%;
}
.gmap > iframe {
	max-width: 100%;
}
.gmap > img {
	max-width: 100%;
}

.gcalendar {
	max-width: 100%;
}
.gcalendar > iframe {
	max-width: 100%;
}
.gcalendar > img {
	max-width: 100%;
}

.twitter {
	overflow: hidden;
}
.twitter > iframe {
	margin-left: auto;
	margin-right: auto;
}

.img {
	max-width: 100%;
	display: block;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Utility - Cosmetic

ユーティリティー設定。
このサイト専用というわけでもない共通設定。

*/
/*

<div class="_h3">.bold</div>

太字。

	<span class="bold">太い文字</span><br>
	<span class="em">太い文字</span>

*/
em,
.bold,
.em {
	font-weight: 700;
	font-style: normal;
}

/*

<div class="_h3">.underline</div>

下線。

	<span class="underline">テキスト</span><br>

*/
.underline {
	text-decoration: underline;
}

/*

<div class="_h3">.red .caution</div>

赤文字。

	<span class="caution">赤い文字</span><br>
	<span class="red">赤い文字</span>

*/
.caution,
.red_text {
	color: #ff8888;
	text-decoration-color: #ff8888;
}

/*

<div class="_h3">.orange_text</div>

オレンジ文字。

	<span class="orange_text">オレンジ文字</span>

*/
.orange_text {
	color: #000;
	font-weight: 700;
}

.orange_text2 {
	color: #eb4b55;
}

/*

<div class="_h3">.white_text</div>

白文字。

	<span class="white_text">オレンジ文字</span>

*/
.white_text {
	color: #fff;
}

/*

<div class="_h3">.blue_text</div>

時々使う青文字

	<div class="blue_text">テキスト</div>

*/
.blue_text {
	color: #5fbcdd;
	font-weight: 700;
}

.small_text {
	font-size: 0.75rem;
}

/*

<div class="_h3">.yellow_text</div>

時々使う青文字

	<div class="yellow_text">テキスト</div>

*/
.yellow_text {
	color: #a67f07;
	font-weight: 700;
}

/*

<div class="_h3">.gray_text</div>

時々使う灰色文字

	<div class="gray_text">テキスト</div>

*/
.gray_text {
	color: #888;
}

/*

<div class="_h3">.pink_text</div>

ピンク文字

	<div class="pink_text">テキスト</div>

*/
.pink_text {
	color: #ff7bac;
}

/*

<div class="_h3">.center</div>

適当に中央によせたい。

3つ指定してます
margin-left: auto;
margin-right: auto;
text-align: center;

	<div class="center">テキスト</div>

*/
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/*

<div class="_h3">.center_position</div>

画像を適当に中央によせたい。
親要素に relative が必要
width と height は個別に指定した方がいい

	<div class='line'>
		<img class="center_position" src="http://placehold.it/100x100" alt="">
	</div>

*/
.center_position {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*

<div class="_h3">.center_text</div>

text-align: right 。 float はしない。

	<div class="center_text">テキスト</div>

*/
.center_text {
	text-align: center;
}

/*

<div class="_h3">.right_text</div>

text-align: right 。 float はしない。

	<div class="right_text">テキスト</div>

*/
.right_text {
	text-align: right;
}

.float_right {
	float: right;
	padding-left: 0.2em;
	padding-bottom: 0.5em;
}

.float_left {
	float: left;
	padding-right: 0.2em;
	padding-bottom: 0.5em;
}

.clear_both {
	clear: both;
}

/*

<div class="_h3">.clearfix</div>

	<div class="clearfix">テキスト</div>

*/
.clearfix::after {
	content: '';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/*

<div class="_h3">.clear</div>

clear: both; だけしたい時。

	<div class="clear">テキスト</div>

*/
.clear {
	clear: both;
}

/*

<div class="_h3">.no_text</div>

背景画像だけを表示して、テキストを吹き飛ばして非表示にしたい。 text-indent: 120%;
(下記例の info_title _hosp クラスはサンプルをわかりやすくするための指定。)

	<div class="info_title _hosp no_text">テキスト</div>

.no_text {
	text-indent: 120%;
	line-height: 0;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}
*/
.no_text,
.hide-text {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
}

/*

<div class="_h3">.on_opacity</div>

:hover で透明化する aタグ。 opacity はサイト統一と考えて、基本ここにしか書いていません。

	<a href="#" class="on_opacity">マウスオーバーで透明化するリンクテキスト</a>

*/
.on_opacity:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}

/*

<div class="_h3">.ellipsis</div>

領域からはみ出た場合に「...」を表示する。ブラウザの挙動がおかしいのであまりにあてにしない。

	<div class="ellipsis" style="width: 100px;">長いテキスト長いテキスト長いテキスト長いテキスト</div>

*/
.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/*

<div class="_h3">.no_wrap</div>

改行せず、領域を貫通するテキスト。 PCのために書く時、SPで改行をせず表示が壊れないかに注意。

	<div class="no_wrap">テキスト</div>

*/
.no_wrap {
	white-space: nowrap;
}

/*

<div class="_h3">.mb_1em</div>

*/
.root .main_content .mb_3em {
	margin-bottom: 3em;
}
.root .main_content .mb_2em {
	margin-bottom: 2em;
}
.root .main_content .mb_1_5em {
	margin-bottom: 1.5em;
}
.root .main_content .mb_1em {
	margin-bottom: 1em;
}
.root .main_content .mb_05em {
	margin-bottom: 0.5em;
}
.root .main_content .mb_0em,
.root .main_content .no_mb,
.root .main_content .mb_none {
	margin-bottom: 0;
}

/*

<div class="_h3">.tel</div>

comment

	<div class="fot_m">外来診療</div>

*/
.tel_link {
	word-wrap: break-word;
}

/**************************
.image_radius
*/
.image_radius {
	border-radius: 25px;
}

.root .no_radius {
	border-radius: inherit;
}

/**************************
.skip
*/
.skip {
	border-style: none;
	height: 0;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	z-index: 100;
}

.fb_page_container {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
.bold,
strong,
em {
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
	font-weight: 600;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Component - Base

コンポーネント設定。
各ページでよく使い回す記述。
このサイト専用の共通設定。


*/
/**************************
heading
*/
/*

<div class="_h3">.large_text</div>

大きい文字。

	<span class="large_text">テキスト</span><br>

*/
.large_text {
	font-weight: normal;
	line-height: 2;
}
@media screen and (min-width: 1000px), print {
	.large_text {
		font-size: 1.75rem;
	}
}
@media screen and (max-width: 999px) {
	.large_text {
		font-size: 1.125rem;
	}
}

em.large_text {
	font-weight: 700;
}

.large_text.red_text {
	color: #ff8888;
}

.push_text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #eb4b55;
	line-height: 1.5;
}
.push_text-blue {
	color: #5fbcdd;
}

/**************************
.main_content
*/
.main_content hr {
	background-color: transparent;
	padding: 0;
	margin: 0;
	border: 0 none;
	border-top: 1px solid #dedede;
	margin-top: 40px;
	margin-bottom: 40px;
}
.main_content ul:not(.cancel):not(:last-child) {
	margin-bottom: 1em;
}
.main_content ul:not(.cancel) > li {
	padding-left: 2em;
	margin-bottom: 0.5em;
	position: relative;
	top: 0;
	left: 0;
}
@media screen and (min-width: 1000px), print {
	.main_content ul:not(.cancel) > li {
		font-size: 1rem;
		line-height: 2;
	}
}
@media screen and (max-width: 999px) {
	.main_content ul:not(.cancel) > li {
		font-size: 0.875rem;
		line-height: 2;
	}
}
.main_content ul:not(.cancel) > li::before {
	content: '';
	display: block;
	position: absolute;
	left: 0.2em;
	width: 15px;
	height: 15px;
	background-color: #224b72;
	border-radius: 7.5px;
}
@media screen and (min-width: 1000px), print {
	.main_content ul:not(.cancel) > li::before {
		top: 1.12ex;
	}
}
@media screen and (max-width: 999px) {
	.main_content ul:not(.cancel) > li::before {
		top: 1ex;
	}
}
.main_content ul:not(.cancel) > li:nth-child(odd)::before {
	background-color: #5fbcdd;
}
.main_content ul:not(.cancel) > li:nth-child(even)::before {
	background-color: #eb4b55;
}
.main_content ul:not(.cancel):not(.inline_block_list) > li:last-child {
	margin-bottom: 0;
}
.main_content .anotation_list:not(.cancel):not(:last-child) {
	margin-bottom: 1em;
}
.main_content .anotation_list:not(.cancel) > li {
	padding-left: 1.2em;
	margin-bottom: 0.3em;
	line-height: 1.5;
	position: relative;
	top: 0;
	left: 0;
}
.main_content .anotation_list:not(.cancel) > li:last-child {
	margin-bottom: 0;
}
.main_content .anotation_list:not(.cancel) > li::before {
	content: '※';
	width: 0.5em;
	position: absolute;
	background: 0 none;
	top: 0.04em;
	left: 0;
	background-color: none;
}
.main_content .anotation_list:not(.cancel) > li:nth-child(odd)::before,
.main_content .anotation_list:not(.cancel) > li:nth-child(even)::before {
	background-color: transparent;
}
.main_content .anotation_list-red li {
	color: #ff8888;
}
.main_content .anotation_list-red li::before {
	color: #ff8888;
}
.main_content ol:not(.cancel) {
	list-style: none;
	counter-reset: num;
}
.main_content ol:not(.cancel):not(:last-child) {
	margin-bottom: 1em;
}
.main_content ol:not(.cancel) > li {
	padding-left: 2em;
	margin-bottom: 0.3em;
	position: relative;
	top: 0;
	left: 0;
}
@media screen and (min-width: 1000px), print {
	.main_content ol:not(.cancel) > li {
		font-size: 1rem;
		line-height: 2;
	}
}
@media screen and (max-width: 999px) {
	.main_content ol:not(.cancel) > li {
		font-size: 0.875rem;
		line-height: 2;
	}
}
.main_content ol:not(.cancel) > li::before {
	counter-increment: num;
	content: counter(num);
	color: #fff;
	font-weight: 700;
	position: absolute;
	left: 0.1em;
	text-align: right;
	width: 1.5em;
	font-size: 0.875rem;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
}
@media screen and (min-width: 1000px), print {
	.main_content ol:not(.cancel) > li::before {
		top: 0.5em;
	}
}
@media screen and (max-width: 999px) {
	.main_content ol:not(.cancel) > li::before {
		top: 0.3em;
	}
}
.main_content ol:not(.cancel) > li:nth-child(odd)::before {
	background-color: #5fbcdd;
}
.main_content ol:not(.cancel) > li:nth-child(even)::before {
	background-color: #eb4b55;
}
.main_content ol:not(.cancel):not(.inline_block_list) > li:last-child {
	margin-bottom: 0;
}
.main_content .ul-sm:not(.cancel) > li {
	margin-bottom: 0.5em;
	line-height: 1.5;
}
.main_content .ul-sm:not(.cancel) > li::before {
	top: 0.3em;
}
@media screen and (min-width: 1000px), print {
	.main_content .link_list li {
		margin-bottom: 0.3em;
	}
}
@media screen and (max-width: 999px) {
	.main_content .link_list li {
		margin-bottom: 0;
		border-bottom: 1px dashed #999999;
	}
}
.main_content .link_list li::before {
	display: none;
}
@media screen and (max-width: 999px) {
	.main_content .link_list li {
		border-bottom: 1px dotted #ccc;
	}
	.main_content .link_list a,
	.main_content .link_list button {
		display: block;
		padding-top: 1em;
		padding-bottom: 1em;
		text-decoration: none;
	}
	.main_content .link_list a:hover,
	.main_content .link_list button:hover {
		text-decoration: none;
		opacity: 0.7;
		transition: 0.2s opacity;
	}
	.main_content .link_list a.link,
	.main_content .link_list button.link {
		padding-left: 16px;
		position: relative;
		top: 0;
		left: 0;
	}
	.main_content .link_list a.link::before,
	.main_content .link_list button.link::before {
		position: absolute;
		left: 0;
		top: 1.35em;
	}
}

.table,
.table-borderd,
.root .wpnews table {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
}
.table:not(:last-child),
.table-borderd:not(:last-child),
.root .wpnews table:not(:last-child) {
	margin-bottom: 1em;
}
.table caption,
.table-borderd caption,
.root .wpnews table caption {
	display: none;
}
.table caption.cap,
.table-borderd caption.cap,
.root .wpnews table caption.cap {
	display: block;
	text-align: left;
	font-weight: 700;
	padding-bottom: 0.5em;
}
.table th,
.table td,
.table-borderd th,
.table-borderd td,
.root .wpnews table th,
.root .wpnews table td {
	vertical-align: top;
	font-weight: normal;
	border: 1px solid #999999;
	box-sizing: border-box;
}
@media screen and (min-width: 1000px), print {
	.table th,
	.table th p,
	.table td,
	.table td p,
	.table-borderd th,
	.table-borderd th p,
	.table-borderd td,
	.table-borderd td p,
	.root .wpnews table th,
	.root .wpnews table th p,
	.root .wpnews table td,
	.root .wpnews table td p {
		line-height: 2;
	}
}
@media screen and (max-width: 999px) {
	.table th,
	.table th p,
	.table td,
	.table td p,
	.table-borderd th,
	.table-borderd th p,
	.table-borderd td,
	.table-borderd td p,
	.root .wpnews table th,
	.root .wpnews table th p,
	.root .wpnews table td,
	.root .wpnews table td p {
		line-height: 2;
	}
}
@media screen and (min-width: 1000px), print {
	.table th,
	.table td,
	.table-borderd th,
	.table-borderd td,
	.root .wpnews table th,
	.root .wpnews table td {
		padding: 0.5em 0.85em;
	}
}
@media screen and (max-width: 999px) {
	.table th,
	.table td,
	.table-borderd th,
	.table-borderd td,
	.root .wpnews table th,
	.root .wpnews table td {
		padding: 0.35em 0.4em;
		line-height: 1.5;
	}
}
.table th,
.table-borderd th,
.root .wpnews table th {
	background-color: #faf6f0;
	color: #111111;
	font-weight: 700;
	text-align: left;
	vertical-align: middle;
	text-align: center;
}
.table td,
.table-borderd td,
.root .wpnews table td {
	background-color: #fff;
}
.table thead th,
.table-borderd thead th,
.root .wpnews table thead th {
	background-color: #faf6f0;
}
@media screen and (min-width: 1000px), print {
	.table tbody th,
	.table-borderd tbody th,
	.root .wpnews table tbody th {
		width: 200px;
	}
}
@media screen and (max-width: 999px) {
	.table tbody th,
	.table-borderd tbody th,
	.root .wpnews table tbody th {
		width: 120px;
	}
}
.table .number-cell,
.table-borderd .number-cell,
.root .wpnews table .number-cell {
	text-align: right;
}

.responsive_table_area:not(:last-child) {
	margin-bottom: 1em;
}

.root .wpnews table {
	width: auto;
}
.root .wpnews table tbody th {
	width: inherit;
}

.table-small {
	max-width: 35em;
}
.table-medium {
	max-width: 50em;
}
.table-td_right td {
	text-align: right;
}
.table-center th,
.table-center td {
	text-align: center;
}
@media screen and (min-width: 1000px), print {
	.table-th_long tbody th {
		width: 300px;
	}
}
@media screen and (max-width: 999px) {
	.table-th_long tbody th {
		width: 180px;
	}
}
.table-th_auto tbody th {
	width: auto;
	padding-left: 10px;
	padding-right: 10px;
}
.table-th_center th {
	text-align: center;
}
.table-td_center td {
	text-align: center;
}
.table-th_left th {
	text-align: left;
}
.table-th_auto tbody th {
	width: auto;
}
.table-td_auto tbody td {
	width: auto;
}
.table-td_middle tbody td {
	vertical-align: middle;
}
.table-noborder th,
.table-noborder td {
	border: 0 none;
	background-color: transparent;
	text-align: left;
	vertical-align: top;
}
.table-noborder th {
	padding-right: 2em;
}

.banner_horizontal_list {
	padding-left: 0;
}
.banner_horizontal_list > li::before {
	display: none;
}
.banner_horizontal_list > li:not(:last-child) {
	margin-bottom: 10px;
}

.anotation {
	position: relative;
	top: 0;
	left: 0;
	line-height: 1.5;
	padding-left: 1.3em;
}
.anotation::before {
	content: '※';
	width: 1em;
	position: absolute;
	top: 0.04em;
	left: 0;
}
.anotation-red {
	color: #ff8888;
}
.anotation-red::before {
	color: #ff8888;
}
.anotation-black {
	color: #111111;
}
.anotation-black::before {
	color: #111111;
}
.anotation-right {
	float: right;
}
@media screen and (min-width: 1000px), print {
	.anotation-sm {
		font-size: 0.875rem;
	}
}
@media screen and (min-width: 1000px), print {
	.anotation-sm {
		font-size: 0.813rem;
	}
}

/**************************

## - p

*/
/*

<div class="_h3">p</div>

*/
section p:not(:last-child) {
	margin-bottom: 1em;
}

p {
	color: #111111;
}

@media screen and (min-width: 1000px), print {
	p {
		font-size: 1rem;
		line-height: 2;
	}
}
@media screen and (max-width: 999px) {
	p {
		font-size: 0.875rem;
		line-height: 2;
	}
}
.p {
	font-size: 0.875rem;
	line-height: 1.7;
}

/**************************
.content_section
*/
@media screen and (min-width: 1000px), print {
	.content_section:not(:last-child) {
		margin-bottom: 120px;
	}
	.content_section-sm:not(:last-child) {
		margin-bottom: 60px;
	}
	.content_section-sm2:not(:last-child) {
		margin-bottom: 30px;
	}

	.panel .content_section:not(:last-child) {
		margin-bottom: 100px;
	}
	.panel .content_section-sm:not(:last-child) {
		margin-bottom: 60px;
	}
	.panel .content_section-sm2:not(:last-child) {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 999px) {
	.content_section:not(:last-child) {
		margin-bottom: 100px;
	}
	.content_section-sm:not(:last-child) {
		margin-bottom: 50px;
	}
	.content_section-sm2:not(:last-child) {
		margin-bottom: 25px;
	}
}
/**************************
.indent
*/
@media screen and (min-width: 1000px), print {
	.main_content .indent,
	.main_content .pc_indent {
		padding-left: 30px;
	}
}
@media screen and (max-width: 999px) {
	.main_content .indent {
		padding-left: 0;
		padding-right: 0;
	}
	.main_content .sp_indent {
		padding-left: 7.5px;
		padding-right: 7.5px;
	}
}

/**************************

## - a リンク設定

*/
/*

<div class="_h3">a</div>

基本のリンク設定

	<a href="#" class="a">テキスト</a>

*/
a {
	color: #5fbcdd;
	text-decoration: none;
}
a:hover {
	color: #5fbcdd;
}
section a {
	text-decoration: underline;
}
section a:hover {
	text-decoration: none;
}
section a.no_border {
	text-decoration: none;
}

.url {
	text-decoration: underline;
	color: #5fbcdd;
	word-break: break-all;
}
.url:hover,
.url:focus,
.url:active {
	color: #5fbcdd;
	text-decoration: none;
}

input:focus,
input:active,
textarea:focus,
textarea:active {
	/*text-decoration: underline;*/
	outline: 2px solid #a6a6a6;
}

/*

<div class="_h3">a.black</div>

リンクだけど文字色は黒

	<a href="#" class="black">テキスト</a>

*/
a.black,
a .black {
	color: #000;
}

/*

<div class="_h3">.outlink</div>

外部リンク。後ろに矢印画像を表示する

	<a href="#" class="outlink">テキスト</a>

*/
.out::after,
.ext::after,
.outlink::after,
.icon_out::after,
.icon_ext::after {
	content: '';
	display: inline-block;
	background: url('../img/icon/ext.png') 0 center no-repeat transparent;
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	position: relative;
	top: 0em;
	left: 0;
	margin-left: 5px;
	margin-top: -10px;
}

/**************************

## - .btn - 汎用ボタン

*/
/*

<div class="_h3">.btn</div>

汎用ボタン。

*/
.btn {
	display: inline-block;
	align-items: center;
	text-decoration: none;
	text-align: left;
	text-align: center;
	background-color: #5fbcdd;
	color: #fff;
	line-height: 1.3;
	box-sizing: border-box;
	position: relative;
	top: 0;
	left: 0;
	transition: background-color 0.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.ext::after {
	background-image: url('../img/icon/ext_white.png');
}
@media screen and (min-width: 1000px), print {
	.btn {
		height: 70px;
		min-width: 300px;
		border-radius: 35px;
		box-sizing: border-box;
		padding: 23px 50px 20px 25px;
		font-size: 1.125rem;
	}
}
@media screen and (max-width: 999px) {
	.btn {
		min-width: 180px;
		min-height: 40px;
		border-radius: 20px;
		padding: 13px 20px 12px;
		font-size: 0.875rem;
		min-width: 250px;
	}
}
.btn::before {
	content: '';
	display: block;
	background: url('../img/icon/arrow/btn.png') 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	margin-top: -11px;
	position: absolute;
	top: 50%;
	right: 25px;
}
@media screen and (max-width: 999px) {
	.btn::before {
		transform: scale(0.5);
		right: 5px;
	}
}
.main_content .btn {
	text-decoration: none;
}
.btn:hover {
	background-color: #2a9dc6;
	color: #fff;
}
@media screen and (min-width: 1000px), print {
	.btn + .btn {
		margin-left: 20px;
	}
}
@media screen and (max-width: 999px) {
	.btn + .btn {
		margin-top: 20px;
	}
}
.btn-sm {
	background-color: #111111;
	height: 40px;
	border-radius: 20px;
}
@media screen and (min-width: 1000px), print {
	.btn-sm {
		min-width: 200px;
		padding: 0.45em 40px 0.4em 15px;
	}
}
.btn-sm::before {
	background-image: url('../img/icon/arrow/btn2.png');
	width: 16px;
	height: 16px;
	background-size: cover;
	margin-top: -8px;
}
.btn-disable {
	pointer-events: inherit;
	opacity: 0.3;
}

button.btn {
	border: 0 none;
}

btn.btn-large,
input.btn-large {
	padding-top: 13px;
}
.root btn.btn-disabled,
.root input.btn-disabled {
	opacity: 0.4;
}
.root btn.btn-disabled:hover,
.root input.btn-disabled:hover {
	opacity: 0.4;
}

/*

<div class="_h3">.icon_pdf</div>

PDFアイコン

	<span class="icon_pdf">テキスト</span><br>
	<span class="icon_pdf_right">テキスト</span><br>
	<a href="#" class="btn _large __orange fot_db">
		<span class="icon_pdf2">テキスト</span>
	</a>

*/
.pdf::after,
.icon_pdf::after {
	content: '';
	display: inline-block;
	background: url('../img/icon/pdf.png') 0 center no-repeat transparent;
	background-size: 17px 20px;
	width: 17px;
	height: 20px;
	margin-left: 5px;
	position: relative;
	top: 0.15em;
	left: 0;
	margin-top: -7px;
}

/*

## - list ul ol

<div class="_h3">.anotation_list</div>

※ をつけるリスト。
改行時に ※ padding を守る。

	<ul class="anotation_list">
		<li>16歳（高校生）以上の方の<br>診察となります。</li>
		<li>月2回の診療のため、お電話で診療日をご確認下さい。</li>
	</ul>

*/
.dl {
	font-size: 0.938rem;
}
.dl::before,
.dl::after {
	content: '';
	display: table;
}
.dl::after {
	clear: both;
}
.dl dt {
	clear: left;
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
	font-weight: 700;
}
.dl dt::before {
	margin-right: 0.5em;
}
@media screen and (min-width: 1000px), print {
	.dl dt,
	.dl dd {
		float: left;
	}
}
.dl dt:last-child,
.dl dd:last-child {
	margin-bottom: 0;
}
.dl dd {
	width: 100%;
	box-sizing: border-box;
}
.dl dd:not(:last-child) {
	padding-bottom: 0.3em;
}
@media screen and (max-width: 999px) {
	.dl dd:not(:last-child) {
		margin-bottom: 0.7em;
	}
}
@media screen and (min-width: 1000px), print {
	.dl-2em dt {
		width: 2em;
	}
	.dl-2em dt .h-inline {
		width: -1.5em;
	}
	.dl-2em dd {
		margin-left: -3em;
		padding-left: 3em;
	}
	.dl-3em dt {
		width: 3em;
	}
	.dl-3em dt .h-inline {
		width: -0.5em;
	}
	.dl-3em dd {
		margin-left: -4em;
		padding-left: 4em;
	}
	.dl-4em dt {
		width: 4em;
	}
	.dl-4em dt .h-inline {
		width: 0.5em;
	}
	.dl-4em dd {
		margin-left: -5em;
		padding-left: 5em;
	}
	.dl-5em dt {
		width: 5em;
	}
	.dl-5em dt .h-inline {
		width: 1.5em;
	}
	.dl-5em dd {
		margin-left: -6em;
		padding-left: 6em;
	}
	.dl-6em dt {
		width: 6em;
	}
	.dl-6em dt .h-inline {
		width: 2.5em;
	}
	.dl-6em dd {
		margin-left: -7em;
		padding-left: 7em;
	}
	.dl-7em dt {
		width: 7em;
	}
	.dl-7em dt .h-inline {
		width: 3.5em;
	}
	.dl-7em dd {
		margin-left: -8em;
		padding-left: 8em;
	}
	.dl-8em dt {
		width: 8em;
	}
	.dl-8em dt .h-inline {
		width: 4.5em;
	}
	.dl-8em dd {
		margin-left: -9em;
		padding-left: 9em;
	}
	.dl-10em dt {
		width: 10em;
	}
	.dl-10em dt .h-inline {
		width: 6.5em;
	}
	.dl-10em dd {
		margin-left: -11em;
		padding-left: 11em;
	}
	.dl-12em dt {
		width: 12em;
	}
	.dl-12em dt .h-inline {
		width: 8.5em;
	}
	.dl-12em dd {
		margin-left: -13em;
		padding-left: 13em;
	}
	.dl-14em dt {
		width: 14em;
	}
	.dl-14em dt .h-inline {
		width: 10.5em;
	}
	.dl-14em dd {
		margin-left: -15em;
		padding-left: 15em;
	}
	.dl-16em dt {
		width: 16em;
	}
	.dl-16em dt .h-inline {
		width: 12.5em;
	}
	.dl-16em dd {
		margin-left: -17em;
		padding-left: 17em;
	}
	.dl-18em dt {
		width: 18em;
	}
	.dl-18em dt .h-inline {
		width: 14.5em;
	}
	.dl-18em dd {
		margin-left: -19em;
		padding-left: 19em;
	}
	.dl-20em dt {
		width: 20em;
	}
	.dl-20em dt .h-inline {
		width: 16.5em;
	}
	.dl-20em dd {
		margin-left: -21em;
		padding-left: 21em;
	}
}
.dl-mb_1em dd {
	margin-bottom: 1em;
}
.dl-em dt,
.dl-em dd {
	font-size: 1.125rem;
}
.dl-em dt {
	color: #5fbcdd;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 999px) {
	.dl-em dt {
		margin-bottom: 0.5em;
	}
}
.dl-em dd {
	margin-bottom: 0.7em;
}
@media screen and (max-width: 999px) {
	.dl-em dd {
		padding-left: 0.4em;
	}
}
.dl-em dd em {
	margin-right: 1em;
}
.dl-em dd .inline_block_list li {
	margin-bottom: 0;
}
.dl-em dd .group + .group {
	margin-top: 1.5em;
}

.scell {
	margin-right: 1em;
}

.scell2 {
	margin-right: 0.5em;
}

/**************************
.inline_list
*/
.inline_list {
	list-style-type: none;
}
.inline_list,
.inline_list > li,
.inline_list > * {
	margin: 0;
	padding: 0;
	display: inline;
}

/**************************
.inline_block-list
*/
.inline_block_list::before,
.inline_block_list::after {
	content: '';
	display: table;
}
.inline_block_list::after {
	clear: both;
}
.inline_block_list > li,
.inline_block_list > * {
	list-style-image: none;
	list-style-type: none;
	margin-left: 0;
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	padding-left: 20px;
	padding-right: 20px;
}
.inline_block_list > li:first-child,
.inline_block_list > *:first-child {
	padding-left: 0;
}
.inline_block_list > li:last-child,
.inline_block_list > *:last-child {
	padding-right: 0;
}

@media screen and (min-width: 1000px), print {
	.pc_inline_block_list::before,
	.pc_inline_block_list::after {
		content: '';
		display: table;
	}
	.pc_inline_block_list::after {
		clear: both;
	}
	.pc_inline_block_list > li,
	.pc_inline_block_list > * {
		list-style-image: none;
		list-style-type: none;
		margin-left: 0;
		display: inline-block;
		vertical-align: middle;
		white-space: nowrap;
		padding-left: 10px;
		padding-right: 10px;
	}
	.pc_inline_block_list > li:first-child,
	.pc_inline_block_list > *:first-child {
		padding-left: 0;
	}
	.pc_inline_block_list > li:last-child,
	.pc_inline_block_list > *:last-child {
		padding-right: 0;
	}
}
@media screen and (max-width: 999px) {
	.pc_inline_block_list li {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 999px) {
	.sp_inline_block_list::before,
	.sp_inline_block_list::after {
		content: '';
		display: table;
	}
	.sp_inline_block_list::after {
		clear: both;
	}
	.sp_inline_block_list > li,
	.sp_inline_block_list > * {
		list-style-image: none;
		list-style-type: none;
		margin-left: 0;
		display: inline-block;
		vertical-align: middle;
		white-space: nowrap;
		padding-left: 10px;
		padding-right: 10px;
	}
	.sp_inline_block_list > li:first-child,
	.sp_inline_block_list > *:first-child {
		padding-left: 0;
	}
	.sp_inline_block_list > li:last-child,
	.sp_inline_block_list > *:last-child {
		padding-right: 0;
	}
}
/**************************
.horizontal_list
*/
.horizontal_list::before,
.horizontal_list::after {
	content: '';
	display: table;
}
.horizontal_list::after {
	clear: both;
}
.horizontal_list > li,
.horizontal_list > * {
	list-style-image: none;
	list-style-type: none;
	margin-left: 0;
	white-space: nowrap;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
}
.horizontal_list > li:first-child,
.horizontal_list > *:first-child {
	padding-left: 0;
}
.horizontal_list > li:last-child,
.horizontal_list > *:last-child {
	padding-right: 0;
}
.main_content .horizontal_list {
	padding-left: 0;
}
.main_content .horizontal_list li::before {
	display: none;
}

@media screen and (min-width: 1000px), print {
	.ul_horizontal_list::before,
	.ul_horizontal_list::after {
		content: '';
		display: table;
	}
	.ul_horizontal_list::after {
		clear: both;
	}
	.ul_horizontal_list > li,
	.ul_horizontal_list > * {
		list-style-image: none;
		list-style-type: none;
		margin-left: 0;
		white-space: nowrap;
		float: left;
		padding-left: 20px;
		padding-right: 20px;
	}
	.ul_horizontal_list > li:first-child,
	.ul_horizontal_list > *:first-child {
		padding-left: 0;
	}
	.ul_horizontal_list > li:last-child,
	.ul_horizontal_list > *:last-child {
		padding-right: 0;
	}
	.main_content .ul_horizontal_list {
		padding-left: 0;
	}
	.main_content .ul_horizontal_list li::before {
		display: none;
	}
}
@media screen and (max-width: 999px) {
	.main_content .ul_horizontal_list > ul:not(.cancel) {
		margin-bottom: 0.3em;
	}
}
.breadcrumbs,
.bread_crumb {
	text-align: left;
	box-sizing: border-box;
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
}
@media screen and (min-width: 1000px), print {
	.breadcrumbs,
	.bread_crumb {
		padding-top: 0px;
		line-height: 2;
		padding-bottom: 3px;
	}
}
@media screen and (max-width: 999px) {
	.breadcrumbs,
	.bread_crumb {
		padding-top: 0.6em;
		padding-bottom: 0.6em;
		padding-left: 0;
		line-height: 1.4;
	}
}
.breadcrumbs li,
.bread_crumb li {
	display: inline;
	line-height: 1.2;
	color: #fff;
}
@media screen and (min-width: 1000px), print {
	.breadcrumbs li,
	.bread_crumb li {
		font-size: 0.813rem;
	}
}
@media screen and (max-width: 999px) {
	.breadcrumbs li,
	.bread_crumb li {
		font-size: 0.75rem;
		line-height: 2.5;
	}
}
.breadcrumbs li:not(:last-child)::after,
.bread_crumb li:not(:last-child)::after {
	content: '/';
	display: inline-block;
	position: relative;
	top: 0;
	left: 0;
	color: #fff;
}
@media screen and (min-width: 1000px), print {
	.breadcrumbs li:not(:last-child)::after,
	.bread_crumb li:not(:last-child)::after {
		margin-left: 0.8em;
		margin-right: 0.4em;
	}
}
@media screen and (max-width: 999px) {
	.breadcrumbs li:not(:last-child)::after,
	.bread_crumb li:not(:last-child)::after {
		margin-left: 0.6em;
		margin-right: 0.3em;
	}
}
.breadcrumbs li:first-child,
.bread_crumb li:first-child {
	position: relative;
	top: 0;
	left: 0;
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
	margin-left: 0em;
	margin-right: 0em;
}
.breadcrumbs a,
.bread_crumb a {
	color: #fff;
	font-weight: normal;
	position: relative;
	top: 0;
	left: 0;
}
@media screen and (min-width: 1000px), print {
	.breadcrumbs a,
	.bread_crumb a {
		text-decoration: underline;
	}
}
@media screen and (max-width: 999px) {
	.breadcrumbs a,
	.bread_crumb a {
		text-decoration: none;
	}
}
.breadcrumbs a:hover,
.bread_crumb a:hover {
	color: #fff;
	opacity: 1;
	text-decoration: none;
}

/*

## - table

<div class="_h3">クラス名なし</div>

	<table>
		<thead>
			<tr>
				<th></th>
				<th>詳細</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<th>事業所名所</th>
				<td>宗教法人寒川神社　寒川病院</td>
			</tr>
			<tr>
				<th>所在地</th>
				<td>〒253-0106　神奈川県高座郡寒川町宮山193</td>
			</tr>
			<tr>
				<th>開設</th>
				<td>昭和44年7月</td>
			</tr>
		</tbody>
	</table>

<div class="_h3">.table1</div>
.table1 は、SP表示時に display: block; に変わるので、基本、2列の table のための table

	<table class="table1">
		<tbody>
			<tr>
				<th>事業所名所</th>
				<td>宗教法人寒川神社　寒川病院</td>
			</tr>
			<tr>
				<th>所在地</th>
				<td>〒253-0106　神奈川県高座郡寒川町宮山193</td>
			</tr>
			<tr>
				<th>開設</th>
				<td>昭和44年7月</td>
			</tr>
		</tbody>
	</table>
*/
.wpnews table {
	margin-bottom: 1em;
}

/*

<div class="_h3">table._no_border</div>

画像だけの table を想定

*/
table table._no_border {
	width: auto;
	margin: auto;
}
table table._no_border th,
table table._no_border td {
	padding: 0 1em;
	vertical-align: middle;
}

/**************************
.inline_video
*/
.inline_video {
	max-width: 100%;
}

/*

<div class="_h3">photoswipe ギャラリー</div>

pdf を iframe 表示に使用。
.photoswipe > .pdf または、
.photoswipe > ._pdf または、
.photoswipe > ._iframe の時、iframe を表示する仕様。

+ a タグの href が pdf への URL。
+ a タグの title が キャプションテキスト。

	<div class="photoswipe">
		<a href="pdf/test.pdf" target="_blank" class="pdf">貯金一覧</a>
	</div>

*/
.photoswipe a:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}

.pswp .pswp__iframe {
	padding: 0;
	width: 80%;
	height: 90%;
	position: relative;
	top: 5%;
	left: 10%;
	box-sizing: border-box;
}
.pswp .pswp__caption__center {
	text-align: center;
	font-size: 1rem;
}

/*
.scroll_to_top
*/
.scroll_to_top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 999;
	line-height: 0;
}
.scroll_to_top:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}
.scroll_to_top,
.scroll_to_top a {
	width: 60px;
	height: 60px;
}
.scroll_to_top a {
	display: block;
}
.scroll_to_top img {
	display: block;
	width: 100%;
}

/**************************
	.sup_area
*/
.sup_area {
	position: relative;
	top: 0;
	left: 0;
}

.sup {
	position: absolute;
	top: -0.8em;
	left: 0;
	width: 100%;
	font-size: 0.625rem;
	display: inline-block;
	text-align: center;
}

/**************************
a.accordion
*/
.js-accordion .js-accordion__toggle {
	display: block;
	position: relative;
	top: 0;
	left: 0;
}
.js-accordion .js-accordion__content {
	position: relative;
	top: 0;
	left: 0;
	max-height: 0;
	opacity: 0;
	transition:
		opacity 0.1s ease-out,
		max-height 0.4s ease-out;
	overflow: hidden;
}
.js-accordion .js-accordion__content__inner {
	padding-bottom: 2em;
}
.js-accordion .js-accordion__content._opened {
	max-height: 100em;
	opacity: 1;
}
.js-accordion .js-accordion__content._opened-long {
	max-height: 200em;
}
.js-accordion .js-accordion__content._opened-short {
	max-height: 20em;
}

.js-toggle {
	position: absolute;
	display: block;
	height: 30px;
	width: 30px;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	border: 1px solid #fff;
	background-color: #041a78;
	box-sizing: border-box;
}
.js-toggle::before {
	content: '';
	display: block;
	width: 16px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	transition: transform 0.2s ease-out;
}
.js-toggle::after {
	content: '';
	display: block;
	width: 16px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
	transition: transform 0.2s ease-out;
}
.li1.active .js-toggle,
a:hover .js-toggle,
.js-toggle:hover {
	border-color: #fff;
}
.js-toggle._opened::before {
	transform: translateX(-50%) translateY(-50%) rotate(180deg);
}
.js-toggle._opened::after {
	transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.tab_area__content {
	display: none;
}
.tab_area__content._show {
	display: block;
}

.archive_list li {
	padding-left: 1em;
}
.archive_list li::before {
	left: 0.5em;
}

.bordered {
	border: 1px solid #999999;
	box-sizing: border-box;
}

.image_list a {
	display: block;
}
.image_list img {
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.image_list .cap {
	padding-top: 0.5em;
	text-align: center;
	font-size: 0.875rem;
}
@media screen and (min-width: 1000px), print {
	.image_list > li {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 999px) {
	.image_list > li {
		margin-bottom: 15px;
	}
}
@media screen and (min-width: 1000px), print {
	.image_list-h > li {
		display: inline-block;
	}
	.image_list-h > li:not(:last-child) {
		margin-right: 10px;
	}
}

.banner {
	display: inline-block;
}
.banner:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}
.banner img {
	display: block;
	max-width: 100%;
}

@media screen and (min-width: 1000px), print {
	.inner_float_left {
		float: left;
		margin-right: 20px;
		margin-bottom: 20px;
	}

	.inner_float_right {
		float: right;
		margin-left: 20px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 999px) {
	.inner_float_left,
	.inner_float_right {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
}
.faq_list > li {
	border-bottom: 1px solid #d3d3d3;
	padding-bottom: 1.2em;
}
.faq_list > li:not(:first-child) {
	padding-top: 1.2em;
}

.faq__q {
	color: #000;
	font-size: 1rem;
	padding-left: 40px;
	padding-bottom: 0.7em;
}
.faq__a {
	font-size: 0.938rem;
	padding-left: 40px;
}

.signature {
	text-align: right;
}

.shadow {
	box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.3);
}

.wpnews::before,
.wpnews::after {
	content: '';
	display: table;
}
.wpnews::after {
	clear: both;
}
.wpnews__head {
	margin-bottom: 15px;
	padding-bottom: 0.5em;
}
.wpnews__date {
	text-align: right;
}
.wpnews__attr {
	text-align: center;
}
.wpnews__attr > * {
	display: inline-block;
	font-size: 0.938rem;
}
.wpnews__attr .date::after {
	content: '/';
	display: inline;
	padding: 0 0.7em;
}
.wpnews__attr .category {
	color: #888;
}
.wpnews__content {
	max-width: 100%;
	font-size: 0.938rem;
	line-height: 1.7;
}
.root .wpnews__content {
	margin: 0 auto;
}
.wpnews__content img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 999px) {
	.wpnews__content img {
		max-width: 100%;
		width: auto;
		height: auto;
	}
	.wpnews__content table {
		max-width: 100%;
	}
}
.wpnews a {
	text-decoration: underline;
}
.wpnews blockquote {
	padding: 10px;
	border-left: 5px solid #59a676;
	background-color: #f7f7f7;
	margin-bottom: 1em;
}

.wp_pagination::before,
.wp_pagination::after {
	content: '';
	display: table;
}
.wp_pagination::after {
	clear: both;
}

.wp_pagination_prev {
	float: left;
}

.wp_pagination_next {
	float: right;
}

.gmap {
	height: 430px;
	background-color: #ccc;
}
.gmap > img,
.gmap > iframe {
	max-width: 100%;
	max-height: 100%;
}
@media screen and (max-width: 999px) {
	.gmap {
		height: 300px;
	}
}

.video,
.video video {
	max-width: 100%;
}

.youtube {
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 999px) {
	.youtube {
		max-width: 288px;
		height: 170px;
	}
}
.youtube iframe {
	max-width: 100%;
	max-height: 100%;
}

.gcalendar > iframe {
	height: 300px;
}

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

.cell {
	margin-right: 1em;
}

.cell2 {
	margin-right: 0.5em;
}

.scell {
	margin-right: 1em;
}

figure img {
	display: block;
	max-width: 100%;
}
@media screen and (max-width: 999px) {
	figure img {
		margin-left: auto;
		margin-right: auto;
	}
}
figure figcaption {
	font-size: 0.875rem;
	color: #111111;
}
@media screen and (min-width: 1000px), print {
	figure figcaption {
		padding-top: 0.7em;
	}
	figure figcaption._left {
		text-align: left;
	}
	figure figcaption._center {
		text-align: center;
	}
}
@media screen and (max-width: 999px) {
	figure figcaption {
		padding-top: 0.2em;
		text-align: center;
	}
}

.link {
	line-height: 1.4;
	color: #111111;
	text-decoration: none;
}
.link::before {
	content: '';
	display: inline-block;
	background: url('../img/icon/arrow/link.png') 0 center no-repeat transparent;
	background-size: 21px 21px;
	width: 21px;
	height: 21px;
	margin-right: 4px;
	position: relative;
	top: 0.3em;
	left: 0;
	margin-top: -1em;
}
.link:hover {
	color: #5fbcdd;
	text-decoration: none;
}

.link-down::before {
	transform: rotate(90deg);
}
.link-back::before {
	transform: rotate(180deg);
}
.link-next::before {
	display: none;
}
.link-next::after {
	content: '';
	display: inline-block;
	background: url('../img/icon/arrow/link.png') 0 center no-repeat transparent;
	background-size: 14px 14px;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	position: relative;
	top: 0.1em;
	left: 0;
}
.link-prev::before {
	transform: rotate(180deg);
}
.link-disable {
	pointer-events: none;
	color: #ccc;
	opacity: 0.75;
	text-decoration: none;
}

button.link {
	border: 0 none;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	background-color: transparent;
	text-align: left;
	line-height: 1.7;
}
button.link::before {
	top: 1.2ex;
}

.link2 {
	text-decoration: none;
	color: #111111;
	position: relative;
	top: 0;
	left: 0;
	padding-left: 1.5ex;
}
.link2::before {
	content: '';
	display: block;
	background: url('../img/icon/arrow/link2.png') 0 0 no-repeat transparent;
	background-size: 8px 12px;
	width: 8px;
	height: 12px;
	position: absolute;
	top: 0.22ex;
	left: 0;
}
.link2:hover {
	text-decoration: underline;
}
.link2-down::before {
	transform: rotate(90deg);
}

/*

<div class="_h3">.news</div>

*/
.news_list {
	position: relative;
	top: 0;
	left: 0;
}
.news_list .no_news {
	min-height: 70px;
	box-sizing: border-box;
	padding-top: 12px;
	padding-bottom: 11px;
}
.news_list li {
	position: relative;
	top: 0;
	left: 0;
	border-bottom: 2px dotted #323332;
}

.newsline {
	line-height: 1.7;
	text-decoration: none;
	box-sizing: border-box;
	color: #111111;
}
.newsline::after {
	content: '';
	display: block;
	/* background: url('../img/icon/arrow/green.png') 0 0 no-repeat transparent; */
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	margin-top: -6px;
}
@media screen and (min-width: 1000px), print {
	.newsline::after {
		right: 24px;
	}
}
@media screen and (max-width: 999px) {
	.newsline::after {
		right: 14px;
	}
}
@media screen and (min-width: 1000px), print {
	.newsline {
		padding: 0.7em 40px 0.5em 0.7em;
		display: flex;
	}
}
@media screen and (max-width: 999px) {
	.newsline {
		display: block;
		padding: 7px 5px;
		padding-right: 30px;
	}
}
.root .main_content .newsline {
	text-decoration: none;
}
.newsline:hover {
	background-color: #f5f5f5;
	color: #111111;
}
.newsline._disable {
	pointer-events: none;
}
.newsline._disable::after {
	display: none;
}
.newsline__head {
	display: flex;
	box-sizing: border-box;
}
@media screen and (min-width: 1000px), print {
	.newsline__head {
		min-width: 110px;
		align-items: center;
	}
}
.newsline__body {
	display: flex;
	align-items: center;
}
.newsline__date {
	padding-left: 0;
	box-sizing: border-box;
	color: #e95755;
}
@media screen and (min-width: 1000px), print {
	.newsline__date {
		font-size: 1rem;
		flex-basis: 120px;
		flex-shrink: 0;
		flex-grow: 0;
		height: 1em;
		line-height: 1;
	}
}
@media screen and (max-width: 999px) {
	.newsline__date {
		font-size: 0.813rem;
	}
}
.newsline__ex {
	color: #111111;
}
@media screen and (min-width: 1000px), print {
	.newsline__ex {
		font-size: 0.938rem;
	}
}
@media screen and (max-width: 999px) {
	.newsline__ex {
		font-size: 14px;
	}
}
.newsline .new {
	font-size: 0.875rem;
	margin-left: 0.5em;
	color: #5fbcdd;
	font-weight: 700;
}
.newsline-no_head .link::before {
	width: 15px;
	height: 15px;
	background-size: cover;
	top: 0.1em;
}

.news_pager {
	text-align: center;
	font-size: 30px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news_pager__box,
.news_pager a {
	display: block;
	width: 50px;
	height: 60px;
}
@media screen and (min-width: 1000px), print {
	.news_pager__box {
		padding-left: 6px;
		padding-right: 6px;
	}
}
@media screen and (max-width: 999px) {
	.news_pager__box {
		padding-left: 3px;
		padding-right: 3px;
	}
}
.news_pager a {
	line-height: 60px;
	color: #fff;
	text-align: center;
	background-color: #5fbcdd;
	box-sizing: border-box;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.main_content .news_pager a {
	text-decoration: none;
}
.news_pager a.current {
	pointer-events: none;
	background-color: transparent;
	color: #5fbcdd;
	border: 1px solid #5fbcdd;
	box-sizing: border-box;
}
.news_pager a:hover {
	background-color: #35aad4;
	color: #fff;
}
.news_pager .next_link,
.news_pager .prev_link {
	background-color: transparent;
	box-shadow: none;
	border: 0 none;
	color: #fff;
}
.news_pager .next_link::before,
.news_pager .prev_link::before {
	transition: transform 0.1s ease-in-out;
}
.news_pager .next_link:hover,
.news_pager .prev_link:hover {
	background-color: transparent;
}
.news_pager .next_link {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
}
.news_pager .next_link::before {
	content: '';
	display: block;
	background: url('../img/icon/arrow/pager.png') 0 0 no-repeat transparent;
	background-size: 50px 60px;
	width: 50px;
	height: 60px;
	right: 5px;
	left: auto;
}
.news_pager .next_link-passive {
	pointer-events: none;
	opacity: 0.2;
}
.news_pager .next_link:hover::before {
	transform: translateX(3px);
}
.news_pager .prev_link {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
}
.news_pager .prev_link::before {
	content: '';
	display: block;
	background: url('../img/icon/arrow/pager.png') 0 0 no-repeat transparent;
	background-size: 50px 60px;
	width: 50px;
	height: 60px;
	left: 5px;
	transform: rotate(180deg);
}
.news_pager .prev_link-passive {
	pointer-events: none;
	opacity: 0.2;
}
.news_pager .prev_link:hover::before {
	transform: translateX(-3px) rotate(180deg);
}
@media screen and (max-width: 999px) {
	.news_pager {
		margin-left: -16px;
		margin-right: -16px;
	}
	.news_pager__box,
	.news_pager a {
		width: 40px;
		height: 48px;
		font-size: 24px;
	}
	.news_pager__box {
		padding-left: 3px;
		padding-right: 3px;
	}
	.news_pager a {
		line-height: 48px;
	}
	.news_pager .next_link::before,
	.news_pager .prev_link::before {
		width: 40px;
		height: 48px;
		background-position: 0 0;
		background-size: cover;
	}
}

.nakaguroten {
	letter-spacing: -0.45ex;
	margin-left: -0.3ex;
}

.ta_right {
	text-align: right;
}

@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@keyframes fade-out {
	0% {
		display: block;
		opacity: 1;
	}
	99% {
		display: block;
		opacity: 0;
	}
	100% {
		display: none;
		opacity: 0;
	}
}
@keyframes gnav_sub {
	0% {
		opacity: 0;
		transform: scale(0.95) translateY(-5%);
	}
	100% {
		transform: scale(1) translateY(0);
	}
}
@keyframes _on_opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes header_start {
	0% {
		transform: translateY(-200px);
	}
	100% {
		transform: translateY(0);
	}
}
.movie_section:first-of-type {
	margin: 50px 0 30px;
}

@media screen and (min-width: 768px) {
	.movie_title {
		width: 80%;
		margin: auto;
	}
}
@media screen and (max-width: 767px) {
	.movie_title {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.movie_wrap {
		position: relative;
		width: 90%;
		padding-top: 56.25%;
		overflow: auto;
		margin: 0 auto;
	}
}
@media screen and (max-width: 767px) {
	.movie_wrap {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		overflow: auto;
		margin: 0 auto;
	}
}
@media screen and (min-width: 768px) {
	.movie_wrap iframe {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 90%;
		height: 81%;
		border: none;
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.movie_wrap iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: none;
		display: block;
	}
}
