@charset "UTF-8";
/* -------------------------------------------------------------------------

		reset.sass

		要素のデフォルトスタイル、フォントサイズのリセット

------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		style reset

------------------------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

small {
  font-size: smaller;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

i {
  font-style: normal;
}

/* -------------------------------------------------------------------------

		font styles

------------------------------------------------------------------------- */
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 13px/1.231 arial,sans-serif;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none;
}

/* -------------------------------------------------------------------------

		util.sass

		案件に依存せず汎用的に使うClassを定義

------------------------------------------------------------------------- */
/* フォントサイズ指定
usage:
font-size:fs(18);
------------------------------------------------- */
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after, .grid_system_12:after, .grid_system_2:after, .grid_spread_24:after, .grid_spread_5:after, .grid_spread_4:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

/*for IE 5.5-7*/
.clear_fix, .grid_system_12, .grid_system_2, .grid_spread_24, .grid_spread_5, .grid_spread_4 {
  zoom: 1;
}

.clear_both {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0;
}

.clear {
  clear: both;
}

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline;
}

.float_l {
  float: left;
  display: inline;
}

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

/* align
------------------------------------------------- */
.align_l {
  text-align: left !important;
}

.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}

.v_align_t {
  vertical-align: top !important;
}

.v_align_m {
  vertical-align: middle !important;
}

.v_align_b {
  vertical-align: bottom !important;
}

/* typography
------------------------------------------------- */
.lh_flat {
  line-height: 1 !important;
}

.lh_s {
  line-height: 1.3 !important;
}

.v_write {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

/* font
------------------------------------------------- */
.smaller {
  font-size: smaller !important;
}

.larger {
  font-size: larger !important;
}

.bold {
  font-weight: bold !important;
}

/* fluid image
------------------------------------------------- */
.fluid_img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* IE8 */
}

/* display
------------------------------------------------- */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}

.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}

.just_layout .just_item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  line-height: normal;
}

* html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

*:first-child + html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 1.2em;
  list-style: disc;
}

.list_square {
  margin-left: 1.2em;
  list-style: square;
}

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal;
}

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero;
}

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk {
  margin-left: 1.3em;
}

.list_asterisk li {
  text-indent: -1.3em;
}

.list_asterisk li:before {
  content: "※ ";
}

/* ---- ・ ---- */
.list_dot {
  margin-left: 1em;
}

.list_dot li {
  text-indent: -1em;
}

.list_dot li:before {
  content: "・";
}

/* ---- ● ---- */
.list_circle {
  margin-left: 1.3em;
}

.list_circle li {
  text-indent: -1.3em;
}

.list_circle li:before {
  content: "● ";
}

/* ---- 1. ---- */
.list_decimal_01 {
  margin-left: 1.4em;
}

.list_decimal_01 li {
  counter-increment: decimal_01;
  text-indent: -1.4em;
}

.list_decimal_01 li:before {
  content: counter(decimal_01) ". ";
}

/* ---- (1) ---- */
.list_decimal_02 {
  margin-left: 1.9em;
}

.list_decimal_02 li {
  counter-increment: decimal_02;
  text-indent: -1.9em;
}

.list_decimal_02 li:before {
  content: "(" counter(decimal_02) ") ";
}

/* ---- [1] ---- */
.list_decimal_03 {
  margin-left: 1.9em;
}

.list_decimal_03 li {
  counter-increment: decimal_03;
  text-indent: -1.9em;
}

.list_decimal_03 li:before {
  content: "[" counter(decimal_03) "] ";
}

/* ---- 丸数字 ---- */
.list_decimal_04 {
  padding-left: 1.7em;
}

.list_decimal_04 li {
  counter-increment: decimal_04;
  text-indent: -1.7em;
}

.list_decimal_04 libefore {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 4px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 {
  margin-left: 1.5em;
}

.list_upper_alpha_01 li {
  counter-increment: upper_alpha_01;
  text-indent: -1.5em;
}

.list_upper_alpha_01 li:before {
  content: counter(upper_alpha_01, upper-alpha) " ) ";
}

/* 注釈 (IE8以上)
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.notes:before {
  content: "※ ";
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 2em;
  text-indent: -2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
------------------------------------------------- */
/* グリッドレイアウト用mixin (IE8以上)
usage:
■12分割で間隔が20pxのグリッドのクラスを作る場合
・SASS
@include grid_system(12, 20px);
・HTML
<div class="grid_system_12">  ← このdivへの幅指定はNG
	<div class="grid_6"></div> ┐
	<div class="grid_3"></div> ├ 子要素は合計が12になるようにクラス名を付ける
	<div class="grid_3"></div> ┘
</div>
------------------------------------------------- */
/* -------------------------------------------------------------------------

		vars.sass
		
		scssファイル内で使う変数を定義
		
------------------------------------------------------------------------- */
/* font size
------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* $color_sub : ; */
/* text color
------------------------------------------------- */
/* -------------------------------------------------------------------------

		icon.sass

------------------------------------------------------------------------- */
@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?hi1tat");
  src: url("fonts/icomoon.eot?#iefixhi1tat") format("embedded-opentype"), url("fonts/icomoon.woff?hi1tat") format("woff"), url("fonts/icomoon.ttf?hi1tat") format("truetype"), url("fonts/icomoon.svg?hi1tat#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icomoon_style, .breadcrumb li:before, .bottom_breadcrumb li:before,
[class^="font_icon_"]:before,
[class*=" font_icon_"]:before,
.link:before,
.link_next:after,
.link_blank:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 3px;
  display: inline-block;
  vertical-align: middle;
}

.link_next:after,
.link_blank:after {
  padding-left: 3px;
  padding-right: 0;
}

.font_icon_memo:before {
  content: "\67";
}

.font_icon_zoom:before {
  content: "\66";
}

.font_icon_note:before {
  content: "\65";
}

.font_icon_arrow:before,
.link:before,
.link_next:after {
  content: "\61";
}

.font_icon_arrow_left:before {
  content: "\62";
}

.font_icon_blank:before,
.link_blank:after {
  content: "\63";
}

.font_icon_breadcrumb:before {
  content: "\64";
}

.font_icon_injection:before {
  content: "\e600";
}

.font_icon_medicine:before {
  content: "\e601";
}

.font_icon_arrow_bottom:before {
  content: "\e602";
}

.font_icon_arrow_top:before {
  content: "\e603";
}

/* -------------------------------------------------------------------------

		layout.sass

		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義

------------------------------------------------------------------------- */
/* body
------------------------------------------------- */
body {
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333;
  position: relative;
}

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #fff9d7;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

/* header_wrap
------------------------------------------------- */
.hl_display {
  display: none !important;
}

.header_wrap > .inner {
  width: 960px;
  margin: 0 auto;
}

.header_wrap .header {
  padding: 24px 0 30px;
}

.header_wrap .header .site_id {
  float: left;
  width: 425px;
}

.header_wrap .header .site_id a {
  color: #333;
  display: table;
}

.header_wrap .header .site_id a:hover img, .header_wrap .header .site_id .sub_column .side_info_seminar li:hover a img, .sub_column .side_info_seminar li:hover .header_wrap .header .site_id a img, .header_wrap .header .site_id .sub_column .side_info_seminar .more:hover a img, .sub_column .side_info_seminar .more:hover .header_wrap .header .site_id a img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.header_wrap .header .site_id p {
  color: #333;
  display: table;
}

.header_wrap .header .site_id .logo {
  display: table-cell;
}

.header_wrap .header .site_id .site_name {
  font-size: 138.5%;
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}

.header_wrap .header .site_id .top_text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 12px;
  font-size: 85%;
}

.header_wrap .header .header_link {
  float: right;
}

.header_wrap .header .header_link ul {
  float: left;
  margin-top: 7px;
}

.header_wrap .header .header_link li {
  float: left;
  background: url(../med_img_common/dotline.png) repeat-y left;
  position: relative;
  padding: 5px 0;
}

.header_wrap .header .header_link li:nth-of-type(1) {
  background: none;
}

.header_wrap .header .header_link li:nth-of-type(1) a {
  padding: 5px 8px 5px 5px;
}

.header_wrap .header .header_link li:first-child:hover {
  background: rgba(246, 246, 246, 0.7);
  background: #f6f6f6\9;
}

.header_wrap .header .header_link li:first-child:hover a {
  text-decoration: none;
}

.header_wrap .header .header_link li a {
  padding: 0 8px;
  color: #333;
}

.header_wrap .header .header_link li a.link_blank:after {
  color: #666;
}

.header_wrap .header .header_link li .sub {
  overflow: hidden;
  display: block;
  position: absolute;
  background: #f6f6f6;
  filter: inherit;
  top: 25px;
  left: 0;
}

.header_wrap .header .header_link li .sub ul {
  margin-top: 0;
  white-space: nowrap;
}

.header_wrap .header .header_link li .sub ul li {
  float: none;
  width: 100%;
  line-height: 1.25em;
  overflow: hidden;
  background: none;
  padding: 0;
}

.header_wrap .header .header_link li .sub ul li a {
  display: block;
  margin: 5px 5px 5px 10px;
  padding: 0;
}

.header_wrap .header .header_link li .sub ul li + li {
  border-top: 1px dotted #999;
}

.header_wrap .header .header_link li .sub ul li:hover {
  text-decoration: underline;
}

.header_wrap .header .header_link .header_contact {
  float: right;
  font-size: 108%;
}

.header_wrap .header .header_link .header_contact a {
  font-size: 13px;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#006bb6', endColorstr='#0063a8', GradientType=0)";
  position: relative;
  display: block;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 17px/17px 17px 18px 18px;
  border: solid 1px #006bb6;
  -webkit-box-shadow: 1px;
  -moz-box-shadow: 1px;
  box-shadow: 1px;
  background: -owg-linear-gradient(#006bb6, #0063a8);
  background: -webkit-linear-gradient(#006bb6, #0063a8);
  background: -moz-linear-gradient(#006bb6, #0063a8);
  background: -o-linear-gradient(#006bb6, #0063a8);
  background: linear-gradient(#006bb6, #0063a8);
  margin-top: 2px;
}

.header_wrap .header .header_link .header_contact a:hover, .header_wrap .header .header_link .header_contact .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .header_wrap .header .header_link .header_contact a, .header_wrap .header .header_link .header_contact .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .header_wrap .header .header_link .header_contact a {
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0063a8', endColorstr='#006bb6', GradientType=0)";
  top: 2px;
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#0063a8, #006bb6);
  background: -webkit-linear-gradient(#0063a8, #006bb6);
  background: -moz-linear-gradient(#0063a8, #006bb6);
  background: -o-linear-gradient(#0063a8, #006bb6);
  background: linear-gradient(#0063a8, #006bb6);
}

.not_return .header_wrap .header .site_id .top_text {
  display: none;
}

/* global_nav
------------------------------------------------- */
.global_nav {
  box-sizing: border-box;
  border-top: 1px solid #e5e5e5;
}

.global_nav ul {
  width: 960px;
  margin: -1px auto 0;
  border-left: 1px solid #e5e5e5;
  height: 70px;
  overflow: hidden;
}

.global_nav li {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  float: left;
  height: 71px;
  display: table;
  table-layout: fixed;
  font-size: 123.1%;
  border-right: 1px solid #e5e5e5;
  border-collapse: collapse;
  border-spacing: 0;
}

.global_nav li:hover {
  border-right: 1px solid #006bb6;
}

.global_nav li a {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 136px;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #333;
  padding-top: 2px;
  font-size: 14px;
}

.global_nav li a:hover, .global_nav .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar .global_nav li:hover a, .global_nav li .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .global_nav li a {
  text-decoration: none;
  background: #006bb6;
  color: #fff;
}

.med_eq .gnav_med_eq,
.med .gnav_med,
.reg .gnav_reg,
.solution .gnav_solution,
.seminar .gnav_seminar,
.imep .gnav_imep {
  border-right: 1px solid #006bb6;
}

.med_eq .gnav_med_eq a,
.med .gnav_med a,
.reg .gnav_reg a,
.solution .gnav_solution a,
.seminar .gnav_seminar a,
.imep .gnav_imep a {
  background: #006bb6;
  color: #fff;
}

/* local_nav
------------------------------------------------- */
.local_nav {
  display: none;
  background: #006bb6;
  padding: 14px 0;
}

.local_nav ul {
  width: 960px;
  margin: 0 auto;
}
.reg_width ul {
  width: 987px;
}

.local_nav li {
  float: left;
  border-left: 1px solid #3389c5;
  padding: 0 54px;
  font-size: 108%;
}

.local_nav li:first-child {
  border-left: none;
}

.local_nav li a {
  display: block;
  color: #fff;
  padding: 4px 10px 2px;
}

.local_nav li a:hover, .local_nav .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar .local_nav li:hover a, .local_nav li .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .local_nav li a {
  background: #fff;
  color: #006bb6;
  text-decoration: none;
  border-radius: 13px;
}

.lnav_imep li {
  padding: 0 4px;
}

.lnav_med li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 18px;
  text-align: center;
  width: 240px;
}

.lnav_med li a {
  display: inline-block;
}

.lnav_reg li {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 25px;
  text-align: center;
}

.reg_width ul li {
  padding:0 13px;
}

.lnav_reg li a {
  display: inline-block;
  padding-left: 7px;
  padding-right: 7px;
}

.med_eq .lnav_med_eq,
.reg .lnav_reg,
.imep .lnav_imep,
.med .lnav_med {
  display: block;
}

.lnav_01 .local_nav .lnav_01 a,
.lnav_02 .local_nav .lnav_02 a,
.lnav_03 .local_nav .lnav_03 a,
.lnav_04 .local_nav .lnav_04 a,
.lnav_05 .local_nav .lnav_05 a,
.lnav_06 .local_nav .lnav_06 a,
.lnav_07 .local_nav .lnav_07 a {
  background: #fff;
  color: #006bb6;
  text-decoration: none;
  border-radius: 13px;
}

/* wrapper
------------------------------------------------- */
.wrapper {
  background: #fcfcfc url(../med_img_common/wrapper_bg.gif) repeat-x top;
  padding-bottom: 40px;
  font-size: 108%;
}

/* entrance_wrapper
------------------------------------------------- */
.entrance_wrapper {
  width: 820px;
  height: 426px;
  margin: 0 auto;
  border-bottom-color: #000;
  margin-top: 34px;
  border: 7px solid #006bb6;
}

.entrance_wrapper .inner {
  padding: 47px 55px;
}

.entrance_wrapper .inner p {
  font-size: 108%;
  line-height: 2em;
}

.entrance_wrapper .inner .med_eq_question {
  margin-top: 28px;
  font-size: 200%;
  text-align: center;
}

.entrance_wrapper .inner .yes_no_btn {
  width: 420px;
  margin: 45px auto 0;
}

.entrance_wrapper .inner .yes_no_btn li {
  width: 194px;
  float: left;
}

.entrance_wrapper .inner .yes_no_btn li a {
  border-radius: 20px;
  padding: 10px 0 8px 0;
}

.entrance_wrapper .inner .yes_no_btn li + li {
  margin-left: 32px;
}

/* contents
------------------------------------------------- */
.contents {
  width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

.contents > .inner_col_01 {
  padding: 0 36px;
}

.contents.separate {
  display: table;
  table-layout: fixed;
}

/* sub column
------------------------------------------------- */
.sub_column {
  display: table-cell;
  vertical-align: top;
  width: 220px;
  border-radius: 4px 0 0 4px;
  box-sizing: border-box;
  background: url(../med_img_common/side_nav_bg.png) repeat;
  -webkit-box-shadow: -3px;
  -moz-box-shadow: -3px;
  box-shadow: -3px;
  _border-right: 3px solid #e5e5e5;
  *border-right: 3px solid #e5e5e5;
}

.sub_column:root .sub_column {
  border-right: 3px solid #e5e5e5;
}

.sub_column .side_title {
  border-radius: 4px 0 0 0;
  background: #006bb6 url(../med_img_common/side_nav_bg.png) repeat;
  padding: 10px 15px 6px;
  font-weight: normal;
  color: #fff;
  font-size: 116%;
}

.sub_column .side_title a {
  color: #fff;
}

.sub_column .side_nav li {
  padding-bottom: 1px;
  background: url(../med_img_common/side_dotline.gif) repeat-x bottom;
  font-size: 108%;
}

.sub_column .side_nav li a {
  display: block;
  padding: 11px 15px;
  color: #333;
}

.sub_column .side_nav li a:hover, .sub_column .side_nav .side_info_seminar li:hover a, .sub_column .side_info_seminar .side_nav li:hover a, .sub_column .side_nav li .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .side_nav li a {
  background: #e2eef2 url(../med_img_common/side_nav_bg.png) repeat;
}

.sub_column .side_info_seminar {
  background: #fff;
  margin: 7px 7px 10px;
  border: 1px solid #dad9da;
  border-radius: 4px;
}

.sub_column .side_info_seminar li {
  border-bottom: 1px solid #e5e5e5;
  font-size: 93%;
  padding: 8px;
}

.sub_column .side_info_seminar li a {
  display: block;
}

.sub_column .side_info_seminar li p {
  line-height: 1.4;
}

.sub_column .side_info_seminar li .date {
  color: #666;
  margin-bottom: 4px;
  line-height: 1.7;
}

.sub_column .side_info_seminar li .date span {
  font-size: 93%;
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px 0;
  line-height: 1.3;
}

.sub_column .side_info_seminar .more {
  text-align: center;
  font-size: 85%;
}

.sub_column .side_info_seminar .more a {
  display: inline-block;
  padding: 3px 0;
}

.side_01 .side_nav .side_01 a,
.side_02 .side_nav .side_02 a,
.side_03 .side_nav .side_03 a,
.side_04 .side_nav .side_04 a,
.side_05 .side_nav .side_05 a,
.side_06 .side_nav .side_06 a,
.side_07 .side_nav .side_07 a,
.side_08 .side_nav .side_08 a,
.side_09 .side_nav .side_09 a,
.side_10 .side_nav .side_10 a,
.side_11 .side_nav .side_11 a,
.side_12 .side_nav .side_12 a,
.side_13 .side_nav .side_13 a,
.side_14 .side_nav .side_14 a,
.side_15 .side_nav .side_15 a,
.side_16 .side_nav .side_16 a {
  background: #e2eef2 url(../med_img_common/side_nav_bg.png) repeat;
}

/* main column
------------------------------------------------- */
.main_long {
  width: 960px !important;
}

.main_column {
  display: table-cell;
  width: 740px;
  box-sizing: border-box;
}

.main_column > .inner {
  padding: 0 39px 50px;
}

/* breadcrumb
------------------------------------------------- */
.breadcrumb {
  padding: 14px 0 13px 0;
  width: 960px;
  margin: 0 auto;
}

.breadcrumb li {
  margin-left: 11px;
  display: inline;
}

.breadcrumb li:before {
  content: "\64";
  padding-right: 11px;
}

.breadcrumb li:first-child {
  margin-left: 0;
}

.breadcrumb li:first-child:before {
  content: "";
  padding-right: 0;
}

/* bottom_breadcrumb
------------------------------------------------- */
.bottom_breadcrumb {
  background: #006bb6 url(../med_img_common/bottom_breadcrumb_bg.gif) repeat-x top;
  padding: 13px 0;
}

.bottom_breadcrumb > ul {
  width: 960px;
  margin: 0 auto;
}

.bottom_breadcrumb li {
  float: left;
  margin-left: 11px;
  color: #fff;
}

.bottom_breadcrumb li:before {
  content: "\64";
  padding-right: 11px;
}

.bottom_breadcrumb li:first-child {
  margin-left: 0;
}

.bottom_breadcrumb li:first-child:before {
  content: "";
  padding-right: 0;
}

.bottom_breadcrumb li a {
  color: #fff;
}

/* footer
------------------------------------------------- */
.footer_wrap {
  background: #cedbfe;
  padding-top: 20px;
}

.footer_wrap > .inner {
  width: 960px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 40px;
}

.footer_wrap .page_top {
  position: absolute;
  top: -66px;
  right: 5px;
  height: 36px;
  border-radius: 36px 36px 0 0;
  background: #fff;
}

.footer_wrap .footer_copy {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 65px;
}

.footer_wrap .footer_copy span {
  padding: 6px 15px;
  border-radius: 15px;
  background: #c1cdec;
  -webkit-box-shadow: 1px, inset;
  -moz-box-shadow: 1px, inset;
  box-shadow: 1px, inset;
}

.footer_wrap .footer_nav {
  float: left;
  margin-left: 27px;
  width: 170px;
}

.footer_wrap .footer_nav:first-child {
  margin-left: 0;
}

.footer_wrap .footer_nav a {
  color: #333;
}

.footer_wrap .footer_nav p {
  font-size: 116%;
  padding-bottom: 11px;
  border-bottom: 1px solid #b0c6fe;
  margin-bottom: 13px;
}

.footer_wrap .footer_nav li {
  margin-top: 9px;
}

.footer_wrap .footer_nav li:first-child {
  margin-top: 0;
}

.footer_wrap .footer_nav li.sub {
  padding-left: 20px;
}

.footer_wrap .footer_nav .hl_footer_list {
  margin-top: 20px;
}

.footer_wrap .footer {
  border-top: 1px solid #b0c6fe;
  padding: 15px 0 18px;
}

.footer_wrap .footer > .inner {
  width: 960px;
  margin: 0 auto;
}

.footer_wrap .footer .access {
  float: left;
}

.footer_wrap .footer .access .text {
  font-size: 93%;
  line-height: 1.7;
}

.footer_wrap .footer .access a:hover img, .footer_wrap .footer .access .sub_column .side_info_seminar li:hover a img, .sub_column .side_info_seminar li:hover .footer_wrap .footer .access a img, .footer_wrap .footer .access .sub_column .side_info_seminar .more:hover a img, .sub_column .side_info_seminar .more:hover .footer_wrap .footer .access a img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.footer_wrap .footer .footer_link {
  float: right;
  width: 550px;
  border-left: 1px solid #b0c6fe;
}

.footer_wrap .footer .footer_link li {
  float: left;
  border-right: 1px solid #b0c6fe;
}

.footer_wrap .footer .footer_link li a {
  display: block;
  color: #333;
  padding: 3px 13px;
}

.footer_wrap .footer .footer_link li a.link_blank:after {
  color: #666;
}

/* entrance
------------------------------------------------- */
body.not_return .header_wrap {
  border-bottom: 1px solid #e5e5e5;
}

body .h1_field {
  font-size: 85%;
  color: #666;
  text-align: left;
  padding-top: 12px;
  position: absolute;
  z-index: 90;
  width: 100%;
  background-color: #cedbfe;
}

body .h1_field .h1_field_inner {
  width: 960px;
  margin: 0 auto;
}

body .h1_field .position {
  position: absolute;
}

body .h1_field h1 {
  font-size: 92%;
  padding-bottom: 3px;
}

body .h1_field .bunrui {
  width: 100px;
  padding-right: 9px;
  float: left;
  padding-top: 5px;
  color: #666;
}

body .h1_field .yakumei {
  width: 850px;
  float: left;
  color: #666;
}

body .h1_field .yakumei ul {
  width: 850px;
  height: 1%;
}

body .h1_field .yakumei ul li {
  float: left;
  margin: 0;
  padding-right: 12px;
  white-space: nowrap;
  color: #666;
  padding-top: 5px;
}

body .h1_field .yakumei ul li a:link {
  color: #666;
  text-decoration: none;
}

body .h1_field .yakumei ul li a:visited {
  color: #666;
  text-decoration: none;
}

body .h1_field .yakumei ul li a:hover, body .h1_field .yakumei ul .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar body .h1_field .yakumei ul li:hover a, body .h1_field .yakumei ul li .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover body .h1_field .yakumei ul li a {
  color: #666;
  text-decoration: underline;
}

body .h1_field .iryoukikimei {
  width: 830px;
  float: left;
}

body .h1_field .iryoukikimei ul {
  width: 830px;
  height: 1%;
}

body .h1_field .iryoukikimei ul li {
  float: left;
  margin: 0;
  padding-right: 12px;
  white-space: nowrap;
  color: #666;
  padding-top: 5px;
}

body .h1_field .iryoukikimei ul li a {
  color: #666;
}

body .h1_field .iryoukikimei ul li a.link_blank:after {
  color: #666;
}

.td_med_size {
  padding: 0px !important;
}

.table_med_size td {
  border: 0 !important;
}

.td_color_size {
  background: #f6f6f6;
  width: 120px;
}

.tr_color_size td {
  border-right: #fff !important;
  border-left: #fff !important;
}

.tr_color_size th {
  border-left: #fff !important;
}

.td_bottom_line {
  border-bottom: 1px solid #e5e5e5 !important;
}

body.topics_detail p img {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

body.topics_detail .main_column > .inner {
  padding: 0 49px 50px;
}

body.topics_detail .detail_thumbnail {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

body.topics_detail .detail_thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

body.topics_detail h3 {
  margin: 30px 0 10px;
}

body.topics_detail .seminar_box {
  margin-top: 30px;
}

body.topics_detail .seminar_box .seminar_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

body.topics_detail .seminar_box .seminar_box_inner .seminar_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.topics_detail .seminar_box .seminar_box_inner .seminar_title h4 {
  font-weight: normal;
}

body.topics_detail .seminar_box .seminar_box_inner .seminar_title h4 .font_icon_note {
  font-size: 138.5%;
}

body.topics_detail .seminar_box .seminar_box_inner .seminar_title h4 .font_icon_note:before {
  font-size: 160%;
}

body.topics_detail .seminar_box dl {
  padding: 10px 0 0 0;
}

body.topics_detail .seminar_box dl dt {
  padding: 0 10px 5px 10px;
}

body.topics_detail .seminar_box dl dt span, body.topics_detail .seminar_box dl dt a {
  margin-left: 5px;
}

body.topics_detail .seminar_box dl dd {
  padding: 0 10px 15px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

body.topics_detail .seminar_box dl .last {
  border-bottom: none;
  padding-bottom: 0;
}

body.topics_detail .eq_box {
  margin-top: 30px;
}

body.topics_detail .eq_box .eq_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

body.topics_detail .eq_box .eq_box_inner .eq_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.topics_detail .eq_box .eq_box_inner .eq_title h4 {
  font-weight: normal;
}

body.topics_detail .eq_box .eq_box_inner .eq_title h4 .font_icon_injection {
  font-size: 138.5%;
}

body.topics_detail .eq_box .eq_box_inner .eq_title h4 .font_icon_injection:before {
  font-size: 180%;
}

body.topics_detail .eq_box ul {
  padding: 10px 0 0 0;
}

body.topics_detail .eq_box ul li {
  padding: 0 10px 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.topics_detail .eq_box ul .last {
  border-bottom: none;
  padding-bottom: 0;
}

body.topics_detail p img {
  max-width: 100%;
  height: auto;
}

body.topics_detail .ph_box {
  margin-top: 30px;
}

body.topics_detail .ph_box .ph_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

body.topics_detail .ph_box .ph_box_inner .ph_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.topics_detail .ph_box .ph_box_inner .ph_title h4 {
  font-weight: normal;
}

body.topics_detail .ph_box .ph_box_inner .ph_title h4 .font_icon_medicine {
  font-size: 138.5%;
}

body.topics_detail .ph_box .ph_box_inner .ph_title h4 .font_icon_medicine:before {
  font-size: 180%;
}

body.topics_detail .ph_box ul {
  padding: 10px 0 0 0;
}

body.topics_detail .ph_box ul li {
  padding: 0 10px 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.topics_detail .ph_box ul .last {
  border-bottom: none;
  padding-bottom: 0;
}

body.topics_detail .doc_box {
  margin-top: 30px;
}

body.topics_detail .doc_box .doc_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
}

body.topics_detail .doc_box .doc_box_inner .doc_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.topics_detail .doc_box .doc_box_inner .doc_title h4 {
  font-weight: normal;
}

body.topics_detail .doc_box .doc_box_inner .doc_title h4 .font_icon_memo {
  font-size: 138.5%;
}

body.topics_detail .doc_box .doc_box_inner .doc_title h4 .font_icon_memo:before {
  font-size: 180%;
}

body.topics_detail .doc_box ul {
  padding: 10px 0 0 0;
}

body.topics_detail .doc_box ul li {
  padding: 0 10px 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.topics_detail .doc_box ul .last {
  border-bottom: none;
  padding-bottom: 0;
}

.text_m:before {
  margin-top: -11px;
}

/* -------------------------------------------------------------------------

		module.sass

		見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義

------------------------------------------------------------------------- */
.grid_system_12 {
  margin-left: -3%;
  width: auto !important;
}

.grid_system_12 > .grid_1, .grid_system_12 > .grid_2, .grid_system_12 > .grid_3, .grid_system_12 > .grid_4, .grid_system_12 > .grid_5, .grid_system_12 > .grid_6, .grid_system_12 > .grid_7, .grid_system_12 > .grid_8, .grid_system_12 > .grid_9, .grid_system_12 > .grid_10, .grid_system_12 > .grid_11, .grid_system_12 > .grid_12, .grid_system_12 .grid_system_2 > .grid_1, .grid_system_12 .grid_system_2 > .grid_2, .grid_system_12 .grid_spread_24 > .grid_1, .grid_system_12 .grid_spread_24 > .grid_2, .grid_system_12 .grid_spread_24 > .grid_3, .grid_system_12 .grid_spread_24 > .grid_4, .grid_system_12 .grid_spread_24 > .grid_5, .grid_system_12 .grid_spread_24 > .grid_6, .grid_system_12 .grid_spread_24 > .grid_7, .grid_system_12 .grid_spread_24 > .grid_8, .grid_system_12 .grid_spread_24 > .grid_9, .grid_system_12 .grid_spread_24 > .grid_10, .grid_system_12 .grid_spread_24 > .grid_11, .grid_system_12 .grid_spread_24 > .grid_12, .grid_system_12 .grid_spread_24 > .grid_13, .grid_system_12 .grid_spread_24 > .grid_14, .grid_system_12 .grid_spread_24 > .grid_15, .grid_system_12 .grid_spread_24 > .grid_16, .grid_system_12 .grid_spread_24 > .grid_17, .grid_system_12 .grid_spread_24 > .grid_18, .grid_system_12 .grid_spread_24 > .grid_19, .grid_system_12 .grid_spread_24 > .grid_20, .grid_system_12 .grid_spread_24 > .grid_21, .grid_system_12 .grid_spread_24 > .grid_22, .grid_system_12 .grid_spread_24 > .grid_23, .grid_system_12 .grid_spread_24 > .grid_24, .grid_system_12 .grid_spread_5 > .grid_1, .grid_system_12 .grid_spread_5 > .grid_2, .grid_system_12 .grid_spread_5 > .grid_3, .grid_system_12 .grid_spread_5 > .grid_4, .grid_system_12 .grid_spread_5 > .grid_5, .grid_system_12 .grid_spread_4 > .grid_1, .grid_system_12 .grid_spread_4 > .grid_2, .grid_system_12 .grid_spread_4 > .grid_3, .grid_system_12 .grid_spread_4 > .grid_4 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*padding-left: $space;*/
}

.grid_system_12 > .grid_1 {
  width: 8.33333%;
}

.grid_system_12 > .grid_2 {
  width: 16.66667%;
}

.grid_system_12 > .grid_3 {
  width: 25%;
}

.grid_system_12 > .grid_4 {
  width: 33.33333%;
}

.grid_system_12 > .grid_5 {
  width: 41.66667%;
}

.grid_system_12 > .grid_6 {
  width: 50%;
}

.grid_system_12 > .grid_7 {
  width: 58.33333%;
}

.grid_system_12 > .grid_8 {
  width: 66.66667%;
}

.grid_system_12 > .grid_9 {
  width: 75%;
}

.grid_system_12 > .grid_10 {
  width: 83.33333%;
}

.grid_system_12 > .grid_11 {
  width: 91.66667%;
}

.grid_system_12 > .grid_12 {
  width: 100%;
}

.grid_system_2 {
  margin-left: -3%;
  width: auto !important;
}

.grid_system_2 .grid_system_12 > .grid_1, .grid_system_2 .grid_system_12 > .grid_2, .grid_system_2 .grid_system_12 > .grid_3, .grid_system_2 .grid_system_12 > .grid_4, .grid_system_2 .grid_system_12 > .grid_5, .grid_system_2 .grid_system_12 > .grid_6, .grid_system_2 .grid_system_12 > .grid_7, .grid_system_2 .grid_system_12 > .grid_8, .grid_system_2 .grid_system_12 > .grid_9, .grid_system_2 .grid_system_12 > .grid_10, .grid_system_2 .grid_system_12 > .grid_11, .grid_system_2 .grid_system_12 > .grid_12, .grid_system_2 > .grid_1, .grid_system_2 > .grid_2, .grid_system_2 .grid_spread_24 > .grid_1, .grid_system_2 .grid_spread_24 > .grid_2, .grid_system_2 .grid_spread_24 > .grid_3, .grid_system_2 .grid_spread_24 > .grid_4, .grid_system_2 .grid_spread_24 > .grid_5, .grid_system_2 .grid_spread_24 > .grid_6, .grid_system_2 .grid_spread_24 > .grid_7, .grid_system_2 .grid_spread_24 > .grid_8, .grid_system_2 .grid_spread_24 > .grid_9, .grid_system_2 .grid_spread_24 > .grid_10, .grid_system_2 .grid_spread_24 > .grid_11, .grid_system_2 .grid_spread_24 > .grid_12, .grid_system_2 .grid_spread_24 > .grid_13, .grid_system_2 .grid_spread_24 > .grid_14, .grid_system_2 .grid_spread_24 > .grid_15, .grid_system_2 .grid_spread_24 > .grid_16, .grid_system_2 .grid_spread_24 > .grid_17, .grid_system_2 .grid_spread_24 > .grid_18, .grid_system_2 .grid_spread_24 > .grid_19, .grid_system_2 .grid_spread_24 > .grid_20, .grid_system_2 .grid_spread_24 > .grid_21, .grid_system_2 .grid_spread_24 > .grid_22, .grid_system_2 .grid_spread_24 > .grid_23, .grid_system_2 .grid_spread_24 > .grid_24, .grid_system_2 .grid_spread_5 > .grid_1, .grid_system_2 .grid_spread_5 > .grid_2, .grid_system_2 .grid_spread_5 > .grid_3, .grid_system_2 .grid_spread_5 > .grid_4, .grid_system_2 .grid_spread_5 > .grid_5, .grid_system_2 .grid_spread_4 > .grid_1, .grid_system_2 .grid_spread_4 > .grid_2, .grid_system_2 .grid_spread_4 > .grid_3, .grid_system_2 .grid_spread_4 > .grid_4 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*padding-left: $space;*/
}

.grid_system_2 > .grid_1 {
  width: 50%;
}

.grid_system_2 > .grid_2 {
  width: 100%;
}

.grid_spread_24 {
  margin-left: 0;
  width: auto !important;
}

.grid_spread_24 .grid_system_12 > .grid_1, .grid_spread_24 .grid_system_12 > .grid_2, .grid_spread_24 .grid_system_12 > .grid_3, .grid_spread_24 .grid_system_12 > .grid_4, .grid_spread_24 .grid_system_12 > .grid_5, .grid_spread_24 .grid_system_12 > .grid_6, .grid_spread_24 .grid_system_12 > .grid_7, .grid_spread_24 .grid_system_12 > .grid_8, .grid_spread_24 .grid_system_12 > .grid_9, .grid_spread_24 .grid_system_12 > .grid_10, .grid_spread_24 .grid_system_12 > .grid_11, .grid_spread_24 .grid_system_12 > .grid_12, .grid_spread_24 .grid_system_2 > .grid_1, .grid_spread_24 .grid_system_2 > .grid_2, .grid_spread_24 > .grid_1, .grid_spread_24 > .grid_2, .grid_spread_24 > .grid_3, .grid_spread_24 > .grid_4, .grid_spread_24 > .grid_5, .grid_spread_24 > .grid_6, .grid_spread_24 > .grid_7, .grid_spread_24 > .grid_8, .grid_spread_24 > .grid_9, .grid_spread_24 > .grid_10, .grid_spread_24 > .grid_11, .grid_spread_24 > .grid_12, .grid_spread_24 > .grid_13, .grid_spread_24 > .grid_14, .grid_spread_24 > .grid_15, .grid_spread_24 > .grid_16, .grid_spread_24 > .grid_17, .grid_spread_24 > .grid_18, .grid_spread_24 > .grid_19, .grid_spread_24 > .grid_20, .grid_spread_24 > .grid_21, .grid_spread_24 > .grid_22, .grid_spread_24 > .grid_23, .grid_spread_24 > .grid_24, .grid_spread_24 .grid_spread_5 > .grid_1, .grid_spread_24 .grid_spread_5 > .grid_2, .grid_spread_24 .grid_spread_5 > .grid_3, .grid_spread_24 .grid_spread_5 > .grid_4, .grid_spread_24 .grid_spread_5 > .grid_5, .grid_spread_24 .grid_spread_4 > .grid_1, .grid_spread_24 .grid_spread_4 > .grid_2, .grid_spread_24 .grid_spread_4 > .grid_3, .grid_spread_24 .grid_spread_4 > .grid_4 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*padding-left: $space;*/
}

.grid_spread_24 > .grid_1 {
  width: 4.16667%;
}

.grid_spread_24 > .grid_2 {
  width: 8.33333%;
}

.grid_spread_24 > .grid_3 {
  width: 12.5%;
}

.grid_spread_24 > .grid_4 {
  width: 16.66667%;
}

.grid_spread_24 > .grid_5 {
  width: 20.83333%;
}

.grid_spread_24 > .grid_6 {
  width: 25%;
}

.grid_spread_24 > .grid_7 {
  width: 29.16667%;
}

.grid_spread_24 > .grid_8 {
  width: 33.33333%;
}

.grid_spread_24 > .grid_9 {
  width: 37.5%;
}

.grid_spread_24 > .grid_10 {
  width: 41.66667%;
}

.grid_spread_24 > .grid_11 {
  width: 45.83333%;
}

.grid_spread_24 > .grid_12 {
  width: 50%;
}

.grid_spread_24 > .grid_13 {
  width: 54.16667%;
}

.grid_spread_24 > .grid_14 {
  width: 58.33333%;
}

.grid_spread_24 > .grid_15 {
  width: 62.5%;
}

.grid_spread_24 > .grid_16 {
  width: 66.66667%;
}

.grid_spread_24 > .grid_17 {
  width: 70.83333%;
}

.grid_spread_24 > .grid_18 {
  width: 75%;
}

.grid_spread_24 > .grid_19 {
  width: 79.16667%;
}

.grid_spread_24 > .grid_20 {
  width: 83.33333%;
}

.grid_spread_24 > .grid_21 {
  width: 87.5%;
}

.grid_spread_24 > .grid_22 {
  width: 91.66667%;
}

.grid_spread_24 > .grid_23 {
  width: 95.83333%;
}

.grid_spread_24 > .grid_24 {
  width: 100%;
}

.grid_spread_5 {
  margin-left: 0;
  width: auto !important;
}

.grid_spread_5 .grid_system_12 > .grid_1, .grid_spread_5 .grid_system_12 > .grid_2, .grid_spread_5 .grid_system_12 > .grid_3, .grid_spread_5 .grid_system_12 > .grid_4, .grid_spread_5 .grid_system_12 > .grid_5, .grid_spread_5 .grid_system_12 > .grid_6, .grid_spread_5 .grid_system_12 > .grid_7, .grid_spread_5 .grid_system_12 > .grid_8, .grid_spread_5 .grid_system_12 > .grid_9, .grid_spread_5 .grid_system_12 > .grid_10, .grid_spread_5 .grid_system_12 > .grid_11, .grid_spread_5 .grid_system_12 > .grid_12, .grid_spread_5 .grid_system_2 > .grid_1, .grid_spread_5 .grid_system_2 > .grid_2, .grid_spread_5 .grid_spread_24 > .grid_1, .grid_spread_5 .grid_spread_24 > .grid_2, .grid_spread_5 .grid_spread_24 > .grid_3, .grid_spread_5 .grid_spread_24 > .grid_4, .grid_spread_5 .grid_spread_24 > .grid_5, .grid_spread_5 .grid_spread_24 > .grid_6, .grid_spread_5 .grid_spread_24 > .grid_7, .grid_spread_5 .grid_spread_24 > .grid_8, .grid_spread_5 .grid_spread_24 > .grid_9, .grid_spread_5 .grid_spread_24 > .grid_10, .grid_spread_5 .grid_spread_24 > .grid_11, .grid_spread_5 .grid_spread_24 > .grid_12, .grid_spread_5 .grid_spread_24 > .grid_13, .grid_spread_5 .grid_spread_24 > .grid_14, .grid_spread_5 .grid_spread_24 > .grid_15, .grid_spread_5 .grid_spread_24 > .grid_16, .grid_spread_5 .grid_spread_24 > .grid_17, .grid_spread_5 .grid_spread_24 > .grid_18, .grid_spread_5 .grid_spread_24 > .grid_19, .grid_spread_5 .grid_spread_24 > .grid_20, .grid_spread_5 .grid_spread_24 > .grid_21, .grid_spread_5 .grid_spread_24 > .grid_22, .grid_spread_5 .grid_spread_24 > .grid_23, .grid_spread_5 .grid_spread_24 > .grid_24, .grid_spread_5 > .grid_1, .grid_spread_5 > .grid_2, .grid_spread_5 > .grid_3, .grid_spread_5 > .grid_4, .grid_spread_5 > .grid_5, .grid_spread_5 .grid_spread_4 > .grid_1, .grid_spread_5 .grid_spread_4 > .grid_2, .grid_spread_5 .grid_spread_4 > .grid_3, .grid_spread_5 .grid_spread_4 > .grid_4 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*padding-left: $space;*/
}

.grid_spread_5 > .grid_1 {
  width: 20%;
}

.grid_spread_5 > .grid_2 {
  width: 40%;
}

.grid_spread_5 > .grid_3 {
  width: 60%;
}

.grid_spread_5 > .grid_4 {
  width: 80%;
}

.grid_spread_5 > .grid_5 {
  width: 100%;
}

.grid_spread_4 {
  margin-left: 0;
  width: auto !important;
}

.grid_spread_4 .grid_system_12 > .grid_1, .grid_spread_4 .grid_system_12 > .grid_2, .grid_spread_4 .grid_system_12 > .grid_3, .grid_spread_4 .grid_system_12 > .grid_4, .grid_spread_4 .grid_system_12 > .grid_5, .grid_spread_4 .grid_system_12 > .grid_6, .grid_spread_4 .grid_system_12 > .grid_7, .grid_spread_4 .grid_system_12 > .grid_8, .grid_spread_4 .grid_system_12 > .grid_9, .grid_spread_4 .grid_system_12 > .grid_10, .grid_spread_4 .grid_system_12 > .grid_11, .grid_spread_4 .grid_system_12 > .grid_12, .grid_spread_4 .grid_system_2 > .grid_1, .grid_spread_4 .grid_system_2 > .grid_2, .grid_spread_4 .grid_spread_24 > .grid_1, .grid_spread_4 .grid_spread_24 > .grid_2, .grid_spread_4 .grid_spread_24 > .grid_3, .grid_spread_4 .grid_spread_24 > .grid_4, .grid_spread_4 .grid_spread_24 > .grid_5, .grid_spread_4 .grid_spread_24 > .grid_6, .grid_spread_4 .grid_spread_24 > .grid_7, .grid_spread_4 .grid_spread_24 > .grid_8, .grid_spread_4 .grid_spread_24 > .grid_9, .grid_spread_4 .grid_spread_24 > .grid_10, .grid_spread_4 .grid_spread_24 > .grid_11, .grid_spread_4 .grid_spread_24 > .grid_12, .grid_spread_4 .grid_spread_24 > .grid_13, .grid_spread_4 .grid_spread_24 > .grid_14, .grid_spread_4 .grid_spread_24 > .grid_15, .grid_spread_4 .grid_spread_24 > .grid_16, .grid_spread_4 .grid_spread_24 > .grid_17, .grid_spread_4 .grid_spread_24 > .grid_18, .grid_spread_4 .grid_spread_24 > .grid_19, .grid_spread_4 .grid_spread_24 > .grid_20, .grid_spread_4 .grid_spread_24 > .grid_21, .grid_spread_4 .grid_spread_24 > .grid_22, .grid_spread_4 .grid_spread_24 > .grid_23, .grid_spread_4 .grid_spread_24 > .grid_24, .grid_spread_4 .grid_spread_5 > .grid_1, .grid_spread_4 .grid_spread_5 > .grid_2, .grid_spread_4 .grid_spread_5 > .grid_3, .grid_spread_4 .grid_spread_5 > .grid_4, .grid_spread_4 .grid_spread_5 > .grid_5, .grid_spread_4 > .grid_1, .grid_spread_4 > .grid_2, .grid_spread_4 > .grid_3, .grid_spread_4 > .grid_4 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*padding-left: $space;*/
}

.grid_spread_4 > .grid_1 {
  width: 25%;
}

.grid_spread_4 > .grid_2 {
  width: 50%;
}

.grid_spread_4 > .grid_3 {
  width: 75%;
}

.grid_spread_4 > .grid_4 {
  width: 100%;
}

.auto_layout_system_24 {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
}

.auto_layout_system_24:after {
  content: "";
  display: inline-block;
  width: 100%;
  line-height: 0;
  visibility: hidden;
  margin-bottom: -1em;
}

.auto_layout_system_24 .grid1 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 3%;
}

* html .auto_layout_system_24 .grid1 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid1 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid2 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 7%;
}

* html .auto_layout_system_24 .grid2 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid2 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid3 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 11%;
}

* html .auto_layout_system_24 .grid3 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid3 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid4 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 15%;
}

* html .auto_layout_system_24 .grid4 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid4 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid5 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 19%;
}

* html .auto_layout_system_24 .grid5 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid5 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid6 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 24%;
}

* html .auto_layout_system_24 .grid6 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid6 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid7 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 28%;
}

* html .auto_layout_system_24 .grid7 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid7 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid8 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 32%;
}

* html .auto_layout_system_24 .grid8 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid8 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid9 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 36%;
}

* html .auto_layout_system_24 .grid9 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid9 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid10 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 40%;
}

* html .auto_layout_system_24 .grid10 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid10 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid11 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 44%;
}

* html .auto_layout_system_24 .grid11 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid11 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid12 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 49%;
}

* html .auto_layout_system_24 .grid12 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid12 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid13 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 53%;
}

* html .auto_layout_system_24 .grid13 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid13 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid14 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 57%;
}

* html .auto_layout_system_24 .grid14 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid14 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid15 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 61%;
}

* html .auto_layout_system_24 .grid15 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid15 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid16 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 65%;
}

* html .auto_layout_system_24 .grid16 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid16 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid17 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 69%;
}

* html .auto_layout_system_24 .grid17 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid17 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid18 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 74%;
}

* html .auto_layout_system_24 .grid18 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid18 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid19 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 78%;
}

* html .auto_layout_system_24 .grid19 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid19 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid20 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 82%;
}

* html .auto_layout_system_24 .grid20 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid20 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid21 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 86%;
}

* html .auto_layout_system_24 .grid21 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid21 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid22 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 90%;
}

* html .auto_layout_system_24 .grid22 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid22 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid23 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 94%;
}

* html .auto_layout_system_24 .grid23 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid23 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .grid24 {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 100%;
}

* html .auto_layout_system_24 .grid24 {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .grid24 {
  display: inline;
  zoom: 1;
}

.auto_layout_system_24 .auto_layout {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: auto;
}

* html .auto_layout_system_24 .auto_layout {
  display: inline;
  zoom: 1;
}

*:first-child + html .auto_layout_system_24 .auto_layout {
  display: inline;
  zoom: 1;
}

.contents p,
.contents li,
.contents span,
.contents div {
  line-height: 1.7;
}

.contents .panel_box {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 20px;
  margin-top: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.contents .panel_box .panel_box {
  margin-top: 0;
}

/* text
------------------------------------------------- */
.colorize_main {
  color: #0aa2d4;
}

.colorize_thin {
  color: #666666;
}

.yakumono {
  letter-spacing: -.25em;
  margin-left: -0.25em;
}

.main_column .title_box {
  padding: 24px 36px 18px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.main_column .title_box h2 {
  font-size: 230%;
  font-weight: normal;
}

.title_box {
  padding: 24px 50px 18px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.title_box h2 {
  font-size: 210%;
  font-weight: normal;
}

h3 {
  font-weight: normal;
  font-size: 197%;
  margin-bottom: 26px;
}

h3.subtitle {
  background: url(../med_img_common/subtitle_bg.png) no-repeat left 5px;
  padding-left: 30px;
  line-height: 1.7;
}

h3.subtitle .h_min {
  font-size: 74%;
}

.summary {
  font-weight: bold;
  color: #0aa2d4;
  font-size: 143%;
}

.copy_blue {
  color: #0aa2d4;
  font-weight: bold;
  font-size: 153.9%;
}

.info_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

.info_title h4 {
  font-weight: normal;
}

.info_title h4:before {
  font-size: 160%;
}

.note {
  color: #f53838;
}

.note_box {
  color: #f53838;
  background: #faeded;
  border-radius: 5px;
  padding: 10px;
}

.divider {
  display: block;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  height: 0;
  overflow: hidden;
  margin-top: 30px;
}

/* link
------------------------------------------------- */
a {
  color: #00a4c2;
  text-decoration: none;
}

a:hover, .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar .more:hover a {
  text-decoration: underline;
}

a:hover img, .sub_column .side_info_seminar li:hover a img, .sub_column .side_info_seminar .more:hover a img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.blue_btn, .search_engine_widget .search_box .search_btn {
  display: block;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 123.1%;
  line-height: 1.6;
  background: #0aa2d4;
  padding: 7px 0 5px;
  border-radius: 4px;
  -webkit-box-shadow: 1px;
  -moz-box-shadow: 1px;
  box-shadow: 1px;
  background: -owg-linear-gradient(#0aa2d4, #0997c6);
  background: -webkit-linear-gradient(#0aa2d4, #0997c6);
  background: -moz-linear-gradient(#0aa2d4, #0997c6);
  background: -o-linear-gradient(#0aa2d4, #0997c6);
  background: linear-gradient(#0aa2d4, #0997c6);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0aa2d4', endColorstr='#0997c6', GradientType=0)";
}

.blue_btn span:before, .search_engine_widget .search_box .search_btn span:before {
  font-size: 140%;
}

.blue_btn:hover, .search_engine_widget .search_box .search_btn:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#0997c6, #0aa2d4);
  background: -webkit-linear-gradient(#0997c6, #0aa2d4);
  background: -moz-linear-gradient(#0997c6, #0aa2d4);
  background: -o-linear-gradient(#0997c6, #0aa2d4);
  background: linear-gradient(#0997c6, #0aa2d4);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0997c6', endColorstr='#0aa2d4', GradientType=0)";
  top: 1px;
}

* + html .blue_btn, * + html .search_engine_widget .search_box .search_btn, .search_engine_widget .search_box * + html .search_btn {
  background: #0aa2d4;
}

* + html .blue_btn:hover, * + html .search_engine_widget .search_box .search_btn:hover, .search_engine_widget .search_box * + html .search_btn:hover {
  background: #0997c6;
}

.white_btn {
  display: block;
  position: relative;
  text-align: center;
  font-size: 108%;
  color: #333;
  line-height: 1.6;
  background: #0aa2d4;
  padding: 6px 0 4px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: 1px;
  -moz-box-shadow: 1px;
  box-shadow: 1px;
  background: -owg-linear-gradient(#fff, #eee);
  background: -webkit-linear-gradient(#fff, #eee);
  background: -moz-linear-gradient(#fff, #eee);
  background: -o-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffff', endColorstr='#eeeeee', GradientType=0)";
}

.white_btn:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0)";
  top: 1px;
}

.white_btn.size_m {
  font-size: 114%;
  padding-top: 3px;
  padding-bottom: 3px;
}

.white_btn.size_l {
  font-size: 114%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.white_btn.size_xl {
  font-size: 114%;
  padding-top: 7px;
  padding-bottom: 7px;
}

.white_btn.size_xxl {
  font-size: 114%;
  padding-top: 10px;
  padding-bottom: 10px;
}

* + html .white_btn {
  background: #eee;
}

* + html .white_btn:hover {
  background: #ddd;
}

.default_banner {
  display: block;
  background: -owg-linear-gradient(top, white, #efefef);
  background: -webkit-linear-gradient(top, white, #efefef);
  background: -moz-linear-gradient(top, white, #efefef);
  background: -o-linear-gradient(top, white, #efefef);
  background: linear-gradient(top, white, #efefef);
  display: block;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px #dad9da;
  box-shadow: 2px 2px #dad9da;
  border: solid 1px #dad9da;
  font-size: 93%;
  color: #333;
  overflow: hidden;
  position: relative;
}

.default_banner:hover {
  background: -owg-linear-gradient(bottom, white, #efefef);
  background: -webkit-linear-gradient(bottom, white, #efefef);
  background: -moz-linear-gradient(bottom, white, #efefef);
  background: -o-linear-gradient(bottom, white, #efefef);
  background: linear-gradient(bottom, white, #efefef);
  text-decoration: none;
}

.default_banner .default_banner__inner {
  display: block;
  padding: 20px;
}

.default_banner .default_banner__inner.attr_arrow {
  position: relative;
  padding-left: 35px;
}

.default_banner .default_banner__inner.attr_arrow:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  left: 20px;
  top: -100%;
  bottom: -100%;
  margin: auto;
}

/* img
------------------------------------------------- */
img {
  vertical-align: bottom;
}

/* table_style
------------------------------------------------- */
.table_style {
  width: 100%;
  border-right: 1px solid #e5e5e5;
}

.table_style th,
.table_style td {
  box-sizing: border-box;
  padding: 10px 15px;
  vertical-align: middle;
}

.table_style th {
  background: #e5e5e5;
  border-left: 1px solid #fff;
  font-weight: normal;
}

.table_style th:nth-of-type(1) {
  border-left: 1px solid #e5e5e5;
}

.table_style td {
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

/* pager_box
------------------------------------------------- */
.pager_box {
  margin-top: 20px;
  position: relative;
}

.pager_box a {
  font-size: 116%;
  line-height: 1.3;
}

.pager_box .prev {
  position: absolute;
  left: 0;
  top: 3px;
}

.pager_box .prev a:before {
  color: #333;
}

.pager_box .next {
  position: absolute;
  right: 0;
  top: 3px;
}

.pager_box .next a:after {
  color: #333;
}

.pager_box .pager {
  text-align: center;
  margin: 0 auto;
}

.pager_box .pager li {
  display: inline-block;
}

.pager_box .pager li a {
  display: block;
  padding: 5px 10px;
  border-radius: 1.5em;
  background: #e5e5e5;
  color: #515151;
}

.pager_box .pager li a:hover, .pager_box .pager .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar .pager_box .pager li:hover a, .pager_box .pager li .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .pager_box .pager li a, .pager_box .pager li a.active {
  background: #0aa2d4;
  color: #fff;
  text-decoration: none;
}

/* PDFボタン
------------------------------------------------- */
.pdf_btn a {
  padding: 2px 0 0;
}

.pdf_btn a span {
  background: url(../med_img_common/icon_pdf.png) no-repeat left center;
  padding-left: 25px;
}

.excel_btn a {
  padding: 2px 0 0;
}

.excel_btn a span {
  background: url(../med_img_common/icon_excel.png) no-repeat left center;
  padding-left: 25px;
}

/* 備考ボタン
------------------------------------------------- */
.notes_btn .notes_col {
  padding: 2px 0 0;
  cursor: default !important;
}

.notes_btn .notes_col span {
  background: url(../med_img_common/icon_note.png) no-repeat center center;
  padding-left: 25px;
}

/* カテゴリーリンク用
------------------------------------------------- */
.category_nav {
  border-bottom: 8px solid #006bb6;
}

.category_nav a, .category_nav span {
  background: -owg-linear-gradient(#fff, #eee);
  background: -webkit-linear-gradient(#fff, #eee);
  background: -moz-linear-gradient(#fff, #eee);
  background: -o-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffff', endColorstr='#eeeeee', GradientType=0)";
  font-size: 153.9%;
  display: block;
  height: 57px;
  line-height: 57px;
  text-align: center;
  text-decoration: none;
  color: black;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}

.category_nav a:hover, .category_nav .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .category_nav a, .category_nav .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .category_nav a {
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#fffffff', GradientType=0)";
}

.category_nav .active span {
  background: #006bb6;
  -ms-filter: "none";
  border-color: #006bb6;
  color: white;
  font-size: 100%;
}

/* タグ風ボタン
------------------------------------------------- */
.sub_column .side_info_seminar li .date span, body.topics_detail .seminar_box dl dt span, body.topics_detail .seminar_box dl dt a, .update_contents .attr .category span, body.regenerative .info_box .float_l dl span, body.regenerative .info_box .float_r dl span, body.reg_safety.index .update_contents .attr .category span {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  border: 1px solid #7fba2b;
  color: #7fba2b;
  padding: 2px 7px;
  font-size: 85%;
  border-radius: 2px;
}

.tag_link_imep {
  border: solid 1px #f19410 !important;
  color: #f19410 !important;
  font-size: 85%;
  border-radius: 2px;
}

.category_med_eq {
  border: solid 1px #0aa2d4 !important;
  color: #0aa2d4 !important;
  font-size: 85%;
  border-radius: 2px;
}

.category_med_ph {
  border: solid 1px #f14c8e !important;
  color: #f14c8e !important;
  font-size: 85%;
  border-radius: 2px;
}

.tag_link_status {
  border: 1px solid #f53f3f !important;
  color: #f53f3f !important;
  font-size: 77% !important;
  border-radius: 2px;
  padding: 3px 7px !important;
}

.category_med_imp {
  border: solid 1px #f53f3f !important;
  color: #f53f3f !important;
  font-size: 85%;
  border-radius: 2px;
}

.category_emergency {
  border: solid 1px #f53f3f !important;
  color: #f53f3f !important;
  font-size: 85%;
  border-radius: 2px;
}

.category_another {
  border: solid 1px #9fc1d8 !important;
  color: #006bb6 !important;
  font-size: 85%;
  border-radius: 2px;
}

.new {
  background: #f53f3f !important;
  border: solid 1px #f53f3f !important;
  color: #ffffff !important;
  border-radius: 2px;
}

/* ページ先頭のレイアウト
------------------------------------------------- */
.front_view .front_contents {
  width: 44%;
}

.front_view .front_contents .hx {
  font-size: 182%;
  color: #00a4c2;
  margin-bottom: 15px;
  font-weight: normal;
}

.front_view .front_contents .content {
  line-height: 1.8;
}

.front_view .front_thumb {
  width: 51%;
  text-align: right;
}

body.society.index h3,
body.imep.index h3 {
  font-weight: normal;
  font-size: 138.5%;
  margin-bottom: 26px;
  background: #006bb6;
  padding: 9px 8px 10px 15px;
  color: #ffffff;
}

body.attach_list th, body.attach_list td {
  font-size: 85%;
}

.module_category_nav + .contents_widget {
  margin-right: 2px;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.module_category_nav + .contents_widget:before {
  content: "";
  background-color: #d1d4d6;
  width: 2px;
  height: 2px;
  position: absolute;
  z-index: 2;
  right: -3px;
  top: -1px;
}

.contents_widget {
  margin: 0 auto;
  background: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px #d1d4d6;
  box-shadow: 2px 2px #d1d4d6;
  border: solid 1px #d1d4d6;
}

.contents_widget .contents_widget__inner {
  padding: 20px;
}

.contents_widget_table {
  display: table;
  width: 100%;
}

.contents_widget_table.attr_layout_fix, .contents_widget_table .attr_layout_fix {
  table-layout: fixed;
}

.contents_widget_table.attr_vertical .contents_widget_table__row,
.contents_widget_table.attr_vertical .contents_widget_table__head,
.contents_widget_table.attr_vertical .contents_widget_table__data {
  display: block;
  width: 100%;
  text-align: left;
}

.contents_widget_table.attr_vertical .contents_widget_table__head,
.contents_widget_table.attr_vertical .contents_widget_table__data {
  padding-left: 20px;
  padding-right: 20px;
}

.contents_widget_table.attr_vertical .contents_widget_table__head {
  padding-bottom: 0;
}

.contents_widget_table.attr_vertical .contents_widget_table__data {
  padding-top: 10px;
}

.contents_widget_table.attr_vertical .contents_widget_table__row + .contents_widget_table__row .contents_widget_table__data {
  border-top: none;
}

.contents_widget_table.attr_vertical .contents_widget_table__col {
  display: table;
}

.contents_widget_table .contents_widget_table__col {
  display: table;
  width: 100%;
}

.contents_widget_table .contents_widget_table__col .contents_widget_table__cell {
  display: table-cell;
}

.contents_widget_table .contents_widget_table__col .contents_widget_table__cell + .contents_widget_table__cell {
  border-left: 1px solid #d1d4d6;
}

.contents_widget_table .contents_widget_table__row {
  display: table-row;
}

.contents_widget_table .contents_widget_table__row + .contents_widget_table__row .contents_widget_table__head,
.contents_widget_table .contents_widget_table__row + .contents_widget_table__row .contents_widget_table__data {
  border-top: solid 1px #d1d4d6;
}

.contents_widget_table .contents_widget_table__head,
.contents_widget_table .contents_widget_table__data {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
}

.contents_widget_table .contents_widget_table__head + *,
.contents_widget_table .contents_widget_table__data + * {
  padding-left: 0;
}

.contents_widget_table .contents_widget_table__head {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 74px;
  padding-right: 30px;
  white-space: nowrap;
  font-size: 114%;
  font-weight: bold;
}

.search_engine_widget {
  height: 45px;
  margin: 0;
}

.search_engine_widget .search_box {
  position: relative;
  padding-right: 95px;
}

.search_engine_widget .search_box.attr_only {
  padding-right: 0;
  border-right: 1px solid #cecccd;
}

.search_engine_widget .search_box.attr_col_main .search_text_box {
  width: 422px;
}

.search_engine_widget .search_box.attr_col_sub .search_text_box {
  width: 250px;
  border-radius: 0;
}

.search_engine_widget .search_box.attr_col_sub .search_btn {
  left: 250px;
}

.search_engine_widget .search_box.attr_w_flat {
  width: auto;
}

.search_engine_widget .search_box.attr_w_flat .search_text_box {
  width: 100%;
}

.search_engine_widget .search_box.attr_w_flat .search_btn {
  left: auto;
  right: 0;
}

.search_engine_widget .search_box .search_text_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  padding: 0 !important;
  margin: 0 !important;
  padding-left: 20px !important;
  width: 320px;
  height: 45px;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #cecccd;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 3px 3px 0px #cecccd inset;
  box-shadow: 3px 3px 0px #cecccd inset;
}

.search_engine_widget .search_box .search_text_box:focus {
  outline: none;
}

.search_engine_widget .search_box .search_text_box::-ms-clear {
  width: 45px;
  height: 20px;
}

.search_engine_widget .search_box .search_btn {
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  padding: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  position: absolute;
  top: 0;
  _top: 1px;
  left: 320px;
  width: 95px;
  height: 45px;
  color: #fff;
  font-size: 129%;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
}

.search_engine_widget .search_box .search_btn:hover {
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
  top: 0;
}

.search_engine_widget .search_box .search_btn:focus {
  outline: none;
}

.search_engine_widget .search_box *:first-child + html .search_btn {
  top: 1px;
}

.search_engine_widget.attr_column {
  display: table;
}

.search_engine_widget.attr_column > * {
  display: table-cell;
}

.search_engine_widget.attr_column .connect_elements {
  width: 30px;
  text-align: center;
}

.search_engine_widget.attr_column .connect_elements img {
  vertical-align: middle;
}

.search_engine_widget.attr_column .search_text_box {
  width: 320px;
}

.search_engine_widget.attr_column .search_btn {
  left: 320px;
}

.search_engine_widget.attr_w_flat {
  width: 100%;
}

.search_engine_widget .select_box {
  -webkit-border-radius: 50px 0 0 50px;
  -moz-border-radius: 50px 0 0 50px;
  -ms-border-radius: 50px 0 0 50px;
  -o-border-radius: 50px 0 0 50px;
  border-radius: 50px 0 0 50px;
  background-color: #ffffff;
  background: -owg-linear-gradient(#ffffff, #eeeeee);
  background: -webkit-linear-gradient(#ffffff, #eeeeee);
  background: -moz-linear-gradient(#ffffff, #eeeeee);
  background: -o-linear-gradient(#ffffff, #eeeeee);
  background: linear-gradient(#ffffff, #eeeeee);
  position: relative;
}

.search_engine_widget .select_box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  z-index: 0;
  right: 15px;
  top: -100%;
  bottom: -100%;
  margin: auto;
}

.search_engine_widget .select_box select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  -webkit-border-radius: 50px 0 0 50px;
  -moz-border-radius: 50px 0 0 50px;
  -ms-border-radius: 50px 0 0 50px;
  -o-border-radius: 50px 0 0 50px;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 15px;
  width: 130px;
  position: relative;
  z-index: 1;
}

.search_engine_widget .select_box select::-ms-expand {
  display: none;
}

.search_engine_widget .attr_before_select_box .search_text_box {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.search_engine_widget .reset_btn button {
  outline: none;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 129%;
  background-color: #f4f4f4;
  background: -owg-linear-gradient(#f4f4f4, #e4e4e4);
  background: -webkit-linear-gradient(#f4f4f4, #e4e4e4);
  background: -moz-linear-gradient(#f4f4f4, #e4e4e4);
  background: -o-linear-gradient(#f4f4f4, #e4e4e4);
  background: linear-gradient(#f4f4f4, #e4e4e4);
  line-height: 46px;
  padding: 0 15px;
  white-space: nowrap;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
}

.search_engine_widget .reset_btn button:hover {
  background-color: #e4e4e4;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE4E4E4', endColorstr='#FFF4F4F4');
  background-image: -owg-linear-gradient(top, #e4e4e4 0%, #f4f4f4 100%);
  background-image: -webkit-linear-gradient(top, #e4e4e4 0%, #f4f4f4 100%);
  background-image: -moz-linear-gradient(top, #e4e4e4 0%, #f4f4f4 100%);
  background-image: -o-linear-gradient(top, #e4e4e4 0%, #f4f4f4 100%);
  background-image: linear-gradient(top, #e4e4e4 0%, #f4f4f4 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 1px;
}

.product_btn_list {
  margin-top: -7px;
}

.product_btn_list li {
  display: inline-block;
  margin-top: 7px;
  vertical-align: bottom;
}

.product_btn_list li a {
  display: block;
  padding: 0 10px;
  line-height: 24px;
  font-size: 100%;
  white-space: nowrap;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.product_btn_list li a .smaller {
  font-size: 79% !important;
}

.kana_btn_list {
  margin-top: -7px;
}

.kana_btn_list li {
  display: inline-block;
  margin-top: 7px;
  vertical-align: bottom;
  padding-bottom: 40px;
  margin-bottom: -40px;
  position: relative;
}

.kana_btn_list li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 46px;
  padding: 7px 5px;
  display: block;
  line-height: 1.3;
}

.kana_btn_list li.active > a {
  position: relative;
}

.kana_btn_list li.active > a:after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #0aa2d4;
  position: absolute;
  left: 0;
  bottom: 1px;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.kana_btn_list li.active > a {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0)";
  top: 1px;
}

.kana_btn_list li.active ul {
  display: block;
}

.kana_btn_list li ul {
  display: none;
  background-color: #0aa2d4;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 0 5px;
  width: 46px;
  position: absolute;
  z-index: 100;
  left: -2px;
  top: 42px;
}

.kana_btn_list li ul:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 6px 20px;
  border-color: transparent transparent #0aa2d4 transparent;
  position: absolute;
  left: 3px;
  top: -6px;
}

.kana_btn_list li ul li {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.kana_btn_list li ul li + li {
  margin-top: 5px;
}

.kana_btn_list li ul li a {
  background-color: #fff;
  display: block;
  min-width: 35px;
  width: 35px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
  padding-bottom: 3px;
}

.kana_btn_list li ul li a:hover, .kana_btn_list .sub_column .side_info_seminar li:hover ul li a, .sub_column .side_info_seminar .kana_btn_list li:hover ul li a, .kana_btn_list li ul li .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .kana_btn_list li ul li a {
  background-color: #0aa2d4;
  background: -owg-linear-gradient(#0aa2d4, #0aa2d4);
  background: -webkit-linear-gradient(#0aa2d4, #0aa2d4);
  background: -moz-linear-gradient(#0aa2d4, #0aa2d4);
  background: -o-linear-gradient(#0aa2d4, #0aa2d4);
  background: linear-gradient(#0aa2d4, #0aa2d4);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0aa2d4', endColorstr='#0aa2d4', GradientType=0)";
  color: #fff;
  border-color: #85d1ea;
}

.nowrap {
  white-space: nowrap;
}

.archive_links {
  margin-left: -30px;
  margin-top: -30px;
}

.archive_links:after {
  content: "";
  display: block;
  clear: both;
}

.archive_links > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: left;
  padding-left: 30px;
  margin-top: 30px;
}

.archive_link_card {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px #d1d4d6;
  box-shadow: 2px 2px #d1d4d6;
  border: solid 1px #d1d4d6;
  padding: 30px;
  padding-right: 0;
  height: 165px;
  position: relative;
}

.archive_link_card a {
  display: block;
}

.archive_link_card a:hover, .archive_link_card .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .archive_link_card a, .archive_link_card .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .archive_link_card a {
  text-decoration: none;
}

.archive_link_card a:hover .archive_link_card__title, .archive_link_card .sub_column .side_info_seminar li:hover a .archive_link_card__title, .sub_column .side_info_seminar li:hover .archive_link_card a .archive_link_card__title, .archive_link_card .sub_column .side_info_seminar .more:hover a .archive_link_card__title, .sub_column .side_info_seminar .more:hover .archive_link_card a .archive_link_card__title {
  text-decoration: underline;
}

.archive_link_card a:hover .archive_link_card__thumb, .archive_link_card .sub_column .side_info_seminar li:hover a .archive_link_card__thumb, .sub_column .side_info_seminar li:hover .archive_link_card a .archive_link_card__thumb, .archive_link_card .sub_column .side_info_seminar .more:hover a .archive_link_card__thumb, .sub_column .side_info_seminar .more:hover .archive_link_card a .archive_link_card__thumb {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.archive_link_card .archive_link_card__thumb {
  background-repeat: no-repeat;
  background-position: right center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}

.archive_link_card .archive_link_card__title {
  color: #00a4c2;
  font-size: 157%;
  font-weight: bold;
  line-height: 1.3;
  margin: -.15em 0;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}

.archive_link_card .archive_link_card__title:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  left: 0;
  top: .4em;
}

.archive_link_card .archive_link_card__title + .archive_link_card__contents {
  margin-top: 15px;
}

.archive_link_card .archive_link_card__contents {
  color: #333;
  position: relative;
  z-index: 1;
}

.comparison_table.attr_layout_fix table {
  table-layout: fixed;
}

.comparison_table .attr_fs_smaller {
  font-size: 86%;
}

.comparison_table .attr_fs_smaller .min {
  font-size: 83%;
}

.comparison_table .attr_tb_pad_none th, .comparison_table .attr_tb_pad_none td {
  padding-top: 0;
  padding-bottom: 0;
}

.comparison_table th, .comparison_table td {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: normal;
  vertical-align: middle;
  border: 1px solid #e5e5e5;
  padding: 15px;
}

.comparison_table .td_color {
  background-color: #e5e5e5;
}

.comparison_table .td_color_line {
  background-color: #e5e5e5;
  border-right: 1px solid #ffffff !important;
}

.comparison_table .td_color_line:last-child {
  border-right-color: #e5e5e5 !important;
}

.icon_link {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 23px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  text-align: center;
  font-size: 108%;
  color: #333;
  background: #0aa2d4;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: 1px;
  -moz-box-shadow: 1px;
  box-shadow: 1px;
  background: -owg-linear-gradient(#fff, #eee);
  background: -webkit-linear-gradient(#fff, #eee);
  background: -moz-linear-gradient(#fff, #eee);
  background: -o-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffff', endColorstr='#eeeeee', GradientType=0)";
}

.icon_link:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0)";
  top: 1px;
}

.icon_link img {
  display: inline-block;
  padding: 6px 0;
  text-align: center;
  vertical-align: middle;
}

.module_category_nav {
  border-bottom: 8px solid #006bb6;
  display: table;
  width: 100%;
}

.module_category_nav.attr_layout_fix {
  table-layout: fixed;
}

.module_category_nav.attr_colorize_light {
  border-bottom-color: #0aa2d4;
}

.module_category_nav.attr_colorize_light li.active > span, .module_category_nav.attr_colorize_light li.active > a {
  background-color: #0aa2d4;
}

.module_category_nav.info_search_query2 li > span {
  cursor: pointer;
}

.module_category_nav.fs_normal li {
  height: 34px;
}

.module_category_nav.fs_normal li:before {
  height: 37px;
}

.module_category_nav.fs_normal li a, .module_category_nav.fs_normal li span {
  font-size: 100%;
  height: 34px;
  line-height: 34px;
}

.module_category_nav a, .module_category_nav span {
  font-size: 153.9%;
  display: block;
  height: 57px;
  line-height: 57px;
  text-align: center;
  text-decoration: none;
  color: black;
  border-radius: 5px 5px 0 0;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}

.module_category_nav a .min, .module_category_nav span .min {
  font-size: 13px;
  height: auto;
  line-height: normal;
  border: none;
  background: none;
}

.module_category_nav .active span {
  background: #006bb6;
  border-color: #006bb6;
  color: white;
}

.module_category_nav li {
  height: 57px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  position: relative;
}

.module_category_nav li:hover .module_category_nav__base {
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#fffffff', GradientType=0)";
}

.module_category_nav li.active .module_category_nav__base {
  background: #006bb6;
  border-color: #006bb6;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#006bb6', endColorstr='#006bb6', GradientType=0)";
  color: white;
  font-size: 100%;
}

.module_category_nav li .module_category_nav__base {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  background: -owg-linear-gradient(#fff, #eee);
  background: -webkit-linear-gradient(#fff, #eee);
  background: -moz-linear-gradient(#fff, #eee);
  background: -o-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffff', endColorstr='#eeeeee', GradientType=0)";
  font-size: 153.9%;
  display: block;
  width: 100%;
  height: 57.5px;
  text-align: center;
  text-decoration: none;
  color: black;
  border-radius: 5px 5px 0 0;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}

.module_category_nav li > span, .module_category_nav li > a {
  font-size: 129%;
  line-height: 1.15;
  background: none;
  height: auto;
  border: none;
  position: relative;
  z-index: 1;
  padding: 3px 0 0;
}

.module_category_nav.nav_4tabs li {
  width: 25%;
}

.list_new_product_archives {
  margin-left: -30px;
  margin-top: -15px;
}

.list_new_product_archives:after {
  content: "";
  display: block;
  clear: both;
}

.list_new_product_archives > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding-left: 30px;
  margin-top: 15px;
}

.list_new_product_archives > li:nth-child(2n+1) {
  clear: both;
}

.list_new_product_archives.col_3 > li {
  width: 33.33%;
}

.list_new_product_archives.col_3 > li:nth-child(2n+1) {
  clear: none;
}

.list_new_product_archives.col_3 > li:nth-child(3n+1) {
  clear: both;
}

.producet_nav_btn.producet_nav_btn__frame, .producet_nav_btn .producet_nav_btn__frame {
  display: block;
  background-color: #f6f6f6;
  display: block;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px #dad9da;
  box-shadow: 2px 2px #dad9da;
  border: solid 1px #dad9da;
  position: relative;
  padding: 8px;
}

.producet_nav_btn, .producet_nav_btn a {
  color: #333;
}

.producet_nav_btn:hover, .producet_nav_btn a:hover, .producet_nav_btn .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .producet_nav_btn a, .producet_nav_btn .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .producet_nav_btn a {
  text-decoration: none;
}

.producet_nav_btn:hover .producet_nav_btn__title,
.producet_nav_btn:hover .producet_nav_btn__description,
.producet_nav_btn:hover img, .producet_nav_btn a:hover .producet_nav_btn__title, .producet_nav_btn .sub_column .side_info_seminar li:hover a .producet_nav_btn__title, .sub_column .side_info_seminar li:hover .producet_nav_btn a .producet_nav_btn__title, .producet_nav_btn .sub_column .side_info_seminar .more:hover a .producet_nav_btn__title, .sub_column .side_info_seminar .more:hover .producet_nav_btn a .producet_nav_btn__title,
.producet_nav_btn a:hover .producet_nav_btn__description,
.producet_nav_btn .sub_column .side_info_seminar li:hover a .producet_nav_btn__description, .sub_column .side_info_seminar li:hover
.producet_nav_btn a .producet_nav_btn__description,
.producet_nav_btn .sub_column .side_info_seminar .more:hover a .producet_nav_btn__description, .sub_column .side_info_seminar .more:hover
.producet_nav_btn a .producet_nav_btn__description,
.producet_nav_btn a:hover img,
.producet_nav_btn .sub_column .side_info_seminar li:hover a img, .sub_column .side_info_seminar li:hover
.producet_nav_btn a img,
.producet_nav_btn .sub_column .side_info_seminar .more:hover a img, .sub_column .side_info_seminar .more:hover
.producet_nav_btn a img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.producet_nav_btn:hover .producet_nav_btn__cap .cap_inner, .producet_nav_btn a:hover .producet_nav_btn__cap .cap_inner, .producet_nav_btn .sub_column .side_info_seminar li:hover a .producet_nav_btn__cap .cap_inner, .sub_column .side_info_seminar li:hover .producet_nav_btn a .producet_nav_btn__cap .cap_inner, .producet_nav_btn .sub_column .side_info_seminar .more:hover a .producet_nav_btn__cap .cap_inner, .sub_column .side_info_seminar .more:hover .producet_nav_btn a .producet_nav_btn__cap .cap_inner {
  text-decoration: underline;
}

.producet_nav_btn .producet_nav_btn__inner {
  overflow: hidden;
  *zoom: 1;
  background-color: #fff;
  padding: 15px 20px;
}

.producet_nav_btn .producet_nav_btn__thumb {
  display: inline;
  float: right;
  margin-left: 20px;
}

.producet_nav_btn .producet_nav_btn__thumb ~ * {
  overflow: hidden;
}

.producet_nav_btn .producet_nav_btn__title {
  font-size: 129%;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0;
}

.producet_nav_btn * + .producet_nav_btn__description {
  margin-top: 5px;
  line-height: 1.3;
}

.producet_nav_btn .producet_nav_btn__description {
  font-size: 86%;
}

.producet_nav_btn .producet_nav_btn__cap {
  display: block;
  margin-top: 13px;
}

.producet_nav_btn .producet_nav_btn__cap .cap_inner {
  font-size: 114%;
  color: #00a4c2;
}

.update_contents .update {
  border-bottom: 1px solid #e5e5e5;
}

.update_contents .attr, .update_contents .content {
  display: table-cell;
  padding: 20px 0;
}

.update_contents .attr {
  width: 234px;
  vertical-align: top;
}

.update_contents .attr time {
  display: table-cell;
  width: 115px;
}

.update_contents .attr .category {
  display: table-cell;
  width: 115px;
}

.update_contents .attr .category span {
  margin-left: 15px;
  border-color: #9fc1d8;
  color: #006bb6;
  border-radius: 2px;
  vertical-align: middle;
  text-align: center;
  width: 100px;
  position: relative;
  padding: 0 !important;
}

.update_contents .content {
  padding-left: 10px;
}

.update_contents .content i img {
  vertical-align: middle;
  position: relative;
  top: -.15em;
  padding-right: 5px;
}

.update_contents .content i:first-child {
  margin-right: 5px;
}

.update_contents .content a {
  display: inline-block;
  vertical-align: top;
  width: 585px;
}

.link_thumbnail, .link_thumbnail a {
  display: block;
}

.link_thumbnail .link_thumbnail__img {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px #d1d4d6;
  box-shadow: 2px 2px #d1d4d6;
  border: solid 1px #d1d4d6;
}

.link_thumbnail .link_thumbnail__caps {
  display: block;
  text-align: left;
  font-size: 114%;
  margin-top: 10px;
  padding-left: 12px;
  position: relative;
}

.link_thumbnail .link_thumbnail__caps:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  left: 0;
  top: .2em;
}

.products_popup01 .subtitle {
  margin-bottom: 15px;
}

.products_popup01 .products_popup01__contents {
  font-size: 14px;
  line-height: 1.6;
  margin: -0.375em 0;
}

.products_popup01 .products_popup01__more {
  margin-top: 18px;
}

.products_popup01 .products_popup01__more > * + * {
  margin-top: 9px;
}

.products_popup01 .products_popup01__more > * {
  text-align: center;
}

.products_popup01 .products_popup01__more > * a {
  display: inline-block;
  width: 350px;
}

.products_popup02 .subtitle {
  margin-bottom: 15px;
}

.products_popup02 .products_popup02__contents {
  font-size: 14px;
  line-height: 1.6;
  margin: -0.375em 0;
}

.products_popup02 .products_popup02__more {
  margin-top: 30px;
  text-align: center;
}

.products_popup02 .products_popup02__more > * + * {
  margin-left: 9px;
}

.products_popup02 .products_popup02__more > * {
  text-align: center;
}

.products_popup02 .products_popup02__more > * a {
  display: inline-block;
}

.products_popup02 .products_popup02__more > *.cbox_close_self a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 90px;
}

.products_popup02 .products_popup02__more > *.cbox_close_self a .icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -.15em;
}

.products_popup02 .products_popup02__more > *.cbox_close_self a .icon img {
  vertical-align: middle;
}

.products_popup02 .products_popup02__more > *.pdf_btn a {
  width: 165px;
}

.search_query_widget .white_btn.current {
  background-color: #0aa2d4;
  background: -owg-linear-gradient(#0aa2d4, #0aa2d4);
  background: -webkit-linear-gradient(#0aa2d4, #0aa2d4);
  background: -moz-linear-gradient(#0aa2d4, #0aa2d4);
  background: -o-linear-gradient(#0aa2d4, #0aa2d4);
  background: linear-gradient(#0aa2d4, #0aa2d4);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0aa2d4', endColorstr='#0aa2d4', GradientType=0)";
}

.search_query_widget .white_btn.current:hover {
  top: 0;
  -webkit-box-shadow: 1px;
  -moz-box-shadow: 1px;
  box-shadow: 1px;
}

/* 医薬品・医療機器・重要なお知らせボタン
------------------------------------------------- */
.info_line_title a {
  color: #fff;
}

p.product_different_text {
  line-height: 130%;
  margin-bottom: 10px;
}

p.product_different_text_bottom {
  line-height: 130%;
}

/* 保険請求エッセンスページ
------------------------------------------------- */
body.insurance .icon {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 403px;
  height: 60px;
  padding: 17px 10px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  /*text-align:left;*/
  font-size: 114%;
  color: #333;
  background: #0aa2d4;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: 1px;
  -moz-box-shadow: 1px;
  box-shadow: 1px;
  background: -owg-linear-gradient(#fff, #eee);
  background: -webkit-linear-gradient(#fff, #eee);
  background: -moz-linear-gradient(#fff, #eee);
  background: -o-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffff', endColorstr='#eeeeee', GradientType=0)";
}

body.insurance .icon:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0)";
  top: 1px;
}

body.insurance .icon img {
  display: inline-block;
  padding-bottom: 7px;
}

body.insurance .errata {
  height: 40px;
  font-size: 100%;
  padding: 8px;
}

body.insurance .errata img {
  padding-bottom: 5px;
}

body.insurance .info {
  margin-top: 50px;
}

body.insurance .info h3.message {
  font-size: 157%;
  margin-bottom: 20px;
}

body.insurance .info .f_ml60 {
  float: left;
}

body.insurance .info .f_mr80 {
  float: right;
}

body.insurance .info h4.contests_ttl {
  width: 404px;
  border-bottom: #ccc 1px dotted;
  font-size: 184%;
}

body.insurance .info .contents_list dl {
  width: 404px;
}

body.insurance .info .contents_list dt {
  float: left;
  clear: left;
  margin-bottom: 5px;
  padding-left: 5px;
  font-size: 128%;
}

body.insurance .info .contents_list dt.list_ttl {
  width: 80px;
  height: 26px;
  color: #ffffff;
  font-weight: normal;
  text-align: center;
  background: #aac863;
}

body.insurance .info .contents_list dt.list_ttl.list1 {
  background: #aace36;
}

body.insurance .info .contents_list dt.list_ttl.list2 {
  background: #ee87b4;
}

body.insurance .info .contents_list dt.list_ttl.list3 {
  background: #008ccf;
}

body.insurance .info .contents_list dt.list_ttl.list4 {
  background: #f7b155;
}

body.insurance .info .contents_list dt.list_ttl.list5 {
  background: #37b48d;
}

body.insurance .info .contents_list dt.list_ttl.list6 {
  background: #ba79b1;
}

body.insurance .info .contents_list dt.list_ttl.list7 {
  background: #d7c447;
}

body.insurance .info .contents_list dt.list_ttl.list8 {
  background: #66b0cc;
}

body.insurance .info .contents_list dt.list_ttl.list9 {
  background: #f19c97;
}

body.insurance .info .contents_list dt.list_ttl.list10 {
  background: #67b5b7;
}

body.insurance .info .contents_list dd {
  height: 26px;
  font-size: 128%;
  margin-bottom: 10px;
  border-bottom: #ccc 1px dotted;
  padding-left: 105px;
  padding-bottom: 10px;
}

/* -------------------------------------------------------------------------

		icon.sass

------------------------------------------------------------------------- */
@font-face {
  font-family: "reg-icon";
  src: url("reg-fonts/reg-icon.eot?cxb6ex");
  src: url("reg-fonts/reg-icon.eot?cxb6ex#iefix") format("embedded-opentype"), url("reg-fonts/reg-icon.ttf?cxb6ex") format("truetype"), url("reg-fonts/reg-icon.woff?cxb6ex") format("woff"), url("reg-fonts/reg-icon.svg?cxb6ex#reg-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="reg-ico__"]:before, [class*=" reg-ico__"]:before, .reg-ico {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "reg-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reg-ico__graph:before {
  content: "";
}

.reg-ico__system:before {
  content: "";
}

.reg-ico__heart:before {
  content: "";
}

.reg-ico__product:before {
  content: "";
}

.reg-ico__company:before {
  content: "";
}

.reg-ico__bullet:before {
  content: "";
}
.reg-ico__institution {
  content: "";
}

/* -------------------------------------------------------------------------

		module.sass

------------------------------------------------------------------------- */
.reg_module_btn {
  display: block;
  position: relative;
}

.reg_module_btn, .reg_module_btn a,
.reg_module_btn .reg_module_btn__icon {
  -webkit-transition: color;
  -moz-transition: color;
  -o-transition: color;
  transition: color;
}

.reg_module_btn:before {
  -webkit-box-shadow: 0;
  -moz-box-shadow: 0;
  box-shadow: 0;
  -webkit-transition: all;
  -moz-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  transition: all 500ms ease !important;
  content: "";
  display: block;
  background-color: #fff;
  padding-top: 100%;
  box-shadow: 0 0 20px rgba(33, 81, 144, 0.05);
}

.reg_module_btn, .reg_module_btn a {
  color: #215190;
}

.reg_module_btn:hover {
  /*&, a{
      color: #fff;
    }*/
  /*.reg_module_btn__icon{
      color: #fff;
    }*/
}

.reg_module_btn:hover, .reg_module_btn:hover * {
  text-decoration: none;
}

.reg_module_btn:hover:before {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  background-color: #cbddf5;
}

.reg_module_btn__collision {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

.reg_module_btn__icon {
  color: #215190;
  display: block;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 10px;
}

.reg_module_btn__label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.45;
}

.reg_module_btn__label:before {
  content: "";
  display: block;
  margin-top: -.45em;
}

/* -------------------------------------------------------------------------

		top.sass

		topのスタイルを定義

------------------------------------------------------------------------- */
/* top
------------------------------------------------- */
body.regenerative .wrapper {
  padding-bottom: 0;
}

body.regenerative .module_float_banner {
  -webkit-transition: 150ms;
  -moz-transition: 150ms;
  -o-transition: 150ms;
  transition: 150ms;
  -webkit-transition-property: right;
  -moz-transition-property: right;
  -o-transition-property: right;
  transition-property: right;
  position: fixed;
  z-index: 300;
  right: -280px;
  top: 293px;
}

body.regenerative .module_float_banner:hover {
  right: 0;
}

body.regenerative .info_bbs {
  background-color: #fcfeff;
  border-bottom: 1px solid #e2e4e5;
}

body.regenerative .info_bbs__inner {
  height: 40px;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
}

body.regenerative .info_bbs__label {
  color: #f53838;
}

body.regenerative .info_bbs__label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #f53838;
  margin: 0 8px;
  vertical-align: middle;
}

body.regenerative .info_bbs__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
}

body.regenerative .info_bbs__grid > time {
  margin-right: 10px;
}

body.regenerative .info_bbs__grid a {
  /*color: #333;*/
}

body.regenerative .info_bbs .ticker {
  overflow: hidden;
  position: relative;
  text-align: left;
  padding: 9px 0;
}

body.regenerative .info_bbs .ticker ul {
  overflow: hidden;
  position: relative;
  width: 800px;
  height: 25px;
}

body.regenerative .info_bbs .ticker ul li {
  display: none;
  line-height: 1.5;
  margin-top: .25em;
}

body.regenerative .main_contents {
  position: relative;
  background: url(/resource/reg_img/bg_repeat.png) left top repeat-x #eaf5fd;
}

body.regenerative .main_contents:before {
  background: url(/resource/reg_img/bg.png) center top no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

body.regenerative .main_contents__inner {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 105px 0 90px;
  position: relative;
}

body.regenerative .main_header {
  text-align: center;
  margin-bottom: 120px;
}

body.regenerative .main_header__upper {
  display: block;
  font-size: 18px;
  color: #034587;
  margin-bottom: 20px;
}

body.regenerative .main_nav__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  margin-top: -30px;
}

body.regenerative .main_nav__grid > * {
  width: 260px;
  margin-top: 30px;
}

body.regenerative .main_nav .reg_module_btn__icon {
  height: 82px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}

body.regenerative .main_nav .reg_module_btn__icon.reg-ico__product {
  font-size: 102px;
  height: auto;
}

body.regenerative .main_nav .reg_module_btn__icon.reg-ico__heart {
  font-size: 64px;
}

body.regenerative .main_nav .reg_module_btn__icon.reg-ico__system {
  font-size: 70px;
}

body.regenerative .main_nav .reg_module_btn__icon.reg-ico__bullet {
  font-size: 94px;
  height: auto;
  margin-bottom: 16px;
}

body.regenerative .main_nav .reg_module_btn__icon.reg-ico__graph {
  font-size: 64px;
}

body.regenerative .main_nav .reg_module_btn__icon.reg-ico__company {
  font-size: 70px;
}

body.regenerative .main_nav .reg_module_btn__label {
  min-height: 2.5em;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}

_:-ms-lang(x), body.regenerative .main_nav .reg_module_btn__label {
  height: 2.5em;
}

_:-ms-fullscreen, :root body.regenerative .main_nav .reg_module_btn__label {
  height: 2.5em;
}

body.regenerative .info_box {
  margin: 90px 0 0 0;
}

body.regenerative .info_box .info_box_inner {
  width: 466px;
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
  background-color: #fff;
}

body.regenerative .info_box .info_box_inner .info_title h4 {
  float: left;
  font-size: 131%;
}

body.regenerative .info_box .info_box_inner .info_title h4 span:before {
  font-size: 138.5%;
}

body.regenerative .info_box .info_box_inner .info_title p {
  float: right;
}

body.regenerative .info_box .info_box_inner .info_scroll {
  height: auto;
}

body.regenerative .info_box .info_box_inner .info_scroll dl {
  width: 100% !important;
  height: 385px;
  padding: 15px 0 0 0;
}

body.regenerative .info_box .info_box_inner .info_scroll dl dt {
  padding: 0 15px 10px 20px;
}

body.regenerative .info_box .info_box_inner .info_scroll dl dd {
  width: 100%;
  padding: 0 15px 10px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
  display: block;
}

body.regenerative .info_box .info_box_inner .info_scroll dl dd:before {
  display: none;
}

body.regenerative .info_box .float_l dl span {
  margin-left: 10px;
}

body.regenerative .info_box .float_r dl span {
  margin-left: 10px;
}

body.regenerative .info_box .one_column {
  width: 100%;
}

body.regenerative .info_box_inner .info_search_query {
  border-bottom: 2px solid #006bb6;
  margin-bottom: 5px;
}

body.regenerative .info_box_inner .info_search_query ul {
  overflow: hidden;
  *zoom: 1;
}

body.regenerative .info_box_inner .info_search_query ul li {
  float: left;
  font-size: 79%;
}

body.regenerative .info_box_inner .info_search_query ul li .query_btn {
  display: block;
  height: 38px;
  color: #000000;
  padding: 5px 8px 5px 8px;
  vertical-align: middle;
  cursor: pointer;
  border-right: 1px solid #ccc;
}

body.regenerative .info_box_inner .info_search_query ul li .query_btn:before {
  width: 1px;
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

body.regenerative .info_box_inner .info_search_query ul li .query_btn:hover {
  background-color: #d9e9f4;
}

body.regenerative .info_box_inner .info_search_query ul li .query_btn.active {
  background-color: #006bb6;
  color: #fff;
}

body.regenerative .info_box_inner .info_search_query ul li .query_btn.no_border {
  border-right: none !important;
}

body.regenerative .info_box_inner .info_scroll .ph_tag {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
}

body.regenerative .info_box_inner .info_scroll .ph_tag.category_imep {
  color: #f19410 !important;
  border-color: #f19410 !important;
}

body.regenerative .info_box_inner .info_scroll dl dd {
  width: 100%;
  box-sizing: border-box;
  display: block;
}

body.regenerative .info_box_inner .info_scroll dl dd:before {
  display: none;
}

/* -------------------------------------------------------------------------

		reg_safety

		reg_safetyのスタイルを定義

------------------------------------------------------------------------- */
/* common
body.reg_safety{
}
*/
/* index
------------------------------------------------- */
/* devices_products_news_top
------------------------------------------------- */
body.reg_safety.index .inner_col_01 {
  padding-bottom: 37px;
  margin: 0 auto;
  width: 860px;
}

body.reg_safety.index .title_box {
  overflow: hidden;
  *zoom: 1;
}

body.reg_safety.index .update_contents {
  margin-top: -15px;
}

body.reg_safety.index .update_contents .update {
  border-bottom: 1px solid #e5e5e5;
}

body.reg_safety.index .update_contents .attr, body.reg_safety.index .update_contents .content {
  display: table-cell;
  padding: 20px 0;
}

body.reg_safety.index .update_contents .attr {
  width: auto;
  vertical-align: top;
}

body.reg_safety.index .update_contents .attr .category {
  display: table-cell;
  width: auto;
}

body.reg_safety.index .update_contents .attr .category span {
  margin-left: 0;
  border-color: #9fc1d8;
  color: #006bb6;
  border-radius: 2px;
  vertical-align: middle;
  text-align: center;
  width: 100px;
  position: relative;
  padding: 0 !important;
}

body.reg_safety.index .update_contents .content {
  padding-left: 20px;
}

body.reg_safety.index .update_contents .content i img {
  vertical-align: middle;
  position: relative;
  top: -.15em;
}

body.reg_safety.index .update_contents .content a {
  display: inline-block;
  vertical-align: top;
  width: 585px;
}

@media all and (-ms-high-contrast: none) {
  body.reg_safety.index .title_box .sort_item .custom_select {
    overflow: hidden;
  }
  body.reg_safety.index .title_box .sort_item .custom_select select {
    width: 120%;
  }
}

/* -------------------------------------------------------------------------

		reg_product

------------------------------------------------------------------------- */
body.reg_product .title_box h2 {
  width: 670px;
  float: left;
}

body.reg_product .title_box .print_btn {
  float: right;
}

body.reg_product .title_box .print_btn a {
  padding: 6px 10px 4px;
}

body.reg_product .title_box .print_btn a span {
  background: url(../med_img_common/icon_print.png) no-repeat left center;
  padding-left: 25px;
}

body.reg_product .contents > .inner_col_01 {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 30px;
}

body.reg_product .img_text_box .right_box {
  float: right;
  width: 373px;
}

body.reg_product .img_text_box .right_box .table_style {
  font-size: 11px;
}

body.reg_product .img_text_box .right_box .table_style th:first-child {
  width: 90px;
}

body.reg_product .img_text_box .right_box .table_style th, body.reg_product .img_text_box .right_box .table_style td {
  padding: 10px;
}

body.reg_product .img_text_box .view_img {
  width: 455px;
  display: block;
}

body.reg_product .img_text_box .view_img .view_img_inner {
  position: relative;
  height: 300px;
  border-radius: 5px;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
  overflow: hidden;
}

body.reg_product .img_text_box .view_img .view_img_inner .list_img_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  border: solid 10px #aaa;
  opacity: .1;
  -ms-filter: "alpha(opacity=10)";
}

body.reg_product .img_text_box .view_img .view_img_inner img {
  position: static;
}

body.reg_product .img_text_box .view_img .view_img_inner a {
  outline: none;
  display: block;
}

body.reg_product .img_text_box .view_img .view_img_inner a .img_mask {
  text-align: center;
  background: #ccc;
}

body.reg_product .img_text_box .view_img .view_img_inner a .img_mask img {
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
  max-height: 100%;
  width: auto;
  border: none;
  height: auto;
  border-radius: 4px;
  margin: auto;
}

body.reg_product .img_text_box .view_img .view_img_inner a span {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 100;
}

body.reg_product .img_text_box .view_img .view_img_inner a:hover span img, body.reg_product .img_text_box .view_img .view_img_inner .sub_column .side_info_seminar li:hover a span img, .sub_column .side_info_seminar li:hover body.reg_product .img_text_box .view_img .view_img_inner a span img, body.reg_product .img_text_box .view_img .view_img_inner .sub_column .side_info_seminar .more:hover a span img, .sub_column .side_info_seminar .more:hover body.reg_product .img_text_box .view_img .view_img_inner a span img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

body.reg_product .img_text_box .img_box {
  float: left;
}

body.reg_product .img_text_box .img_box .list_box {
  float: none;
  width: 259px;
  display: block;
}

body.reg_product .img_text_box .img_box .list_box p {
  margin-top: -5px;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner {
  position: relative;
  height: 171px;
  border-radius: 5px;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner img {
  position: static;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner a {
  outline: none;
  display: block;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner a .img_mask {
  text-align: center;
  background: #ccc;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner a .img_mask img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-height: 100%;
  width: auto;
  border: none;
  height: auto;
  border-radius: 4px;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner a span {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 100;
}

body.reg_product .img_text_box .img_box .list_box .list_box_inner a:hover span img, body.reg_product .img_text_box .img_box .list_box .list_box_inner .sub_column .side_info_seminar li:hover a span img, .sub_column .side_info_seminar li:hover body.reg_product .img_text_box .img_box .list_box .list_box_inner a span img, body.reg_product .img_text_box .img_box .list_box .list_box_inner .sub_column .side_info_seminar .more:hover a span img, .sub_column .side_info_seminar .more:hover body.reg_product .img_text_box .img_box .list_box .list_box_inner a span img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

body.reg_product .img_text_box .img_box .sp-grab,
body.reg_product .img_text_box .img_box .sp-grabbing {
  cursor: pointer;
}

body.reg_product .img_text_box .img_box .sp-bottom-thumbnails {
  width: 100% !important;
}

body.reg_product .img_text_box .img_box .sp-bottom-thumbnails .sp-thumbnails {
  width: 100% !important;
  margin-top: 10px;
}

body.reg_product .img_text_box .img_box .sp-bottom-thumbnails .sp-thumbnails .sp-thumbnail-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 2px;
  -moz-box-shadow: 2px;
  box-shadow: 2px;
  border: solid 1px #d1d4d6;
  border-radius: 3px;
  width: 83px !important;
  height: 57px !important;
  overflow: hidden;
  margin: 10px 0 0 10px !important;
  position: relative;
}

body.reg_product .img_text_box .img_box .sp-bottom-thumbnails .sp-thumbnails .sp-thumbnail-container:first-child, body.reg_product .img_text_box .img_box .sp-bottom-thumbnails .sp-thumbnails .sp-thumbnail-container:nth-child(5n+1) {
  margin-left: 0 !important;
  clear: both;
}

body.reg_product .img_text_box .img_box .sp-bottom-thumbnails .sp-thumbnails .sp-thumbnail-container.sp-selected-thumbnail {
  border-color: #0aa2d4;
}

body.reg_product .img_text_box .img_box .sp-top-thumbnails, body.reg_product .img_text_box .img_box .sp-bottom-thumbnails {
  margin: 0;
}

body.reg_product .img_text_box .breed_table {
  margin-left: 0;
}

body.reg_product .img_text_box .breed_table .w80 {
  width: 80px;
}

body.reg_product .img_text_box .breed_table .w117 {
  width: 117px;
}

body.reg_product .img_text_box .breed_table .w204 {
  width: 204px;
}

body.reg_product .img_text_box .breed_table .w71 {
  width: 71px;
}

body.reg_product .img_text_box .breed_table .w73 {
  width: 73px;
}

body.reg_product .img_text_box .breed_table .w77 {
  width: 77px;
}

body.reg_product .img_text_box .breed_table .w232 {
  width: 232px;
}

body.reg_product .img_text_box .breed_table .breed_tab .breed_tab_btn {
  border-bottom: 4px solid #0aa2d4;
  margin: 0 0 20px;
}

body.reg_product .img_text_box .breed_table .breed_tab .breed_tab_btn li {
  float: left;
  width: 25%;
  text-align: center;
  font-size: 123.1%;
  padding: 5px 0 2px 0;
  cursor: pointer;
  background: linear-gradient(to bottom, #ffffff, #efefef);
  border-radius: 5px 5px 0 0;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}

body.reg_product .img_text_box .breed_table .breed_tab .breed_tab_btn .select {
  background: #0aa2d4;
  color: #fff;
  border-color: #0aa2d4;
}

body.reg_product .img_text_box .breed_table .breed_box {
  height: auto;
  overflow: inherit;
  font-size: 11px;
}

body.reg_product .img_text_box .breed_table .breed_box .table_style th, body.reg_product .img_text_box .breed_table .breed_box .table_style td {
  padding: 10px;
}

body.reg_product .img_text_box .breed_table .breed_box td:first-child {
  width: 80px;
}

body.reg_product .img_text_box .breed_table .breed_box td:first-child div {
  display: inline;
  vertical-align: middle;
}

body.reg_product .img_text_box .breed_table .breed_box .pdf_attach {
  text-align: center;
}

body.reg_product .img_text_box .breed_table .breed_box .pdf_btn {
  display: inline;
}

body.reg_product .img_text_box .breed_table .breed_box .pdf_btn .white_btn {
  padding: 2px 10px 0px 19px;
  display: inline-block;
}

body.reg_product .img_text_box .breed_table .breed_box .notes_btn {
  display: inline;
}

body.reg_product .img_text_box .breed_table .breed_box .product_code {
  width: 200px;
}

body.reg_product .img_text_box .breed_table .breed_box.hide {
  overflow: hidden;
  height: 0;
}

body.reg_product .icon_link_group {
  vertical-align: middle;
}

body.reg_product .icon_link_group .icon_link {
  position: relative;
  top: -.1em;
  margin-right: 10px;
}

body.reg_product .icon_link_group:hover {
  text-decoration: none;
}

body.reg_product .icon_link_group:hover .icon_link {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: -owg-linear-gradient(#eee, #fff);
  background: -webkit-linear-gradient(#eee, #fff);
  background: -moz-linear-gradient(#eee, #fff);
  background: -o-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0)";
  top: 1px;
}

body.reg_product .anchor_btn {
  text-align: center;
}

body.reg_product .anchor_btn li {
  display: inline-block;
  margin-top: 7px;
  vertical-align: bottom;
}

body.reg_product .anchor_btn a {
  color: #333;
}

body.reg_product .anchor_btn a:hover, body.reg_product .anchor_btn .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover body.reg_product .anchor_btn a, body.reg_product .anchor_btn .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover body.reg_product .anchor_btn a {
  color: #00a4c2;
}

body.reg_product .anchor_btn .flat_btn {
  display: block;
  position: relative;
  text-align: center;
  font-size: 90%;
  /*color: #333;*/
  line-height: 1.6;
  border: 1px solid #e5e5e5;
  padding: 10px 21px 10px 30px;
}

body.reg_product .anchor_btn .arrow {
  position: relative;
  z-index: 1;
}

body.reg_product .anchor_btn .arrow:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  left: -1.2em;
  top: 0.6em;
  display: block;
}

body.reg_product .table_style .pdf_btn_01 a span {
  background: url(../med_img_common/icon_pdf.png) no-repeat left center;
  padding-left: 20px;
}

body.reg_product .module_product_detail_table > table > thead > tr:last-child .td_color_line {
  border-bottom: #fff 1px solid;
}

body.reg_product .module_product_detail_table > table > thead > tr > .td_color_line,
body.reg_product .module_product_detail_table > table > tbody > tr > .td_color_line {
  border-bottom: #fff 1px solid;
  border-left: none;
}

body.reg_product .module_product_detail_table > table > thead > tr > th,
body.reg_product .module_product_detail_table > table > thead > tr > td,
body.reg_product .module_product_detail_table > table > tbody > tr > th,
body.reg_product .module_product_detail_table > table > tbody > tr > td {
  line-height: 1.45;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  vertical-align: top;
}

body.reg_product .module_product_detail_table > table > thead > tr > th *,
body.reg_product .module_product_detail_table > table > thead > tr > td *,
body.reg_product .module_product_detail_table > table > tbody > tr > th *,
body.reg_product .module_product_detail_table > table > tbody > tr > td * {
  line-height: inherit;
}

body.reg_product .module_product_detail_table > table > thead > tr > th:first-child,
body.reg_product .module_product_detail_table > table > tbody > tr > th:first-child {
  width: 114px;
}

body.reg_product .module_product_detail_table > table > thead > tr > th:first-child.w_med,
body.reg_product .module_product_detail_table > table > tbody > tr > th:first-child.w_med {
  width: 177px;
}

body.reg_product .module_product_detail_table > table > thead > tr > th:first-child.w_auto,
body.reg_product .module_product_detail_table > table > tbody > tr > th:first-child.w_auto {
  width: auto;
}

body.reg_product .module_product_detail_table > table > thead > tr > th,
body.reg_product .module_product_detail_table > table > thead > tr > td {
  padding: 15px 10px;
}

body.reg_product .module_product_detail_table > table > tbody > tr > th,
body.reg_product .module_product_detail_table > table > tbody > tr > td {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 10px;
}

body.reg_product .module_product_detail_table > table > tbody > tr > th {
  text-align: left;
}

body.reg_product .module_product_detail_table > table > tbody > tr > td {
  word-wrap: break-word;
}

body.reg_product .module_spec_table {
  font-size: 13px;
}

body.reg_product .module_spec_table .grid-unit {
  width: 114px;
}

body.reg_product .module_spec_table > table > thead > tr > .td_color_line,
body.reg_product .module_spec_table > table > tbody > tr > .td_color_line {
  border-bottom: #fff 1px solid;
  border-left: none;
}

body.reg_product .module_spec_table > table > thead > tr > th,
body.reg_product .module_spec_table > table > thead > tr > td,
body.reg_product .module_spec_table > table > tbody > tr > th,
body.reg_product .module_spec_table > table > tbody > tr > td {
  vertical-align: middle;
  padding: 10px 15px;
  line-height: 1.23;
}

body.reg_product .module_spec_table > table > thead > tr > th,
body.reg_product .module_spec_table > table > tbody > tr > th {
  text-align: center;
}

body.reg_product .module_spec_table > table > thead > tr .td_color_line_2,
body.reg_product .module_spec_table > table > tbody > tr .td_color_line_2 {
  background-color: #f6f6f6;
}

body.reg_product .module_spec_table > table > thead > tr > th:first-child {
  width: 289px;
}

body.reg_product .module_code_table > table > thead > tr > th,
body.reg_product .module_code_table > table > thead > tr > td,
body.reg_product .module_code_table > table > tbody > tr > th,
body.reg_product .module_code_table > table > tbody > tr > td {
  line-height: 1.35;
}

body.reg_product .module_code_table > table > thead > tr > .td_color_line,
body.reg_product .module_code_table > table > tbody > tr > .td_color_line {
  border-bottom: #fff 1px solid;
  border-left: none;
}

body.reg_product .module_code_table > table > thead > tr .multi {
  padding-top: 3px;
  padding-bottom: 3px;
}

body.reg_product .module_product_count {
  counter-reset: mpc;
}

body.reg_product .module_product_count > * {
  counter-increment: mpc;
  padding-left: 1.5em;
  position: relative;
}

body.reg_product .module_product_count > *.hidden_number:before {
  display: none;
}

body.reg_product .module_product_count > *:before {
  content: counter(mpc) ".";
  position: absolute;
  left: 0;
  top: 0;
}

body.reg_product .module_product_count_lv2 {
  counter-reset: mpc2;
}

body.reg_product .module_product_count_lv2 > * {
  counter-increment: mpc2;
  padding-left: 2em;
  position: relative;
}

body.reg_product .module_product_count_lv2 > *.__indent_none {
  padding-left: 0;
}

body.reg_product .module_product_count_lv2 > *.__indent_none:before {
  position: relative;
  left: auto;
  top: auto;
}

body.reg_product .module_product_count_lv2 > *:before {
  content: "(" counter(mpc2) ")";
  position: absolute;
  left: 0;
  top: 0;
}

body.reg_product .module-combo {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
}

body.reg_product .module-combo__desc {
  -webkit-flex: 1;
  flex: 1;
}

body.reg_product .module-combo__lead {
  width: 270px;
  margin-left: 10px;
}

/* -------------------------------------------------------------------------

		reg_other その他のページ用

------------------------------------------------------------------------- */
body.reg_other .inner_col_01 {
  padding-bottom: 37px;
  margin: 0 auto;
  width: 860px;
}

body.reg_other ol li {
  margin-bottom: 20px;
}

/* -------------------------------------------------------------------------

		notfound.sass

		notfoundのスタイルを定義

------------------------------------------------------------------------- */
/* common
body.notfound{
}
*/
/* index
------------------------------------------------- */
/* notfound
------------------------------------------------- */
body.notfound .inner_col_01 {
  width: 860px;
  margin: 0 auto;
  padding-bottom: 30px;
}

body.notfound .inner_col_01 .blue_btn, body.notfound .inner_col_01 .search_engine_widget .search_box .search_btn, .search_engine_widget .search_box body.notfound .inner_col_01 .search_btn {
  width: 390px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  a:link,
  a:visited {
    text-decoration: underline;
    color: #000000;
  }
  img {
    border: 0;
  }
  /* IE zoom
	------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }
  /* for IE7 */
  * + html body {
    zoom: 1;
  }
  body {
    -webkit-print-color-adjust: exact;
  }
  .print_non {
    display: none;
  }
  .wrapper {
    background: none;
  }
  .breadcrumb {
    display: none;
  }
  .header_wrap {
    display: none;
  }
  .footer_wrap {
    display: none;
  }
  .bottom_breadcrumb {
    display: none;
  }
  .local_nav {
    display: none;
  }
  .h1_field {
    display: none;
  }
  .print_btn {
    display: none;
  }
  .font_icon_arrow_left {
    display: none;
  }
  .update_contents {
    display: none;
  }
  .med_eq .local_nav.lnav_med_eq,
  .imep .local_nav.lnav_imep,
  .local_nav.lnav_med {
    display: none;
  }
  .comparison_table .td_color_line {
    background-color: #e5e5e5 !important;
    border-right: 1px solid #ffffff !important;
  }
  .new-pg {
    page-break-after: always;
  }
  h3.print_non {
    display: none;
  }
  .print_non {
    display: none;
  }
  body.detail .view_img_inner a span {
    display: none !important;
  }
  body.med_eq.detail .title_box .font_icon_arrow_left {
    display: none !important;
  }
  body.med_eq.detail .img_text_box .view_img .view_img_inner a span {
    display: none;
  }
  body.med_eq.detail .img_text_box .sp-slides {
    transform: translate3d(0px, 0px, 0px);
    position: relative;
  }
  body.med_eq.detail .img_text_box .sp-slides .sp-slide {
    display: none;
  }
  body.med_eq.detail .img_text_box .sp-slides .sp-selected {
    position: absolute;
    display: block;
    left: 465px;
  }
  body.med_eq.detail .sp-thumbnails {
    display: table;
  }
  body.med_eq.detail .sp-thumbnails .sp-thumbnail-container {
    display: table-cell;
    overflow: hidden;
    position: relative;
  }
  body.med_eq.detail .print_btn {
    display: none;
  }
  body.med_eq.detail .search_box {
    display: none;
  }
}
