@charset "UTF-8";
@keyframes inav__border {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes inav__txt {
	0% {
		transform: translateY(0px) scale(1);
		opacity: 1;
	}
	50% {
		transform: translateY(106.5px) scale(0.7);
		opacity: .5;
	}
	100% {
		transform: translateY(213px) scale(1);
		opacity: 1;
	}
}

@keyframes inav__border {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes inav__txt {
	0% {
		transform: translateY(0px) scale(1);
		opacity: 1;
	}
	50% {
		transform: translateY(106.5px) scale(0.7);
		opacity: .5;
	}
	100% {
		transform: translateY(213px) scale(1);
		opacity: 1;
	}
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Foundation
ブラウザ仕様をフラットにする

文字色 : $default_color
リンク : $link_color
ホバー : $hover_color

*/
input,
textarea {
	outline: 0;
}

input::-moz-placeholder {
	color: #333;
	opacity: .75;
}

input::-webkit-input-placeholder {
	color: #333;
	opacity: .75;
}

input:-ms-input-placeholder {
	color: #333;
	opacity: .75;
}

.none {
	display: none;
}

body {
	background: #fff;
	color: #333;
	line-height: 2.2;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

ul {
	list-style: none;
}

.gmap {
	background-color: #eee;
}

.img {
	max-width: 100%;
}

img._border {
	border: 1px solid #ccc;
}

img._radius {
	border-radius: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Utility - Cosmetic

ユーティリティー設定。  
このサイト専用というわけでもない共通設定。

*/
/* simple clearfix */
.header::before,
.header::after,
.footer::before,
.footer::after,
.container::before,
.container::after,
.pc_container::before,
.pc_container::after,
.pc_tb_container::before,
.pc_tb_container::after,
.tb_container::before,
.tb_container::after,
.h2::before,
.h2::after,
.casec__content::before,
.casec__content::after,
.casec__pager::before,
.casec__pager::after,
.card_list::before,
.card_list::after,
.dl1::before,
.dl1::after {
	content: '';
	display: table;
}

.header::after,
.footer::after,
.container::after,
.pc_container::after,
.pc_tb_container::after,
.tb_container::after,
.h2::after,
.casec__content::after,
.casec__pager::after,
.card_list::after,
.dl1::after {
	clear: both;
}

/*

<div class="_h3">.bold</div>

太字。

	<span class="bold">太い文字</span><br>
	<span class="em">太い文字</span>

*/
em,
.bold,
.em {
	font-weight: bold;
	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: #b60a0a;
	-webkit-text-decoration-color: #b60a0a;
	        text-decoration-color: #b60a0a;
	font-weight: bold;
}

/*

<div class="_h3">.orange_text</div>

オレンジ文字。

	<span class="orange_text">オレンジ文字</span>

*/
.orange_text {
	color: #fb911f;
}

/*

<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: #2c2c96;
	font-weight: bold;
}

.blue_text--p {
	margin-bottom: .5em;
}

.blue_text--p:last-child {
	margin-bottom: 0;
}

.blue_text--large {
	font-size: 1em;
	margin-bottom: 1em;
}

.small_text {
	font-size: 0.75em;
}

/*

<div class="_h3">.yellow_text</div>

時々使う青文字

	<div class="yellow_text">テキスト</div>

*/
.yellow_text {
	color: #a67f07;
	font-weight: bold;
}

/*

<div class="_h3">.gray_text</div>

時々使う青文字

	<div class="gray_text">テキスト</div>

*/
.gray_text {
	color: #666;
	font-weight: bold;
}

/*

<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%;
	-ms-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
}

/*

<div class="_h3">.right</div>

text-align: right 。 float はしない。

	<div class="right">テキスト</div>

*/
.right {
	text-align: right;
}

/*

<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>

*/
.news_list__label,
.no_text,
.open_menu {
	text-indent: 120%;
	line-height: 0;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}

/*

<div class="_h3">.on_opacity</div>

:hover で透明化する aタグ。 opacity はサイト統一と考えて、基本ここにしか書いていません。

	<a href="#" class="on_opacity">マウスオーバーで透明化するリンクテキスト</a>

*/
.on_opacity:hover,
h1 > a:hover,
.open_menu:hover,
.drawer a:hover,
.hero__banner:hover,
.event_banner:hover {
	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>

*/
.mb_1em {
	margin-bottom: 1em;
}

.mb_05em {
	margin-bottom: .5em;
}

.contents .no_mb,
.section .no_mb {
	margin-bottom: 0;
}

.contents .no_mt {
	margin-top: .2em;
}

/*

<div class="_h3">.no_wrap</div>

margin-bottom: 1em;

	<div class="mb_1em">テキスト</div>

*/
.contents .mb_0 {
	margin-bottom: 0;
}

/*

<div class="_h3">.tel</div>

comment

	<div class="fot_m">外来診療</div>

*/
.tel {
	word-wrap: break-word;
}

@keyframes inav__border {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes inav__txt {
	0% {
		transform: translateY(0px) scale(1);
		opacity: 1;
	}
	50% {
		transform: translateY(106.5px) scale(0.7);
		opacity: .5;
	}
	100% {
		transform: translateY(213px) scale(1);
		opacity: 1;
	}
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Component - Base

コンポーネント設定。  
各ページでよく使い回す記述。  
このサイト専用の共通設定。


*/
.contents {
	padding-top: 61px;
}

.contents .main_content > .section:first-child {
	padding-top: 30px;
}

.contents.use_header-show {
	padding-top: 0;
}

.contents.use_header-show .section:first-child {
	padding-top: 0;
}

.container-relative {
	position: relative;
	top: 0;
	left: 0;
}

/**************************

## - Heading

h1 h2 は 画像。

*/
/*

<div class="_h3">Heading</div>

h1?h4 の詳細は pc_style.css sp_style.css に記述。  
h3 は境界線が目立つので、 @1x

	<h3>h3</h3>
	<div> - ここからh4</div>
	<h4>h4</h4>
	<div> - ここまでh4</div>
	<h5>h5</h5>
	<h6>h6</h6>

*/
/**************************
.image_radius
*/
.image_radius {
	border-radius: 3px;
}

/*

<div class="_h3">.large_text</div>

大きい文字。

	<span class="large_text">テキスト</span><br>

*/
.large_text {
	font-size: 1.25em;
	font-weight: bold;
}

.large_text.red_text {
	color: #b60a0a;
}

/**************************

## - a リンク設定

*/
/*

<div class="_h3">a</div>

基本のリンク設定

	<a href="#" class="a">テキスト</a>

*/
a {
	text-decoration: none;
	color: #2c2c96;
}

a:hover {
	color: #2c2c96;
}

a.link {
	text-decoration: underline;
	color: #2c2c96;
	font-weight: bold;
}

a.link:hover, a.link:focus, a.link:active {
	color: #2c2c96;
}

.url {
	text-decoration: underline;
	color: #333;
	word-break: break-all;
}

.url:hover, .url:focus, .url:active {
	color: #2c2c96;
}

input:focus, input:active,
textarea:focus,
textarea:active {
	/*text-decoration: underline;*/
	outline: 2px solid #75c6fa;
}

/*

<div class="_h3">a.black</div>

リンクだけど文字色は黒

	<a href="#" class="black">テキスト</a>

*/
a.black,
a .black,
.news_list__date,
.banner__ex {
	color: #333;
}

a.black:hover,
a:hover .black,
a:hover .news_list__content,
a:hover .banner__ex {
	color: #2c2c96;
}

/*

<div class="_h3">.outlink</div>

外部リンク。後ろに矢印画像を表示する

	<a href="#" class="outlink">テキスト</a>

*/
.outlink::after,
.icon_out::after,
.icon_ext::after {
	content: '';
	display: block;
	background: url("../img/icon_out@2x.png") 0 0 no-repeat transparent;
	background-size: 16px 12px;
	width: 16px;
	height: 12px;
}

.outlink,
.icon_out,
.icon_ext {
	position: relative;
	top: 0;
	left: 0;
	overflow: visible;
	padding-right: 15px;
}

.outlink::after,
.icon_out::after,
.icon_ext::after {
	content: '';
	display: block;
	background: url("../img/icon_out2@2x.png") 0 0 no-repeat transparent;
	background-size: 12px 13px;
	width: 12px;
	height: 13px;
	position: absolute;
	top: 2px;
	right: 0;
}

.icon_x {
	width: 15px;
	height: 15px;
	margin-left: .7em;
	margin-right: .7em;
}

.icon_x-index {
	width: 10px;
	height: 10px;
}

/*

<div class="_h3">.vector_link</div>

前に矢印画像を表示する

	<a href="#" class="vector_link">テキスト</a>

*/
.vector_link {
	display: inline-block;
	position: relative;
	top: 0;
	left: 0;
	padding-left: 18px;
}

.vector_link::before {
	content: '';
	display: block;
	background: url("../img/arrow_right_orange.png") 0 0 no-repeat transparent;
	background-size: 11px 11px;
	width: 11px;
	height: 11px;
	position: absolute;
	top: 7px;
	left: 0;
}

.vector_link:hover::before {
	background-image: url("../img/arrow_right_pink.png");
}

.vector_link .url {
	padding-left: 1.2em;
}

.vector_list {
	margin-bottom: 40px;
}

.vector_list li {
	margin-bottom: 0.3em;
}

/*

<div class="_h3">.banner_list</div>

.banner_list


*/
.banner_list li {
	margin-bottom: 10px;
}

.banner_list li:last-child {
	margin-bottom: 0;
}

.banner_list a,
.banner_list img {
	display: block;
}

.banner_list img {
	width: 100%;
}

.side_banner_list {
	text-align: center;
}

/*

<div class="_h3">.link_arrow</div>

よく使う矢印つきのリンク。  

	<a href="#" class="link_arrow">テキスト</a><br>
	<a href="#" class="link_arrow _orange">テキスト</a>

*/
/*

<div class="_h3">.link_arrow</div>

よく使う矢印つきのリンク。  
オレンジ色あり。

	<a href="#" class="link_arrow">テキスト</a><br>
	<a href="#" class="link_arrow _orange">テキスト</a>

*/
.link_arrow {
	line-height: 1.5;
	position: relative;
	top: 0;
	left: 0;
	font-size: 0.875em;
	color: #333;
	font-weight: normal;
}

.link_arrow::before {
	content: '';
	display: inline-block;
	background: url("../img/arrow_right_gray.png") 0 center no-repeat transparent;
	background-size: 6px 12px;
	width: 6px;
	height: 12px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-right: .6em;
}

.link_arrow-blue {
	color: #88b4e5;
}

.link_arrow-blue::before {
	background-image: url("../img/arrow_right_blue.png");
}

.link_arrow-blue:hover {
	color: #7ac3e2;
}

.link_arrow-blue:hover::before {
	background-image: url("../img/arrow_right_blue2.png");
}

.link_arrow-prev::before {
	-ms-transform: rotate(180deg);
	    transform: rotate(180deg);
}

.link_arrow-prev:hover {
	text-decoration: underline;
}

.link_arrow-next {
	padding-left: 0;
}

.link_arrow-next::before {
	content: '';
	display: none;
}

.link_arrow-next::after {
	content: '';
	display: inline-block;
	background: url("../img/arrow_right_gray.png") 0 center no-repeat transparent;
	background-size: 6px 12px;
	width: 6px;
	height: 12px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-left: .6em;
}

.link_arrow-next:hover {
	text-decoration: underline;
}

.link_arrow--down::before {
	-ms-transform: rotate(90deg);
	    transform: rotate(90deg);
}

.link_arrow--white::before {
	background: url("../img/arrow_left_white2@2x.png") 0 0 no-repeat transparent;
	background-size: 6px 8px;
}

.link_arrow--text {
	font-weight: bold;
	color: #2c2c96;
}

.link_arrow--bl {
	display: block;
	padding-top: 1em;
	padding-bottom: .7em;
}

.link_arrow--bl:hover {
	color: #2c2c96;
	background-color: #f2f1f7;
}

.link_arrow--multi {
	padding-left: 9px;
	display: inline-block;
}

.link_arrow--multi::before {
	position: absolute;
	top: .3em;
	left: 0;
}

.link_arrow--small {
	font-size: 0.875em;
}

a.link_arrow:hover {
	color: #376da5;
}

a.link_arrow--text:hover {
	color: #376da5;
}

/**************************

## - .button - 汎用ボタン

*/
/*

<div class="_h3">.button</div>

汎用ボタン。

** 色違いは、 __クラス名 でスイッチする **

+ 緑 _green
+ オレンジ _orange
+ ピンク _pink
+ 黄色 _yellow


	<a href="#" class="button _green fot_db">テキスト</a>
	<br>
	<a href="#" class="button _orange fot_db">テキスト</a>
	<br>
	<a href="#" class="button _pink fot_db">テキスト</a>
	<br>
	<a href="#" class="button _yellow fot_db">テキスト</a>


** PC で横幅が大きくなる設定 _large もある **

	<a href="#" class="button _large _green fot_db">テキスト</a>
	<br>
	<a href="#" class="button _large _orange fot_db">テキスト</a>
	<br>
	<a href="#" class="button _large _pink fot_db">テキスト</a>
	<br>
	<a href="#" class="button _large _yellow fot_db">テキスト</a>
	<br>
	<a href="#" class="button _large _gray fot_db">テキスト</a>

*/
.button {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	display: table;
	text-align: center;
	vertical-align: middle;
	padding: .9em 1em;
	box-sizing: border-box;
	border-radius: 25px;
	min-width: 11em;
	height: 50px;
	color: #fff;
	background-color: #86cab2;
	margin: auto;
	font-size: 0.875em;
	line-height: 1.7;
}

.button:before {
	content: '';
	display: inline-block;
	background: url("../img/arrow_right_white.png") 0 center no-repeat transparent;
	background-size: 8px 14px;
	width: 8px;
	height: 14px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-right: .4em;
}

.button:hover, .button:focus, .button:active {
	color: #fff;
	background-color: #50aa8a;
}

.color_green .button {
	background-color: #86cab2;
}

.color_green .button:hover, .color_green .button:focus, .color_green .button:active {
	background-color: #50aa8a;
}

.button-blue,
.color_blue .button {
	background-color: #7cb9e6;
}

.button-blue:hover, .button-blue:focus, .button-blue:active,
.color_blue .button:hover,
.color_blue .button:focus,
.color_blue .button:active {
	background-color: #4a9ad5;
}

.button-red,
.color_red .button {
	background-color: #ef8987;
}

.button-red:hover, .button-red:focus, .button-red:active,
.color_red .button:hover,
.color_red .button:focus,
.color_red .button:active {
	background-color: #d66260;
}

/*

<div class="_h3">.icon_arrow_green</div>

緑矢印を表示する

	<span class="icon_arrow_green bold">本店</span>

*/
.icon_arrow_green {
	padding-left: 14px;
	line-height: 1.5;
	position: relative;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.icon_arrow_green::before {
	content: '';
	display: block;
	position: absolute;
	margin-top: -5px;
	top: 50%;
	background: url("../img/arrow_right_green@2x.png") 0 center no-repeat transparent;
	background-size: 8px 10px;
	width: 8px;
	height: 10px;
}

/*
.icon_mail
*/
.icon_mail {
	color: #2c2c96;
}

.icon_mail::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_mail@2x.png") 0 center no-repeat transparent;
	background-size: 15px 15px;
	width: 15px;
	height: 15px;
	position: relative;
	top: 3px;
	left: 0;
	margin-right: 4px;
}

/**************************
.icon_mr_tour
*/
.icon_mr_first {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
}

.icon_mr_first::before {
	content: '';
	display: block;
	background: url("../img/icon_mr_first@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.25em;
	left: 0;
}

/**************************
.icon_mr_curriculum
*/
.icon_mr_curriculum {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
}

.icon_mr_curriculum::before {
	content: '';
	display: block;
	background: url("../img/icon_mr_curriculum@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.25em;
	left: 0;
}

/**************************
.icon_mr_tour
*/
.icon_mr_tour {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
}

.icon_mr_tour::before {
	content: '';
	display: block;
	background: url("../img/icon_mr_tour@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.25em;
	left: 0;
}

/**************************
.icon_senior_internal
*/
.icon_senior_internal {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
	vertical-align: top;
}

.icon_senior_internal::before {
	content: '';
	display: block;
	background: url("../img/icon_senior_internal@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.1em;
	left: 0;
}

/**************************
.icon_senior_surgery
*/
.icon_senior_surgery {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
}

.icon_senior_surgery::before {
	content: '';
	display: block;
	background: url("../img/icon_senior_surgery@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.1em;
	left: 0;
}

/**************************
.icon_senior_ext
*/
.icon_senior_ext {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
}

.icon_senior_ext::before {
	content: '';
	display: block;
	background: url("../img/icon_senior_ext@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.1em;
	left: 0;
}

/**************************
.icon_senior_special
*/
.icon_senior_special {
	color: #333;
	font-size: 1.25em;
	padding-left: 26px;
	position: relative;
	top: 0;
	left: 0;
}

.icon_senior_special::before {
	content: '';
	display: block;
	background: url("../img/icon_senior_special@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: -.1em;
	left: 0;
}

/*

<div class="_h3">.icon_calendar</div>

カレンダーアイコン

	<a href="#" class="button _large __yellow fot_db">
		<span class="icon_calendar">外来担当表</span>
	</a>

*/
/*

<div class="_h3">.icon_menu</div>

メニューアイコン  

	<a href="#" class="button _large __orange fot_db">
		<span class="icon_menu">テキスト</span>
	</a>

*/
.icon_menu {
	display: inline-block;
	min-height: 14px;
	background: url("../img/icon_menu.png") 0 center no-repeat transparent;
	background-size: 16px 14px;
	padding-left: 23px;
	line-height: 16px;
}

/*

<div class="_h3">.icon_pdf</div>

PDFアイコン

	<span class="icon_pdf">テキスト</span><br>
	<span class="icon_pdf_right">テキスト</span><br>
	<a href="#" class="button _large __orange fot_db">
		<span class="icon_pdf2">テキスト</span>
	</a>

*/
.icon_pdf {
	position: relative;
	top: 0;
	left: 0;
	overflow: visible;
}

.icon_pdf::after {
	content: '';
	display: inline-block;
	background: url("../img/icon_pdf@2x.png") 0 center no-repeat transparent;
	background-size: 15px 15px;
	width: 15px;
	height: 15px;
	position: relative;
	top: 2px;
	left: 0;
	margin-left: 4px;
}

/*

<div class="_h3">.icon_print</div>

印刷アイコン

	<span class="icon_print">テキスト</span><br>

*/
.icon_print {
	min-width: 12em;
	display: block;
}

.icon_print::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_print@2x.png") 0 center no-repeat transparent;
	background-size: 16px 16px;
	width: 16px;
	height: 16px;
	position: relative;
	top: 2px;
	left: 0;
	margin-right: 7px;
}

.banner:hover .banner__title::after {
	animation: arrow_right 1.5s infinite;
}

@keyframes arrow_right {
	0% {
		-ms-transform: -ms-translateX(0);
		transform: translateX(0);
	}
	8% {
		-ms-transform: -ms-translateX(3px);
		transform: translateX(3px);
	}
	30% {
		-ms-transform: -ms-translateX(0);
		transform: translateX(0);
	}
	100% {
		-ms-transform: -ms-translateX(0);
		transform: translateX(0);
	}
}

/*
## - .section グループ化


<div class="_h3">.section .section2</div>

margin-bottom を共通化する グループ class。  

*/
.section:last-child,
.section2:last-child,
.section3:last-child,
.main_content p:last-child {
	margin-bottom: 0;
}

.section p:not(:last-child),
.section2 p:not(:last-child),
.section3 p:not(:last-child),
.section .p:not(:last-child) {
	margin-bottom: 1em;
}

.section table .p {
	margin-bottom: .5em;
}

.contents .mb_05em {
	margin-bottom: 0.5em;
}

.main_content img.line {
	line-height: 0;
}

/*

## - list ul ol

<div class="_h3">.anotation_list</div>

※ をつけるリスト。  
改行時に ※ padding を守る。

	<ul class="anotation_list">
		<li>16歳（高校生）以上の方の<br>診察となります。</li>
		<li>月2回の診療のため、お電話で診療日をご確認下さい。</li>
	</ul>

*/
.ul1 {
	padding-left: 1em;
}

.ul1 > li {
	margin-bottom: .8em;
	line-height: 1.5;
	position: relative;
	font-size: 0.875em;
	top: 0;
	left: 0;
}

.ul1 > li:last-child {
	margin-bottom: 0;
}

.ul1 > li::before {
	content: '・';
	display: inline-block;
	margin-left: -1em;
	font-size: 1.75em;
	width: 1em;
	height: 1em;
	line-height: 1;
	position: absolute;
	top: 0;
	left: .2em;
}

.ul1--medium li {
	margin-bottom: .2em;
	line-height: 1.3;
}

.ul1--small li {
	margin-bottom: .1em;
	line-height: 1.2;
}

.ul1 .anotation_list {
	margin: .5em 0;
}

.ul1 .anotation_list li {
	font-size: 1em;
}

.ul1 .anotation_list:first-child {
	margin-top: 0;
}

.ul1 .anotation_list:last-child {
	margin-bottom: 0;
}

.section .ul1 p,
.section .ul1 .p {
	margin-bottom: .5em;
	font-size: 1em;
}

.ul2 {
	padding-left: 1em;
}

.ul2 > li {
	font-size: 1em;
	margin-bottom: .8em;
	line-height: 1.5;
	position: relative;
	top: 0;
	left: 0;
}

.ul2 > li:last-child {
	margin-bottom: 0;
}

.ul2 > li::before {
	content: '・';
	display: inline-block;
	margin-left: -1em;
	color: inherit;
	position: absolute;
	top: 0;
	left: 0;
}

.ul2--medium li {
	margin-bottom: .2em;
	line-height: 1.3;
}

.ul2--medium2 li {
	margin-bottom: .5em;
	line-height: 1.3;
}

.ul2--small li {
	margin-bottom: .1em;
	line-height: 1.2;
}

.ul2--s {
	margin-bottom: .5em;
}

.ul2--s li {
	font-size: 0.875em;
	line-height: 1.2;
	margin-bottom: .5em;
}

.ul2--s:last-child {
	margin-bottom: 0;
}

.ul2 .ol1 li {
	font-size: inherit;
}

.ul-none {
	list-style: none;
	font-size: 0.813em;
}

.ol1 {
	padding-left: 1.2em;
	list-style: none;
	counter-reset: num;
	font-size: 0.875em;
}

.ol1 > li {
	margin-bottom: .8em;
	line-height: 1.5;
	position: relative;
	top: 0;
	left: 0;
}

.ol1 > li::before {
	counter-increment: num;
	content: counter(num) ". ";
	margin-left: -1.7em;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 1.7em;
}

.ol1 > li:last-child {
	margin-bottom: 0;
}

.ol1:last-child {
	margin-bottom: 0;
}

.ol1--medium > li {
	margin-bottom: .2em;
	line-height: 1.3;
}

.ol1--small > li {
	margin-bottom: .1em;
	line-height: 1.2;
}

.ol1 .h6 {
	font-size: inherit;
}

.ol1 .ol1 > li {
	font-size: 100%;
}

.anotation_num_list {
	padding-left: 1.3em;
	list-style: none;
	counter-reset: num;
}

.anotation_num_list > li {
	font-size: 1em;
	margin-bottom: .3em;
	line-height: 1.5;
	position: relative;
	top: 0;
	left: 0;
}

.anotation_num_list:last-child {
	margin-bottom: 0;
}

.anotation_num_list li::before {
	counter-increment: num;
	content: "※" counter(num) " ";
	color: #b60a0a;
	margin-left: -1.3em;
}

.anotation_num_list--medium li {
	margin-bottom: .2em;
	line-height: 1.3;
}

.anotation_num_list--small li {
	margin-bottom: .1em;
	line-height: 1.2;
}

.dl1 dt,
.dl1 dd,
.dl2 dt,
.dl2 dd {
	margin-bottom: .3em;
	font-size: 0.875em;
}

.dl--dental dt,
.dl--dental dd {
	float: left;
	margin-bottom: .3em;
}

.dl--dental dt:last-child,
.dl--dental dd:last-child {
	margin-bottom: 0;
}

.dl--dental dt {
	text-align: right;
	width: 6em;
	padding-right: 1em;
}

.dl--dental dd {
	margin-left: -7.5em;
	padding-left: 7.5em;
	width: 100%;
	box-sizing: border-box;
}

.dl--seminar dt,
.dl--seminar dd {
	float: left;
	margin-bottom: .3em;
}

.dl--seminar dt:last-child,
.dl--seminar dd:last-child {
	margin-bottom: 0;
}

.dl--seminar dt {
	text-align: right;
	width: 6em;
}

.dl--seminar dd {
	margin-left: -7em;
	padding-left: 7em;
	width: 100%;
	box-sizing: border-box;
}

.dl--default dt,
.dl--default dd {
	float: left;
	margin-bottom: .3em;
	font-size: 0.813em;
}

.dl--default dt:last-child,
.dl--default dd:last-child {
	margin-bottom: 0;
}

.dl--default dt {
	width: 6em;
}

.dl--default dd {
	margin-left: -7em;
	padding-left: 7em;
	width: 100%;
	box-sizing: border-box;
}

form li {
	position: relative;
	top: 0;
	left: 0;
	margin-bottom: 20px;
}

.search_area {
	margin-top: 30px;
}

.anotation_list {
	line-height: 1.5;
	padding-left: 1em;
	margin: 1em 0;
}

.anotation_list li {
	font-size: 1em;
	margin-bottom: 0.5em;
	position: relative;
	top: 0;
	left: 0;
}

.anotation_list li--smart li {
	margin-bottom: .3em;
}

.anotation_list li:last-child {
	margin-bottom: 0;
}

.anotation_list li::before {
	content: '※';
	margin-left: -1em;
	color: #b60a0a;
	width: 1em;
	display: inline-block;
	position: absolute;
	top: -.1em;
	left: 0;
	margin-left: -1em;
}

.anotation_list--medium li {
	margin-bottom: .1em;
	line-height: 1.2;
}

.anotation_list--small {
	margin-top: .5em;
	margin-bottom: 0;
}

.anotation_list--small li {
	margin-bottom: 0;
	line-height: 1.2;
}

.anotation_list--small2 {
	margin-top: 0;
	margin-bottom: 0;
}

.anotation_list--small2 li {
	margin-bottom: 0;
	line-height: 1.2;
}

.anotation_list--lang li::before {
	font-size: 0.5em;
	vertical-align: top;
	margin-left: -1.7em;
	top: .4em;
}

.anotation_list:last-child {
	margin-bottom: 0;
}

.contents .main_content .link_list li {
	margin-bottom: 0;
}

.link_list a {
	display: block;
	border-bottom: 1px solid #ccc;
}

.linkline_list li {
	padding-left: 0;
	padding-right: 0;
	border-bottom: 1px solid #ccc;
}

.linkline_list a {
	font-size: 0.875em;
	display: block;
	padding-top: .5em;
	padding-bottom: .5em;
}

/*

<div class="_h3">.dot_list</div>

・ をつけるリスト。  
改行時に ・ padding を守る。

	<ul class="dot_list">
		<li>16歳（高校生）以上の方の<br>診察となります。</li>
		<li>月2回の診療のため、お電話で診療日をご確認下さい。</li>
	</ul>

*/
.dot_list {
	margin-bottom: 1em;
}

.dot_list li {
	padding-left: 16px;
	margin-bottom: 0.3em;
}

.dot_list li::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_dot_green.png") center center no-repeat transparent;
	background-size: 6px 6px;
	width: 6px;
	height: 6px;
	line-height: 6px;
	margin-left: -20px;
	padding-left: 20px;
	box-sizing: border-box;
	position: relative;
	top: -2px;
	left: 0;
}

/*

<div class="_h3">.image_list</div>

	<ul class="image_list">
		<li>16歳（高校生）以上の方の<br>診察となります。</li>
		<li>月2回の診療のため、お電話で診療日をご確認下さい。</li>
	</ul>

*/
.image_list {
	margin-bottom: 1em;
}

.image_list li {
	margin-bottom: 7px;
}

.image_list .caption {
	margin-top: 0.5em;
	text-align: center;
	font-size: 0.875em;
}

.pc_column2 .image_area > .img,
.image_list img {
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.image_caption {
	font-size: 0.75em;
	text-align: center;
}

.image_caption_left {
	font-size: 0.75em;
	text-align: left;
}

/**************************
.image_area
*/
.image_area .caption {
	margin-top: 0.5em;
	text-align: center;
	font-size: 0.875em;
}

/*

<div class="_h3">.button_list</div>

button_list

*/
.button_list .button {
	width: 100%;
	text-align: left;
}

.button_list .button::before {
	margin-right: .5em;
}

.contents .section .button_list--lang > li {
	margin-bottom: 2px;
	padding-left: 1px;
	padding-right: 1px;
}

.button_list.pc_column4 .button {
	padding-right: 0;
}

/*

<div class="_h3">.indent_list</div>

li でインデントしていきたい時のリスト

	<ul class="indent_list">
		<li>1階層目</li>
		<li>
			<ul class="indent_list">
				<li>2階層目</li>
				<li>
					<li>
						<ul class="indent_list">
							<li>3階層目</li>
							<li>3階層目</li>
						</ul>
					</li>
				</li>
			</ul>
		</li>
		<li>1階層目</li>
	</ul>

*/
.indent_list li li {
	padding-left: 1.3em;
	font-size: 95%;
	line-height: 1.5;
}

.indent_list li ul {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/*

<div class="_h3">.breadcrumbs</div>

ぱんくずリスト

	<ul class="breadcrumbs">
		<li><a href="#" class="node">トップ</a></li>
		<li><a href="#" class="node">診療科・部門紹介</a></li>
		<li><a href="#" class="node">総合健診センター</a></li>
		<li><span class="node">予約から受診までの流れ</span></li>
	</ul>

*/
.breadcrumbs {
	margin-bottom: 10px;
}

.breadcrumbs li {
	display: inline;
	color: #2c2c96;
	font-size: 0.875em;
	line-height: 1.2;
}

.breadcrumbs a {
	color: #333;
	text-decoration: underline;
}

.breadcrumbs a:hover {
	color: #2c2c96;
	text-decoration: none;
}

.breadcrumbs li::after {
	content: '＞';
	font-size: 0.875em;
	color: #333;
	margin-left: 0.4em;
	margin-right: 0.4em;
}

.breadcrumbs li:last-child::after {
	content: none;
}

.breadcrumbs .node {
	margin-left: 0.4em;
	margin-right: 0.4em;
}

.breadcrumbs li:first-child .node:first-child {
	margin-left: 0;
}

.breadcrumbs li:last-child .node:last-child {
	margin-right: 0;
}

/*

## - 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>
*/
table {
	width: 100%;
	margin-bottom: 0.5em;
}

table caption {
	text-align: left;
	caption-side: top;
}

table caption.top {
	caption-side: top;
}

table th,
table td {
	vertical-align: top;
	font-weight: normal;
	line-height: 1.3;
	border: 1px solid #ccc;
	padding: .5em .3em;
	font-size: 0.875em;
}

table th {
	background-color: #e9e9fa;
	text-align: left;
}

table .ul1 li,
table .ul2 li,
table .ol1 li,
table .anotation_list li {
	font-size: 100%;
}

.section table p {
	font-size: inherit;
}

.dp_table th {
	vertical-align: middle;
	text-align: center;
}

.dp_table__hh {
	font-weight: bold;
}

.dp_table__hh--3c {
	width: 12em;
}

.dp_table__bh {
	background-color: #fff;
}

.dp_table__bh--sub {
	background-color: #fffaf0;
}

.morning .dp_table__bh--time {
	background-color: #fffaf0;
}

.dp_table__bh--2c {
	width: 4em;
}

.dp_table__bd {
	width: 7em;
	vertical-align: middle;
	text-align: left;
}

.morning .dp_table__bd {
	background-color: #fffaf0;
}

.dp_table .red {
	color: #b60a0a;
}

.dp_table_top {
	color: #b60a0a;
	text-align: right;
}

.footer_button_list {
	text-align: right;
}

.footer_button_list li {
	display: inline;
}

.footer_button_list .button {
	padding-right: 1em;
}

/**************************
.er_table
*/
.er_table thead th {
	text-align: center;
}

.er_table td {
	text-align: right;
}

/**************************
*/
tfoot td {
	text-align: center;
}

table._25per th,
table._25per td {
	width: 25%;
}

table ._center {
	text-align: center;
}

table._middle th,
table ._middle {
	vertical-align: middle;
}

.table_footer {
	text-align: right;
}

/*

<div class="_h3">table._column2</div>

2列のテーブル

	<table class="_column2 _brown_em">
		<tbody>
			<tr>
				<th>給与振り込み</th>
				<td>当ＪＡに給与振込をご指定いただける方</td>
			</tr>
		</tbody>
	</table>

*/
._column2 {
	margin-bottom: 2em;
}

._column2 td .h5 {
	margin-bottom: .3em;
}

._column2 th {
	background-color: #e9e9fa;
	text-align: left;
	width: 15em;
}

._column2--smart th {
	font-weight: bold;
	vertical-align: middle;
	width: 10em;
}

._column2--smart th,
._column2--smart td {
	padding-left: .5em;
	padding-right: .5em;
}

._column2--smart th > .inner,
._column2--smart td > .inner {
	padding: 1em;
}

._column2--smart td.no_padding {
	padding: 0;
}

._column2--smart .tcell {
	border-bottom: 1px solid #ccc;
}

._column2--smart .tcell:last-child {
	border-bottom: 0 none;
}

._column2--smart--facility1 {
	width: 50%;
}

._column2--smart--facility1 th {
	width: 8em;
}

._column2--smart--facility2 th {
	width: 8em;
}

._column2--smart--map th {
	width: 13em;
	min-width: 13em;
}

._column2--smart--map .bh {
	width: 6em;
	min-width: 4em;
	background-color: #fffaf0;
	text-align: left;
	font-weight: normal;
}

._column2--smart--volunteer th {
	width: 13em;
	min-width: 13em;
}

._column2--smart--dental th {
	width: 6em;
}

._column2--smart--access th {
	width: 30%;
}

.contents ._column2--smart--course__th_center {
	background-color: #fffaf0;
	width: 5em;
}

.contents ._column2--smart--course__base_width {
	width: 23%;
}

._column2._small {
	width: 80%;
}

._column2--small {
	width: 70%;
}

._column2--nurse th {
	font-weight: bold;
	vertical-align: middle;
	width: 10em;
}

._column2--nurse th,
._column2--nurse td {
	padding-left: .5em;
	padding-right: .5em;
}

._column2--nurse th > .inner,
._column2--nurse td > .inner {
	padding: 1em;
}

._column2--large th {
	width: 15em;
}

._column2--large2 th {
	width: 13em;
}

._column2--50 th {
	width: 50%;
}

._column2--td50 td {
	width: 50%;
}

._column2--th80 th {
	width: 80%;
}

._column2--multi th {
	text-align: center;
}

._column2--dp tbody th {
	width: 14em;
}

._column2--rec th._column2--rec__th_base_width {
	width: 20%;
	max-width: 20%;
	min-width: 20%;
}

._column2--rec th._column2--rec__hh {
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}

._column2--rec th._column2--rec__bh {
	background-color: #fffaf0;
	text-align: left;
	font-weight: normal;
}

._column2--rec ._small {
	font-size: 0.75em;
}

._column2--dental thead th {
	font-weight: bold;
	text-align: center;
}

._column2--dental tbody th {
	width: 6em;
	background-color: #fffaf0;
}

.form_table th {
	font-weight: bold;
	vertical-align: middle;
	width: 7em;
}

.form_table th,
.form_table td {
	padding-left: .5em;
	padding-right: .5em;
}

.form_table__textarea {
	height: 150px;
}

.tcell {
	padding: 0;
}

.tcell .blue_text {
	margin-bottom: .5em;
}

.tcell__inner {
	padding: 1em .7em;
}

.tcell__header {
	padding-bottom: 1em;
	border-bottom: 1px dotted #ccc;
}

.tcell__content {
	padding-top: 1em;
}

/*

<div class="_h3">table._column2</div>

5列のテーブル

	<table class="_column2 _brown_em">
		<tbody>
			<tr>
				<th>給与振り込み</th>
				<td>当ＪＡに給与振込をご指定いただける方</td>
			</tr>
		</tbody>
	</table>

*/
table._column5 th,
table._column5 td {
	width: 20%;
}

/*

<div class="_h3">table._border_white</div>

border が白い table

*/
table._border_white th,
table._border_white td {
	border: 1px solid #fff;
	padding: 0;
	background-color: transparent;
}

/*

<div class="_h3">table._img_flex</div>

画像だけの table を想定

*/
table._img_flex th img,
table._img_flex td img {
	width: 100%;
	max-width: 100%;
}

/*

<div class="_h3">table._no_border</div>

画像だけの table を想定

*/
table._no_border th,
table._no_border td {
	border: 0 none;
	background-color: transparent;
}

table table._no_border {
	width: auto;
	margin: auto;
}

table table._no_border th,
table table._no_border td {
	padding: 0 1em;
	vertical-align: middle;
}

/**************************

.table2
*/
.table2 {
	width: 100%;
}

.table2 th {
	font-weight: bold;
	width: 12em;
}

/**************************
 .slider
*/
.slider {
	overflow: hidden;
}

.bx-wrapper {
	position: relative;
	top: 0;
	left: 0;
}

/**************************
 .banner_area
*/
.banner_area .banner,
.banner_area .button2 {
	margin-bottom: 20px;
}

/*

<div class="_h3">.signature</div>

comment

	<div class="fot_m">外来診療</div>

*/
.signature__hospital {
	margin-right: 1em;
	font-size: 1em;
}

.signature__handle {
	margin-right: 1em;
	font-size: 1em;
}

.signature__name {
	font-size: 1.125em;
	font-weight: bold;
}

/*

<div class="_h3">.kakko</div>

「（」「）」全角括弧でくくる

	<span class="kakko">ローン<span class="dot">・</span>貯金</span>

*/
.kakko {
	margin-left: -.5em;
}

.kakko::before {
	content: '（';
	display: inline;
}

.kakko::after {
	content: '）';
	display: inline;
}

.kakko-kagi::before {
	content: '「';
	display: inline;
}

.kakko-kagi::after {
	content: '」';
	display: inline;
}

.kerning {
	margin-left: -.3em;
}

.dot {
	letter-spacing: -.1em;
	margin-left: -0.6em;
}

/*

<div class="_h3">phososwipe ギャラリー</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>

*/
.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: 1em;
}

/*

<div class="_h3">title</div>

灰色の背景エリア

	<div class="bg_gray">
		テキスト
	</div>

*/
.bg_gray {
	border-radius: 3px;
	background-color: #fbfaf2;
	padding: 30px;
}

.bg_gray._garden {
	border-radius: 0;
	padding: 15px;
}

.bg_gray._rice_02 {
	background-color: #fcf4e8;
	text-align: center;
	padding: 1.5em 2em;
}

.bg_gray._rice_02 .title {
	margin-bottom: .7em;
}

.bg_gray._rice_02 img {
	width: 200px;
	display: block;
	margin: auto;
}

.bg_gray._rice_02 .caption {
	margin-top: 1.5em;
	font-weight: bold;
}

/*

<div class="_h3">.float_lr</div>

左右に float させたい

*/
.float_lr .left {
	float: left;
}

.float_lr .right {
	float: left;
}

/*

<div class="_h3">.contact_box</div>

お問い合わせ先

	

*/
.contact_box {
	border: 2px solid #497c12;
	border-radius: 10px;
	margin: auto;
	position: relative;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.contact_box .tel,
.contact_box .tel img {
	display: block;
	height: 33px;
}

.contact_box .fax {
	display: block;
	height: 19px;
}

.contact_box__title {
	position: absolute;
	top: -13px;
	left: 50%;
	margin-left: -80px;
	margin-bottom: .5em;
	width: 160px;
	height: 28px;
}

.contact_box__foot {
	margin-top: 1em;
	font-weight: bold;
}

/*
.scroll_to_top
*/
.scroll_to_top {
	position: fixed;
	right: 20px;
	bottom: -70px;
	z-index: 999;
	line-height: 0;
}

.scroll_to_top img {
	width: 50px;
	height: 50px;
}

/*

<div class="_h3">電話番号</div>

	<a href="tel:042-323-9200" title="予約センターへ電話をする" class="reserve_tel tel">042-323-9200</a>
	<a href="tel:042-323-5111" title="代表番号へ電話をする" class="rep_tel tel">042-323-5111</a>

*/
.tel_text {
	font-weight: bold;
	position: relative;
	top: 0;
	left: 0;
	font-size: 1.375em;
	line-height: 1;
	padding-left: 25px;
	word-wrap: break-word;
}

.tel_text::before {
	content: '';
	vertical-align: baseline;
	display: inline-block;
	width: 22px;
	height: 22px;
	line-height: 24px;
	position: absolute;
	top: 11px;
	left: 0;
	margin-top: -12px;
}

.tel_text--reserve {
	color: #b60a0a;
}

.tel_text--reserve::before {
	background: url("../img/tel_text--reserve@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
}

.tel_text--reserve--small {
	padding-left: 20px;
}

.tel_text--reserve--small::before {
	background-size: 16px 16px;
	width: 16px;
	height: 16px;
	margin-top: -9px;
}

.tel_text--rep::before {
	background: url("../img/tel_text--rep@2x.png") 0 0 no-repeat transparent;
	background-size: 22px 22px;
}

.tel_text--rep--small {
	padding-left: 20px;
}

.tel_text--rep--small::before {
	background-size: 16px 16px;
	width: 16px;
	height: 16px;
	margin-top: -9px;
}

.tel_text--red {
	color: #b60a0a;
	padding-left: 21px;
}

.tel_text--red::before {
	background: url("../img/tel_text--red@2x.png") 0 0 no-repeat transparent;
	background-size: 17px 17px;
	width: 17px;
	height: 17px;
	margin-top: -10px;
}

/**************************
.panel_list
*/
.panel_list .ex {
	padding: 1em .5em 1em 1em;
	line-height: 1.5;
	box-sizing: content-box;
	font-size: 1em;
}

/**************************
drawer
*/
.open_menu {
	width: 40px;
	height: 60px;
	display: block;
	float: right;
	position: relative;
	top: 0;
	left: 0;
	background: url("../img/sp/icon_humberger.png") center center no-repeat transparent;
	background-size: 22px 22px;
}

.mm-opened .open_menu {
	background: url("../img/sp/icon_humberger-close.png") center center no-repeat transparent;
	background-size: 22px 22px;
}

#drawer {
	background-color: #fff;
}

#drawer .banner {
	width: 100%;
	max-width: 220px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

#drawer .mm-navbar-top {
	height: 4em;
	border-bottom: 0 none;
}

#drawer .mm-panels > .mm-panel {
	padding-top: 2.9em;
}

#drawer .mm-panels > .mm-panel::before, #drawer .mm-panels > .mm-panel::after {
	height: 0;
}

#drawer .mm-panels > .mm-panel .mm-navbar,
#drawer .mm-panels > .mm-panel .mm-navbar > a {
	height: 62px;
	box-sizing: border-box;
	line-height: 62px;
	padding-top: 0;
	color: #333;
	font-weight: bold;
}

#drawer .mm-panels > .mm-panel:first-child {
	padding-top: 0;
}

#drawer .mm-panels > .mm-panel:first-child .mm-navbar,
#drawer .mm-panels > .mm-panel:first-child .mm-navbar > div {
	display: none;
}

#drawer .mm-listview .mm-next {
	background-color: #88b4e5;
}

#drawer .mm-listview > li {
	position: relative;
	top: 0;
	left: 0;
}

#drawer #mm-1 .mm-listview {
	margin-top: 0;
}

#drawer .mm-listview {
	margin-top: 15px;
}

#drawer .mm-listview li a {
	font-size: 1em;
	display: block;
}

#drawer .mm-listview .mm-next::before {
	display: none;
}

#drawer .mm-listview > li .mm-next {
	width: 40px;
	border-left: 0 none;
}

#drawer .mm-listview > li .mm-next::after,
#drawer .mm-listview > li .mm-arrow::after {
	border-color: #fff;
	border-width: 1px;
}

#drawer .mm-prev,
#drawer .mm-title {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

#drawer .drawer__a-disable {
	pointer-events: none;
}

#drawer .drawer .mm-subblocker {
	padding-left: 0;
	padding-right: 0;
}

#drawer .drawer__main {
	display: block;
	width: auto;
	margin: auto;
}

#drawer .drawer__main > a {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

#drawer .drawer__main::after {
	background-color: #eee;
}

#drawer .drawer__main.color_green.selected, #drawer .drawer__main.color_green:hover {
	background-color: #86cab2;
	color: #fff;
}

#drawer .drawer__main.color_blue.selected, #drawer .drawer__main.color_blue:hover {
	background-color: #7cb9e6;
	color: #fff;
}

#drawer .drawer__main.color_red.selected, #drawer .drawer__main.color_red:hover {
	background-color: #ef8987;
	color: #fff;
}

#drawer .drawer__main.color_gray.selected, #drawer .drawer__main.color_gray:hover {
	background-color: #e7e7e7;
}

#drawer .drawer__main.color_news {
	background: linear-gradient(135deg, #fff7b0 0%, #fffff7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff7b0', endColorstr='#fffff7',GradientType=1 );
}

#drawer .drawer__main.color_news a {
	padding: .8em 0;
	text-align: center;
}

#drawer .drawer__main.color_news img {
	height: 80px;
}

#drawer .drawer__bottom {
	box-sizing: border-box;
	text-align: left;
}

#drawer .drawer__bottom-first {
	margin-top: 1em;
}

#drawer .drawer__bottom::after {
	border-bottom: 1px solid #fff;
}

#drawer .drawer__bottom > a {
	background-color: #fff;
	color: #333;
	box-sizing: border-box;
	padding-left: 2em;
	vertical-align: middle;
}

#drawer .drawer__bottom > a > a {
	padding-top: .7em;
	padding-bottom: .7em;
}

#drawer .drawer__bottom.selected, #drawer .drawer__bottom:hover {
	background-color: #4a9ad5;
}

.mm-opening #mm-blocker {
	background: #000 none repeat scroll 0 0;
	transition: background 1s ease 0.2s;
	opacity: 0.2;
}

/*
## - form input select textarea

<div class="_h3">input select textarea</div>

基本的にブラウザネイティブの要素を非表示にし、  
見える要素はCSSで作成、クリックなどを非表示の要素に渡す方針。  
Javascript の補助なしでは正常に動作しない。

**警告**

	<div class="caution_area">
		<ul>
			<li>入力内容に誤りがありました。以下の内容をご確認ください。</li>
			<li>（1）名前を入力してください</li>
		</ul>
	</div>

**1行テキスト**

	<div class="input_frame">
		<input name="" type="text" value="">
	</div>

**1行テキスト 生年月日**

	<form>
		<div class="input_frame node1">
			<input id="birth_year" name="birth_year" size="" type="text" value="" maxlength="4" class="" placeholder="西暦">
		</div>
		<span class="node3">年</span>
		<div class="input_frame node2">
			<input id="birth_month" name="birth_month" size="" type="text" value="" maxlength="2" class="">
		</div>
		<span class="node3">月</span>
		<div class="input_frame node2">
			<input id="birth_day" name="birth_day" size="" type="text" value="" maxlength="2" class="">
		</div>
		<span class="node3">日</span>
	</form>

**1行テキスト 郵便番号**

	<form>
		<span class="node">〒</span>
		<div class="input_frame node zip1">
			<input name="zip[0]" type="text" maxlength="3" class="p-postal-code" value="">
		</div>
		<span class="node">-</span>
		<div class="input_frame node zip2">
			<input name="zip[1]" type="text" maxlength="4" class="p-postal-code" value="">
		</div>
	</form>

**テキストエリア**

	<div class="textarea_frame">
		<textarea name="" maxlength="2000"></textarea>
	</div>

**ラジオボタン**

	<div class="checkbox_inline_list">
		<div class="radio_frame">
			<label>
				<input name="" type="radio" value="男性">
				<div class="radio_display">
					<div class="point"></div>
				</div>
				<span class="radio_label">男性</span>
			</label>
		</div>
		<div class="radio_frame">
			<label>
				<input name="" type="radio" value="女性">
				<div class="radio_display">
					<div class="point"></div>
				</div>
				<span class="radio_label">女性</span>
			</label>
		</div>
	</div>

**チェックボックス**

	<div class="checkbox_inline_list">
		<div class="radio_frame">
			<label>
				<input name="" type="checkbox" value="成人病棟">
				<div class="radio_display">
					<div class="point"></div>
				</div>
				<span class="radio_label">成人病棟</span>
			</label>
		</div>
		<div class="radio_frame">
			<label>
				<input name="" type="checkbox" value="小児科病棟">
				<div class="radio_display">
					<div class="point"></div>
				</div>
				<span class="radio_label">小児科病棟</span>
			</label>
		</div>
	</div>

**セレクト**

	<div class="input_frame">
		<div class="select_display"></div>
		<select name="">
			<option value="">▼選択してください</option>
			<option value="医師"		>医師</option>
			<option value="看護師"	>看護師</option>
			<option value="薬剤師"	>薬剤師</option>
			<option value="事務員"	>事務員</option>
		</select>
	</div>

** submit input**

	<form>
		<div class="submit">
			<input type="submit" value="確認する" class="button" />
		</div>
	</form>

** submit confirm**

	<form>

		<div class="submit">
			<div class="clearfix">
				<input type="button" class="button _yellow fot_db conf" id="btn_back" value="訂正する">
				<input type="submit" class="button _orange fot_db conf" id="btn_submit" value="送信する">
			</div>
		</div>
	</form>

*/
.caution_area {
	border: 2px solid #fb911f;
	border-radius: 5px;
	color: #ff0000;
	padding: 5px 10px;
}

.caution_area p {
	margin-bottom: 1px;
}

.input_frame {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
}

.input_frame__input {
	box-sizing: border-box;
	padding: 0 .5em;
	height: 2.5em;
	line-height: 2.5em;
	width: 100%;
	padding-right: .5em;
	margin: 0;
	border: 1px solid #ccc;
	font-size: 1em;
}

.form__text {
	border-radius: 5px;
	box-shadow: 0 1px 0 0 #cacaca inset;
	background-color: #fff;
}

.form__submit {
	border: 1px solid #fff;
	background-color: #7ac3e2;
	font-weight: normal;
}

.form__submit:hover {
	background-color: #5cadd0;
}

.form-color__text {
	border: 0 none;
	color: #333;
}

.content .date_range .input_frame {
	width: 45%;
}

.content .date_range .input_frame input {
	width: 100%;
}

.h-adr .zip_group .zip1,
.h-adr .zip_group .zip1 input {
	width: 70px;
}

.h-adr .zip_group .zip2,
.h-adr .zip_group .zip2 input {
	width: 90px;
}

form .node1 {
	margin-right: 7px;
	margin-bottom: 2px;
	display: inline-block;
	width: 100px;
}

form .node2 {
	margin-right: 7px;
	margin-bottom: 2px;
	display: inline-block;
	width: 70px;
}

form .node3 {
	margin-right: 7px;
}

form .conf {
	display: inline;
	margin: 20px 30px;
}

.form_column2 .half .input_frame {
	width: 40%;
	min-width: 200px;
}

.input_frame .select_display.default {
	color: #333;
}

.input_frame select {
	-webkit-user-modify: read-write-plaintext-only;
	-moz-user-modify: read-write-plaintext-only;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0 none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	width: 100%;
	height: 39px;
}

.input_frame option {
	padding: 0 15px;
}

.input_frame input.search {
	background: url("../img/icon_search_dark.png") 10px center no-repeat transparent;
	background-size: 13px 15px;
	padding-left: 28px;
}

.icon_search::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_search@2x.png") 0 center no-repeat transparent;
	background-size: 16px 16px;
	width: 16px;
	height: 16px;
	position: relative;
	top: 2px;
	left: 0;
}

.icon_search--wrap {
	position: relative;
	top: 0;
	left: 0;
	width: 12em;
}

.icon_search--wrap::before {
	display: none;
}

.icon_search--wrap .button {
	min-width: 12em;
	padding-left: 2em;
	background: url("../img/icon_search@2x.png") 4em center no-repeat #2c2c96;
	background-size: 16px 16px;
}

.checkbox_inline_list .radio_frame {
	display: inline-block;
	margin-right: 1.5em;
}

.checkbox_inline_list .radio_frame:last-child {
	margin-right: 0;
}

.textarea_frame textarea {
	width: 100%;
	height: 150px;
	border-radius: 3px;
	background-color: #fff;
	border: 1px solid #ccc;
	resize: none;
	box-sizing: border-box;
	padding: .5em;
}

.radio_frame {
	position: relative;
	top: 0;
	left: 0;
}

.radio_frame .radio_display {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 7px;
	box-shadow: 0 1px 0 0 #bfbfbf inset;
	background-color: #eeeeee;
	position: absolute;
	left: 0;
}

.radio_frame .radio_display .point {
	width: 8px;
	height: 8px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	top: 3px;
	left: 3px;
	opacity: 0;
	transition: 0.2s ease-in;
}

.radio_frame .radio_display,
.radio_frame input {
	top: 5px;
}

.radio_frame input {
	position: absolute;
	-webkit-user-modify: read-write-plaintext-only;
	-moz-user-modify: read-write-plaintext-only;
	z-index: 1;
	left: 0;
	width: 14px;
	opacity: 0;
	padding: 0;
	margin: 0;
	border: 0 none;
}

.radio_frame .radio_label {
	margin-left: 22px;
	display: block;
}

.radio_frame input:checked + .radio_display .point {
	opacity: 1;
	transition: 0.2s ease-in;
}

.check_frame {
	position: relative;
	top: 0;
	left: 0;
}

.check_frame-focus .check_display {
	outline: 2px solid #75c6fa;
}

.check_frame .check_display {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	position: absolute;
	left: 0;
	border: 1px solid #aaa;
}

.check_frame .check_display .icon_check {
	width: 14px;
	height: 11px;
	background: url("../img/icon_check@2x.png") center center no-repeat transparent;
	background-size: 14px 11px;
	position: absolute;
	top: 3px;
	left: 2px;
	opacity: 0;
	transition: 0.2s ease-in;
}

.check_frame .check_display,
.check_frame input {
	top: 5px;
}

.check_frame input {
	position: absolute;
	-webkit-user-modify: read-write-plaintext-only;
	-moz-user-modify: read-write-plaintext-only;
	z-index: 1;
	left: 0;
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	opacity: 0;
	padding: 0;
	margin: 0;
	border: 0 none;
}

.check_frame .check_label {
	margin-left: 24px;
	display: block;
}

.check_frame input:checked + .check_display .icon_check {
	opacity: 1;
	transition: 0.2s ease-in;
}

/**************************
.page_link_tab
*/
.page_link_tab {
	margin-bottom: 1.5em;
}

.page_link_tab li {
	float: left;
}

.page_link_tab .tab {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	display: inline-block;
	width: 10em;
	border: 1px solid #ccc;
	border-right: 0 none;
	border-radius: 0;
	padding-left: 1.5em;
}

.page_link_tab .tab::before {
	content: '';
	display: block;
	background: url("../img/arrow_left_blue@2x.png") 0 0 no-repeat transparent;
	background-size: 6px 10px;
	width: 6px;
	height: 10px;
	margin-right: .3em;
	position: absolute;
	top: 50%;
	left: .7em;
	margin-top: -4px;
}

.page_link_tab .tab.selected {
	background-color: #fff;
	color: #333;
}

.page_link_tab .tab.selected::before {
	background: url("../img/arrow_left_blue@2x.png") 0 0 no-repeat transparent;
	background-size: 6px 10px;
	-ms-transform: rotate(90deg);
	    transform: rotate(90deg);
}

.page_link_tab--100 {
	width: 100%;
}

.page_link_tab--100 .tab {
	width: 100%;
	box-sizing: border-box;
}

.page_link_tab--double .tab {
	font-size: 0.813em;
	padding-left: 1em;
	padding-right: 0;
}

.page_link_tab--double .tab::before {
	left: .3em;
}

.tab_table {
	display: table;
	width: 100%;
	overflow: visible;
}

.tab_table .tab {
	float: none;
	font-size: 0.875em;
	font-weight: bold;
	line-height: 1.2;
	display: table-cell;
	border: 1px solid #888;
	border-right: 0 none;
	border-radius: 0;
	padding-top: 1em;
	padding-left: 1.5em;
	padding-right: .2em;
	vertical-align: middle;
	box-sizing: border-box;
}

.tab_table .tab::before {
	content: '';
	display: block;
	background: url("../img/arrow_left_blue@2x.png") 0 0 no-repeat transparent;
	background-size: 6px 10px;
	width: 6px;
	height: 10px;
	margin-right: .3em;
	position: absolute;
	top: 50%;
	left: .7em;
	margin-top: -4px;
	vertical-align: middle;
}

.tab_table .tab:last-child {
	border-right: 1px solid #888;
}

.tab_table .tab.selected {
	background: url("../img/bg_tab_top.png") 0 0 repeat-x #fff;
	border-bottom: 1px solid transparent;
	color: #333;
}

.tab_table .tab.selected::before {
	background: url("../img/arrow_left_blue@2x.png") 0 0 no-repeat transparent;
	background-size: 6px 10px;
	-ms-transform: rotate(90deg);
	    transform: rotate(90deg);
}

.tab_table .tab:hover {
	background-color: #fff;
}

.tab_table--dp4 {
	width: 80%;
}

.tab_table--dp3 {
	width: 60%;
}

.tab_table--dp2 {
	width: 40%;
}

.tab_table--5 .tab {
	width: 20%;
}

.tab_table--4 .tab {
	width: 25%;
}

.tab_table--3 .tab {
	width: 33.333%;
}

.tab_table--2 .tab {
	width: 50%;
}

.co_table .caption {
	font-size: 0.75em;
	padding: .5em 0;
}

/*

<div class="_h3">.notice</div>

警告のようなボックス表示

	<div class="notice">
		<div class="notice__text">当院は、紹介予約制を原則としています。</div>
	</div>

*/
.notice {
	padding: 1em 1.5em;
	margin-bottom: 1em;
}

.notice__text {
	color: #b60a0a;
	font-weight: bold;
	font-size: 1em;
}

.notice__text::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_notice@2x.png") 0 center no-repeat transparent;
	background-size: 15px 15px;
	width: 15px;
	height: 15px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-right: .2em;
}

.icon_notice::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_notice@2x.png") 0 center no-repeat transparent;
	background-size: 15px 15px;
	width: 15px;
	height: 15px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-right: .2em;
}

.icon_notice--large::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_notice--large@2x.png") 0 center no-repeat transparent;
	background-size: 24px 24px;
	width: 24px;
	height: 24px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-right: .4em;
}

/*

<div class="_h3">.creditcard</div>

	<li class="creditcard">
		<img src="img/card_dc.png" title="DCカード" class="creditcard__image">
		<div class="creditcard__caption">DCカード</div>
	</li>
*/
.creditcard {
	text-align: center;
	padding-bottom: 1em;
}

.creditcard__image {
	width: 80px;
	height: 60px;
	display: block;
	margin: auto;
}

.creditcard__caption {
	margin-top: .5em;
	font-size: 0.875em;
	line-height: 1.2;
}

.data_table {
	font-size: 1em;
}

.data_table__th_base_width {
	width: 20%;
}

.data_table__hh {
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}

thead .data_table__hh {
	text-align: center;
}

.data_table__bh {
	background-color: #fffaf0;
	text-align: left;
	font-weight: normal;
	min-width: 3em;
}

.data_table__bd {
	text-align: right;
}

.data_table ._small {
	font-size: 0.75em;
}

.simple_table thead th {
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}

.simple_table tbody th,
.simple_table .bh {
	background-color: #fffaf0;
	text-align: left;
	font-weight: normal;
}

.simple_table tfoot th {
	font-weight: bold;
	text-align: center;
}

.simple_table tfoot td {
	background-color: #fffaf0;
}

.simple_table--smart tbody th {
	font-weight: bold;
	vertical-align: middle;
}

.simple_table--outline tbody td {
	width: 25%;
}

.simple_table--medium tbody th {
	font-weight: bold;
	vertical-align: middle;
}

.simple_table--medium tbody th {
	width: 10em;
}

.simple_table--team tbody th {
	width: 30%;
	font-weight: bold;
}

.simple_table--team tbody td {
	width: 70%;
}

.simple_table--stats thead th,
.simple_table--stats tbody th,
.simple_table--stats tbody td {
	font-size: 0.813em;
}

.simple_table--stats tbody th {
	width: 11em;
	font-weight: normal;
}

.simple_table--stats td {
	text-align: right;
}

.contents .simple_table--stats__th_base_width {
	width: 35%;
}

.contents .simple_table--stats__th_half_width {
	width: 17.5%;
}

.contents .simple_table--stats__th_center {
	width: auto;
	background-color: transparent;
	text-align: center;
	max-width: inherit;
	min-width: inherit;
}

.contents .simple_table--stats__right {
	text-align: right;
}

.contents .simple_table--stats__th_blue {
	background-color: #e9e9fa;
}

.contents .simple_table--stats__td_left {
	text-align: left;
}

.contents .simple_table--stats__td_center {
	text-align: center;
}

.contents .simple_table--stats__gray {
	background-color: #eee;
}

.contents .simple_table--stats__th_left {
	width: auto;
	background-color: transparent;
	text-align: left;
	max-width: inherit;
	min-width: inherit;
}

.contents .simple_table--stats__th_line {
	text-align: left;
}

.simple_table--stats--disease--c thead th,
.simple_table--stats--disease--c thead td,
.simple_table--stats--disease--c tbody th,
.simple_table--stats--disease--c tbody td {
	font-size: 0.625em;
	padding: 2px;
}

.simple_table--stats--mark tbody td {
	text-align: left;
}

.simple_table--stats--mark__th_1 {
	width: 5%;
}

.simple_table--stats--mark__th_2 {
	width: 5%;
}

.simple_table--stats--mark__th_3 {
	width: 15%;
}

.simple_table--stats--mark__th_4 {
	width: 30%;
}

.contents .simple_table--stats--pf__th_base_width {
	width: 30%;
}

.simple_table--stats--pf__th_pl {
	padding-left: 3em;
}

.contents .simple_table--stats--pf__th_base_width2 {
	width: 10%;
}

.simple_table--stats--pf_suii th,
.simple_table--stats--pf_suii td {
	width: 8%;
}

.simple_table--stats--pf_suii thead th {
	padding: 4px 2px;
	font-size: 0.813em;
}

.simple_table--dental th,
.simple_table--dental td {
	width: 25%;
}

.simple_table--change .small {
	font-size: 0.875em;
}

.simple_table--course tbody th {
	background-color: transparent;
	width: 30%;
}

.simple_table--course td:last-child {
	width: 15%;
}

.simple_table--course_model tbody th {
	background-color: #e9e9fa;
	width: 10%;
}

.simple_table--course_model td {
	width: 22.5%;
}

.simple_table--course_model--5 td {
	width: 18%;
}

.simple_table--course_rei {
	width: 50%;
}

.simple_table--course_rei tbody th {
	background-color: transparent;
	width: 40%;
	font-weight: normal;
}

.simple_table--course_rei td {
	width: 23%;
}

.simple_table--course_rei__td_middle {
	vertical-align: middle;
}

.contents .simple_table--course_rei__th_line {
	background-color: #fffaf0;
}

.simple_table--100 {
	width: 100%;
}

.image_line {
	margin-bottom: 1em;
}

.image_line > li {
	display: inline-block;
	margin-right: .3em;
}

.image_line > li:last-child {
	margin-right: 0;
}

.image_line:last-child {
	margin-bottom: 0;
}

.image_line--center {
	text-align: center;
}

.image_line--center img {
	max-width: 100%;
}

.image_line .caption {
	font-size: 0.75em;
	line-height: 1.2;
}

/**************************
.button_line
*/
.button_line {
	margin-bottom: 1em;
}

.button_line li {
	display: inline-block;
	margin-right: .3em;
}

.button_line li:last-child {
	margin-right: 0;
}

.button_line:last-child {
	margin-bottom: 0;
}

.button_line--center {
	text-align: center;
}

.button_line .button {
	min-width: 15em;
	font-size: 1em;
}

.table_top_info {
	float: right;
	margin: 0;
}

.right_text {
	text-align: right;
}

/**************************
	.link_line
*/
.link_line {
	display: inline-block;
}

.link_line__li {
	display: inline-block;
	padding-right: 30px;
	box-sizing: border-box;
	min-width: 130px;
	line-height: 1.5;
}

/**************************
	.sup_area
*/
.sup_area {
	position: relative;
	top: 0;
	left: 0;
}

.sup {
	position: absolute;
	top: -.8em;
	left: 0;
	width: 100%;
	font-size: 0.625em;
	display: inline-block;
	text-align: center;
}

/**************************

*/
.dogear {
	position: relative;
	top: 0;
	left: 0;
	padding-top: 64px;
}

.dogear::before {
	position: absolute;
	top: 0;
	right: 0;
}

.dogear-red2::before {
	content: '';
	display: block;
	background: url("../img/icon_dogear-red2.png") 0 0 no-repeat transparent;
	background-size: 64px 64px;
	width: 64px;
	height: 64px;
}


.dogear-green::before {
	content: '';
	display: block;
	background: url("../img/icon_dogear-green.png") 0 0 no-repeat transparent;
	background-size: 64px 64px;
	width: 64px;
	height: 64px;
}

.dogear-blue::before {
	content: '';
	display: block;
	background: url("../img/icon_dogear-blue.png") 0 0 no-repeat transparent;
	background-size: 64px 64px;
	width: 64px;
	height: 64px;
}

.dogear-red::before {
	content: '';
	display: block;
	background: url("../img/icon_dogear-red.png") 0 0 no-repeat transparent;
	background-size: 64px 64px;
	width: 64px;
	height: 64px;
}

.dogear-gray::before {
	content: '';
	display: block;
	background: url("../img/icon_dogear-gray.png") 0 0 no-repeat transparent;
	background-size: 64px 64px;
	width: 64px;
	height: 64px;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Project

特定ページ専用、効果範囲が限定的な記述。  
コンテンツ内容に密接で、汎用性がなく、機能の付け替えを想定していない。


*/
.section-index {
	margin-bottom: 50px;
}

.section-index:last-child {
	margin-bottom: 50px;
}

.section-shadow {
	background: url("../img/bg_section-shadow.png") 0 0 repeat-x transparent;
	background-size: 10px 40px;
	padding-top: 70px;
}

.section-introduce {
	border-top: 1px solid #ccc;
	padding-top: 2em;
}

.h3 + .section > .h4:first-child {
	margin-top: 1.5em;
}

.hero {
	background-image: url("../img/bg_hero.jpg"), url("../img/bg_hero_repeat.png");
	background-position: center bottom;
	background-repeat: no-repeat, repeat-x;
	background-size: auto 660px;
	min-height: 660px;
}

.hero__container {
	box-sizing: border-box;
	padding-top: 130px;
	position: relative;
	top: 0;
	left: 0;
	height: 660px;
}

.hero__text {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	position: relative;
	top: 0;
	left: 0;
}

.hero__banner {
	display: block;
}

.hero__banner > img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 300px;
	max-height: 80px;
}

.hero__news_area {
	position: relative;
	top: 0;
	left: 0;
}

.hero__detail_link {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	display: inline-block;
	margin-left: 3em;
	border-bottom: 1px dashed #88b4e5;
	font-weight: bold;
}

.logo {
	display: block;
}

.logo img {
	display: block;
	width: 260px;
	height: 60px;
}

.logo-index {
	width: 260px;
	margin-bottom: 60px;
}

.logo a {
	display: block;
	height: 60px;
}

.logo-header {
	width: 180px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}

.logo-header img {
	padding-top: 18px;
	padding-left: 20px;
	padding-right: 20px;
	width: auto;
	height: 28px;
}

.inav {
	position: absolute;
	bottom: -65px;
	width: 605px;
	height: 327px;
	transition: .2s ease-in-out;
	transition-property: left, top, transform;
}

.inav__li {
	width: 240px;
	height: 220px;
	overflow: hidden;
	position: absolute;
}

.inav__li::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.inav__li:hover::after {
	animation: inav__border .2s ease-in-out forwards;
}

.inav__li-green {
	top: 0;
	left: 0;
}

.inav__li-green::after {
	content: '';
	display: block;
	background: url("../img/inav-green__border.png") 0 0 no-repeat transparent;
	background-size: 240px 220px;
	width: 240px;
	height: 220px;
}

.inav__li-blue {
	left: 182px;
	bottom: 0;
}

.inav__li-blue::after {
	content: '';
	display: block;
	background: url("../img/inav-blue__border.png") 0 0 no-repeat transparent;
	background-size: 240px 220px;
	width: 240px;
	height: 220px;
}

.inav__li-red {
	right: 0;
	top: 0;
}

.inav__li-red::after {
	content: '';
	display: block;
	background: url("../img/inav-red__border.png") 0 0 no-repeat transparent;
	background-size: 240px 220px;
	width: 240px;
	height: 220px;
}

.inav__a {
	margin: 7px;
	width: 226px;
	height: 206px;
	overflow: hidden;
	display: block;
	position: relative;
	top: 0;
	left: 0;
	z-index: 4;
}

.inav__txt {
	position: absolute;
	width: 226px;
	height: 426px;
	bottom: -4px;
	left: 0;
}

.inav__li:hover .inav__txt {
	animation: inav__txt .15s ease-in-out forwards;
}

.h2 {
	font-size: 100%;
	position: relative;
	top: 0;
	left: 0;
	margin-bottom: 1.3em;
	letter-spacing: .2em;
}

.h2-default {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 1.75em;
	font-weight: bold;
}

.h2-index__image {
	width: 100%;
	max-width: 470px;
	height: auto;
}

.h2-lower {
	margin-bottom: 0;
}

.h2-lower__header {
	position: relative;
	top: 0;
	left: 0;
}

.h2-lower__txt {
	display: block;
	width: 250px;
	height: 50px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
}

.h2-lower__num {
	display: block;
	width: 88px;
	height: 80px;
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 1;
}

.h3-default {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	font-size: 1.438em;
	font-weight: lighter;
	margin-bottom: .3em;
}

.h3-line {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 1.75em;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: .2em;
	border-bottom: 3px solid #86cab2;
	margin-bottom: 1em;
}

.h3-line-mb_large {
	margin-bottom: 2.4em;
}

.h3-line-green {
	border-color: #86cab2;
}

.h3-line-blue {
	border-color: #7cb9e6;
}

.h3-line-red {
	border-color: #ef8987;
}

.h3-line-gray {
	border-color: #ccc;
}

.h3-line-small {
	font-size: 1.5em;
}

.h3-column {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 1.75em;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: .2em;
	margin-bottom: .3em;
}

.h3-column img {
	margin-left: .3em;
	height: 12px;
}

.h3-introduce {
	font-family: "FOT-ロダン Pro M", "RodinPro-M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	font-size: 1em;
	margin-bottom: .7em;
	letter-spacing: .2em;
}

.h3-small {
	font-size: 1em;
	line-height: 1.5;
	margin-bottom: 1em;
}

.h4 {
	font-weight: bold;
}

.h4-profile {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 1em;
	padding-top: 1em;
	padding-bottom: .5em;
}

.case-new {
	position: relative;
	top: 0;
	left: 0;
}

.case-new::before {
	content: '';
	display: block;
	background: url("../img/balloon-new.png") 0 0 no-repeat transparent;
	background-size: 80px 84px;
	width: 80px;
	height: 84px;
	position: absolute;
	top: 0;
	right: 0;
	transition: transform cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s;
}

.case-new.init::before {
	-ms-transform: scale(0);
	    transform: scale(0);
}

.case-new.loaded::before {
	animation: balloon 1.7s infinite linear;
}

@keyframes balloon {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

.case__title__sub {
	display: block;
}

.case__title__sub-lower {
	position: absolute;
	top: 0;
	right: 0;
}

.case__title__main {
	display: block;
}

.case__title__main-index {
	box-sizing: border-box;
	overflow: visible;
	position: relative;
	top: -20px;
	left: 0;
}

.case__title__main-index img {
	max-width: 100%;
	position: relative;
	top: 0;
	left: 0;
	z-index: 3;
}

.case__title__main-lower {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 2em;
	line-height: 2;
	font-weight: bold;
	letter-spacing: .1em;
	display: block;
	clear: left;
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
}

.case__num {
	margin-right: .5em;
	float: left;
}

.case__num__img {
	display: block;
	width: 88px;
	height: 80px;
}

.case__info {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	font-size: 0.875em;
	display: block;
	height: 80px;
	padding-top: .8em;
	box-sizing: border-box;
}

.case__info .date {
	display: block;
	line-height: 1.2;
	margin-bottom: .4em;
	font-size: 0.875em;
}

.case__info .text {
	display: block;
	line-height: 1.5;
}

.case__info-lower {
	height: auto;
	padding-top: 0;
	font-size: 1.125em;
}

.case__info-lower .date {
	margin-top: .5em;
	font-size: 65%;
	text-align: right;
}

.case_slider_area {
	position: relative;
	top: 0;
	left: 0;
}

.case_slider .slick-slide:first-child .case {
	margin-right: 2px;
}

.case_slider__arrows {
	z-index: 10;
	font-weight: bold;
	cursor: pointer;
}

.case_slider__arrows-prev {
	position: absolute;
	bottom: 14px;
	left: 0;
	top: initial;
	top: auto;
}

.case_slider__arrows-next {
	position: absolute;
	bottom: 14px;
	right: 0;
	top: initial;
	top: auto;
	left: initial;
	left: auto;
}

.case_slider__arrows::before, .case_slider__arrows::after {
	background-image: url("../img/icon-left-green.png");
}

.case_slider__arrows-disabled {
	color: #ccc;
	transition: color .3s linear;
	pointer-events: none;
}

.case_slider__arrows-disabled::before, .case_slider__arrows-disabled::after {
	background-image: url("../img/icon-left-gray.png");
}

.em_box {
	position: relative;
	top: 0;
	left: 0;
	margin-right: .4em;
}

.em_box::after {
	content: '';
	display: block;
	position: absolute;
	top: -.4em;
	left: -.5em;
	width: 100%;
	height: 100%;
	padding: .25em .3em;
	box-sizing: content-box;
	border-radius: 8px;
}

.em_box-green::after {
	border: 3px solid #86cab2;
}

.em_box-blue::after {
	border: 3px solid #7cb9e6;
}

.em_box-red::after {
	border: 3px solid #ef8987;
}

.casec__left, .casec__right {
	float: left;
	width: 50%;
	box-sizing: border-box;
}

.casec__left {
	padding-right: 4px;
}

.casec__right {
	padding-left: 4px;
}

.casec__img {
	display: block;
	width: 100%;
}

.casec__footer {
	padding-top: 20px;
	position: relative;
	top: 0;
	left: 0;
}

.casec__person_name {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
}

.casec__person_name-left {
	text-align: left;
	float: left;
	width: 50%;
}

.casec__person_name-right {
	text-align: right;
	float: left;
	width: 50%;
}

.index_footer {
	background-color: #7ac3e2;
	color: #fff;
	text-align: center;
	padding: 40px 0;
}

.index_footer__title {
	margin: auto auto 15px;
	display: block;
	width: 202px;
	height: 22px;
}

.index_footer__text {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	margin-bottom: 1em;
}

.index_footer__email {
	width: 380px;
	margin-bottom: 20px;
}

.index_footer__submit {
	width: 190px;
}

.copyright {
	float: right;
	display: block;
	width: 196px;
	height: 13px;
	margin-top: 0.8em;
}

.header {
	position: fixed;
	height: 60px;
	width: 100%;
	border-bottom: 1px solid #ccc;
	background-color: #fff;
	z-index: 100;
	top: 0;
}

.header-start {
	transition: top .2s ease-in-out;
}

.header-show {
	top: 0;
}

.header-hide {
	top: -60px;
}

.use_header-show .header {
	visibility: hidden;
}

.header-visible {
	transition: none;
	visibility: visible;
	top: 0;
}

.header__button_area {
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	height: 60px;
	top: 0;
	right: 0;
	margin-right: 20px;
}

.header__button {
	display: block;
	margin-top: 10px;
	width: 40px;
	height: 40px;
}

.header__button:not(:first-child) {
	margin-left: 10px;
}

.header__button > img {
	display: block;
	width: 100%;
}

.hnav {
	transition: width 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
	height: 60px;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	display: -ms-flexbox;
	display: flex;
	width: 605px;
}

.hnav__li {
	display: -ms-flexbox;
	display: flex;
	width: 150px;
	border-left: 1px solid #ccc;
}

.hnav__li:last-child {
	border-right: 1px solid #ccc;
}

.hnav__a {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding-bottom: 5px;
}

.hnav__a-connect {
	background: url("../img/border-hnav-connect.png") 0 bottom no-repeat transparent;
	background-size: 100% 3px;
}

.hnav__a-connect.selected, .hnav__a-connect:hover, .hnav__a-connect:focus, .hnav__a-connect:active {
	background-color: #e7f8f2;
}

.hnav__a-search {
	background: url("../img/border-hnav-search.png") 0 bottom no-repeat transparent;
	background-size: 100% 3px;
}

.hnav__a-search.selected, .hnav__a-search:hover, .hnav__a-search:focus, .hnav__a-search:active {
	background-color: #e9f3fb;
}

.hnav__a-develop {
	background: url("../img/border-hnav-develop.png") 0 bottom no-repeat transparent;
	background-size: 100% 3px;
}

.hnav__a-develop.selected, .hnav__a-develop:hover, .hnav__a-develop:focus, .hnav__a-develop:active {
	background-color: #ffefef;
}

.hnav__a-event {
	padding-bottom: 2px;
	border-bottom: 3px solid #e7e7e7;
}

.hnav__a-event.selected, .hnav__a-event:hover, .hnav__a-event:focus, .hnav__a-event:active {
	background-color: #f5f5f5;
}

.hnav__a-news {
	background: linear-gradient(135deg, #fff7b0 0%, #fffff7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff7b0', endColorstr='#fffff7',GradientType=1 );
	background-size: 100% 3px;
}

.hnav__txt {
	display: block;
	margin: auto;
	width: auto;
	height: 55px;
}

.hnav__li-news .hnav__txt {
	height: 60px;
}

.hnav__li-news img {
	transition: .2s ease-in-out;
}

.hnav__li-news:hover img {
	opacity: .6;
}

.person__img {
	display: block;
	max-width: 100%;
}

.person__title {
	position: relative;
	top: 0;
	left: 0;
}

.person__title::before, .person__title::after {
	content: '';
	display: table;
}

.person__title::after {
	clear: both;
}

.person__name {
	position: absolute;
	top: -.7em;
	left: .7em;
	font-size: 1.75em;
	letter-spacing: .2em;
	line-height: 1;
	display: inline-block;
}

.person__name__node {
	background-color: #fff;
	margin-bottom: .3em;
	padding: .3em .25em;
	display: inline-block;
	border-bottom: 1px solid #bfbfbf;
}

.person__name__node-small {
	font-size: 95%;
}

.person__name-dc1_hero {
	top: -4.5em;
	right: -13.3em;
	left: auto;
}

.person__name-right {
	left: auto;
	right: .7em;
}

.person__name-default {
	position: static;
	margin-top: -.7em;
	margin-left: .7em;
}

.person__name-default_right {
	text-align: right;
	position: static;
	margin-top: -.7em;
	margin-right: .7em;
}

.person__info {
	margin-top: 2.4em;
	float: right;
	width: auto;
}

.person__info .person__detail {
	float: right;
}

.person__info__label {
	font-size: 0.75em;
	width: 7em;
	padding-left: 0;
}

.person__info__label-3 {
	letter-spacing: 1.1em;
}

.person__info__txt {
	font-size: 0.75em;
}

.person__info__left {
	float: left;
}

.person__detail {
	margin-top: 1em;
	margin-left: 20px;
	margin-right: 20px;
}

.person__detail table {
	font-size: 0.75em;
	width: 300px;
}

.person__detail table th {
	width: 9em;
}

.person__detail table td {
	width: 20em;
}

.person__detail table._right {
	float: right;
}

@media only screen and (max-width: 1040px) {
	.person__name {
		font-size: 1.5em;
	}
	.person__name__node-small {
		font-size: 90%;
	}
}

@media only screen and (max-width: 880px) {
	.person__name {
		font-size: 1.25em;
	}
	.person__name__node-small {
		font-size: 90%;
	}
}

.column_box {
	border: 3px solid #8cccb1;
	border-radius: 8px;
	padding: 2em;
	position: relative;
	top: 0;
	left: 0;
}

.column_box-use_right_img {
	padding-right: 330px;
}

.column_box__image {
	position: absolute;
	bottom: 2em;
	right: 2em;
	width: 283px;
	height: 218px;
}

.column_box-step {
	padding-bottom: 0;
}

.column_box-green {
	border: 3px solid #8cccb1;
}

.column_box-blue {
	border: 3px solid #88b4e5;
}

.column_box-red {
	border: 3px solid #e78888;
}

.card {
	color: #333;
	display: block;
	padding: 1em;
	border: 1px solid #ccc;
	width: 300px;
	box-sizing: border-box;
}

.card_list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: stretch;
	    align-items: stretch;
}

.card + .card {
	margin-left: 20px;
}

.card__img {
	display: block;
	margin: auto;
	width: 240px;
	height: 90px;
}

.card__info {
	padding-top: .7em;
}

.card__title {
	font-size: 0.875em;
	line-height: 1.2;
	margin-bottom: .5em;
}

.card__url {
	font-size: 0.75em;
	text-decoration: none;
	line-height: 1.2;
	margin-bottom: .5em;
	color: inherit;
}

.card:hover, .card:focus {
	outline: 4px solid #86cab2;
	color: #8cccb1;
}

.case_footer {
	margin-top: 4em;
	margin-bottom: 4em;
}

.case_footer__p {
	text-align: center;
}

.case_footer__button {
	min-width: 16em;
}

.footer {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	border-top: 1px solid #ccc;
	padding-top: .2em;
	padding-bottom: .2em;
/*	margin-top: 4em;*/
}

.footer .link_line {
	float: left;
}

.index_footer + .footer {
	margin-top: 0;
}

.talk_area2 .h3-line {
	margin-bottom: 60px;
}

.notes {
	background: #f3f3f3;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 60px;
	padding: 30px;
}

.talk {
	display: -ms-flexbox;
	display: flex;
	position: relative;
	top: 0;
	left: 0;
}

.talk:not(:last-child) {
	margin-bottom: 60px;
}

.talk-1:not(:last-child)::after, .talk-2:not(:last-child)::after {
	content: '';
	display: block;
	background-color: #aaa;
	width: 30px;
	height: 1px;
	position: absolute;
	bottom: -45px;
	left: 50%;
	-ms-transform: translateX(-50%);
	    transform: translateX(-50%);
}

.talk-1 > .talk__name, .talk-3 > .talk__name, .talk-5 > .talk__name, .talk-6 > .talk__name, .talk-7 > .talk__name, .talk-8 > .talk__name, .talk-12 > .talk__name , .talk-13 > .talk__name {
	-ms-flex-order: 0;
	    order: 0;
}

.talk-1 > .talk__content, .talk-3 > .talk__content, .talk-5 > .talk__content, .talk-6 > .talk__content, .talk-7 > .talk__content, .talk-8 > .talk__content, .talk-12 > .talk__content, .talk-13 > .talk__content {
	-ms-flex-order: 1;
	    order: 1;
}

.talk-2 > .talk__name, .talk-4 > .talk__name, .talk-9 > .talk__name, .talk-10 > .talk__name {
	-ms-flex-order: 1;
	    order: 1;
}

.talk-2 > .talk__content, .talk-4 > .talk__content, .talk-9 > .talk__content, .talk-10 > .talk__content {
	-ms-flex-order: 0;
	    order: 0;
}

.talk__name {
	font-size: 0.875em;
	min-width: 5.5em;
}

.talk__name-1 {
	text-align: left;
}

.talk__name-1::after {
	content: '';
	display: block;
	background: url("../img/icon_person1.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}

.talk__name-3 {
	text-align: left;
}

.talk__name-3::after {
	content: '';
	display: block;
	background: url("../img/icon_person3.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}

.talk__name-5 {
	text-align: left;
}

.talk__name-5::after {
	content: '';
	display: block;
	background: url("../img/icon_person5.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}

.talk__name-6 {
	text-align: left;
}

.talk__name-6::after {
	content: '';
	display: block;
	background: url("../img/icon_person6.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}

.talk__name-7 {
	text-align: left;
}

.talk__name-7::after {
	content: '';
	display: block;
	background: url("../img/icon_person7.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}






.talk__name-8 {
	text-align: left;
}

.talk__name-8::after {
	content: '';
	display: block;
	background: url("../img/icon_person8.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}

.talk__name-2 {
	text-align: right;
}

.talk__name-2::after {
	content: '';
	display: block;
	background: url("../img/icon_person2.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-left: auto;
	margin-right: 0;
	margin-top: .5em;
}

.talk__name-4 {
	text-align: right;
}

.talk__name-4::after {
	content: '';
	display: block;
	background: url("../img/icon_person4.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-left: auto;
	margin-right: 0;
	margin-top: .5em;
}

.talk__name-9 {
	text-align: right;
}

.talk__name-9::after {
	content: '';
	display: block;
	background: url("../img/icon_person9.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-left: auto;
	margin-right: 0;
	margin-top: .5em;
}

.talk__name-10 {
	text-align: right;
}

.talk__name-10::after {
	content: '';
	display: block;
	background: url("../img/icon_person10.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-left: auto;
	margin-right: 0;
	margin-top: .5em;
}




.talk__name-12 {
	text-align: left;
}

.talk__name-12::after {
	content: '';
	display: block;
	background: url("../img/icon_person12.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}

.talk__name-13 {
	text-align: left;
}

.talk__name-13::after {
	content: '';
	display: block;
	background: url("../img/icon_person13.png") 0 0 no-repeat transparent;
	background-size: 54px 54px;
	width: 54px;
	height: 54px;
	margin-top: .5em;
}














.talk__name-no_icon::after {
	content: none;
}

.talk__content {
	position: relative;
	top: 0;
	left: 0;
	padding: 0 1em;
}

.talk__content-1 {
	border-left: 2px solid #c2bfea;
	padding-left: 160px;
	padding-right: 240px;
}

.talk__content-2 {
	border-right: 2px solid #dfd3cf;
	padding-right: 160px;
	padding-left: 240px;
}

.talk__content-left {
	border-left: 2px solid #c2b8ad;
	padding-left: 36px;
	padding-right: 115px;
}

.talk__content-right {
	border-right: 2px solid #dfd3cf;
	padding-left: 115px;
	padding-right: 36px;
	color: #765c5f;
}

.talk__content-none {
	padding: 0 115px;
}

.talk__content-none .nomoto {
	background: #fcecfa;
	padding: 3px 0;
}

.talk__content-question {
	color: #777;
	padding-left: 115px;
	padding-right: 115px;
	position: relative;
	top: 0;
	left: 0;
}

.talk__content-question:before {
	content: '';
	display: block;
	height: 1px;
	width: 77px;
	background-color: #ccc;
	position: absolute;
	top: 1em;
	left: 0;
}

.talk__content-3 {
	border-color: #c2b8ad;
}

.talk__content-4 {
	border-color: #dfd3cf;
}

.talk__content-5 {
	border-color: #e1b5ac;
}

.talk__content-10 {
	border-color: #FFFFFF;
}

.talk__content-11 {
	border-color: #FFFFFF;
	margin-bottom: 150px;
	font-weight: 900;
	font-size: 1.1rem;
}



.talk__content-6 {
	border-color: #d0a87e;
}

.talk__content-7 {
	border-color: #7c5f4e;
}

.talk__content-8 {
	border-color: #e3b893;
}

.talk__content-9 {
	border-color: #7d97af;
	color: #345574;
}

.talk__content-image1 {
	background: url("../../search/case001/img/talk1.jpg") left bottom no-repeat transparent;
	background-size: 118px 203px;
	min-height: 203px;
}

.talk__content-image2 {
	background: url("../../search/case001/img/talk2.jpg") right bottom no-repeat transparent;
	background-size: 157px 204px;
	min-height: 204px;
}

.talk__image {
	position: absolute;
	bottom: 0;
}

.talk__image-1 {
	left: 0;
}

.talk__image-2 {
	right: 0;
}

.talk__hero {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3em;
}

.talk__hero img {
	max-width: 100%;
	display: block;
}

.talk__hero p, .talk__hero a {
	color: #999;
}

.talk__hero a:hover {
	opacity: .6;
}

.talk__border {
	border: 1px solid #ccc;
	padding: 25px;
}

.dc1_f_table {
	width: auto;
}

.dc1_f_table th,
.dc1_f_table td {
	padding-right: 4em;
}

.dc1_f_table .filemaker_logo {
	margin-top: .5em;
	display: block;
}

.tb_ititle {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
}

.profile__header {
	display: table;
}

.profile__image {
	display: table-cell;
	width: 160px;
	height: 160px;
}

.profile__image img {
	display: block;
	width: 100%;
}

.profile__name {
	padding-left: 2em;
	display: table-cell;
	vertical-align: middle;
}

.profile__name__name {
	font-family: "FOT-ロダン Pro DB", "RodinPro-DB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 1.25em;
	line-height: 1.5;
}

.profile__name__handle {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	font-size: 0.875em;
	line-height: 1.5;
}

.share_button {
	float: right;
	margin-top: -30px;
	text-align: right;
	vertical-align: middle;
}

.share_button > * {
	vertical-align: bottom;
}

.fb_iframe_widget_lift {
	right: 0;
}

#mailmag {
	height: 150px;
}

.form-alert li {
	margin: 0;
}

.btn_loading {
	background-size: 30px 30px;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	-webkit-animation: animate-stripes 3s linear infinite;
	-moz-animation: animate-stripes 3s linear infinite;
}

.news_panel {
	background: url("../img/bg-news_area.png") 0 0 no-repeat rgba(255, 255, 255, 0.8);
	background-size: 70px 30px;
	padding: 30px 20px 20px;
	box-sizing: border-box;
	height: 200px;
	width: 450px;
	height: 160px;
}

.blog_panel {
	background: url("../img/bg-blog_area.png") 0 0 no-repeat rgba(255, 255, 255, 0.8);
	background-size: 70px 30px;
}

.news_area {
	position: relative;
	top: 0;
	left: 0;
	margin-left: 25px;
	margin-right: 25px;
}

.news_area .slick-prev,
.news_area .slick-next {
	z-index: 9 !important;
}

.news_area .news_list {
	overflow: visible;
}

.news_list__line {
	margin-left: 12.5px;
	margin-right: 12.5px;
}

.news_list__body {
	clear: both;
}

.news_list__date {
	font-size: 0.75em;
	float: left;
}

.news_list__labels {
	margin-left: 7px;
	float: left;
	position: relative;
	top: 2px;
	left: 0;
}

.news_list__label {
	float: left;
	display: inline-block;
	position: relative;
	top: 0;
	left: 0;
	height: 18px;
}

.news_list__label:not(:first-child) {
	margin-left: 4px;
}

.news_list__label-connect {
	width: 60px;
}

.news_list__label-connect::before {
	content: '';
	display: block;
	background: url("../img/news_list__label-connect.png") 0 0 no-repeat transparent;
	background-size: 60px 18px;
	width: 60px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

.news_list__label-search {
	width: 60px;
}

.news_list__label-search::before {
	content: '';
	display: block;
	background: url("../img/news_list__label-search.png") 0 0 no-repeat transparent;
	background-size: 60px 18px;
	width: 60px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

.news_list__label-develop {
	width: 60px;
}

.news_list__label-develop::before {
	content: '';
	display: block;
	background: url("../img/news_list__label-develop.png") 0 0 no-repeat transparent;
	background-size: 60px 18px;
	width: 60px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

.news_list__label-up {
	width: 32px;
}

.news_list__label-up::before {
	content: '';
	display: block;
	background: url("../img/news_list__label-up.png") 0 0 no-repeat transparent;
	background-size: 32px 18px;
	width: 32px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

.news_list__content {
	height: 83px;
	overflow: hidden;
}

.news_list__content a {
	display: block;
	font-size: 0.875em;
	color: #333;
	line-height: 2;
}

.news_list__content a > .border {
	display: inline;
	border-bottom: 1px dotted #333;
}

.section .blog_list__title {
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 8px;
}

.section .blog_list__detail {
	overflow: hidden;
	width: 100%;
}

.section .blog_list__detail p {
	font-size: 12px;
	height: 40.8px;
	line-height: 1.7;
	position: relative;
}

.section .blog_list__detail p:before, .section .blog_list__detail p:after {
	background: #fff;
	position: absolute;
}

.section .blog_list__detail p:before {
	content: "...";
	top: 20.4px;
	right: 0;
	padding-left: 6px;
}

.section .blog_list__detail p:after {
	content: "";
	height: 100%;
	width: 100%;
}

.modal {
	display: none;
}

.modal_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
}

.modal-show {
	display: block;
}

.dm {
	background-color: #fff;
	padding: 40px;
	border-radius: 8px;
	box-sizing: border-box;
	z-index: 1001;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90%;
	height: 90%;
	max-width: 648px;
	overflow: auto;
	-ms-transform: translate3D(-50%, -200%, 0);
	    transform: translate3D(-50%, -200%, 0);
	opacity: 1;
}

.dm.start_animation {
	transition: transform .25s ease-out, opacity .25s ease-out;
}

.dm-show {
	-ms-transform: translate3D(-50%, -50%, 0);
	    transform: translate3D(-50%, -50%, 0);
	opacity: 1;
}

.dm-hide {
	-ms-transform: translate3D(-50%, 100%, 0);
	    transform: translate3D(-50%, 100%, 0);
	opacity: 0;
}

.dm__button_close {
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}

.dm__button_close > img {
	display: block;
	width: 100%;
}

.dm__title {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.dm__exp_img {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.dm__text {
	font-size: 0.938em;
}

.member {
	text-align: center;
	color: #333;
	min-height: 230px;
	box-sizing: border-box;
	padding-top: 20px;
	display: block;
	transition: background-color .2s linear, transform .1s linear;
	border-radius: 5px;
}

.member-off {
	pointer-events: none;
}

.member:hover {
	background-color: #f5f5f5;
	color: #333;
	-ms-transform: scale(1.05);
	    transform: scale(1.05);
}

.member__handle {
	font-size: 0.875em;
	font-weight: bold;
	margin-bottom: .5em;
}

.member__image {
	margin-bottom: 15px;
	transition: transform .2s linear;
}

.member:hover .member__image {
	-ms-transform: scale(1.1);
	    transform: scale(1.1);
}

.member__image > img {
	display: block;
	width: 80px;
	margin: auto;
}

.member__image2 > img {
	display: block;
	width: 190px;
	margin: auto;
}

.member__name_ja {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	margin-bottom: 7px;
	font-size: 1.25em;
	line-height: 1;
}

.member__name_ja-company {
	font-size: 14px;
	line-height: 1.5;
}

.member__name_en > img {
	display: block;
	height: 10px;
	margin: auto;
}

.member__modal {
	width: 100%;
	max-width: 660px;
}

.mdetail {
	padding: 40px 20px;
}

.mdetail__sub::before, .mdetail__sub::after {
	content: '';
	display: table;
}

.mdetail__sub::after {
	clear: both;
}

.mdetail__sub__head {
	padding-bottom: 18px;
	position: relative;
	top: 0;
	left: 0;
}

.mdetail__sub__head::after {
	content: '';
	display: block;
	height: 1px;
	width: 20px;
	position: absolute;
	background-color: #ccc;
	bottom: 0;
	left: 50%;
	-ms-transform: translateX(-50%);
	    transform: translateX(-50%);
}

.mdetail__sub__body {
	padding-top: 18px;
}

.mdetail__main {
	font-size: 0.75em;
	line-height: 2;
	text-align: left;
}

.mdetail__main__head {
	padding-bottom: 20px;
}

.mdetail__main__body {
	color: #666;
}

.mdetail__image {
	margin-bottom: 15px;
}

.mdetail__image > img {
	display: block;
	width: 114px;
	margin: auto;
}

.mdetail__name_ja {
	font-family: "FOT-ロダン Pro L", "RodinPro-L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: lighter;
	margin-bottom: 7px;
	font-size: 1.25em;
	line-height: 1;
}

.mdetail__name_ja-company {
	font-size: 14px;
	line-height: 1.5;
}

.mdetail__name_en > img {
	display: block;
	height: 10px;
	margin: auto;
}

.mdetail__handle {
	font-size: 0.875em;
	font-weight: bold;
	line-height: 1.2;
}

@media only screen and (min-width: 1280px) {
	.logo-header {
		margin-left: calc((100% - 1280px) / 2);
	}
	.header__button_area {
		margin-right: calc((100% - 1280px) / 2);
	}
}

.secondlevel__wrapper {
	position: absolute;
	top: 61px;
	left: 0;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 0px solid #7cb9e6;
	max-height: 0;
	transition: opacity .1s ease-out, max-height .1s ease-out;
}

.on_hover .secondlevel__wrapper {
	max-height: 153px;
	box-sizing: border-box;
}

.hnav__li-connect.on_hover .secondlevel__wrapper {
	background-color: #E7F8F2;
	border-bottom: 3px solid #86CAB2;
}

.hnav__li-search.on_hover .secondlevel__wrapper {
	background-color: #e9f3fb;
	border-bottom: 3px solid #7cb9e6;
}

.hnav__li-develop.on_hover .secondlevel__wrapper {
	background-color: #ffefef;
	border-bottom: 3px solid #ea8989;
}

.hnav__li-event.on_hover .secondlevel__wrapper {
	background-color: #fff;
	border-bottom: 3px solid #E7E7E7;
}

.secondlevel__inner {
	margin-left: auto;
	margin-right: auto;
	height: 153px;
	box-sizing: border-box;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}

.secondlevel__content-box {
	width: 220px;
	height: 90px;
	display: inline-block;
}

.secondlevel__content-box2 {
	width: 558px;
	height: 95px;
	display: inline-block;
}

.secondlevel__content-box:not(:last-child) {
	margin-right: 20px;
}

.secondlevel__content-box a {
	display: block;
}

.secondlevel__content-box a:hover {
	opacity: 0.7;
}

.secondlevel__content-box a img {
	width: 100%;
	height: 100%;
}

.secondlevel__content-box2 a img {
    width: 100%;
    height: 100%;
}

.connect_footer__head {
	border-bottom: 1px solid #86cab2;
	padding-bottom: .3em;
	margin-bottom: 20px;
	font-size: 0.875em;
}

.connect_footer__head .icon {
	height: 30px;
	position: relative;
	top: 8px;
	left: 0;
}

.search_footer__head {
	border-bottom: 1px solid #7cb9e6;
	padding-bottom: .3em;
	margin-bottom: 20px;
	font-size: 0.875em;
}

.search_footer__head .icon {
	height: 30px;
	position: relative;
	top: 8px;
	left: 0;
}

.develop_footer__head {
	border-bottom: 1px solid #ef8987;
	padding-bottom: .3em;
	margin-bottom: 20px;
	font-size: 0.875em;
}

.develop_footer__head .icon {
	height: 30px;
	position: relative;
	top: 8px;
	left: 0;
}

.banner_list-footer li {
	width: 210px;
	height: 90px;
}

#advertisement_area {
	width: 100%;
}

#advertisement_area .advertisement_news {
	position: relative;
}

#advertisement_area .advertisement_news .inner {
	/*border-bottom: 2px solid #ccc;*/
	text-align: center;
}

#advertisement_area .advertisement_news .inner a {
	display: block;
	padding: 10px 0;
	transition: .1s ease-in-out;
}

#advertisement_area .advertisement_news .inner a:hover {
	opacity: .5;
}

#advertisement_area .advertisement_news .inner img {
	max-width: 980px;
	width: 100%;
	vertical-align: bottom;
}

#advertisement_area .advertisement_news .bg {
	background: url("/common/img/advertisement_news_bg1.png") top center;
	background-size: auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -2;
}

#advertisement_area .advertisement_news .grd {
	background: linear-gradient(315deg, rgba(255, 247, 176, 0.6), rgba(176, 255, 247, 0.6));
	background-size: 600% 600%;
	animation: AnimationName 5s ease infinite;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
}

@keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#advertisement_area .advertisement_event2017 {
	position: relative;
}

#advertisement_area .advertisement_event2017 .inner {
	text-align: center;
}

#advertisement_area .advertisement_event2017 .inner a {
	display: block;
	padding: 40px;
	transition: .3s ease-in-out;
}

#advertisement_area .advertisement_event2017 .inner a:hover {
	opacity: .7;
}

#advertisement_area .advertisement_event2017 .inner img {
	max-width: 1200px;
	width: 100%;
}

#advertisement_area .advertisement_event2017 .bg {
	background: url("/event2017/img/bg1.jpg") no-repeat top center;
	background-size: 100%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -2;
}

#advertisement_area .advertisement_event2017 .grd {
	background: linear-gradient(315deg, rgba(94, 223, 142, 0.6), rgba(84, 188, 238, 0.6), rgba(56, 139, 236, 0.6));
	background-size: 600% 600%;
	animation: AnimationName 10s ease infinite;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
}

@keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}