@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;
}

/* -------------------------------------------------------------------------

		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を定義

------------------------------------------------------------------------- */
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after, .grid_system_12:after, .grid_system_2:after, .grid_spread_24:after, .grid_spread_5: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 {
  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;
}

/* 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>
------------------------------------------------- */
/**
 * Mathクラス定義
 * 引数) 数値,桁数=0
 */
/* Round (四捨五入) */
/* Ceil (切り上げ) */
/* Floor (切り捨て) */
/**
 * 数値から単位を削除
 * @param  {[type]} $value [description]
 * @return {[type]}        [description]
 */
/* フォントサイズ指定
usage:
font-size:fs(18);
------------------------------------------------- */
/* -------------------------------------------------------------------------

		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,
body.med_eq_news.index .title_box .sort_item .custom_select:before {
  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, body.med_eq_news.index .title_box .sort_item .custom_select: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;
  min-width: 960px;
}

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #fff9d7;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

/* header_wrap
------------------------------------------------- */
.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 .sub_column .side_info_seminar li:hover .site_id > a img, .sub_column .side_info_seminar li:hover .header_wrap .header .site_id > a img, .header_wrap .header .sub_column .side_info_seminar .more:hover .site_id > 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 .btn_sp_gnav {
  display: none;
}

.header_wrap .header .btn_sp_gnav a {
  display: none;
}

.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(/resource/med_img_common/dotline.png) repeat-y left;
  position: relative;
  padding: 5px 0;
}

.header_wrap .header .header_link li .sub {
  overflow: hidden;
  display: block;
  position: absolute;
  background: rgba(246, 246, 246, 0.7);
  background: #f6f6f6\9;
  filter: inherit;
  top: 25px;
  left: 0;
}

.header_wrap .header .header_link li .sub ul {
  margin-top: 0;
  width: 175px;
}

.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 li:nth-of-type(1) {
  background: none;
}

.header_wrap .header .header_link li:nth-of-type(1) a {
  padding: 5px 13px 5px 5px;
}

.header_wrap .header .header_link li a {
  padding: 0 13px;
  color: #333;
}

.header_wrap .header .header_link li a.link_blank:after {
  color: #666;
}

.header_wrap .header .header_link .header_contact {
  float: right;
  font-size: 108%;
}

.header_wrap .header .header_link .header_contact a {
  -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 2px rgba(9, 2, 4, 0.2);
  -moz-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  -ms-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  background: -owg-linear-gradient(#006bb6, #0063a8);
  background: -webkit-linear-gradient(#006bb6, #0063a8);
  background: -moz-linear-gradient(#006bb6, #0063a8);
  background: -o-linear-gradient(#006bb6, #0063a8);
  -pie-background: -pie-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;
  -ms-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);
  -pie-background: -pie-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 {
  -moz-box-sizing: content-box;
  -webkit-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 {
  -moz-box-sizing: content-box;
  -webkit-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;
}

@media screen and (min-width: 640px) {
  .med_eq .gnav_med_eq,
  .med .gnav_med,
  .solution .gnav_solution,
  .seminar .gnav_seminar,
  .imep .gnav_imep {
    border-right: 1px solid #006bb6;
  }
  .med_eq .gnav_med_eq a,
  .med .gnav_med a,
  .solution .gnav_solution a,
  .seminar .gnav_seminar a,
  .imep .gnav_imep a {
    background: #006bb6;
    color: #fff;
  }
  .med_eq .gnav_med_eq a span {
    background: url(/resource/med_img_common/gnav_med_eq_over.png) no-repeat left center;
  }
  .med .gnav_med a span {
    background: url(/resource/med_img_common/gnav_med_over.png) no-repeat left center;
  }
  .solution .gnav_solution a span {
    background: url(/resource/med_img_common/gnav_solution_over.png) no-repeat left center;
  }
  .imep .global_nav li.gnav_imep a span {
    /*background: url(/resource/med_img_common/gnav_imep_over.png) no-repeat left center;*/
  }
  .society .global_nav li.gnav_seminar a span {
    background: url(/resource/med_img_common/gnav_seminar_over.png) no-repeat left center;
  }
}

/* local_nav
------------------------------------------------- */
.local_nav {
  display: none;
  background: #006bb6;
  padding: 14px 0;
}

.local_nav ul {
  width: 960px;
  margin: 0 auto;
}

.local_nav li {
  float: left;
  border-left: 1px solid #3389c5;
  padding: 0 42px;
  font-size: 108%;
}

body.imep .local_nav li {
		font-size: 102% !important;
	}

.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 15px;
}

.med_eq .lnav_med_eq,
.imep .lnav_imep {
  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 {
  background: #fff;
  color: #006bb6;
  text-decoration: none;
  border-radius: 13px;
}

/* wrapper
------------------------------------------------- */
.wrapper {
  background: #fcfcfc url(/resource/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 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  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(/resource/med_img_common/side_nav_bg.png) repeat;
  -webkit-box-shadow: -3px 0 0 0 rgba(0, 0, 0, 0.09) inset;
  -moz-box-shadow: -3px 0 0 0 rgba(0, 0, 0, 0.09) inset;
  -ms-box-shadow: -3px 0 0 0 rgba(0, 0, 0, 0.09) inset;
  box-shadow: -3px 0 0 0 rgba(0, 0, 0, 0.09) inset;
  _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(/resource/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(/resource/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(/resource/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(/resource/med_img_common/side_nav_bg.png) repeat;
}

/* main column
------------------------------------------------- */
.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(/resource/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;
  padding: 0 15px;
}

.footer_wrap .footer_copy span {
  padding: 6px 15px;
  border-radius: 15px;
  background: #c1cdec;
  -webkit-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
  -moz-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
  -ms-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
}

.footer_wrap .footer_copy br.sp {
  display: none;
}

.footer_wrap .footer_nav {
  /*float: left;
  margin-left: 52px;
  width: 200px;*/
	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 p.has_child {
  position: relative;
}

.footer_wrap .footer_nav p.has_child .toggle_btn {
  display: none;
}

.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 {
  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;
}

/* -------------------------------------------------------------------------

		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 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
}

.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 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
}

.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 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0;
}

.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 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0;
}

.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%;
}

.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
------------------------------------------------- */
.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(/resource/med_img_common/subtitle_bg.png) no-repeat left 5px;
  padding-left: 30px;
}

.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;
}

/* 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, .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar .more:hover a {
  cursor: pointer;
}

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, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .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 2px rgba(9, 2, 4, 0.2);
  -moz-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  -ms-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  background: -owg-linear-gradient(#0aa2d4, #0997c6);
  background: -webkit-linear-gradient(#0aa2d4, #0997c6);
  background: -moz-linear-gradient(#0aa2d4, #0997c6);
  background: -o-linear-gradient(#0aa2d4, #0997c6);
  -pie-background: -pie-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, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn span:before, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn span:before {
  font-size: 140%;
}

.blue_btn:hover, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn:hover, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-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);
  -pie-background: -pie-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 body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box * + html .search_btn, * + html body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box * + html .search_btn {
  background: #0aa2d4;
}

* + html .blue_btn:hover, * + html body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn:hover, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box * + html .search_btn:hover, * + html body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn:hover, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .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 2px rgba(9, 2, 4, 0.2);
  -moz-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  -ms-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
  background: -owg-linear-gradient(#fff, #eee);
  background: -webkit-linear-gradient(#fff, #eee);
  background: -moz-linear-gradient(#fff, #eee);
  background: -o-linear-gradient(#fff, #eee);
  -pie-background: -pie-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffff', endColorstr='#eeeeee', GradientType=0)";
}

.white_btn:hover, body.top .top_main_box .clickable:hover .title_box .white_btn, body.top .slide_box .clickable:hover .slide_box_inner .detail_btn .white_btn, body.med_eq.index .slide_box .clickable:hover .slide_box_inner .detail_btn .white_btn {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-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);
  -pie-background: -pie-linear-gradient(#eee, #fff);
  background: linear-gradient(#eee, #fff);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0)";
  top: 1px;
}

* + html .white_btn {
  background: #eee;
}

* + html .white_btn:hover, * + html body.top .top_main_box .clickable:hover .title_box .white_btn, body.top .top_main_box .clickable:hover .title_box * + html .white_btn, * + html body.top .slide_box .clickable:hover .slide_box_inner .detail_btn .white_btn, body.top .slide_box .clickable:hover .slide_box_inner .detail_btn * + html .white_btn, * + html body.med_eq.index .slide_box .clickable:hover .slide_box_inner .detail_btn .white_btn, body.med_eq.index .slide_box .clickable:hover .slide_box_inner .detail_btn * + html .white_btn {
  background: #ddd;
}

/* 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(/resource/med_img_common/icon_pdf.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(/resource/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(top, white, #efefef);
  background: -webkit-linear-gradient(top, white, #efefef);
  background: -moz-linear-gradient(top, white, #efefef);
  background: -o-linear-gradient(top, white, #efefef);
  -pie-background: -pie-linear-gradient(top, white, #efefef);
  background: linear-gradient(top, white, #efefef);
  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;
}

.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(bottom, white, #efefef);
  background: -webkit-linear-gradient(bottom, white, #efefef);
  background: -moz-linear-gradient(bottom, white, #efefef);
  background: -o-linear-gradient(bottom, white, #efefef);
  -pie-background: -pie-linear-gradient(bottom, white, #efefef);
  background: linear-gradient(bottom, white, #efefef);
}

.category_nav .active span {
  background: #006bb6;
  border-color: #006bb6;
  color: white;
  font-size: 100%;
}

/* タグ風ボタン
------------------------------------------------- */
.sub_column .side_info_seminar li .date span, body.top .info_box .float_l.important_info dl span, body.top .info_box .float_r dl span, body.med_eq.index .info_box .float_l dl span, body.med_eq.index .info_box .float_r dl span, body.society.index .society_article .main_contents .tags > span, body.society.index .society_article .main_contents .tags > a, body.imep.index .info_box .info_box_inner .info_scroll dl dt span, body.imep.index .info_box .info_box_inner .info_scroll dl dt a, body.imep.index .society_article .main_contents .tags > span, body.imep.index .society_article .main_contents .tags > a, body.med_eq_news.index .update_contents .attr .category span, body.solution.index .info_box .info_box_inner .info_scroll dl dt span, body.solution.index .info_box .info_box_inner .info_scroll dl dt a, body.solution.detail .seminar_box dl dt span, body.solution.detail .seminar_box dl dt a {
  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%;
}

.newline_unit {
  display: inline-block;
}

br.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  br.sp {
    display: block;
  }
}

br.pc {
  display: none;
}

@media screen and (min-width: 641px) {
  br.pc {
    display: block;
  }
}

/* -------------------------------------------------------------------------

		top.sass

		topのスタイルを定義

------------------------------------------------------------------------- */
/* top
------------------------------------------------- */
body.top .top_wrapper {
  padding-bottom: 40px;
  font-size: 108%;
}

body.top .top_wrapper > .inner {
  width: 960px;
  margin: 0 auto;
}

/* 医療関係者向けTOP
------------------------------------------------- */
body.top .top_main_box {
  background-color: #efefef;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

body.top .top_main_box .top_main {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

body.top .top_main_box .top_main .top_main_left {
  width: 50%;
  float: left;
  background-image: url(/resource/med_img_top/med_top_main_bg01.jpg);
  background-color: #ddeaee;
  background-repeat: no-repeat;
  background-position: center left;
  height: 314px;
}

body.top .top_main_box .top_main .top_main_left .title_box {
  float: right;
}

body.top .top_main_box .top_main .top_main_left:hover {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
}

body.top .top_main_box .top_main .top_main_right {
  width: 50%;
  float: left;
  background-image: url(/resource/med_img_top/med_top_main_bg02.png);
  background-color: #f7f6fa;
  background-repeat: no-repeat;
  background-position: center right;
  height: 314px;
}

body.top .top_main_box .top_main .top_main_right .title_box {
  float: left;
}

body.top .top_main_box .top_main .top_main_right:hover {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
}

body.top .top_main_box .top_main .title_box {
  width: 480px;
  border-bottom: none;
  text-align: center;
  margin-top: 40px;
}

body.top .top_main_box .top_main .title_box h2 {
  letter-spacing: 0.2em;
}

body.top .top_main_box .top_main .title_box p {
  color: #aaa;
  font-size: 116%;
}

body.top .top_main_box .top_main .title_box .main_btn {
  width: 164px;
  margin: 0 auto;
  padding-top: 20px;
}

body.top .top_main_box .top_main .title_box .main_btn .white_btn {
  border-radius: 15px;
}

body.top .top_main_box .info_line_box {
  width: 960px;
  margin: 0 auto;
  height: 37px;
  line-height: 37px;
  position: relative;
}

body.top .top_main_box .info_line_box .info_line_title {
  background: #f53838;
  height: 37px;
  color: #fff;
  padding: 0 10px;
  margin-right: 20px;
  position: relative;
}

body.top .top_main_box .info_line_box .info_line_title:after {
  border-top: 19px solid transparent;
  border-left: 10px	solid #F53838;
  border-right: 10px	solid transparent;
  border-bottom: 19px	solid transparent;
  content: " ";
  position: absolute;
  right: -20px;
  top: 0;
}

body.top .slide_box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

body.top .slide_box .slide_box_inner {
  width: 637px;
  height: 317px;
  position: relative;
}

body.top .slide_box .slide_box_inner .detail_btn {
  position: absolute;
  left: 27px;
  top: 160px;
}

body.top .slide_box .slide_box_inner .detail_btn .white_btn {
  width: 125px;
  border-radius: 15px;
}

body.top .slide_box .slide_box_inner .detail_btn02 {
  position: absolute;
  left: 280px;
  top: 160px;
}

body.top .slide_box .slide_box_inner .detail_btn02 .white_btn {
  width: 125px;
  border-radius: 15px;
}

body.top .slide_box .slide_box_inner:hover {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
}

body.top .info_box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
  margin: 40px 0 20px 0;
}

body.top .info_box .info_box_inner {
  width: 466px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.top .info_box .info_box_inner .info_title h4 {
  float: left;
  font-size: 131%;
}

body.top .info_box .info_box_inner .info_title h4 span:before {
  font-size: 138.5%;
}

body.top .info_box .info_box_inner .info_title p {
  float: right;
  padding-top: 3px;
}

body.top .info_box .info_box_inner .info_scroll {
  height: 385px;
}

body.top .info_box .info_box_inner .info_scroll dl {
  padding: 15px 0 0 0;
}

body.top .info_box .info_box_inner .info_scroll dl dt {
  padding: 0 10px 10px 20px;
}

body.top .info_box .info_box_inner .info_scroll dl dd {
  padding: 0 10px 15px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.top .info_box .float_l.important_info .info_title {
  background: #f9e8e8;
  color: #f53838;
}

body.top .info_box .float_l.important_info dl span {
  margin-left: 10px;
}

body.top .info_box .float_r dl span {
  margin-left: 10px;
}

body.top .info_box .one_column {
  width: 100%;
}

body.top .title_box {
  border: none;
  padding: 0;
}

body.top .title_box h3 {
  float: left;
}

body.top .title_box p {
  padding-top: 10px;
}

body.top .title_box p .font_icon_arrow {
  float: right;
}

body.top .img_text_box {
  margin-bottom: 40px;
}

body.top .img_text_box ul {
  margin-left: -22px;
  list-style: none;
}

body.top .img_text_box ul .list_box {
  width: 302px;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 20px 22px;
}

body.top .img_text_box ul .list_box a {
  display: inline-block;
  vertical-align: top;
  font-size: 108%;
}

body.top .img_text_box ul .list_box:hover a {
  text-decoration: underline;
}

body.top .img_text_box ul .list_box:hover a img {
  opacity: 0.7;
}

body.top .img_text_box ul .list_box .list_box_inner {
  position: relative;
  height: 182px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.top .img_text_box ul .list_box .list_box_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.top .img_text_box ul .list_box .list_box_inner .font_icon_arrow a {
  font-size: 123.1%;
}

body.top .img_text_box ul .list_box .list_box_inner .pickup_title {
  position: absolute;
  top: 30px;
  left: 20px;
  color: #333;
  font-size: 100%;
}

body.top .img_text_box ul .list_box .list_box_inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
}

body.top .img_text_box ul .list_box .list_box_inner .new {
  position: absolute;
  padding: 4px 5px 2px;
  top: 0;
  left: 0;
  border-radius: 3px 0 3px 0;
}

body.top .img_text_box ul .list_box .font_icon_arrow {
  padding-left: 2em;
}

body.top .img_text_box ul .list_box .font_icon_arrow:before {
  margin-left: -2em;
}

/* 医療機器TOP
------------------------------------------------- */
body.med_eq.index .top_eq_main {
  height: 314px;
  background-color: #e9eef0;
  background-image: url(/resource/med_img_top/med_eq_main_bg.jpg);
  background-repeat: no-repeat;
  background-position: center right;
}

body.med_eq.index .info_line_box .ticker {
  overflow: hidden;
  position: relative;
  text-align: left;
  padding: 9px 0;
}

body.med_eq.index .info_line_box .ticker ul {
  overflow: hidden;
  position: relative;
  width: 500px;
  height: 25px;
}

body.med_eq.index .info_line_box .ticker ul li {
  display: none;
  line-height: 1.5;
}

body.med_eq.index .search_box {
  margin-bottom: 10px;
}

body.med_eq.index .search_box .search_text_box {
  width: 300px;
  margin-top: 4px;
  padding: 6px 6px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
  -moz-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
  -ms-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2), inset 1px 1px rgba(9, 2, 4, 0.2);
}

body.med_eq.index .search_box .blue_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form body.med_eq.index .search_box .search_btn {
  padding: 4px 30px 2px;
}

body.med_eq.index .img_text_box ul {
  margin-left: -23px;
}

body.med_eq.index .img_text_box .table_style .white_btn {
  padding: 2px 0 0;
}

/* Example 1 */
/* -------------------------------------------------------------------------

		med_eq.sass

		med_eqのスタイルを定義

------------------------------------------------------------------------- */
/* common
------------------------------------------------- */
body.med_eq h3 {
  margin-bottom: 16px;
}

/* index
------------------------------------------------- */
/* med_eq_top
------------------------------------------------- */
body.med_eq.index .top_eq_main_box {
  background-color: #efefef;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

body.med_eq.index .top_eq_main_box .top_eq_main {
  height: 314px;
  background-color: #ddeaee;
  background-image: url(/resource/med_img_top/med_eq_main_bg.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  border-bottom: 1px solid #e5e5e5;
}

body.med_eq.index .top_eq_main_box .top_eq_main .title_box {
  padding-top: 45px;
  border-bottom: none;
  text-align: center;
}

body.med_eq.index .top_eq_main_box .top_eq_main .title_box h2 {
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}

body.med_eq.index .top_eq_main_box .top_eq_main .title_box p {
  color: #aaa;
  font-size: 116%;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search {
  text-align: center;
  width: 560px;
  margin: 0 auto;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav {
  width: 559px;
  background: url(/resource/med_img_top/bg_search_box.gif) repeat;
  border: 1px solid #d1d6d8;
  margin-bottom: 15px;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav ul {
  margin: 0 auto;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav li {
  float: left;
  width: 111px;
  border-left: 1px solid #d1d6d8;
  font-size: 100%;
  text-align: center;
  position: relative;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav li:first-child {
  border-left: none;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav li.select {
  background: #0aa2d4;
  color: #fff;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav li.select:after {
  border-top: 8px solid #0aa2d4;
  border-left: 8px	solid transparent;
  border-right: 8px	solid transparent;
  border-bottom: 8px	solid transparent;
  content: " ";
  position: absolute;
  left: 47px;
  top: 42px;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav li span {
  display: block;
  padding: 13px 10px 13px;
  cursor: pointer;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_nav li span:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form {
  height: 60px;
  margin: 0;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box {
  position: relative;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_text_box {
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  padding: 0 !important;
  font-size: 123.1%;
  margin: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 430px;
  height: 60px;
  line-height: 65px;
  text-indent: 50px;
  background-color: #fff;
  background-image: url(/resource/med_img_top/search_icon.gif);
  background-repeat: no-repeat;
  background-position: 15px center;
  border: none;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 3px 3px 0px #cecccd inset;
  -moz-box-shadow: 3px 3px 0px #cecccd inset;
  -ms-box-shadow: 3px 3px 0px #cecccd inset;
  box-shadow: 3px 3px 0px #cecccd inset;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_text_box:focus {
  outline: none;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box.hide {
  display: none;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .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: 430px;
  width: 130px;
  height: 60px;
  color: #fff;
  font-size: 153.9%;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  -moz-box-shadow: 0px 3px 0px #0883ac inset;
  -ms-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn:hover {
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  -moz-box-shadow: 0px 3px 0px #0883ac inset;
  -ms-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
  top: 0;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn:focus {
  outline: none;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box *:first-child + html .search_btn {
  top: 1px;
}

body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search .search_notes {
  margin: 10px 0 0 17px;
  text-align: left;
  color: #f53838;
}

body.med_eq.index .top_eq_main_box .info_line_box {
  width: 960px;
  margin: 0 auto;
  height: 37px;
  line-height: 37px;
}

body.med_eq.index .top_eq_main_box .info_line_box .info_line_title {
  background: #f53838;
  height: 37px;
  color: #fff;
  padding: 0 10px;
  margin-right: 20px;
  position: relative;
}

body.med_eq.index .top_eq_main_box .info_line_box .info_line_title:after {
  border-top: 19px solid transparent;
  border-left: 10px	solid #F53838;
  border-right: 10px	solid transparent;
  border-bottom: 19px	solid transparent;
  content: " ";
  position: absolute;
  right: -20px;
  top: 0;
}

body.med_eq.index .slide_box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

body.med_eq.index .slide_box .slide_box_inner {
  width: 637px;
  height: 317px;
  position: relative;
}

body.med_eq.index .slide_box .slide_box_inner .detail_btn {
  position: absolute;
  left: 27px;
  top: 160px;
}

body.med_eq.index .slide_box .slide_box_inner .detail_btn .white_btn {
  width: 125px;
  border-radius: 15px;
}

body.med_eq.index .slide_box .slide_box_inner:hover {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
}

body.med_eq.index .info_box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
  margin: 40px 0　0 0;
}

body.med_eq.index .info_box .info_box_inner {
  width: 466px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.med_eq.index .info_box .info_box_inner .info_title h4 {
  float: left;
  font-size: 131%;
}

body.med_eq.index .info_box .info_box_inner .info_title p {
  float: right;
}

body.med_eq.index .info_box .info_box_inner .info_scroll {
  height: 385px;
}

body.med_eq.index .info_box .info_box_inner .info_scroll dl {
  padding: 15px 0 0 0;
}

body.med_eq.index .info_box .info_box_inner .info_scroll dl dt {
  padding: 0 10px 10px 20px;
}

body.med_eq.index .info_box .info_box_inner .info_scroll dl dd {
  padding: 0 10px 10px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

body.med_eq.index .info_box .float_l dl span {
  margin-left: 10px;
}

body.med_eq.index .info_box .float_r dl span {
  margin-left: 10px;
}

body.med_eq.index .info_box .one_column {
  width: 100%;
}

body.med_eq.index .img_text_box {
  margin-bottom: 30px;
}

body.med_eq.index .img_text_box ul {
  margin-left: -23px;
}

body.med_eq.index .img_text_box ul .list_box {
  width: 222px;
  display: inline-block;
  margin: 0 0 20px 20px;
  vertical-align: top;
}

body.med_eq.index .img_text_box ul .list_box:hover a {
  text-decoration: underline;
}

body.med_eq.index .img_text_box ul .list_box:hover a img {
  opacity: 0.7;
}

body.med_eq.index .img_text_box ul .list_box .list_box_inner {
  position: relative;
  height: 147px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.med_eq.index .img_text_box ul .list_box .list_box_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.med_eq.index .img_text_box ul .list_box .list_box_inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
}

body.med_eq.index .img_text_box ul .list_box .list_box_inner .new {
  position: absolute;
  padding: 4px 5px 2px;
  top: 0;
  left: 0;
  border-radius: 3px 0 3px 0;
}

body.med_eq.index .bnr_box {
  padding: 20px 0 40px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}

body.med_eq.index .bnr_box li {
  position: relative;
}

body.med_eq.index .bnr_box li a:hover, body.med_eq.index .bnr_box .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar body.med_eq.index .bnr_box li:hover a, body.med_eq.index .bnr_box li .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover body.med_eq.index .bnr_box li a {
  opacity: 1.0;
}

body.med_eq.index .bnr_box li .detail_btn {
  position: absolute;
  top: 140px;
  left: 27px;
}

body.med_eq.index .bnr_box li .detail_btn .white_btn {
  width: 125px;
  border-radius: 15px;
}

/* med_eq_category_detail
------------------------------------------------- */
body.med_eq.category.detail .main_column {
  width: 960px;
}

body.med_eq.category.detail .main_column .img_text_box {
  margin-bottom: 30px;
}

body.med_eq.category.detail .main_column .img_text_box p, body.med_eq.category.detail .main_column .img_text_box li, body.med_eq.category.detail .main_column .img_text_box span, body.med_eq.category.detail .main_column .img_text_box div {
  line-height: 1.5;
}

body.med_eq.category.detail .title_box h2 {
  width: 670px;
}

body.med_eq.category.detail .search_box {
  margin-bottom: 10px;
}

body.med_eq.category.detail .search_box .search_text_box {
  width: 300px;
  margin-top: 0px;
  padding: 12px;
  background: #fff;
  font-size: 123.1%;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 3px 3px 0px #cecccd inset;
  -moz-box-shadow: 3px 3px 0px #cecccd inset;
  -ms-box-shadow: 3px 3px 0px #cecccd inset;
  box-shadow: 3px 3px 0px #cecccd inset;
  border-top: none;
  border-right: none;
  border-bottom: #eaeff1 1px solid;
  border-left: none;
}

body.med_eq.category.detail .search_box .search_text_box:focus {
  outline: none;
}

body.med_eq.category.detail .search_box .blue_btn, body.med_eq.category.detail body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form body.med_eq.category.detail .search_box .search_btn, body.med_eq.category.detail body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form body.med_eq.category.detail .search_box .search_btn {
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  height: 47px;
  height: 45px\9;
  line-height: 40px;
  padding: 0 30px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  -moz-box-shadow: 0px 3px 0px #0883ac inset;
  -ms-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
  border-top: none;
  border-right: #eaeff1 1px solid;
  border-bottom: #eaeff1 1px solid;
  border-left: none;
}

body.med_eq.category.detail .search_box .blue_btn:hover, body.med_eq.category.detail body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn:hover, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form body.med_eq.category.detail .search_box .search_btn:hover, body.med_eq.category.detail body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn:hover, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form body.med_eq.category.detail .search_box .search_btn:hover {
  top: 0;
}

body.med_eq.category.detail .search_box .blue_btn:focus, body.med_eq.category.detail body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn:focus, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form body.med_eq.category.detail .search_box .search_btn:focus, body.med_eq.category.detail body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn:focus, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form body.med_eq.category.detail .search_box .search_btn:focus {
  outline: none;
}

body.med_eq.category.detail .print_btn_box .print_btn {
  width: 145px;
  margin: 0 auto;
}

body.med_eq.category.detail .print_btn_box .print_btn a {
  padding: 6px 10px 4px;
}

body.med_eq.category.detail .print_btn_box .print_btn a span {
  background: url(/resource/med_img_common/icon_print.png) no-repeat left center;
  padding-left: 25px;
}

.ie8 body.med_eq.category .search_box .search_text_box {
  border: #eaeff1 1px solid;
  padding: 11px 12px;
}

/* med_eq_category_list
------------------------------------------------- */
body.med_eq.category .img_text_box {
  margin-bottom: 30px;
}

body.med_eq.category .img_text_box p, body.med_eq.category .img_text_box li, body.med_eq.category .img_text_box span, body.med_eq.category .img_text_box div {
  line-height: 1.5;
}

body.med_eq.category .img_text_box ul {
  margin-left: -25px;
}

body.med_eq.category .img_text_box ul .list_box {
  width: 202px;
  display: inline-block;
  margin: 0 0 18px 23px;
  vertical-align: top;
}

body.med_eq.category .img_text_box ul .list_box a {
  font-size: 108%;
  display: inline-block;
  vertical-align: top;
  width: 180px;
}

body.med_eq.category .img_text_box ul .list_box:hover a {
  text-decoration: underline;
}

body.med_eq.category .img_text_box ul .list_box:hover a img {
  opacity: 0.7;
}

body.med_eq.category .img_text_box ul .list_box .list_box_inner {
  position: relative;
  height: 133px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.med_eq.category .img_text_box ul .list_box .list_box_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.med_eq.category .img_text_box ul .list_box .list_box_inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
}

body.med_eq.category .img_text_box ul .list_box .list_box_inner .new {
  position: absolute;
  padding: 0 5px;
  top: 0;
  left: 0;
  border-radius: 3px 0 3px 0;
}

body.med_eq.category .inner_col_01 .img_text_box ul {
  margin-left: -7px;
}

body.med_eq.category .inner_col_01 .img_text_box ul .list_box {
  width: 202px;
  display: inline-block;
  margin: 0 0 20px 18px;
  vertical-align: top;
}

body.med_eq.category .inner_col_01 .img_text_box ul .list_box:hover a {
  text-decoration: underline;
}

body.med_eq.category .inner_col_01 .img_text_box ul .list_box:hover a img {
  opacity: 0.7;
}

body.med_eq.category .inner_col_01 .img_text_box ul .list_box .list_box_inner {
  position: relative;
  height: 133px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.med_eq.category .inner_col_01 .img_text_box ul .list_box .list_box_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.med_eq.category .inner_col_01 .img_text_box ul .list_box .list_box_inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
}

body.med_eq.category .inner_col_01 .img_text_box ul .list_box .list_box_inner .new {
  position: absolute;
  padding: 0 5px;
  top: 0;
  left: 0;
  border-radius: 3px 0 3px 0;
}

body.med_eq.category .img_text_box ul.list_circle {
  margin-left: 15px;
}

body.med_eq.category .img_text_box > p img {
  height: auto !important;
  max-width: 880px !important;
}

body.color_box .table_style td:first-child {
  padding: 0 8px;
}

body.color_box .table_style .pdf_btn_01 {
  padding-top: 5px;
  padding-bottom: 7px;
}

body.color_box .table_style .pdf_btn_01 a {
  padding: 2px 0 2px;
}

body.color_box .table_style .pdf_btn_01 a span {
  background: url(/resource/med_img_common/icon_pdf.png) no-repeat left center;
  padding-left: 20px;
}

body.color_box .table_style .pdf_btn_02 {
  padding-bottom: 7px;
}

body.color_box .table_style .pdf_btn_02 a {
  padding: 2px 0 2px;
}

body.color_box .table_style .pdf_btn_02 a span {
  background: url(/resource/med_img_common/icon_pdf.png) no-repeat left center;
  padding-left: 20px;
}

/* category
------------------------------------------------- */
body.med_eq.category .title_box .font_icon_arrow_left a {
  vertical-align: middle;
}

body.med_eq.category .title_box h2 {
  float: left;
}

body.med_eq.category .title_box .print_btn {
  float: right;
}

body.med_eq.category .title_box .print_btn a {
  padding: 6px 10px 4px;
}

body.med_eq.category .title_box .print_btn a span {
  background: url(/resource/med_img_common/icon_print.png) no-repeat left center;
  padding-left: 25px;
}

body.med_eq.category .img_text_box .right_box {
  float: right;
  width: 373px;
}

body.med_eq.category .img_text_box .right_box .table_style {
  font-size: 11px;
}

body.med_eq.category .img_text_box .right_box .table_style th:first-child {
  width: 90px;
}

body.med_eq.category .img_text_box .right_box .table_style th, body.med_eq.category .img_text_box .right_box .table_style td {
  padding: 10px;
}

body.med_eq.category .img_text_box .view_img {
  width: 455px;
  display: block;
}

body.med_eq.category .img_text_box .view_img .view_img_inner {
  position: relative;
  height: 300px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
  overflow: hidden;
}

body.med_eq.category .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.med_eq.category .img_text_box .view_img .view_img_inner img {
  position: static;
}

body.med_eq.category .img_text_box .view_img .view_img_inner a {
  outline: none;
  display: block;
}

body.med_eq.category .img_text_box .view_img .view_img_inner a .img_mask {
  text-align: center;
  background: #ccc;
}

body.med_eq.category .img_text_box .view_img .view_img_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;
  margin: 0 auto;
}

body.med_eq.category .img_text_box .view_img .view_img_inner a span {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 100;
}

body.med_eq.category .img_text_box .view_img .view_img_inner a:hover span img, body.med_eq.category .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.med_eq.category .img_text_box .view_img .view_img_inner a span img, body.med_eq.category .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.med_eq.category .img_text_box .view_img .view_img_inner a span img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

body.med_eq.category .img_text_box .img_box {
  float: left;
}

body.med_eq.category .img_text_box .img_box .list_box {
  float: none;
  width: 259px;
  display: block;
}

body.med_eq.category .img_text_box .img_box .list_box p {
  margin-top: -5px;
}

body.med_eq.category .img_text_box .img_box .list_box .list_box_inner {
  position: relative;
  height: 171px;
  border-radius: 5px;
}

body.med_eq.category .img_text_box .img_box .list_box .list_box_inner img {
  position: static;
}

body.med_eq.category .img_text_box .img_box .list_box .list_box_inner a {
  outline: none;
  display: block;
}

body.med_eq.category .img_text_box .img_box .list_box .list_box_inner a .img_mask {
  text-align: center;
  background: #ccc;
}

body.med_eq.category .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.med_eq.category .img_text_box .img_box .list_box .list_box_inner a span {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 100;
}

body.med_eq.category .img_text_box .img_box .list_box .list_box_inner a:hover span img, body.med_eq.category .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.med_eq.category .img_text_box .img_box .list_box .list_box_inner a span img, body.med_eq.category .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.med_eq.category .img_text_box .img_box .list_box .list_box_inner a span img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

body.med_eq.category .img_text_box .img_box .sp-grab,
body.med_eq.category .img_text_box .img_box .sp-grabbing {
  cursor: pointer;
}

body.med_eq.category .img_text_box .img_box .sp-thumbnail-container {
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
  border-radius: 3px;
  margin-bottom: 2px;
}

body.med_eq.category .img_text_box .img_box .sp-thumbnail-container:last-child {
  margin-right: 2px;
}

body.med_eq.category .img_text_box .img_box .sp-thumbnail-container:hover {
  cursor: pointer;
}

body.med_eq.category .img_text_box .img_box .sp-selected-thumbnail {
  border-color: #0aa2d4;
}

body.med_eq.category .img_text_box .img_box .sp-top-thumbnails, body.med_eq.category .img_text_box .img_box .sp-bottom-thumbnails {
  margin: 0;
}

body.med_eq.category .img_text_box .breed_table {
  margin-left: 0;
}

body.med_eq.category .img_text_box .breed_table .w80 {
  width: 80px;
}

body.med_eq.category .img_text_box .breed_table .w117 {
  width: 117px;
}

body.med_eq.category .img_text_box .breed_table .w204 {
  width: 204px;
}

body.med_eq.category .img_text_box .breed_table .w71 {
  width: 71px;
}

body.med_eq.category .img_text_box .breed_table .w73 {
  width: 73px;
}

body.med_eq.category .img_text_box .breed_table .w77 {
  width: 77px;
}

body.med_eq.category .img_text_box .breed_table .w232 {
  width: 232px;
}

body.med_eq.category .img_text_box .breed_table .breed_tab .breed_tab_btn {
  border-bottom: 4px solid #0aa2d4;
  margin: 0 0 20px;
}

body.med_eq.category .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.med_eq.category .img_text_box .breed_table .breed_tab .breed_tab_btn .select {
  background: #0aa2d4;
  color: #fff;
  border-color: #0aa2d4;
}

body.med_eq.category .img_text_box .breed_table .breed_box {
  height: auto;
  overflow: inherit;
  font-size: 11px;
}

body.med_eq.category .img_text_box .breed_table .breed_box .table_style th, body.med_eq.category .img_text_box .breed_table .breed_box .table_style td {
  padding: 10px;
}

body.med_eq.category .img_text_box .breed_table .breed_box td:first-child {
  width: 80px;
}

body.med_eq.category .img_text_box .breed_table .breed_box td:first-child div {
  display: inline;
  vertical-align: middle;
}

body.med_eq.category .img_text_box .breed_table .breed_box .pdf_attach {
  text-align: center;
}

body.med_eq.category .img_text_box .breed_table .breed_box .pdf_btn {
  display: inline;
}

body.med_eq.category .img_text_box .breed_table .breed_box .pdf_btn .white_btn {
  padding: 2px 10px 0px 19px;
  display: inline-block;
}

body.med_eq.category .img_text_box .breed_table .breed_box .notes_btn {
  display: inline;
}

body.med_eq.category .img_text_box .breed_table .breed_box .product_code {
  width: 200px;
}

body.med_eq.category .img_text_box .breed_table .breed_box.hide {
  overflow: hidden;
  height: 0;
}

/* product_search
------------------------------------------------- */
body.med_eq.product_search .inner_col_01 .img_text_box {
  margin-bottom: 30px;
}

body.med_eq.product_search .inner_col_01 .img_text_box p, body.med_eq.product_search .inner_col_01 .img_text_box li, body.med_eq.product_search .inner_col_01 .img_text_box span, body.med_eq.product_search .inner_col_01 .img_text_box div {
  line-height: 1.5;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul {
  margin-left: -23px;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box {
  width: 202px;
  display: inline-block;
  margin: 0 0 20px 20px;
  vertical-align: top;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box a {
  display: inline-block;
  vertical-align: top;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box .font_icon_arrow {
  padding-left: 2em;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box .font_icon_arrow:before {
  margin-left: -2em;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box:hover a {
  text-decoration: underline;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box:hover a img {
  opacity: 0.7;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box .list_box_inner {
  position: relative;
  height: 128px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
  overflow: hidden;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box .list_box_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.med_eq.product_search .inner_col_01 .img_text_box ul .list_box .list_box_inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 2px;
}

body.med_eq.product_search .inner_col_01 .img_text_box ul .list_box .list_box_inner .new {
  position: absolute;
  padding: 0 5px;
  top: 0;
  left: 0;
  border-radius: 3px 0 3px 0;
}

body.med_eq.product_search .inner_col_01 .search_wrapper {
  padding: 30px 0;
  background: #e9eef0;
  margin: 0 -36px;
  border-radius: 3px;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner {
  text-align: center;
  width: 560px;
  margin: 0 auto;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav {
  width: 559px;
  background: url(/resource/med_img_top/bg_search_box.gif) repeat;
  border: 1px solid #d1d6d8;
  margin-bottom: 15px;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav ul {
  margin: 0 auto;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav li {
  float: left;
  width: 111px;
  border-left: 1px solid #d1d6d8;
  font-size: 100%;
  text-align: center;
  position: relative;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav li:first-child {
  border-left: none;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav li.select {
  background: #0aa2d4;
  color: #fff;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav li.select:after {
  border-top: 14px solid #0aa2d4;
  border-left: 14px	solid transparent;
  border-right: 14px	solid transparent;
  border-bottom: 14px	solid transparent;
  content: " ";
  position: absolute;
  left: 42px;
  top: 42px;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav li span {
  display: block;
  padding: 13px 10px 13px;
  cursor: pointer;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_nav li span:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form {
  height: 60px;
  margin: 0;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box {
  position: relative;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_text_box {
  font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  padding: 0 !important;
  font-size: 123.1%;
  margin: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 430px;
  height: 60px;
  line-height: 65px;
  text-indent: 50px;
  background-color: #fff;
  background-image: url(/resource/med_img_top/search_icon.gif);
  background-repeat: no-repeat;
  background-position: 15px center;
  border: none;
  border-radius: 25px 0 0 25px;
  -webkit-box-shadow: 3px 3px 0px #cecccd inset;
  -moz-box-shadow: 3px 3px 0px #cecccd inset;
  -ms-box-shadow: 3px 3px 0px #cecccd inset;
  box-shadow: 3px 3px 0px #cecccd inset;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_text_box:focus {
  outline: none;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box.hide {
  display: none;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .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: 430px;
  width: 130px;
  height: 60px;
  color: #fff;
  font-size: 138.5%;
  border: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  -moz-box-shadow: 0px 3px 0px #0883ac inset;
  -ms-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn:hover {
  -webkit-box-shadow: 0px 3px 0px #0883ac inset;
  -moz-box-shadow: 0px 3px 0px #0883ac inset;
  -ms-box-shadow: 0px 3px 0px #0883ac inset;
  box-shadow: 0px 3px 0px #0883ac inset;
  top: 0;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn:focus {
  outline: none;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box *:first-child + html .search_btn {
  top: 1px;
}

body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner .search_notes {
  margin: 10px 0 0 17px;
  text-align: left;
  color: #f53838;
}

/* -------------------------------------------------------------------------

		society.sass

		societyのスタイルを定義

------------------------------------------------------------------------- */
/* common
body.society{
}
*/
/* index
------------------------------------------------- */
/* society_top
------------------------------------------------- */
body.society.index .inner_col_01 {
  width: 860px;
  margin: 0 auto;
  padding-bottom: 30px;
}

body.society.index .category_nav {
  margin-bottom: 45px;
}

body.society.index .no_plan {
  text-align: center;
  border: 1px solid #e5e5e5;
  line-height: 1;
  padding: 35px 0;
}

body.society.index .society_article {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 36px;
}

body.society.index .society_article:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

body.society.index .society_article .thumb {
  width: 178px;
  height: 222px;
  text-align: center;
  margin-left: -8px;
}

body.society.index .society_article .main_contents {
  width: 500px;
}

body.society.index .society_article .main_contents .tags {
  margin-bottom: 7px;
}

body.society.index .society_article .main_contents .tags > span, body.society.index .society_article .main_contents .tags > a {
  margin-bottom: 3px;
}

body.society.index .society_article .main_contents .hx {
  font-size: 153.9%;
  color: #00a4c2;
  margin-bottom: 20px;
}

body.society.index .society_article .main_contents .datas dt {
  font-weight: bold;
  text-align: left;
}

body.society.index .society_article .main_contents .datas dd {
  width: 90%;
  margin-bottom: 10px;
}

body.society.index .society_article .btns {
  width: 136px;
}

body.society.index .society_article .btns .blue_btn, body.society.index .society_article .btns body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.society.index .society_article .btns .search_btn, body.society.index .society_article .btns body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.society.index .society_article .btns .search_btn {
  font-size: 108%;
  height: 45px;
  line-height: 45px;
}

body.society.index .society_article .btns .deadline {
  background: #faeded;
  color: #f53f3f;
  border-radius: 5px;
  padding: 10px;
  font-size: 93%;
}

/* -------------------------------------------------------------------------

		imep.sass

		imepのスタイルを定義

------------------------------------------------------------------------- */
/* common
body.society{
}
*/
/* index
------------------------------------------------- */
/* imep_top
------------------------------------------------- */
body.imep.index .inner_col_01 {
  width: 860px;
  margin: 0 auto;
  padding-bottom: 30px;
}

@media screen and (max-width: 640px) {
  body.imep.index .inner_col_01 {
    width: 100%;
  }
}

body.imep.index .front_view .front_thumb {
  margin: -64px -38px 0 0;
}

body.imep.index .column_contents {
  width: 844px;
  margin: 50px auto 0;
}

@media screen and (max-width: 640px) {
  body.imep.index .column_contents {
    width: 100%;
  }
}

body.imep.index .column_contents .column_content {
  width: 244px;
}

body.imep.index .column_contents .column_content .thumb {
  margin-bottom: 25px;
}

body.imep.index .info_box {
  margin: 30px 0 20px;
}

body.imep.index .info_box .info_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.imep.index .info_box .info_box_inner .info_title h4 {
  float: left;
  font-size: 138.5%;
}

body.imep.index .info_box .info_box_inner .info_title h4 span:before {
  font-size: 138.5%;
}

body.imep.index .info_box .info_box_inner .info_title p {
  float: right;
  margin-top: 3px;
}

body.imep.index .info_box .info_box_inner .info_title p span:before {
  vertical-align: middle;
  position: relative;
  top: -.1em;
}

body.imep.index .info_box .info_box_inner .info_scroll {
  height: 220px;
}

body.imep.index .info_box .info_box_inner .info_scroll dl {
  padding: 15px 0 0 0;
}

body.imep.index .info_box .info_box_inner .info_scroll dl dt {
  padding: 0 10px 10px 10px;
}

body.imep.index .info_box .info_box_inner .info_scroll dl dt span, body.imep.index .info_box .info_box_inner .info_scroll dl dt a {
  margin-left: 5px;
}

body.imep.index .info_box .info_box_inner .info_scroll dl dd {
  padding: 0 10px 10px 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

body.imep.index .category_nav_footer li {
  width: 47%;
  margin-top: 25px;
}

body.imep.index .category_nav_footer li a {
  height: 34px;
  line-height: 34px;
  font-size: 123.1%;
}

/* imep_society
------------------------------------------------- */
body.imep.index .link_schedule.pdf {
  background: url(/resource/med_img_common/icon_pdf.png) no-repeat left center;
  padding-left: 25px;
  margin-top: 0;
}

body.imep.index .inner_col_01 {
  width: 860px;
  margin: 0 auto;
  padding-bottom: 30px;
}

@media screen and (max-width: 640px) {
  body.imep.index .inner_col_01 {
    width: 100%;
    box-sizing: border-box;
  }
}

body.imep.index .category_nav {
  margin-bottom: 45px;
}

body.imep.index .society_article {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 36px;
}

body.imep.index .society_article:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

body.imep.index .society_article .thumb {
  width: 178px;
  text-align: center;
  margin-left: -8px;
}

body.imep.index .society_article .main_contents {
  width: 500px;
}

body.imep.index .info_box_imep{
  width:100%; margin:0 auto 30px auto; border-radius: 5px;
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}
body.imep.index .info_box_imep .info_title{
  padding: 5px 10px;
}
body.imep.index .info_box_imep .info_title h4{
  font-size: 131%;
}
body.imep.index .info_box_imep .info_title h4 span:before{
  font-size: 138.5%;
}
body.imep.index .info_box_imep ul{
  padding: 15px 20px;
}
body.imep.index .info_box_imep li{
  margin-bottom: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}
body.imep.index .info_box_imep li:last-of-type{
  margin-bottom: 0;
}
body.imep.index .info_box_imep li time{
  padding-right: 15px;
  width: 130px;	
}

body.imep.index .info_box_imep li span{
  max-width: 670px;
}


@media screen and (max-width: 640px) {
  .info_box_imep .info_title h4{
    font-size: 116%;
}
  .info_box_imep .info_title h4 span:before{
    font-size: 129%;
}
  body.imep.index .info_box_imep li{
    font-size: 93%;
	display: block;  
}
  .info_box_imep li time{
    display: block;
 }
}

@media screen and (max-width: 640px) {
  body.imep.index .society_article .main_contents {
    width: 100%;
  }
}

body.imep.index .society_article .main_contents .tags {
  margin-bottom: 10px;
}

body.imep.index .society_article .main_contents .hx {
  font-size: 153.9%;
  color: #00a4c2;
  margin-bottom: 20px;
}

body.imep.index .society_article .main_contents .datas dt {
  font-weight: bold;
  text-align: left;
}

body.imep.index .society_article .main_contents .datas dd {
  width: 90%;
  margin-bottom: 10px;
}

body.imep.index .society_article .main_contents .blue_btn, body.imep.index .society_article .main_contents body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.imep.index .society_article .main_contents .search_btn, body.imep.index .society_article .main_contents body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.imep.index .society_article .main_contents .search_btn {
  width: 400px;
  font-size: 15px;
  padding: 15px;
  margin-top: -20px;
}

@media screen and (max-width: 640px) {
  body.imep.index .society_article .main_contents .blue_btn, body.imep.index .society_article .main_contents body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.imep.index .society_article .main_contents .search_btn, body.imep.index .society_article .main_contents body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.imep.index .society_article .main_contents .search_btn {
    max-width: 100%;
  }
}

body.imep.index .society_article .btns {
  width: 136px;
}

body.imep.index .society_article .btns .blue_btn, body.imep.index .society_article .btns body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.imep.index .society_article .btns .search_btn, body.imep.index .society_article .btns body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.imep.index .society_article .btns .search_btn {
  font-size: 108%;
  height: 45px;
  line-height: 45px;
}

body.imep.index .society_article .btns .deadline {
  background: #faeded;
  color: #f53f3f;
  border-radius: 5px;
  padding: 10px;
  font-size: 93%;
}

/* imep_floor
------------------------------------------------- */
body.imep.index.imep_floor .inner_col_01 {
  padding-bottom: 30px;
}

body.imep.index.imep_floor .column_contents {
  width: 860px;
  margin: 50px auto 0;
}

body.imep.index.imep_floor .column_contents .column_content_l {
  width: 160px;
}

body.imep.index.imep_floor .column_contents .column_content_l .floor_title {
  position: relative;
  border-top: 5px solid #dedede;
}

body.imep.index.imep_floor .column_contents .column_content_l .floor_title:before {
  border-top: 13px solid #dedede;
  border-left: 80px	solid transparent;
  border-right: 80px	solid transparent;
  border-bottom: 13px	solid transparent;
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
}

body.imep.index.imep_floor .column_contents .column_content_l .floor_title p {
  font-size: 380%;
  color: #999;
  text-align: center;
  padding-top: 30px;
}

body.imep.index.imep_floor .column_contents .column_content_r {
  width: 640px;
}

body.imep.index.imep_floor .column_contents .column_content_r .floor_content {
  width: 297px;
}

body.imep.index.imep_floor .column_contents .column_content_r .floor_content .thumb {
  margin-bottom: 15px;
}

body.imep.index.imep_floor .column_contents .column_content_r .floor_content .copy_blue {
  text-align: center;
  font-weight: normal;
  font-size: 123.1%;
  margin-bottom: 5px;
}

/* imep_access
------------------------------------------------- */
body.imep.index.imep_access .inner_col_01 {
  padding-bottom: 30px;
}

body.imep.index.imep_access .title_box h2 {
  float: left;
}

body.imep.index.imep_access .title_box .print_btn {
  float: right;
}

body.imep.index.imep_access .title_box .print_btn a {
  padding: 6px 10px 4px;
}

body.imep.index.imep_access .title_box .print_btn a span {
  background: url(/resource/med_img_common/icon_print.png) no-repeat left center;
  padding-left: 25px;
}

body.imep.index.imep_access .column_contents {
  width: 860px;
  margin: 50px auto 0;
}

body.imep.index.imep_access .column_contents .info_content_box dl {
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
}

body.imep.index.imep_access .column_contents .info_content_box dl dt {
  float: left;
  clear: left;
  width: 160px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: bold;
  text-indent: 15px;
}

body.imep.index.imep_access .column_contents .info_content_box dl dd {
  float: left;
  width: 700px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.imep.index.imep_access .print_btn_box .print_btn {
  width: 145px;
  margin: 0 auto;
}

body.imep.index.imep_access .print_btn_box .print_btn a {
  padding: 6px 10px 4px;
}

body.imep.index.imep_access .print_btn_box .print_btn a span {
  background: url(/resource/med_img_common/icon_print.png) no-repeat left center;
  padding-left: 25px;
}

/* -------------------------------------------------------------------------

		med_eq_news

		med_eq_newsのスタイルを定義

------------------------------------------------------------------------- */
/* common
body.med_eq_news{
}
*/
/* index
------------------------------------------------- */
/* devices_products_news_top
------------------------------------------------- */
body.med_eq_news.index .inner_col_01 {
  padding-bottom: 37px;
  margin: 0 auto;
  width: 860px;
}

body.med_eq_news.index .inner_col_01 .category_nav li span {
  font-size: 138.5%;
}

body.med_eq_news.index .inner_col_01 .category_nav li a {
  font-size: 138.5%;
}

body.med_eq_news.index .inner_col_01 .no_plan {
  text-align: center;
  border: 1px solid #e5e5e5;
  line-height: 1;
  padding: 35px 0;
  margin-top: 10px;
}

body.med_eq_news.index .title_box {
  overflow: hidden;
  *zoom: 1;
}

body.med_eq_news.index .title_box h2 {
  float: left;
}

body.med_eq_news.index .title_box .sort_item {
  float: right;
}

body.med_eq_news.index .title_box .sort_item .custom_select {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  background: -owg-linear-gradient(top, white, #e5e5e5);
  background: -webkit-linear-gradient(top, white, #e5e5e5);
  background: -moz-linear-gradient(top, white, #e5e5e5);
  background: -o-linear-gradient(top, white, #e5e5e5);
  -pie-background: -pie-linear-gradient(top, white, #e5e5e5);
  background: linear-gradient(top, white, #e5e5e5);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 0 #c4c4c4;
  -moz-box-shadow: 2px 2px 0 #c4c4c4;
  -ms-box-shadow: 2px 2px 0 #c4c4c4;
  box-shadow: 2px 2px 0 #c4c4c4;
  border: 1px solid #e5e5e5;
  border-right: none;
  border-radius: 5px;
  height: 34px;
  line-height: 34px;
  margin-left: 5px;
  width: 200px;
  position: relative;
  overflow: hidden\9;
}

body.med_eq_news.index .title_box .sort_item .custom_select:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 34px;
  line-height: 34px;
  background: #c4c4c4;
  text-align: center;
  border-radius: 3px 5px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: url(resource/med_img_common/icon_arrow_news.png) no-repeat center middle;
}

body.med_eq_news.index .title_box .sort_item .custom_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  display: block;
  display: inline-block\9;
  height: 34px;
  height: auto\9;
  line-height: 34px;
  width: 100%;
  width: 120%\9;
  padding: 0 10px;
  padding: 10px\9;
  border-radius: 5px 0 0 5px;
  position: relative;
  z-index: 3;
  text-indent: .01px;
  text-overflow: "";
}

body.med_eq_news.index .update_contents .update {
  border-bottom: 1px solid #e5e5e5;
}

body.med_eq_news.index .update_contents .attr, body.med_eq_news.index .update_contents .content {
  display: table-cell;
  padding: 20px 0;
}

body.med_eq_news.index .update_contents .attr {
  width: 234px;
  vertical-align: top;
}

body.med_eq_news.index .update_contents .attr time {
  display: table-cell;
  width: 115px;
}

body.med_eq_news.index .update_contents .attr .category {
  display: table-cell;
  width: 115px;
}

body.med_eq_news.index .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;
}

body.med_eq_news.index .update_contents .content {
  padding-left: 20px;
}

body.med_eq_news.index .update_contents .content i img {
  vertical-align: middle;
  position: relative;
  top: -.15em;
}

body.med_eq_news.index .update_contents .content a {
  display: inline-block;
  vertical-align: top;
  width: 585px;
}

@media all and (-ms-high-contrast: none) {
  body.med_eq_news.index .title_box .sort_item .custom_select {
    overflow: hidden;
  }
  body.med_eq_news.index .title_box .sort_item .custom_select select {
    width: 120%;
  }
}

/* -------------------------------------------------------------------------

		med_eq_help

		med_eq_helpのスタイルを定義

------------------------------------------------------------------------- */
/* common
body.med_eq_news{
}
*/
/* index
------------------------------------------------- */
/* med_eq_help
------------------------------------------------- */
body.help.index .inner_col_01 {
  padding-bottom: 37px;
  margin: 0 auto;
  width: 860px;
}

body.help.index .inner_col_01 .category_nav li span {
  font-size: 138.5%;
}

body.help.index .inner_col_01 .category_nav li a {
  font-size: 138.5%;
}

body.help.index .inner_col_01 .category_nav {
  margin-bottom: 40px;
}

body.help.index .copy {
  margin-bottom: 30px;
}

body.help.index .subtitle {
  margin-bottom: 12px;
}

body.help.index .article_box {
  margin-bottom: 60px;
}

body.help.index .article_box .text {
  margin: -5px 0 15px;
  line-height: 1.25;
}

body.help.index .article_box:last-child {
  margin-bottom: 0;
}

@media all and (-ms-high-contrast: none) {
  body.med_eq_news.index .title_box .sort_item .custom_select {
    overflow: hidden;
  }
  body.med_eq_news.index .title_box .sort_item .custom_select select {
    width: 120%;
  }
}

/* -------------------------------------------------------------------------

		solution.sass

		solutionのスタイルを定義

------------------------------------------------------------------------- */
/* solution_top
------------------------------------------------- */
body.solution.index .inner_col_01 .img_text_box ul {
  margin-left: -7px;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box {
  width: 202px;
  display: inline-block;
  margin: 0 0 20px 18px;
  vertical-align: top;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box .font_icon_arrow {
  line-height: 1.25;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box a {
  font-size: 108%;
  display: inline-block;
  vertical-align: top;
  width: 180px;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box:hover a {
  text-decoration: underline;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box:hover a img {
  opacity: 0.7;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box .list_box_inner {
  position: relative;
  height: 121px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box .list_box_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.solution.index .inner_col_01 .img_text_box ul .list_box .list_box_inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box .list_box_inner .new {
  position: absolute;
  padding: 0 5px;
  top: 0;
  left: 0;
  border-radius: 3px 0 3px 0;
}

body.solution.index .inner_col_01 .img_text_box ul .list_box .font_icon_arrow a {
  font-size: 108%;
}

body.solution.index .info_box {
  margin: 10px 0 30px;
}

body.solution.index .info_box .info_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.index .info_box .info_box_inner .info_title h4 {
  float: left;
  font-size: 138.5%;
}

body.solution.index .info_box .info_box_inner .info_title h4 span:before {
  font-size: 138.5%;
}

body.solution.index .info_box .info_box_inner .info_title p {
  float: right;
  margin-top: 3px;
}

body.solution.index .info_box .info_box_inner .info_title p span:before {
  vertical-align: middle;
  position: relative;
  top: -.1em;
}

body.solution.index .info_box .info_box_inner .info_scroll {
  height: 220px;
}

body.solution.index .info_box .info_box_inner .info_scroll dl {
  padding: 15px 0 0 0;
}

body.solution.index .info_box .info_box_inner .info_scroll dl dt {
  padding: 0 10px 5px 10px;
}

body.solution.index .info_box .info_box_inner .info_scroll dl dt span, body.solution.index .info_box .info_box_inner .info_scroll dl dt a {
  margin-left: 5px;
}

body.solution.index .info_box .info_box_inner .info_scroll dl dd {
  padding: 0 10px 15px 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

/* solution_detail
------------------------------------------------- */
body.solution.detail .detail_thumbnail {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.detail .detail_thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

body.solution.detail h3 {
  margin: 30px 0 10px;
}

body.solution.detail .seminar_box {
  margin-top: 30px;
}

body.solution.detail .seminar_box .seminar_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.detail .seminar_box .seminar_box_inner .seminar_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.solution.detail .seminar_box .seminar_box_inner .seminar_title h4 {
  font-weight: normal;
}

body.solution.detail .seminar_box .seminar_box_inner .seminar_title h4 .font_icon_note {
  font-size: 138.5%;
}

body.solution.detail .seminar_box .seminar_box_inner .seminar_title h4 .font_icon_note:before {
  font-size: 160%;
}

body.solution.detail .seminar_box dl {
  padding: 10px 0 0 0;
}

body.solution.detail .seminar_box dl dt {
  padding: 0 10px 5px 10px;
}

body.solution.detail .seminar_box dl dt span, body.solution.detail .seminar_box dl dt a {
  margin-left: 5px;
}

body.solution.detail .seminar_box dl dd {
  padding: 0 10px 15px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

body.solution.detail .seminar_box dl .last {
  border-bottom: none;
  padding-bottom: 0;
}

body.solution.detail .eq_box {
  margin-top: 30px;
}

body.solution.detail .eq_box .eq_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.detail .eq_box .eq_box_inner .eq_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.solution.detail .eq_box .eq_box_inner .eq_title h4 {
  font-weight: normal;
}

body.solution.detail .eq_box .eq_box_inner .eq_title h4 .font_icon_injection {
  font-size: 138.5%;
}

body.solution.detail .eq_box .eq_box_inner .eq_title h4 .font_icon_injection:before {
  font-size: 180%;
}

body.solution.detail .eq_box ul {
  padding: 10px 0 0 0;
}

body.solution.detail .eq_box ul li {
  padding: 0 10px 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.solution.detail .eq_box ul .last {
  border-bottom: none;
  padding-bottom: 0;
}

body.solution.detail p img {
  max-width: 100%;
  height: auto;
}

body.solution.detail .ph_box {
  margin-top: 30px;
}

body.solution.detail .ph_box .ph_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.detail .ph_box .ph_box_inner .ph_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.solution.detail .ph_box .ph_box_inner .ph_title h4 {
  font-weight: normal;
}

body.solution.detail .ph_box .ph_box_inner .ph_title h4 .font_icon_medicine {
  font-size: 138.5%;
}

body.solution.detail .ph_box .ph_box_inner .ph_title h4 .font_icon_medicine:before {
  font-size: 180%;
}

body.solution.detail .ph_box ul {
  padding: 10px 0 0 0;
}

body.solution.detail .ph_box ul li {
  padding: 0 10px 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.solution.detail .ph_box ul .last {
  border-bottom: none;
  padding-bottom: 0;
}

body.solution.detail .doc_box {
  margin-top: 30px;
}

body.solution.detail .doc_box .doc_box_inner {
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  border: solid 1px #d1d4d6;
}

body.solution.detail .doc_box .doc_box_inner .doc_title {
  background: #ededed;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px;
}

body.solution.detail .doc_box .doc_box_inner .doc_title h4 {
  font-weight: normal;
}

body.solution.detail .doc_box .doc_box_inner .doc_title h4 .font_icon_memo {
  font-size: 138.5%;
}

body.solution.detail .doc_box .doc_box_inner .doc_title h4 .font_icon_memo:before {
  font-size: 180%;
}

body.solution.detail .doc_box ul {
  padding: 10px 0 0 0;
}

body.solution.detail .doc_box ul li {
  padding: 0 10px 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

body.solution.detail .doc_box ul .last {
  border-bottom: none;
  padding-bottom: 0;
}

/* -------------------------------------------------------------------------

		med_eq_inquiry.sass
		
		お問い合わせに関わるスタイルを定義
		
------------------------------------------------------------------------- */
/* index
------------------------------------------------- */
body.inquiry .inquiry_box {
  margin-right: 37px;
}

body.inquiry .phone_box {
  /* 電話のみ start */
  width: 330px;
}

body.inquiry .phone_box .phone_number {
  font-size: 258.6%;
  background: url(/resource/med_img_eq_inquiry/icon_eq_inquiry.gif) no-repeat left center;
  padding-left: 50px;
  color: #006bb6;
}

body.inquiry .mail_box {
  width: 330px;
  float: right;
  padding-right: 10px;
}

body.inquiry .mail_box .blue_btn, body.inquiry .mail_box body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.inquiry .mail_box .search_btn, body.inquiry .mail_box body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.inquiry .mail_box .search_btn {
  margin-top: 20px;
  padding: 14px 0;
}

body.inquiry .copy_blue {
  font-size: 182%;
  font-weight: normal;
}

body.inquiry .blue_text {
  color: #006bb6;
  font-weight: bold;
  font-size: 153.9%;
  margin-bottom: 5px;
}

body.inquiry .contact_box {
  width: 510px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-top: 20px;
}

body.inquiry .contact_imep {
  margin-bottom: 55px;
}

/* -------------------------------------------------------------------------

		layout.sass

		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義

------------------------------------------------------------------------- */
/* header_wrap
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .header_wrap > .inner {
    width: 100%;
    padding-bottom: 16px;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header {
    padding: 16px 0 0;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .site_id .logo {
    width: 110px;
    height: auto;
    margin-left: 15px;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .site_id .site_name {
    padding-left: 10px;
    font-size: 85%;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .site_id .top_text {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .btn_sp_gnav {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .btn_sp_gnav a {
    display: block;
    width: 59px;
    height: 59px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(/resource/med_img_common/sp/btn_gnav_open.jpg) no-repeat;
    background-size: 100%;
  }
  .header_wrap .header .btn_sp_gnav a.close {
    background: url(/resource/med_img_common/sp/btn_gnav_close.jpg) no-repeat;
    background-size: 100%;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .header_link {
    display: none;
    opacity: 0;
    width: 100%;
    height: 120px;
    padding-bottom: 150%;
    position: fixed;
    top: 437px;
    background: #fff;
    z-index: 100;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .header_link ul {
    float: none;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .header_link li {
    width: 33.333%;
    box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
  }
  .header_wrap .header .header_link li:last-child {
    border-right: none;
  }
  .header_wrap .header .header_link li a {
    display: block;
    padding: 20px 0 !important;
    text-align: center;
    color: #333;
  }
}

@media screen and (min-width: 640px) {
  .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;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .header_link li .sub {
    display: none;
    height: 0;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .header_link .header_contact {
    float: none;
  }
}

@media screen and (max-width: 640px) {
  .header_wrap .header .header_link .header_contact a {
    width: 285px;
    margin: 20px auto 0;
    padding: 12px 0;
    border-radius: 22px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* global_nav
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .global_nav {
    width: 100%;
    height: auto;
    position: fixed;
    top: 59px;
    z-index: 100;
  }
}

@media screen and (max-width: 640px) {
  .global_nav ul {
    display: none;
    opacity: 0;
    margin: 0;
    height: 100%;
    background: #fff;
  }
}

@media screen and (max-width: 640px) {
  .global_nav li {
    display: block;
    float: none;
    height: auto;
    border-bottom: 1px solid #e5e5e5;
  }
}

@media screen and (max-width: 640px) {
  .global_nav li a {
    display: block;
    text-align: left;
    padding: 18px;
  }
}

@media screen and (max-width: 640px) {
  .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 {
    background: #fff;
    color: #333;
  }
}

@media screen and (max-width: 640px) {
  .global_nav li.gnav_med_eq a {
    width: 100%;
  }
  .global_nav li.gnav_med_eq a:hover span, .global_nav li.gnav_med_eq .sub_column .side_info_seminar li:hover a span, .sub_column .side_info_seminar li:hover .global_nav li.gnav_med_eq a span, .global_nav li.gnav_med_eq .sub_column .side_info_seminar .more:hover a span, .sub_column .side_info_seminar .more:hover .global_nav li.gnav_med_eq a span {
    background: url(/resource/med_img_common/gnav_med_eq.png) no-repeat left center;
  }
}

@media screen and (min-width: 640px) {
  .global_nav li.gnav_med_eq span {
    /*padding: 10px 0 8px 43px;*/
  }
}

@media screen and (max-width: 640px) {
  .global_nav li.gnav_med a {
    width: 100%;
  }
  .global_nav li.gnav_med a:hover span, .global_nav li.gnav_med .sub_column .side_info_seminar li:hover a span, .sub_column .side_info_seminar li:hover .global_nav li.gnav_med a span, .global_nav li.gnav_med .sub_column .side_info_seminar .more:hover a span, .sub_column .side_info_seminar .more:hover .global_nav li.gnav_med a span {
    background: url(/resource/med_img_common/gnav_med.png) no-repeat left center;
  }
}

@media screen and (min-width: 640px) {
  .global_nav li.gnav_med span {
    /*padding: 8px 0 8px 36px;*/
  }
}

@media screen and (max-width: 640px) {
  .global_nav li.gnav_solution a {
    width: 100%;
  }
  .global_nav li.gnav_solution a:hover span, .global_nav li.gnav_solution .sub_column .side_info_seminar li:hover a span, .sub_column .side_info_seminar li:hover .global_nav li.gnav_solution a span, .global_nav li.gnav_solution .sub_column .side_info_seminar .more:hover a span, .sub_column .side_info_seminar .more:hover .global_nav li.gnav_solution a span {
    background: url(/resource/med_img_common/gnav_solution.png) no-repeat left center;
  }
}

@media screen and (min-width: 640px) {
  .global_nav li.gnav_solution span {
    /*padding: 8px 0 8px 36px;*/
  }
}

@media screen and (max-width: 640px) {
  .global_nav li.gnav_seminar a {
    width: 100%;
  }
  .global_nav li.gnav_seminar a:hover span, .global_nav li.gnav_seminar .sub_column .side_info_seminar li:hover a span, .sub_column .side_info_seminar li:hover .global_nav li.gnav_seminar a span, .global_nav li.gnav_seminar .sub_column .side_info_seminar .more:hover a span, .sub_column .side_info_seminar .more:hover .global_nav li.gnav_seminar a span {
    background: url(/resource/med_img_common/gnav_seminar.png) no-repeat left center;
  }
}

@media screen and (min-width: 640px) {
  .global_nav li.gnav_seminar a span {
    /*padding: 8px 0 8px 36px;*/
  }
}

@media screen and (max-width: 640px) {
  .global_nav li.gnav_imep a {
    width: 100%;
  }
  .global_nav li.gnav_imep a:hover span, .global_nav li.gnav_imep .sub_column .side_info_seminar li:hover a span, .sub_column .side_info_seminar li:hover .global_nav li.gnav_imep a span, .global_nav li.gnav_imep .sub_column .side_info_seminar .more:hover a span, .sub_column .side_info_seminar .more:hover .global_nav li.gnav_imep a span {
    background: url(/resource/med_img_common/gnav_imep.png) no-repeat left center;
  }
}

@media screen and (min-width: 640px) {
  .global_nav li.gnav_imep a span {
    /*padding: 8px 0 8px 36px;*/
  }
}

@media screen and (max-width: 640px) {
  .med_eq .gnav_med_eq,
  .med .gnav_med,
  .solution .gnav_solution,
  .seminar .gnav_seminar,
  .imep .gnav_imep {
    border-right: 1px solid #006bb6;
  }
  .med_eq .gnav_med_eq a,
  .med .gnav_med a,
  .solution .gnav_solution a,
  .seminar .gnav_seminar a,
  .imep .gnav_imep a {
    background: #fff;
    color: #333;
  }
}

/* local_nav
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .local_nav {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .med_eq .lnav_med_eq,
  .imep .lnav_imep {
    display: none;
  }
}

/* contents
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .contents {
    width: 100%;
    box-sizing: border-box;
  }
}

/* breadcrumb
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .breadcrumb {
    display: none;
  }
}

/* bottom_breadcrumb
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .bottom_breadcrumb {
    height: 36px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  .bottom_breadcrumb > ul {
    display: none;
  }
}

/* footer
------------------------------------------------- */
@media screen and (max-width: 640px) {
  .footer_wrap {
    padding-top: 10px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap > .inner {
    width: 100%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .page_top {
    top: -56px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_copy {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_copy span {
    width: 100%;
    display: block;
    padding: 6px 8px;
    letter-spacing: -0.6px;
    font-size: 93%;
    line-height: 1.5;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_copy br.sp {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav_box {
    border-top: 1px solid #b0c6fe;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav a {
    display: block;
    padding: 16px 15px 13px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav p {
    padding: 0;
    margin: 0;
  }
}

.footer_wrap .footer_nav p.has_child .toggle_btn {
  display: none;
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav p.has_child .toggle_btn {
    display: block;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(/resource/med_img_common/sp/icon_plus.png) no-repeat center center;
    background-size: 16px 16px;
  }
  .footer_wrap .footer_nav p.has_child .toggle_btn.open {
    background: url(/resource/med_img_common/sp/icon_minus.png) no-repeat center center;
    background-size: 16px 16px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav ul {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav li {
    margin-top: 0;
    border-bottom: 1px solid #b0c6fe;
  }
  .footer_wrap .footer_nav li a {
    padding-left: 30px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav li.sub {
    border-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav li.sub.top {
    border-bottom: 0;
    border-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav li.sub.bottom {
    border-bottom: 1px solid #b0c6fe;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer_nav li.sp_noborder {
    border-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer {
    position: relative;
    border-top: none;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer > .inner {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer .access {
    float: none;
    position: relative;
    top: 50px;
    padding-left: 15px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer .footer_link {
    position: relative;
    top: -100px;
    float: none;
    width: 100%;
    border-left: none;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer .footer_link li {
    border-right: none;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrap .footer .footer_link li a {
    font-size: 100%;
  }
}

/* entrance
------------------------------------------------- */
@media screen and (max-width: 640px) {
  body .h1_field {
    display: none;
    background-color: #cedbfe;
  }
}

/* -------------------------------------------------------------------------

		sp.sass

		スマートフォンのスタイルを定義

------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .wrapper {
    padding: 90px 15px 30px;
  }
  .contents {
    width: auto;
    border-color: rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
  }
  .contents > .inner_col_01 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .title_box {
    padding: 20px 15px;
  }
  .title_box h2 {
    font-size: 129%;
    line-height: 1.2;
  }
  .title_box h2.float_l {
    float: none;
  }
  .title_box .link_schedule {
    font-size: 86%;
    float: none;
    display: block;
  }
  .category_nav .active span, .category_nav a {
    font-size: 93%;
    height: 40px;
    line-height: 40px;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  .bottom_breadcrumb {
    padding: 21px 0;
  }
  body.imep.index .link_schedule.pdf {
    margin-top: 0;
  }
  body.imep.index .category_nav {
    margin-bottom: 20px;
    font-size: 86%;
  }
  body.imep.index .inner_col_01 {
    padding-bottom: 13px;
  }
  body.imep.index .society_article .thumb {
    display: block;
    width: auto;
    text-align: center;
  }
  .pager_box a {
    font-size: 93%;
  }
}

/* -------------------------------------------------------------------------

		med_seminar.sass

		セミナー情報のスタイルを定義

------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .tip_state, .seminar_archive__meta .meta_state {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-color: #7EB929;
    color: #fff;
    font-size: 86%;
    padding: 3px;
    line-height: 1.3;
    white-space: inherit;
  }
  .tip_state.soon, .seminar_archive__meta .soon.meta_state {
    background-color: #f19410;
  }
  .tip_state.reached, .seminar_archive__meta .reached.meta_state {
    background-color: #f53f3f;
  }
  .tip_state.finished, .seminar_archive__meta .finished.meta_state {
    background-color: #999999;
  }
  .sort_item .custom_select {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  .seminar_archives {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
  .seminar_archives .no_plan {
    text-align: center;
    border: 1px solid #e5e5e5;
    line-height: 1;
    padding: 35px 0;
    font-size: 13px;
  }
  .seminar_archive {
    padding: 30px 0 128px;
    position: relative;
  }
  .seminar_archive + .seminar_archive {
    border-top: 1px solid #e5e5e5;
  }
  .seminar_archive__meta > * {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    margin-bottom: 5px;
  }
  .seminar_archive__meta .meta_qty {
    font-size: 93%;
  }
  .pdf_btn {
    width: 100%;
    bottom: 91px;
  }
  .pdf_btn a {
    width: auto;
  }
  .seminar_archive__link a {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    -moz-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    -ms-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    background: -owg-linear-gradient(#0aa2d4, #0997c6);
    background: -webkit-linear-gradient(#0aa2d4, #0997c6);
    background: -moz-linear-gradient(#0aa2d4, #0997c6);
    background: -o-linear-gradient(#0aa2d4, #0997c6);
    -pie-background: -pie-linear-gradient(#0aa2d4, #0997c6);
    background: linear-gradient(#0aa2d4, #0997c6);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0aa2d4', endColorstr='#0997c6', GradientType=0)";
    display: inline-block;
    width: 100%;
    height: 54px;
    line-height: 54px;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 25px;
    top: initial;
  }
  .seminar_archive__link a:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #ffffff;
    vertical-align: middle;
    position: relative;
    top: -.1em;
    margin-right: 8px;
  }
  .seminar_archive__link a:hover, .seminar_archive__link .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .seminar_archive__link a, .seminar_archive__link .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .seminar_archive__link a {
    text-decoration: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-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);
    -pie-background: -pie-linear-gradient(#0997c6, #0aa2d4);
    background: linear-gradient(#0997c6, #0aa2d4);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0997c6', endColorstr='#0aa2d4', GradientType=0)";
    top: initial;
    bottom: 24px;
  }
  * + .seminar_archive__title {
    padding-top: 5px;
  }
  .seminar_archive__title {
    color: #00a4c2;
    width: initial;
    font-size: 114%;
    line-height: 1.5;
    font-weight: normal;
    margin: -.25em 0;
  }
  * + .seminar_archive__data {
    margin-top: 20px;
  }
  .seminar_archive__data .seminar_archive__data_container {
    overflow: hidden;
    *zoom: 1;
    margin-left: -13px;
  }
  .seminar_archive__data .seminar_archive__data_list {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: none;
    width: 100%;
    padding-left: 13px;
  }
  .seminar_archive__data .seminar_archive__data_list.cost {
    width: 100%;
  }
  .seminar_archive__data .seminar_archive__data_list.date {
    width: 100%;
  }
  .seminar_archive__data .seminar_archive__data_list.lecturer {
    width: 100%;
  }
  .seminar_archive__data .seminar_archive__data_list.capacity {
    width: 100%;
    margin-right: 0;
  }
  .seminar_archive__data .seminar_archive__data_list:last-child {
    width: 100%;
  }
  .seminar_archive__data .seminar_archive__data_list:last-child .seminar_archive__data_wrapper span {
    padding-bottom: 0px;
  }
  .seminar_archive__data .seminar_archive__data_wrapper {
    font-size: 93%;
  }
  .seminar_archive__data .seminar_archive__data_wrapper .data_label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
    text-align: center;
    font-weight: bold;
    padding: 6px;
    width: 70px;
    text-align: left;
    padding: 0 0 8px 0;
    line-height: 1;
  }
  .seminar_archive__data .seminar_archive__data_wrapper .data_contents {
    padding: 0 0 8px 5px;
    line-height: 1.2;
  }
  .member_area {
    clear: both;
    margin-top: 25px;
  }
  .member_area .member_inner .text {
    padding: 15px;
  }
  .member_area .member_inner ul {
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
  }
  .member_area .member_inner ul li {
    max-width: 316px;
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  .member_area .member_inner ul li:last-child {
    margin-top: 15px;
    margin-left: auto;
  }
  .member_area .member_inner ul li a {
    padding: 15px 0;
    font-size: 13px;
  }
  /* エラー表示 */
  .error_box {
    padding: 15px;
  }
  .error_box .error_title {
    font-size: 129%;
    margin-bottom: 5px;
  }
  .error_box .error_text {
    color: #f53f3f;
    font-size: 93%;
  }
  .error_btn {
    margin: 30px 0 30px;
  }
  .error_btn .blue_btn, .error_btn body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .error_btn .search_btn, .error_btn body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .error_btn .search_btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------

		med_entrance.sass

		セミナー情報のスタイルを定義

------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  body.imep.index {
    min-width: inherit;
  }
  body.imep.index .society_article .thumb {
    display: block;
    width: auto;
    text-align: center;
    margin-bottom: 15px;
  }
  body.imep.index .society_article .main_contents .hx {
    font-size: 114%;
  }
  body.imep.index .society_article .main_contents .datas dd {
    margin-bottom: 5px;
  }
  body.imep.index .society_article .main_contents .blue_btn, body.imep.index .society_article .main_contents body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.imep.index .society_article .main_contents .search_btn, body.imep.index .society_article .main_contents body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.imep.index .society_article .main_contents .search_btn {
    width: auto;
  }
  body.imep.index .society_article .btns {
    display: block;
    width: auto;
    margin-top: 10px;
    margin-left: -13px;
  }
  body.imep.index .society_article .btns > * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 50%;
    margin-top: 0 !important;
    padding-left: 13px;
  }
  body.imep.index .society_article .btns .blue_btn, body.imep.index .society_article .btns body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.imep.index .society_article .btns .search_btn, body.imep.index .society_article .btns body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.imep.index .society_article .btns .search_btn {
    padding: 0 5px;
    line-height: 30px;
    height: 30px;
    font-size: 100%;
  }
  body.imep.index .society_article .btns .blue_btn span:before, body.imep.index .society_article .btns body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn span:before, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.imep.index .society_article .btns .search_btn span:before, body.imep.index .society_article .btns body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn span:before, body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box body.imep.index .society_article .btns .search_btn span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #fff;
    position: relative;
    top: -.05em;
    margin-right: 5px;
  }
  .entrance_article__meta {
    margin-bottom: 5px;
  }
  .entrance_article__meta > .tip_state, .seminar_archive__meta .entrance_article__meta > .meta_state {
    line-height: 1;
  }
}

/* -------------------------------------------------------------------------

		form.sass

		フォームのスタイルを定義

------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .form_steps__wrapper {
    overflow: hidden;
    *zoom: 1;
    background-color: #f5f6f7;
    padding: 8px 10px;
  }
  .form_steps__item {
    float: left;
    font-size: 71%;
    color: #999999;
    white-space: nowrap;
  }
  .form_steps__item:after {
    content: ">";
    display: inline-block;
    margin: 0 .5em;
  }
  .form_steps__item:last-child:after {
    display: none;
  }
  .form_steps__item.current {
    color: #333333;
  }
  .form_steps__item.current:after {
    color: #999999;
  }
  .form_description {
    margin-top: 15px;
  }
  .form_description__title {
    color: #00a4c2;
    font-size: 114%;
  }
  * + .form_description__contents {
    margin-top: 5px;
  }
  .form_description__contents {
    font-size: 93%;
  }
  .form_description__contents > * + * {
    margin-top: 5px;
  }
  .form_description__contents .sp_min {
    font-size: 86%;
  }
  .form_cartbox .form_cartbox_table .form_cartbox_table__head {
    min-width: 30px;
    padding: 10px 5px;
    text-align: center;
  }
  .form_cartbox .form_cartbox_table .form_cartbox_table__data {
    vertical-align: middle;
    padding: 10px 5px;
    text-align: left;
  }
  .form_cartbox .form_cartbox_table tr {
    width: 100%;
  }
  .form_cartbox .form_cartbox_table th, .form_cartbox .form_cartbox_table td {
    width: 35%;
  }
  .form_cartbox .form_cartbox_table th:nth-child(2n),
  .form_cartbox .form_cartbox_table td:nth-child(2n) {
    width: 60%;
  }
  .form_cartbox .form_cartbox_table th:first-child,
  .form_cartbox .form_cartbox_table td:first-child {
    width: 25%;
  }
  .mark_require {
    text-indent: -1em;
    margin-left: 1em;
  }
  .mark_require.colorize_normal:before {
    color: #333;
  }
  .mark_require:before {
    color: #ff0101;
    content: "※";
  }
  .form_body {
    margin-top: 15px;
  }
  .form_body.result .form_table__row {
    padding-bottom: 7px;
  }
  .form_table {
    display: block;
    border-bottom: 1px solid #e5e5e5;
  }
  thead, tbody {
    display: block;
  }
  .form_table__row {
    display: block;
    border-top: 1px solid #e5e5e5;
    padding: 15px 0 20px;
  }
  .form_table__row.attr_msg {
    border-top: none;
  }
  .form_table__row.attr_msg td {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 79%;
  }
  .form_table__head,
  .form_table__data {
    display: block;
    text-align: left;
    vertical-align: top;
    border-top: none;
  }
  .form_table__head {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
  }
  .form_table__data {
    margin-top: 5px;
  }
  .form_privacy {
    margin-top: 30px;
  }
  .form_privacy > * + * {
    margin-top: 10px;
  }
  .form_privacy > p {
    font-size: 93%;
  }
  .form_privacy .msg_settlement {
    font-size: 79%;
  }
  .form_privacy .msg_settlement .form_privacy__msg_inner > * + * {
    margin-top: 0;
  }
  .form_privacy__msg_container {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    margin-bottom: 27px;
  }
  .form_privacy__msg {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 205px;
  }
  .form_privacy__msg .jspVerticalBar {
    right: 6px;
  }
  .form_privacy__msg .jspDrag {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-color: #d9d9d9;
    width: 10px;
  }
  .form_privacy__msg_inner {
    padding: 15px 20px;
    padding: 5px 15px;
  }
  .form_privacy__msg_inner > * {
    line-height: 1.75;
  }
  .form_privacy__msg_inner > * + * {
    margin-top: 15px;
  }
  .form_thanks {
    font-size: 114%;
    margin-top: 15px;
  }
  .form_return {
    margin-top: 10px;
    text-align: center;
  }
  .form_return a {
    color: #0aa2d4;
    text-decoration: underline;
  }
  .form_return a:hover, .form_return .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .form_return a, .form_return .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .form_return a {
    text-decoration: none;
  }
  .form_element input, .form_element select, .form_element option, .form_element textarea, .form_element button, .form_element a {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    font-family: 'メイリオ',Meiryo,arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  }
  .form_element.size0 {
    width: 0% !important;
  }
  .form_element.size1 {
    width: 1% !important;
  }
  .form_element.size2 {
    width: 2% !important;
  }
  .form_element.size3 {
    width: 3% !important;
  }
  .form_element.size4 {
    width: 4% !important;
  }
  .form_element.size5 {
    width: 5% !important;
  }
  .form_element.size6 {
    width: 6% !important;
  }
  .form_element.size7 {
    width: 7% !important;
  }
  .form_element.size8 {
    width: 8% !important;
  }
  .form_element.size9 {
    width: 9% !important;
  }
  .form_element.size10 {
    width: 10% !important;
  }
  .form_element.size11 {
    width: 11% !important;
  }
  .form_element.size12 {
    width: 12% !important;
  }
  .form_element.size13 {
    width: 13% !important;
  }
  .form_element.size14 {
    width: 14% !important;
  }
  .form_element.size15 {
    width: 15% !important;
  }
  .form_element.size16 {
    width: 16% !important;
  }
  .form_element.size17 {
    width: 17% !important;
  }
  .form_element.size18 {
    width: 18% !important;
  }
  .form_element.size19 {
    width: 19% !important;
  }
  .form_element.size20 {
    width: 20% !important;
  }
  .form_element.size21 {
    width: 21% !important;
  }
  .form_element.size22 {
    width: 22% !important;
  }
  .form_element.size23 {
    width: 23% !important;
  }
  .form_element.size24 {
    width: 24% !important;
  }
  .form_element.size25 {
    width: 25% !important;
  }
  .form_element.size26 {
    width: 26% !important;
  }
  .form_element.size27 {
    width: 27% !important;
  }
  .form_element.size28 {
    width: 28% !important;
  }
  .form_element.size29 {
    width: 29% !important;
  }
  .form_element.size30 {
    width: 30% !important;
  }
  .form_element.size31 {
    width: 31% !important;
  }
  .form_element.size32 {
    width: 32% !important;
  }
  .form_element.size33 {
    width: 33% !important;
  }
  .form_element.size34 {
    width: 34% !important;
  }
  .form_element.size35 {
    width: 35% !important;
  }
  .form_element.size36 {
    width: 36% !important;
  }
  .form_element.size37 {
    width: 37% !important;
  }
  .form_element.size38 {
    width: 38% !important;
  }
  .form_element.size39 {
    width: 39% !important;
  }
  .form_element.size40 {
    width: 40% !important;
  }
  .form_element.size41 {
    width: 41% !important;
  }
  .form_element.size42 {
    width: 42% !important;
  }
  .form_element.size43 {
    width: 43% !important;
  }
  .form_element.size44 {
    width: 44% !important;
  }
  .form_element.size45 {
    width: 45% !important;
  }
  .form_element.size46 {
    width: 46% !important;
  }
  .form_element.size47 {
    width: 47% !important;
  }
  .form_element.size48 {
    width: 48% !important;
  }
  .form_element.size49 {
    width: 49% !important;
  }
  .form_element.size50 {
    width: 50% !important;
  }
  .form_element.size51 {
    width: 51% !important;
  }
  .form_element.size52 {
    width: 52% !important;
  }
  .form_element.size53 {
    width: 53% !important;
  }
  .form_element.size54 {
    width: 54% !important;
  }
  .form_element.size55 {
    width: 55% !important;
  }
  .form_element.size56 {
    width: 56% !important;
  }
  .form_element.size57 {
    width: 57% !important;
  }
  .form_element.size58 {
    width: 58% !important;
  }
  .form_element.size59 {
    width: 59% !important;
  }
  .form_element.size60 {
    width: 60% !important;
  }
  .form_element.size61 {
    width: 61% !important;
  }
  .form_element.size62 {
    width: 62% !important;
  }
  .form_element.size63 {
    width: 63% !important;
  }
  .form_element.size64 {
    width: 64% !important;
  }
  .form_element.size65 {
    width: 65% !important;
  }
  .form_element.size66 {
    width: 66% !important;
  }
  .form_element.size67 {
    width: 67% !important;
  }
  .form_element.size68 {
    width: 68% !important;
  }
  .form_element.size69 {
    width: 69% !important;
  }
  .form_element.size70 {
    width: 70% !important;
  }
  .form_element.size71 {
    width: 71% !important;
  }
  .form_element.size72 {
    width: 72% !important;
  }
  .form_element.size73 {
    width: 73% !important;
  }
  .form_element.size74 {
    width: 74% !important;
  }
  .form_element.size75 {
    width: 75% !important;
  }
  .form_element.size76 {
    width: 76% !important;
  }
  .form_element.size77 {
    width: 77% !important;
  }
  .form_element.size78 {
    width: 78% !important;
  }
  .form_element.size79 {
    width: 79% !important;
  }
  .form_element.size80 {
    width: 80% !important;
  }
  .form_element.size81 {
    width: 81% !important;
  }
  .form_element.size82 {
    width: 82% !important;
  }
  .form_element.size83 {
    width: 83% !important;
  }
  .form_element.size84 {
    width: 84% !important;
  }
  .form_element.size85 {
    width: 85% !important;
  }
  .form_element.size86 {
    width: 86% !important;
  }
  .form_element.size87 {
    width: 87% !important;
  }
  .form_element.size88 {
    width: 88% !important;
  }
  .form_element.size89 {
    width: 89% !important;
  }
  .form_element.size90 {
    width: 90% !important;
  }
  .form_element.size91 {
    width: 91% !important;
  }
  .form_element.size92 {
    width: 92% !important;
  }
  .form_element.size93 {
    width: 93% !important;
  }
  .form_element.size94 {
    width: 94% !important;
  }
  .form_element.size95 {
    width: 95% !important;
  }
  .form_element.size96 {
    width: 96% !important;
  }
  .form_element.size97 {
    width: 97% !important;
  }
  .form_element.size98 {
    width: 98% !important;
  }
  .form_element.size99 {
    width: 99% !important;
  }
  .form_element.size100 {
    width: 100% !important;
  }
}

@media screen and (max-width: 640px) and (max-width: 640px) {
  .form_element.sp_size0 {
    width: 0% !important;
  }
  .form_element.sp_size1 {
    width: 1% !important;
  }
  .form_element.sp_size2 {
    width: 2% !important;
  }
  .form_element.sp_size3 {
    width: 3% !important;
  }
  .form_element.sp_size4 {
    width: 4% !important;
  }
  .form_element.sp_size5 {
    width: 5% !important;
  }
  .form_element.sp_size6 {
    width: 6% !important;
  }
  .form_element.sp_size7 {
    width: 7% !important;
  }
  .form_element.sp_size8 {
    width: 8% !important;
  }
  .form_element.sp_size9 {
    width: 9% !important;
  }
  .form_element.sp_size10 {
    width: 10% !important;
  }
  .form_element.sp_size11 {
    width: 11% !important;
  }
  .form_element.sp_size12 {
    width: 12% !important;
  }
  .form_element.sp_size13 {
    width: 13% !important;
  }
  .form_element.sp_size14 {
    width: 14% !important;
  }
  .form_element.sp_size15 {
    width: 15% !important;
  }
  .form_element.sp_size16 {
    width: 16% !important;
  }
  .form_element.sp_size17 {
    width: 17% !important;
  }
  .form_element.sp_size18 {
    width: 18% !important;
  }
  .form_element.sp_size19 {
    width: 19% !important;
  }
  .form_element.sp_size20 {
    width: 20% !important;
  }
  .form_element.sp_size21 {
    width: 21% !important;
  }
  .form_element.sp_size22 {
    width: 22% !important;
  }
  .form_element.sp_size23 {
    width: 23% !important;
  }
  .form_element.sp_size24 {
    width: 24% !important;
  }
  .form_element.sp_size25 {
    width: 25% !important;
  }
  .form_element.sp_size26 {
    width: 26% !important;
  }
  .form_element.sp_size27 {
    width: 27% !important;
  }
  .form_element.sp_size28 {
    width: 28% !important;
  }
  .form_element.sp_size29 {
    width: 29% !important;
  }
  .form_element.sp_size30 {
    width: 30% !important;
  }
  .form_element.sp_size31 {
    width: 31% !important;
  }
  .form_element.sp_size32 {
    width: 32% !important;
  }
  .form_element.sp_size33 {
    width: 33% !important;
  }
  .form_element.sp_size34 {
    width: 34% !important;
  }
  .form_element.sp_size35 {
    width: 35% !important;
  }
  .form_element.sp_size36 {
    width: 36% !important;
  }
  .form_element.sp_size37 {
    width: 37% !important;
  }
  .form_element.sp_size38 {
    width: 38% !important;
  }
  .form_element.sp_size39 {
    width: 39% !important;
  }
  .form_element.sp_size40 {
    width: 40% !important;
  }
  .form_element.sp_size41 {
    width: 41% !important;
  }
  .form_element.sp_size42 {
    width: 42% !important;
  }
  .form_element.sp_size43 {
    width: 43% !important;
  }
  .form_element.sp_size44 {
    width: 44% !important;
  }
  .form_element.sp_size45 {
    width: 45% !important;
  }
  .form_element.sp_size46 {
    width: 46% !important;
  }
  .form_element.sp_size47 {
    width: 47% !important;
  }
  .form_element.sp_size48 {
    width: 48% !important;
  }
  .form_element.sp_size49 {
    width: 49% !important;
  }
  .form_element.sp_size50 {
    width: 50% !important;
  }
  .form_element.sp_size51 {
    width: 51% !important;
  }
  .form_element.sp_size52 {
    width: 52% !important;
  }
  .form_element.sp_size53 {
    width: 53% !important;
  }
  .form_element.sp_size54 {
    width: 54% !important;
  }
  .form_element.sp_size55 {
    width: 55% !important;
  }
  .form_element.sp_size56 {
    width: 56% !important;
  }
  .form_element.sp_size57 {
    width: 57% !important;
  }
  .form_element.sp_size58 {
    width: 58% !important;
  }
  .form_element.sp_size59 {
    width: 59% !important;
  }
  .form_element.sp_size60 {
    width: 60% !important;
  }
  .form_element.sp_size61 {
    width: 61% !important;
  }
  .form_element.sp_size62 {
    width: 62% !important;
  }
  .form_element.sp_size63 {
    width: 63% !important;
  }
  .form_element.sp_size64 {
    width: 64% !important;
  }
  .form_element.sp_size65 {
    width: 65% !important;
  }
  .form_element.sp_size66 {
    width: 66% !important;
  }
  .form_element.sp_size67 {
    width: 67% !important;
  }
  .form_element.sp_size68 {
    width: 68% !important;
  }
  .form_element.sp_size69 {
    width: 69% !important;
  }
  .form_element.sp_size70 {
    width: 70% !important;
  }
  .form_element.sp_size71 {
    width: 71% !important;
  }
  .form_element.sp_size72 {
    width: 72% !important;
  }
  .form_element.sp_size73 {
    width: 73% !important;
  }
  .form_element.sp_size74 {
    width: 74% !important;
  }
  .form_element.sp_size75 {
    width: 75% !important;
  }
  .form_element.sp_size76 {
    width: 76% !important;
  }
  .form_element.sp_size77 {
    width: 77% !important;
  }
  .form_element.sp_size78 {
    width: 78% !important;
  }
  .form_element.sp_size79 {
    width: 79% !important;
  }
  .form_element.sp_size80 {
    width: 80% !important;
  }
  .form_element.sp_size81 {
    width: 81% !important;
  }
  .form_element.sp_size82 {
    width: 82% !important;
  }
  .form_element.sp_size83 {
    width: 83% !important;
  }
  .form_element.sp_size84 {
    width: 84% !important;
  }
  .form_element.sp_size85 {
    width: 85% !important;
  }
  .form_element.sp_size86 {
    width: 86% !important;
  }
  .form_element.sp_size87 {
    width: 87% !important;
  }
  .form_element.sp_size88 {
    width: 88% !important;
  }
  .form_element.sp_size89 {
    width: 89% !important;
  }
  .form_element.sp_size90 {
    width: 90% !important;
  }
  .form_element.sp_size91 {
    width: 91% !important;
  }
  .form_element.sp_size92 {
    width: 92% !important;
  }
  .form_element.sp_size93 {
    width: 93% !important;
  }
  .form_element.sp_size94 {
    width: 94% !important;
  }
  .form_element.sp_size95 {
    width: 95% !important;
  }
  .form_element.sp_size96 {
    width: 96% !important;
  }
  .form_element.sp_size97 {
    width: 97% !important;
  }
  .form_element.sp_size98 {
    width: 98% !important;
  }
  .form_element.sp_size99 {
    width: 99% !important;
  }
  .form_element.sp_size100 {
    width: 100% !important;
  }
}

@media screen and (max-width: 640px) {
  .form_element.add_label {
    display: table;
  }
  .form_element.add_label > * {
    display: table-cell;
    vertical-align: middle;
  }
  .form_element.add_label .element_label {
    padding-right: 10px;
  }
  .form_element.type_row {
    display: inline-block;
  }
  .form_element.type_row + .type_row {
    margin-top: 8px;
  }
  .form_element.sp_type_col + .sp_type_col {
    margin-top: 0;
    margin-left: 15px;
  }
  .form_element.type_col {
    display: inline-block;
  }
  .form_element.type_col + .type_col {
    margin-left: 35px;
  }
  .form_element.type_hyphen {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
  }
  .form_element.type_text input, .form_element.type_text select, .form_element.type_text option, .form_element.type_text textarea, .form_element.type_text button, .form_element.type_text a, .form_element.type_textarea input, .form_element.type_textarea select, .form_element.type_textarea option, .form_element.type_textarea textarea, .form_element.type_textarea button, .form_element.type_textarea a {
    width: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 8px;
    vertical-align: bottom;
  }
  .form_element.type_check, .form_element.type_radio {
    text-indent: -1.63em;
    padding-left: 1.63em;
    line-height: 1.1;
  }
  .form_element.type_check.marl label:before, .form_element.type_radio.marl label:before {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    margin-right: 5px !important;
  }
  .form_element.type_check .sp_size_s, .form_element.type_radio .sp_size_s {
    white-space: nowrap;
    font-size: 79%;
  }
  .form_element.type_check input, .form_element.type_check select, .form_element.type_check option, .form_element.type_check textarea, .form_element.type_check button, .form_element.type_check a, .form_element.type_radio input, .form_element.type_radio select, .form_element.type_radio option, .form_element.type_radio textarea, .form_element.type_radio button, .form_element.type_radio a {
    display: none;
  }
  .form_element.type_check input + label, .form_element.type_check select + label, .form_element.type_check option + label, .form_element.type_check textarea + label, .form_element.type_check button + label, .form_element.type_check a + label, .form_element.type_radio input + label, .form_element.type_radio select + label, .form_element.type_radio option + label, .form_element.type_radio textarea + label, .form_element.type_radio button + label, .form_element.type_radio a + label {
    cursor: pointer;
    position: relative;
  }
  .form_element.type_check input + label:before, .form_element.type_check select + label:before, .form_element.type_check option + label:before, .form_element.type_check textarea + label:before, .form_element.type_check button + label:before, .form_element.type_check a + label:before, .form_element.type_radio input + label:before, .form_element.type_radio select + label:before, .form_element.type_radio option + label:before, .form_element.type_radio textarea + label:before, .form_element.type_radio button + label:before, .form_element.type_radio a + label:before {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    content: "";
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.64);
    width: 1.13em;
    height: 1.13em;
    margin-right: 8px;
    position: relative;
    top: -.1em;
  }
  .form_element.type_check input + label:after, .form_element.type_check select + label:after, .form_element.type_check option + label:after, .form_element.type_check textarea + label:after, .form_element.type_check button + label:after, .form_element.type_check a + label:after, .form_element.type_radio input + label:after, .form_element.type_radio select + label:after, .form_element.type_radio option + label:after, .form_element.type_radio textarea + label:after, .form_element.type_radio button + label:after, .form_element.type_radio a + label:after {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    box-shadow: -1px 0.5px rgba(0, 0, 0, 0.1);
    content: "";
    vertical-align: middle;
    background-color: #000;
    width: .4em;
    height: .4em;
    position: absolute;
    left: .38em;
    top: .48em;
    display: none;
  }
  .form_element.type_check input:checked + label:after, .form_element.type_check select:checked + label:after, .form_element.type_check option:checked + label:after, .form_element.type_check textarea:checked + label:after, .form_element.type_check button:checked + label:after, .form_element.type_check a:checked + label:after, .form_element.type_radio input:checked + label:after, .form_element.type_radio select:checked + label:after, .form_element.type_radio option:checked + label:after, .form_element.type_radio textarea:checked + label:after, .form_element.type_radio button:checked + label:after, .form_element.type_radio a:checked + label:after {
    display: block;
  }
  .form_element.type_radio input + label:before, .form_element.type_radio select + label:before, .form_element.type_radio option + label:before, .form_element.type_radio textarea + label:before, .form_element.type_radio button + label:before, .form_element.type_radio a + label:before {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
  }
  .form_element.type_radio input:checked + label:after, .form_element.type_radio select:checked + label:after, .form_element.type_radio option:checked + label:after, .form_element.type_radio textarea:checked + label:after, .form_element.type_radio button:checked + label:after, .form_element.type_radio a:checked + label:after {
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
  }
  .form_element.type_select {
    position: relative;
  }
  .form_element.type_select select {
    width: 100%;
    text-indent: 0.01px;
    text-overflow: '';
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 10px;
    vertical-align: bottom;
    color: #9b9b9b;
  }
  .form_element.type_select select::-ms-expand {
    display: none;
  }
  .form_element.type_select:after {
    content: "";
    pointer-events: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #333 transparent transparent transparent;
    position: absolute;
    z-index: 1;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .form_element.type_select option {
    background-color: #fff;
    border: none;
    outline: none;
    padding: 0 10px;
    color: #333;
  }
  .form_element.type_require {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
  }
  .form_element.type_require:after {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    content: "※";
    color: #ff0101;
    font-size: 79%;
    font-weight: normal;
    line-height: 1;
    position: absolute;
    right: -13px;
    margin-top: 0.5em;
  }
  .form_element.type_action {
    display: block;
    text-align: center;
    margin-top: 30px;
    padding-bottom: 15px;
  }
  .form_element.type_action > * {
    display: inline-block;
    vertical-align: bottom;
  }
  .form_element.type_action > * + * {
    margin-left: 3%;
  }
  .form_element.type_prev, .form_element.type_next {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
  }
  .form_element.type_prev input, .form_element.type_prev select, .form_element.type_prev option, .form_element.type_prev textarea, .form_element.type_prev button, .form_element.type_prev a, .form_element.type_next input, .form_element.type_next select, .form_element.type_next option, .form_element.type_next textarea, .form_element.type_next button, .form_element.type_next a {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: block;
    border: none;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 13px 0;
    cursor: pointer;
  }
  .form_element.type_prev input:hover, .form_element.type_prev select:hover, .form_element.type_prev option:hover, .form_element.type_prev textarea:hover, .form_element.type_prev button:hover, .form_element.type_prev a:hover, .form_element.type_prev .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .form_element.type_prev a, .form_element.type_prev .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .form_element.type_prev a, .form_element.type_next input:hover, .form_element.type_next select:hover, .form_element.type_next option:hover, .form_element.type_next textarea:hover, .form_element.type_next button:hover, .form_element.type_next a:hover, .form_element.type_next .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .form_element.type_next a, .form_element.type_next .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .form_element.type_next a {
    text-decoration: none;
  }
  .form_element.type_prev {
    width: 47.5%;
    font-size: 79%;
  }
  .form_element.type_prev input, .form_element.type_prev select, .form_element.type_prev option, .form_element.type_prev textarea, .form_element.type_prev button, .form_element.type_prev a {
    padding-top: 7px;
    padding-bottom: 7px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    -moz-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    -ms-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    background: -owg-linear-gradient(#bfbfbf, #b4b4b4);
    background: -webkit-linear-gradient(#bfbfbf, #b4b4b4);
    background: -moz-linear-gradient(#bfbfbf, #b4b4b4);
    background: -o-linear-gradient(#bfbfbf, #b4b4b4);
    -pie-background: -pie-linear-gradient(#bfbfbf, #b4b4b4);
    background: linear-gradient(#bfbfbf, #b4b4b4);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#bfbfbf', endColorstr='#b4b4b4', GradientType=0)";
  }
  .form_element.type_prev input:hover, .form_element.type_prev select:hover, .form_element.type_prev option:hover, .form_element.type_prev textarea:hover, .form_element.type_prev button:hover, .form_element.type_prev a:hover, .form_element.type_prev .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .form_element.type_prev a, .form_element.type_prev .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .form_element.type_prev a {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    background: -owg-linear-gradient(#b4b4b4, #bfbfbf);
    background: -webkit-linear-gradient(#b4b4b4, #bfbfbf);
    background: -moz-linear-gradient(#b4b4b4, #bfbfbf);
    background: -o-linear-gradient(#b4b4b4, #bfbfbf);
    -pie-background: -pie-linear-gradient(#b4b4b4, #bfbfbf);
    background: linear-gradient(#b4b4b4, #bfbfbf);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#b4b4b4', endColorstr='#bfbfbf', GradientType=0)";
    position: relative;
    top: 1px;
  }
  .form_element.type_prev input:before, .form_element.type_prev select:before, .form_element.type_prev option:before, .form_element.type_prev textarea:before, .form_element.type_prev button:before, .form_element.type_prev a:before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.5px 8px 5.5px 0;
    border-color: transparent #ffffff transparent transparent;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -.1em;
  }
  .form_element.type_next {
    width: 47.5%;
    font-size: 114%;
  }
  .form_element.type_next input, .form_element.type_next select, .form_element.type_next option, .form_element.type_next textarea, .form_element.type_next button, .form_element.type_next a {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    -moz-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    -ms-box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    box-shadow: 1px 2px rgba(9, 2, 4, 0.2);
    background: -owg-linear-gradient(#0aa2d4, #0997c6);
    background: -webkit-linear-gradient(#0aa2d4, #0997c6);
    background: -moz-linear-gradient(#0aa2d4, #0997c6);
    background: -o-linear-gradient(#0aa2d4, #0997c6);
    -pie-background: -pie-linear-gradient(#0aa2d4, #0997c6);
    background: linear-gradient(#0aa2d4, #0997c6);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0aa2d4', endColorstr='#0997c6', GradientType=0)";
  }
  .form_element.type_next input:hover, .form_element.type_next select:hover, .form_element.type_next option:hover, .form_element.type_next textarea:hover, .form_element.type_next button:hover, .form_element.type_next a:hover, .form_element.type_next .sub_column .side_info_seminar li:hover a, .sub_column .side_info_seminar li:hover .form_element.type_next a, .form_element.type_next .sub_column .side_info_seminar .more:hover a, .sub_column .side_info_seminar .more:hover .form_element.type_next a {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-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);
    -pie-background: -pie-linear-gradient(#0997c6, #0aa2d4);
    background: linear-gradient(#0997c6, #0aa2d4);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0997c6', endColorstr='#0aa2d4', GradientType=0)";
    position: relative;
    top: 1px;
  }
  .form_element.type_next input:after, .form_element.type_next select:after, .form_element.type_next option:after, .form_element.type_next textarea:after, .form_element.type_next button:after, .form_element.type_next a:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6.5px 0 6.5px 11px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -.1em;
  }
}

/* -------------------------------------------------------------------------

		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 body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box .search_btn, body.med_eq.index .top_eq_main_box .top_eq_main .top_eq_search form .search_box body.notfound .inner_col_01 .search_btn, body.notfound body.med_eq.product_search .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn, body.med_eq.product_search body.notfound .inner_col_01 .search_wrapper .search_inner form .search_box .search_btn {
  width: 390px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  /* IE zoom
	------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }
  /* for IE7 */
  * + html body {
    zoom: 1;
  }
  .wrapper {
    background: none;
  }
  .breadcrumb {
    display: none;
  }
  .header_wrap {
    display: none;
  }
  .footer_wrap {
    display: none;
  }
  .bottom_breadcrumb {
    display: none;
  }
  .h1_field {
    display: none;
  }
  .med_eq .local_nav.lnav_med_eq,
  .imep .local_nav.lnav_imep {
    display: none;
  }
  body.med_eq.detail .title_box .font_icon_arrow_left {
    display: none;
  }
  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;
  }
}
