@charset "UTF-8";
@keyframes slide_index {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -2100px 0;
	}
}

@keyframes slide_index {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -2100px 0;
	}
}

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

## 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: #000;
	line-height: 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: #ec1c24;
	-webkit-text-decoration-color: #ec1c24;
	        text-decoration-color: #ec1c24;
	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: #00357b;
	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.813em;
}

/*

<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>

*/
.no_text {
	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, .rp_button: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 slide_index {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -2100px 0;
	}
}

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

## Component - Base

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


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

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

## - Heading
*/
/*

<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>

*/
.h3-default {
	line-height: 1.5;
	margin-bottom: 1em;
}

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

.h-line {
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
	margin-bottom: 30px;
	line-height: 1.4;
}

.h-line .line {
	background: url("../img/bg_highlighter.png") 0 14px repeat-x transparent;
}

/**************************
.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: #ec1c24;
}

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

## - a リンク設定

*/
/*

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

基本のリンク設定

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

*/
a {
	text-decoration: none;
	border-bottom: 1px dotted #00357b;
	color: #2c2c96;
}

a:hover {
	color: #6d5dfc;
}

a.link {
	text-decoration: underline;
	color: #00357b;
	font-weight: bold;
}

a.link:hover, a.link:focus, a.link:active {
	color: #6d5dfc;
}

.url {
	text-decoration: underline;
	color: #000;
	word-break: break-all;
}

.url:hover, .url:focus, .url:active {
	color: #6d5dfc;
}

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: #000;
}

a.black:hover,
a:hover .black,
a:hover .news_list__content,
a:hover .banner__ex {
	color: #2c2c96;
}

/*

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

	<p class="anotation">テキスト</p>

*/
.anotation {
	line-height: 1.5;
	padding-left: 1.5em;
	margin: 1em 0;
	position: relative;
	top: 0;
	left: 0;
	font-size: 0.813em;
}

.anotation::before {
	content: '※';
	width: 1em;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.anotation-inline {
	display: inline-block;
}

/*

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

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

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

*/
.outlink,
.icon_out,
.icon_outlink,
.icon_ext {
	position: relative;
	top: 0;
	left: 0;
	overflow: visible;
}

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

.icon_x {
	width: 15px;
	height: 15px;
	margin-left: .7em;
	margin-right: .7em;
}

.icon_x-index {
	width: 10px;
	height: 10px;
}

.icon_pen {
	padding-left: 36px;
	min-height: 28px;
}

.icon_pen::before {
	content: '';
	display: block;
	background: url("../img/icon_pen.png") 0 0 no-repeat transparent;
	background-size: 28px 28px;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	left: 0;
}

/*

<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;
	color: #00357b;
	font-weight: normal;
}

.link_arrow::before {
	content: '';
	display: inline-block;
	background: url("../img/arrow_right.png") 0 center no-repeat transparent;
	background-size: 6px 7px;
	width: 6px;
	height: 7px;
	position: relative;
	top: -0.1em;
	left: 0;
	margin-right: .4em;
}

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 {
	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;
}

.rp_button {
	max-width: 180px;
	background-color: #118ccf;
	color: #fff;
	display: block;
	margin: auto;
	font-size: 0.875em;
	line-height: 30px;
	min-height: 30px;
	border-bottom: 0 none;
}

.rp_button::before {
	content: '';
	display: inline-block;
	background: url("../img/icon_memo.png") 0 center no-repeat transparent;
	background-size: 11px 13px;
	width: 11px;
	height: 13px;
	position: relative;
	top: 0.1em;
	left: 0;
	margin-right: .4em;
}

.rp_button-off {
	background-color: #bdbcbc;
	pointer-events: none;
}

.rp_button-off::before {
	display: none;
}

.rp_button:hover {
	color: #fff;
}

/*

<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: #00357b;
}

.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: #000;
	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: #000;
	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: #000;
	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: #000;
	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: #000;
	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: #000;
	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: #000;
	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: #ec1c24;
	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: #ec1c24;
	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: #6d5dfc;
	font-size: 0.875em;
	line-height: 1.2;
}

.breadcrumbs a {
	color: #000;
	text-decoration: underline;
}

.breadcrumbs a:hover {
	color: #6d5dfc;
	text-decoration: none;
}

.breadcrumbs li::after {
	content: '＞';
	font-size: 0.875em;
	color: #000;
	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.5;
	padding: .5em .3em;
}

table th {
	font-size: 0.938em;
	text-align: left;
	width: 7.5em;
	color: #00357b;
	font-weight: bold;
}

table td {
	font-size: 0.875em;
}

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: #ec1c24;
}

.dp_table_top {
	color: #ec1c24;
	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;
}

.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.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: 9em;
}

/**************************
 .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 a {
	border: 0 none;
}

.scroll_to_top img {
	width: 70px;
	height: 70px;
}

/*

<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: #ec1c24;
	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;
}

.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;
}

/*

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

	<ul class="news_list">
		<li>
			<a class="black" href="#">
				<div class="pre_area"><span class="date">2015/10/08</span><span class="cate"><img alt="休診" src="/common/img/label_kyuushin.png"></span></div>
				<div class="main_area"><span class="title"><span class=""><span class="">10/5（月）休診～AＭ&#12288;内科</span></span>
					</span>
				</div>
			</a>
		</li>
		<li>
			<a class="black" target="_blank" href="#">
				<div class="pre_area"><span class="date">2015/08/28</span><span class="cate"><img alt="講演会" src="/common/img/label_kouennkai.png"></span></div>
				<div class="main_area"><span class="title"><span class=""><span class="icon_pdf_right">講演会のお知らせ</span></span>
					</span>
				</div>
			</a>
		</li>
	</ul>

*/
.news_list {
	display: table;
	width: 100%;
	box-sizing: border-box;
}

.news_list__line {
	border-bottom: 0 none;
	display: block;
	padding-top: 7px;
	padding-bottom: 7px;
	min-height: 23px;
	position: relative;
	top: 0;
	left: 0;
}

.news_list__line > div {
	display: table-cell;
}

.news_list__line:first-child {
	padding-top: 0;
}

.news_list__date {
	width: 80px;
	padding-right: 1em;
	vertical-align: top;
	line-height: 30px;
	color: #00357b;
	font-weight: bold;
	font-size: 0.875em;
	line-height: 1.7;
}

.news_list__ex {
	vertical-align: top;
	line-height: 30px;
	min-height: 30px;
	color: #000;
	font-size: 0.875em;
	line-height: 1.7;
}

.news_list__ex__underline {
	border-bottom: 1px dotted #00357b;
}

a:hover .news_list__ex {
	color: #2e789e;
}

.share_button {
	margin-top: -30px;
	text-align: center;
	vertical-align: middle;
}

.share_button > * {
	vertical-align: bottom;
}

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

## Project

特定ページ専用、効果範囲が限定的な記述。  
コンテンツ内容に密接で、汎用性がなく、機能の付け替えを想定していない。


*/
.section {
	padding: 0;
	z-index: 1;
	background-color: #fff;
}

.section-main {
	z-index: 1;
	box-sizing: border-box;
	margin-top: 60px;
	padding-top: 60px;
	background-color: transparent;
}

.section-main .main_text {
	display: block;
	margin: auto;
	height: 465px;
}

.section-main .main_text-mm {
	height: 166px;
}

.section-main::before {
	content: '';
	display: block;
	width: 100%;
	height: 660px;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	background: url("../img/bg-main.jpg") center 0 repeat-x transparent;
}

.section__title {
	position: relative;
	top: 0;
	left: 0;
	height: 140px;
	width: 100%;
}

.section__title > img {
	display: block;
	margin: auto;
	padding-top: 47px;
	width: 350px;
}

.section__title-news {
	background: url("../img/bg-news.jpg") center 0 repeat-x transparent;
	background-size: auto 100%;
}

.section__title-info {
	background: url("../img/bg-info.jpg") center 0 repeat-x transparent;
	background-size: auto 100%;
}

.section__title-partners {
	background: url("../img/bg-partners.jpg") center 0 repeat-x transparent;
	background-size: auto 100%;
}

.section__title-speakers {
	background: url("../img/bg-speakers.jpg") center 0 repeat-x transparent;
	background-size: auto 100%;
}

.section__title-timetable {
	background: url("../img/bg-timetable.jpg") center 0 repeat-x transparent;
	background-size: auto 100%;
}

.section__title-entry {
	background: url("../img/bg-entry.jpg") center 0 repeat-x transparent;
	background-size: auto 100%;
}

.section__content {
	padding-top: 60px;
	padding-bottom: 60px;
}

.section__content-mm {
	padding-top: 0;
}

.section__content-intro {
	padding-top: 0;
	position: relative;
	top: 0;
	left: 0;
	display: none;
}

.section__content-intro::before {
	content: '';
	display: block;
	background: url("../img/bg-intro.png") 0 0 no-repeat transparent;
}

.section p.showmore {
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 30px;
	line-height: 1;
}

.header {
	font-family: "FOT-UD角ゴ_ラージ Pr6 M", "UDKakugo_LargePr6-M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	z-index: 999;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.1);
	height: 60px;
	top: 0;
}

.header-fixed {
	position: fixed;
}

.header__a-button {
	background-color: #ec1c24;
	color: #fff;
}

.header__a-button:hover {
	color: #fff;
}

.contact_button {
	font-family: "FOT-UD角ゴ_ラージ Pr6 M", "UDKakugo_LargePr6-M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	background-color: #ec1c24;
	border-bottom: 0 none;
	color: #fff;
	display: inline-block;
	padding: 18px 1.5em;
	min-height: 60px;
	line-height: 1.5;
	font-size: 1em;
	box-sizing: border-box;
}

.contact_button:hover {
	color: #fff;
}

.footer {
	width: 100%;
	background-color: #e5e5e5;
	color: #666;
	padding: 15px 0;
}

.copyright {
	display: block;
	margin: auto;
	width: 350px;
	max-width: 100%;
}

.person {
	padding-bottom: 60px;
	line-height: 1.5;
}

.person__face {
	width: 160px;
	display: block;
	margin: auto auto 1.5em;
}

.person__name {
	width: 160px;
	display: block;
	margin: auto auto 1.5em;
}

.person__handle {
	color: #4c4c4c;
	font-size: 0.813em;
	text-align: center;
	margin-bottom: 1.5em;
}

.person__ex {
	font-size: 0.875em;
	line-height: 2;
	margin-bottom: 1.5em;
}

.person__link {
	font-size: 0.875em;
}

.person__link > li {
	margin-bottom: .5em;
}

.person__link-center {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.google_map {
	width: 400px;
	height: 400px;
}

.time_group {
	margin-bottom: 3em;
	text-align: center;
}

.time_group__time {
	font-family: "FOT-UD角ゴ_ラージ Pr6 M", "UDKakugo_LargePr6-M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	position: relative;
	margin-bottom: 2em;
	top: 0;
	left: 0;
}

.time_group__time::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	top: 2.35em;
	left: 0;
}

.time_group__time > span {
	position: relative;
	top: 0;
	left: 50%;
	z-index: 1;
	display: block;
	width: 5em;
	height: 5em;
	text-align: center;
	line-height: 5em;
	background-color: #fcdded;
	border-radius: 2.5em;
	-ms-transform: translateX(-50%);
	    transform: translateX(-50%);
}

.time_group__title {
	font-size: 1.125em;
	color: #00357b;
	margin-bottom: 1em;
	line-height: 1.5;
}

.time_group__comment {
	font-size: 0.875em;
	color: #333;
	margin-bottom: 1em;
	line-height: 1.5;
	font-weight: bold;
	border: 1px solid #ddd;
	padding: 10px 15px;
	border-radius: 10px;
	display: inline;
}

.time_group__comment > .exp {
	font-weight: normal;
	color: #666;
	line-height: 1.7;
	padding-right: 10px;
}

.time_group__comment.alt {
	display: block;
}

.time_group__speaker {
	margin-top: 1em;
}

.time_group__speaker > .exp {
	display: block;
	font-size: 0.813em;
	color: #666;
	line-height: 1.7;
}

.partner_area {
	border-top: 1px dotted #9d9d9d;
}

.partner {
	box-sizing: border-box;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	text-align: center;
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	padding-top: 15px;
}

.partner__content {
	margin-left: auto;
	margin-right: auto;
}

.partner-up::before {
	content: '';
	display: block;
	background: url("../img/icon_up.png") 0 0 no-repeat transparent;
	background-size: 31px 31px;
	width: 31px;
	height: 31px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.partner__logo_link {
	display: block;
	border-bottom: 0 none;
}

.partner__logo_link:hover img {
	opacity: .75;
	transition: opacity .2s ease-out;
}

.partner__logo {
	min-height: 100px;
}

.partner__logo > img {
	margin: auto;
	display: block;
	max-width: 100%;
}

.partner__name {
	margin-bottom: .5em;
	font-size: 0.875em;
}

.partner__name__text {
	border-bottom: 1px dotted #00357b;
}

.partner__name__text-small {
	font-size: 85%;
}

.partner__product {
	font-weight: bold;
	font-size: 1.063em;
	line-height: 1.5;
}

.partner__product-small {
	font-size: 0.938em;
}

.partner__ex {
	font-size: 0.813em;
	margin-bottom: 1em;
	line-height: 1.5;
}

.partner__ex-small {
	font-size: 0.75em;
}

.partner__rp_button {
	width: 100%;
	height: 30px;
}

.bundle:not(:last-child) {
	margin-bottom: 4em;
}

p.p {
	font-size: 0.875em;
}

.title-mm {
	font-family: "FOT-UD角ゴ_ラージ Pr6 M", "UDKakugo_LargePr6-M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	padding-top: 2.5em;
	padding-bottom: 1.2em;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.section__content-mm {
	line-height: 1.85;
}

.section__content-mm .section2 p:not(:last-child) {
	margin-bottom: 1.5em;
}

.list-guest > li {
	margin-bottom: 60px;
}

.area-person .person {
	padding-bottom: 0;
}

.area-person .person__handle a {
	margin-right: .5em;
}

.area-person h3 {
	font-weight: bold;
}

.report__title {
	position: relative;
	top: 0;
	left: 0;
	font-size: 1em;
	font-weight: bold;
	color: #f5911e;
}

.report__head {
	margin-bottom: .2em;
}

.report__section__title {
	font-weight: bold;
	font-size: 1em;
}

.report__section__content {
	font-size: 0.875em;
}

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

.report-footer {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.report-footer__title {
	color: #00357b;
	text-align: center;
	font-size: 1.125em;
	font-weight: bold;
}

.area-border {
	border-radius: 10px;
	border: 1px solid #ccc;
	padding: .8em 1.2em;
}

.area-border-gray {
	background-color: #f7f7f7;
}

.area-border-yellow {
	border: 2px solid #faaf3b;
	background-color: #fefbd3;
}

.area-section-photos {
	width: 100%;
	overflow: hidden;
}

.section-photos {
	height: 200px;
	width: 2100px;
	animation: slide_index 55s infinite linear;
}

.photos > li {
	float: left;
}

.photos img {
	display: block;
}

.event:not(:last-child) {
	margin-bottom: 60px;
}

.event p {
	font-size: 0.875em;
	line-height: 1.7;
}

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

.questionnaire {
	margin-top: 1em;
}

.questionnaire img {
	display: block;
}

.modal {
	max-width: 560px;
}

.modal__head {
	border-bottom: 1px solid #118ccf;
	min-height: 30px;
}

.modal__head__title {
	padding: .8em .5em .5em;
	color: #118ccf;
	font-size: 0.875em;
	line-height: 1;
	text-align: left;
}

.modal__head .remodal-close {
	width: 30px;
	height: 30px;
	background: url("../img/icon_modal_close.png") 0 2px no-repeat;
	background-size: 30px 30px;
}

.modal__body {
	padding: 40px;
}

.modal__cap {
	margin: auto;
}

.modal__cap > img {
	display: block;
	width: 100%;
	border-radius: 3px;
}

.modal__title {
	padding: 1em 0;
	border-bottom: 1px solid #aaa;
	color: #333;
	position: relative;
	top: 0;
	left: 0;
}

.modal__title .main {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.2;
}

.modal__title .sub {
	font-size: 12px;
}

.modal__title::after {
	content: '';
	display: block;
	background: url("../img/arrow_modal-title_bottom.png") 0 0 no-repeat transparent;
	background-size: 26px 12px;
	width: 26px;
	height: 12px;
	position: absolute;
	bottom: -2px;
	left: 50%;
	-ms-transform: translateX(-50%);
	    transform: translateX(-50%);
}

.modal__ex {
	color: #333;
	padding-top: 1.2em;
	text-align: left;
	font-size: 0.875em;
	line-height: 1.7;
}
