
@charset "utf-8";

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, dialog, figure, footer, header,
main, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article, aside, dialog, figure, footer, header,
main, nav, section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

a:hover {
	text-decoration: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

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

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
	vertical-align: middle;
}

sup,
sub {
	font-size: 60%;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"],
textarea {
	padding: .6rem;
	outline: none;
	border: solid .1rem #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size: 1.2rem;
}

input[type="text"]:focus,
textarea:focus {
	/*box-shadow: 0 0 .7rem #ddd;*/
	/*border: solid .1rem #aaa;*/
}

html {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 62.5%;
	line-height: 1.65;
	color: #333;
}


body {
	font-weight: 500;
	text-align: left;
	font-size: 1.4rem;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

a {
	color: #333;
	text-decoration: none;
}

li {
	list-style-type: none;
}

.relative {
	position: relative;
}

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

.clearfix {display: inline-block;}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

* html ul li {
	display: inline-block;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.mt2  { margin-top:  0.2rem; }
.mt5  { margin-top:  0.5rem; }
.mt8  { margin-top:  0.8rem; }
.mt10 { margin-top:  1.0rem; }
.mt15 { margin-top:  1.5rem; }
.mt20 { margin-top:  2.0rem; }
.mt25 { margin-top:  2.5rem; }
.mt30 { margin-top:  3.0rem; }
.mt35 { margin-top:  3.5rem; }
.mt40 { margin-top:  4.0rem; }
.mt50 { margin-top:  5.0rem; }
.mt60 { margin-top:  6.0rem; }
.pt2  { padding-top: 0.2rem; }
.pt5  { padding-top: 0.5rem; }
.pt8  { padding-top: 0.8rem; }
.pt10 { padding-top: 1.0rem; }
.pt13 { padding-top: 1.3rem; }
.pt15 { padding-top: 2rem; }
.pt20 { padding-top: 2.0rem; }
.pt25 { padding-top: 2.5rem; }
.pt30 { padding-top: 3.0rem; }
.pt35 { padding-top: 3.5rem; }
.pt40 { padding-top: 4.0rem; }

.relative {
	position: relative;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.flex-sb {
	justify-content: space-between;
}

.flex-sa {
	justify-content: space-around;
}

.flex-c {
	justify-content: center;
	-webkit-justify-content: center;
}

.flex-ai-c {
	align-items: center;
	-webkit-align-items: center;
}

.flex-wrap {
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}

.flex-nowrap {
	flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
}

.flex-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.table {
	display: table;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.table-cell-bd {
	border: solid .6rem #e9e9e9;
	border-width: 0 .2rem;
	display: table-cell;
	vertical-align: middle;
}

.table-fixed {
	table-layout: fixed;
}

/* 骨組
-------------------------------------------------------------------------------- */

.wrap {
	position: relative;
	/*max-width: 120rem;*/
	margin: 9rem auto 0 auto;
	box-sizing: border-box;
}

/*.wrap img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}*/

/* ヘッダー
-------------------------------------------------------------------------------- */

.head-wrap {
	text-align: center;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	left: 0;
	top: 0;
	z-index: 9999;
	background-color: #fff;
	box-sizing: border-box;
	/*box-shadow: 0 0 .2rem rgba(0,0,0,.1);*/
}

.head-wrap.on {
	bottom: 0;
	border-bottom: 0;
	background-color: rgba(0,0,0,.7);
}

header {
	margin: 0 auto;
	border-bottom: solid .1rem #ddd;
}

header.on {
	margin: 0 auto;
	border-bottom: 0;
	background-color: #fff;
}

header .head {
	max-width: 120rem;
	min-width: 94rem;
	margin: 0 auto;
	position: relative;
}

header .head .logo-wrap {
	width: 6.4rem;
	margin: 0 auto;
}

header .head .logo h1,
header .head .logo p {
	height: 6rem;
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}

header .head .logo a {
	display: block;
}

header .head .logo h1 span {
	display: block;
	margin-top: 1rem;
}

header .head .logo p {
	margin-top: .8rem;
	padding: 0 2rem;
	font-weight: bold;
	line-height: 1.3;
	font-size: 1.4rem;
	text-align: left;
}

header .head .nav {
	font-size: 1.5rem;
}

header .head .nav .table > li {
	width: 16.66%;
	position: relative;
	text-align: center;
	cursor: pointer;
}

header .head .nav .table > li > a,
header .head .nav .table > li > span {
	display: block;
	padding: 2.9rem 0;
}

header .head .search {
	width: 5rem;
	height: 5rem;
	float: right;
	margin: 1.5rem 0 0 1rem;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	background-color: #ccc;
	cursor: pointer;
}

header .sns {
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	font-size: 2.5rem;
	z-index: 9999;
}

header .sns .share {
	display: none;
	width: 6rem;
	height: 6rem;
	line-height: 6rem;
	text-align: center;
	box-sizing: border-box;
	border-right: solid .1rem #ddd;
	cursor: pointer;
}

header .sns .share .icon {
	-webkit-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
}

header .sns .icon {
	display: inline-block;
}

header .sns ul {
	/* transition */
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

header .sns li {
	float: left;
}

header .sns li a {
	display: block;
	width: 6rem;
	height: 6rem;
	line-height: 6rem;
	text-align: center;
	box-sizing: border-box;
	border-right: solid .1rem #ddd;
	background-color: #fff;
}

header .sns li a .icon {
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

header .sns .share.on .icon {
	-webkit-transform: rotateZ( 90deg );
	-moz-transform: rotateZ( 90deg );
	-ms-transform: rotateZ( 90deg );
	transform: rotateZ( 90deg );
}

header .sns li a:hover .icon {
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

header .sns li:first-child a {
	border-left: solid .1rem #ddd;
}

/* トグルボタン
-------------------------------------------------------------------------------- */

header #toggle {
	width: 60px;
    height: 60px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	cursor: pointer;
	text-align: left;
	border: solid #ddd;
	border-width: 0 .1rem;

	-webkit-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
}

header #toggle span,
header #toggle span:before,
header #toggle span:after {
	position: absolute;
    top: 50%;
    left: 50%;
	height: 4px;
    width: 30px;
    cursor: pointer;
    background: #333;
    display: block;
    content: '';
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

header #toggle span {
	position: relative;
	display: block;
	transform: translate3d(-50%, -2px, 0);
    -webkit-transform: translate3d(-50%, -2px, 0);
}

header #toggle span:before {
	transform: translate3d(-50%, -12px, 0);
    -webkit-transform: translate3d(-50%, -12px, 0);
}

header #toggle span:after {
	transform: translate3d(-50%, 8px, 0);
    -webkit-transform: translate3d(-50%, 8px, 0);
}

header #toggle.on {
	/*background-color: #333;*/
}

header #toggle.on span,
header #toggle.on span:before,
header #toggle.on span:after {
	/*background-color: #fff;*/
}

header #toggle.on span {
    background-color: transparent;
}

header #toggle.on span:before,
header #toggle.on span:after {
	top: 0;
}

header #toggle.on span:before {
	-ms-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
}

header #toggle.on span:after {
	-ms-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
        transform: translateX(-50%) translateY(-10px) rotate(-45deg);
    -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
    top: 10px;
}

/* ヘッダーメニュー
-------------------------------------------------------------------------------- */

header .menu {
	display: none;
	border-top: solid .1rem #ddd;
}

header .menu .inner {
	max-width: 119.8rem;
	min-width: 94rem;
	margin: 0 auto;
	border: solid .1rem #ddd;
	border-width: 0 .1rem;
}

header .menu.on {
	display: block;
}

header .wrap .inner {
	padding: 1.5rem 0;
}

header .menu .search {
	padding: 2rem 0;
}

header .menu .search .powered {
	font-size: 1rem;
	color: #999;
}

header .menu .input-box {
	width: 23rem;
	margin: 0 auto;
	position: relative;
}

header .menu .input-box .icon {
	display: block;
	position: absolute;
	right: .4rem;
	top: .4rem;
	text-align: right;
	font-size: 1.3rem;
	cursor: pointer;
}

header .menu .input-box input[type="text"] {
	width: 20rem;
	padding: .6rem 3rem .6rem .6rem;
	background-color: #f3f3f3;
	border: 0;
	font-size: 1.4rem;
}

header .menu .copy {
	padding: 2rem 0;
}

header .menu .nav > ul > li {
	width: 20%;
	padding: 2rem 0;
	border: solid #ddd;
	border-width: .1rem .1rem 0 0;
	vertical-align: top;
	text-align: left;
}

header .menu .nav > ul > li:last-child {
	border-right: 0;
}

header .menu .nav > ul > li.cat {
	width: 40%;
}

header .menu .nav > ul > li.cat .flex li {
	width: 50%;
}

header .menu .nav > ul > li .nav-head {
	position: relative;
	padding: 0 0 .5rem 0;
	font-weight: bold;
	font-size: 1.15rem;
}

header .menu .nav > ul > li .nav-head-inner {
	position: relative;
	display: inline-block;
	padding: .5rem .5rem .5rem 1.5rem;
}

header .menu .nav > ul > li .nav-head .icon {
	position: absolute;
	right: 0;
	display: inline-block;
	width: 2.3rem;
	height: 2.3rem;
	font-size: 1.2rem;
	text-align: center;
	color: #aaa;
}

header .menu .nav > ul > li ul {
	margin: 0  0 0 1.5rem;
}

header .menu .nav > ul > li a {
	display: block;
	padding: .5rem 0;
	font-size: 1.6rem;
	line-height: 1.3;

	/* transition */
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

header .menu .nav > ul > li a span {
	position: relative;
	display: inline-block;
}

header .menu .nav > ul > li a span:before {
	position: absolute;
    top: 1.3em;
	left: 0;
    content: "";
    display: inline-block;
    width: 100%;
    height: .2rem;
    background: transparent;
    transition: .2s;
}

header .menu .nav > ul > li a:hover span:before {
	background: #333;
}

header .service li {
	width: 25%;
	text-align: center;
	box-sizing: border-box;
	border: solid #ddd;
	border-width: .1rem .1rem .1rem 0;
}

header .service li:last-child {
	border-right: 0;
}

header .service li a {
	display: block;
	padding: 2rem;
}

header .service .logo {
	display: inline-block;
}

header .service .logo img {
	width: auto;
	height: 3.8rem;
}

header .service .text {
	display: block;
	font-size: 1.1rem;
}

header .about {
	padding: 2rem 0;
	border-bottom: solid .1rem #ddd;
}

header .about li {
	display: inline;
}

header .about li a {
	display: inline-block;
	padding: 0 .8rem;
}

header .copyright {
	padding: 2rem 0;
	border-bottom: solid .1rem #ddd;
}

/* フッター
-------------------------------------------------------------------------------- */

footer .wrap {
	margin-top: 0;
}

footer .wrap .inner {
	padding: 1.5rem 0;
}

footer .logo {
	width: 7rem;
	padding-right: 3rem;
}

footer .nav {
	margin-top: 4rem;
	padding: 2rem 0;
	text-align: center;
	border-top: solid #ddd .1rem;
}

footer .nav ul {
	display: inline-block;
}

footer .nav ul:last-child {
	margin-top: .3rem;
}

footer .nav ul li {
	padding: 0 1.6rem;
	display: inline-block;
}

footer .pmark {
	width: 7rem;
}

footer .copyright {
	margin-top: 2rem;
	padding-bottom: 2rem;
	text-align: center;
	font-size: 1.2rem;
}

footer .table-cell {
	vertical-align: bottom;
}

footer #media {
	padding-bottom: 1rem;
	text-align: center;
	border: solid #ddd;
	border-width: .1rem 0 0 0;
}

footer #media dl {
	max-width: 120rem;
	min-width: 94rem;
	margin: 0 auto;

}

footer #media dt {
	margin: 2rem 0;
	font-size: 1.1rem;
}

footer #media li {
	width: 20%;
	border-right: solid .1rem #ddd;
}

footer #media li:first-child {
	border-left: solid .1rem #ddd;
}

footer #media li img {
	width: auto;
	height: 4.3rem;
}

/* サイドバー
-------------------------------------------------------------------------------- */

.sidebar {
	width: 30rem;
	float: right;
}

.sidebar .rectangle-inner .icon-pr {
	padding-bottom: .5rem;
	text-align: center;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1;
}

.sidebar .rectangle {
	width: 30rem;
}

.sidebar .category-title {
	margin-top: 3rem;
	padding: 1rem;
	text-align: center;
	background-color: #000;
	color: #fff;
}

.sidebar .induction-main {
	margin-top: 3rem;
	position: relative;
}

.sidebar .induction-main .box .type {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	z-index: 1;
	font-size: 1.1rem;
}

.sidebar .induction-main .box .type .label {
	padding: 0 .4rem;
}

.sidebar .induction-main .box .visual {
	position: relative;
	overflow: hidden;
}

.sidebar .box .inner {
	padding: 1rem 1.5rem 4.5rem 1.5rem;
}

.sidebar .box .title {
	font-weight: bold;
	line-height: 1.5;
}

.sidebar .box .title span {
	padding: .2rem .6rem;
}

.sidebar .box .type .page-date {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 1.1rem;
}

.sidebar .ranking {
	margin-top: 3rem;
	box-shadow: 0 0 .2rem 0 rgba(0,0,0,.4);
	background-color: #fff;
}

.sidebar .ranking .inner {
	padding: 2rem;
}

.sidebar .ranking .head {
	width: 100%;
	margin-top: 1.5rem;
	display: inline-block;
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 1.5rem;
}


.sidebar .ranking .head-sub {
	text-align: center;
}

.sidebar .ranking .head-sub span {
	display: inline-block;
	padding: 0 .4rem;
	font-size: 1rem;
	font-weight: bold;
}

.sidebar .ranking .more {
	margin-top: 2rem;
	text-align: center;
}

.sidebar .ranking .more a {
    display: block;
    width: 100%;
    padding: .7rem 0;
    background-color: #000;
    color: #fff;
    margin: 0 auto;
    font-weight: bold;
	box-shadow: 0 .3rem 0 #ccc;
	border-radius: .3rem;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.sidebar .ranking .more a:hover {
	opacity: .6;
	text-decoration: none !important;
}

.sidebar .ranking .rank-img {
	padding-bottom: 1.5rem;
}

.sidebar .ranking .rank-img img {
	width: 100%;
	height: auto;
}

.sidebar .ranking .rank-count {
	width: 2.4rem;
	text-align: center;
	font-style: italic;
	font-weight: bold;
	vertical-align: top;
	font-size: 2.3rem;
	line-height: 1.2;
}

.sidebar .ranking .rank-title {
	padding: 0 1rem;
	font-size: 1.4rem;
	font-weight: bold;
}

.sidebar .ranking .rank-title .subtitle {
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.4;
}

.sidebar .ranking li {
	margin-top: 2rem;
	padding-bottom: 2rem;
	border-bottom: dotted .1rem #ddd;
}

.sidebar .ranking li:first-child {
	margin-top: 0;
}

.sidebar .ranking li a {
	display: block;
}

.sidebar .sns {
	height: 36.8rem;
	margin-top: 3rem;
	padding-bottom: 3rem;
}

.sidebar .jobs {
	box-sizing: border-box;
	border: solid .1rem #ddd;
	box-shadow: 0 0 .2rem rgba(0,0,0,.1);
	background-color: #E9EDF0;
}

.sidebar .jobs .visual {
	width: 12rem;
	height: 12rem;
	margin: 0 auto;
	background-color: #fff;
}

.sidebar .jobs .visual img {
	width: auto;
	height: auto;
	max-width: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	vertical-align: middle;
}

.sidebar .jobs .head {
	padding: .8rem 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.3rem;
    text-shadow: 0 .1rem .1rem #0E272C;
	background-color: #0E272C;
	color: #fff;
}

.sidebar .jobs li {
	border-bottom: solid .1rem #fff;
}

.sidebar .jobs li:last-child {
	border-bottom: 0;
}

.sidebar .jobs a {
	display: block;
	padding: 1rem;
	background-color: #E9EDF0;
}

.sidebar .jobs .logo-wrap {
	width: 8rem;
}

.sidebar .jobs .logo {
	width: 6rem;
	height: 6rem;
	padding: .5rem;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 0 .2rem 0 rgba(0,0,0,.2);
}

.sidebar .jobs .logo img {
	width: auto;
	height: auto;
	max-width: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	vertical-align: top;
}

.sidebar .jobs .name {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.3;
	color: #0E272C;
}

.sidebar .jobs .title a {
	display: block;
	padding: 1.5rem 2rem;
	background-color: #fff;
	border: solid .5rem #ff0;
	text-align: center;
}

.sidebar .jobs .title img {
	width: 14rem;
	height: auto;
}

.sidebar .compe {
	margin-top: 3rem;
	border: solid .1rem #ddd;
	box-sizing: border-box;
	text-align: center;
}

.sidebar .compe a {
	display: block;
	padding-top: 1.5rem;
	background-color: #fff;
}

.sidebar .compe .text {
	margin: 1.5rem;
	padding: .2rem 0;
	font-weight: bold;
	font-size: 1.3rem;
	background-color: #f23e3e;
	color: #fff;
}

.sidebar .school {
	margin-top: 3rem;
	border: solid .1rem #ddd;
	box-sizing: border-box;
	background-color: #fff;
	text-align: center;
}

.sidebar .school a {
	display: block;
	padding: 1rem;
}

.sidebar .school .logo {
	margin-bottom: 1rem;
}

.sidebar .school .text {
	padding: .2rem 0;
	font-weight: bold;
	font-size: 1.3rem;
	background-color: #2577d4;
	color: #fff;
}

/* 旧コンテンツ
-------------------------------------------------------------------------------- */

#content .inner {
	/*width: 940px;
	margin: 0 auto;
	text-align: left;*/
}

#content {
	position: relative;
	width: 94rem;
	margin: 0 auto;
	box-sizing: border-box;
}

.mt2  { margin-top:   2px; }
.mt5  { margin-top:   5px; }
.mt8  { margin-top:   8px; }
.mt10 { margin-top:  10px; }
.mt15 { margin-top:  15px; }
.mt20 { margin-top:  20px; }
.mt25 { margin-top:  25px; }
.mt30 { margin-top:  30px; }
.mt35 { margin-top:  35px; }
.mt40 { margin-top:  40px; }
.mt50 { margin-top:  50px; }
.mt60 { margin-top:  60px; }
.pt2  { padding-top:  2px; }
.pt5  { padding-top:  5px; }
.pt8  { padding-top:  8px; }
.pt10 { padding-top: 10px; }
.pt13 { padding-top: 13px; }
.pt15 { padding-top: 15px; }
.pt20 { padding-top: 20px; }
.pt25 { padding-top: 25px; }
.pt30 { padding-top: 30px; }
.pt35 { padding-top: 35px; }
.pt40 { padding-top: 40px; }

.ta-r {
	text-align: right;
}

.relative {
	position: relative;
}

.bold {
	font-weight: bold;
}

.fz11 {
	font-size: 11px;
	line-height: 1.3;
}

.fz10 {
	font-size: 10px;
	line-height: 1.3;
}

.advertisement iframe {
	overflow: hidden;
	border: none;
}

/* content
-------------------------------------------------------------------------------- */

#content img {
	vertical-align: bottom;
}

#content-left {
	width: 606px;
	float: left;
	position: relative;
}

#content-left > .content-head {
	border-top: solid 2px #ddd;
	padding: 12px 0 24px 0;
}

#content-left > .content-head {
	border-top: solid 2px #ddd;
	font-size: 23px;
	font-weight: normal;
}

#content-left > .content-head a {
	text-decoration: none;
}

#content-left > .content-head span {
	font-size: 10px;
}

#content-left > .content-head.monotokoto {
	border-color: #d19fde;
}

#content-left > .content-head.books {
	border-color: #0c664a;
}

#content-left > .content-head.mihon {
	border-color: #00B7A3;
}

#content-left > .content-head.salone {
	border-color: #e20511;
}

#content-left > .content-head.sw {
	border-color: #f42f76;
}

#content-left > .content-head.report {
	border-color: #32ace3;
}

#content-left > .content-head.interview {
	border-color: #3b5998;
}

#content-left > .content-head.dat {
	border-color: #c00;
}

#content-right,
#content-right-jobs {
	width: 300px;
	float: right;
	position: relative;
}

/* underlayer
-------------------------------------------------------------------------------- */
.breadcrumbs {
	padding: 15px 0 10px 0;
	background-color: #fff;
}

.breadcrumbs a {
	color: #4f4d4d;
	text-decoration: none;
}

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

.breadcrumbs li {
	float: left;
}

#text-format {
	width: 606px;
	line-height: 1.6;
	font-size: 14px;
}

#text-format h4 {
	font-size: 16px;
}

#text-format hr {
    border-top: dotted 1px #999;
}

.text-box .left,
.text-box .right {
	width: 297px;
}

.text-box.tl .left,
.text-box.tr .right {
	width: 293px;
}

.text-box dt,
.float-box .float-img dt {
	font-size: 11px;
	line-height: 1.3;
	margin-top: 3px;
}

.text-box dd img {
	vertical-align: bottom;
}

.text-box li {
	width: 196px;
	margin-right: 9px;
	float: left;
	list-style-type: none;
}

.text-box.line4 li {
	width: 144px;
	margin-right: 10px;
}

#text-format .text-box dd a {
	display: block;
	list-style-type: none;
	list-style-position: inside;
}

.text-box li.break {
	margin-right: 0;
}

.text-box.twothirds-l .left,
.text-box.twothirds-r .right {
	width: 394px;
}

.text-box.twothirds-l .right,
.text-box.twothirds-r .left {
	width: 196px;
}

.float-box.tr .float-img {
	float: left;
	padding: 0 16px 20px 0;
}

.float-box.tl .float-img {
	float: right;
	padding: 0 0 20px 16px;
}

.float-box .float-img dt {
	width: 297px;
	font-size: 11px;
	line-height: 1.3;
	margin-top: 3px;
}

.text-caption {
	font-size: 11px;
	line-height: 1.4;
}

.border-box {
	border: solid 1px #A9A9A9;
	padding: 10px;
}

.border-box p {
	font-size: 11px;
}

.border-box h5 {
	font-weight: normal;
}

.border-box .cap {
	width: 180px;
	position: relative;
	line-height: 1.5;
}

.border-box .cap p {
	position: absolute;
	left: 0;
	bottom: 0;
}

.border-box-w .border-box{
	width: 277px;
}

.report-profile {
	width: 575px;
	padding: 15px 15px 10px 15px;
	background-color: #333;
	color: #fff;
	font-size: 11px;
}

.report-profile img {
	padding-bottom: 3px;
}

.report-profile .left {
	width: 190px;
}

.report-profile .right {
	width: 363px;
	line-height: 1.4;
}

.report-profile h4 {
	padding: 3px 5px;
	border-left: 6px #359000 solid;
	font-size: 14px;
	line-height: 1.2;
}

#text-format .report-profile a{
	color: #fff;
	text-decoration: none;
}

#text-format .report-profile a:hover {
	color: #359000;
	text-decoration: underline;
}

.fossil #text-format h4 {
	color: #426076;
}

#profile-new {
	background: url("/report/img/common/profile_back.gif") repeat-y;
}

#profile-new .inner {
	width: 570px;
	margin: 0 auto;
	padding: 14px 0;
}

#profile-new-btm {
	height: 5px;
	background: url("/report/img/common/profile_back_btm.gif") no-repeat;
}

#page-top {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 10px;
}

#page-top a {
	width: 74px;
	/* padding: 3px 0 3px 4px; */
	padding: 23px 0 3px 0;
	display: block;
	background: url("/images/common/scroll-top.gif") no-repeat center 7px;
	/* background-color: #222; */
	background-color: #fff;
	border: solid 1px #666;
	text-align: center;
	text-decoration: none;
	color: #000;
	/* box-shadow: 0 0 3px 3px rgba(150,150,150,0.1); */
}

#page-top a:hover {
	background-color: #eee;
}

/* goods.css
-------------------------------------------------------------------------------- */

#products-past .bl-hot {
	border: solid 1px #cecece;
	zoom: 1; /* Should be IE only */
}

#products-past .bl-hover {
	border-color: #d19fde;
}

#products-past.books .bl-hover {
	border-color: #0c664a;
}

/* 新製品 右カラム
-------------------------------------------------------------------------------- */

#content-pickup li {
	padding: 1.3rem 0;
	border-bottom: solid .1rem #dedede;
}

#content-pickup li:last-child {
	border-bottom: 0;
}

#content-pickup .left {
	width: 114px;
	text-align: center;
}

#content-pickup .left img {
	width: auto;
	height: auto;
	max-width: 110px;
	max-height: 96px;
	margin: 0 auto;
	padding: .1rem;
	border: solid .1rem #c8c8c8;
}

#content-pickup .right{
	width: 174px;
}

#content-pickup a dt {
	color: #4c77aa;
	line-height: 1.2;
}

#content-pickup a:hover dt {
	color: #8DA9CB;
}

#content-pickup dd {
	margin-top: .5rem;
	line-height: 1.3;
	font-size: 1.1rem;
}

#jobs-pickup li {
	padding: 1.3rem 0;
	border-bottom: solid .1rem #dedede;
}

#jobs-pickup li:last-child {
	border-bottom: 0;
}

#jobs-pickup .left {
	width: 114px;
	text-align: center;
}

#jobs-pickup .left img {
	width: auto;
	height: auto;
	max-width: 110px;
	max-height: 96px;
	margin: 0 auto;
	padding: .1rem;
	border: solid .1rem #c8c8c8;
}

#jobs-pickup .right {
	width: 174px;
}

#jobs-pickup a dt {
	color: #00282D;
	line-height: 1;
	font-weight: bold;
	border-bottom: solid .2rem #ff0;
	display: inline;
}

#jobs-pickup a:hover dt {
	color: #707C7E;
}

#jobs-pickup dd {
	margin-top: .5rem;
	line-height: 1.4;
	font-size: 1.1rem;
}

#jobs-pickup .jobs-head {
	margin-top: 1rem;
	text-align: center;
	color: #00282D;
	border: solid .2rem #dedede;
}

#jobs-pickup .jobs-head a {
	display: block;
	padding: 1rem;
}

#jobs-pickup .jobs-head img {
	width: 140px;
	height: auto;
}


/* 新製品
-------------------------------------------------------------------------------- */
#social-icon li {
	float: right;
	line-height: 1;
	margin-left: 20px;
}

#products-new {
	padding-bottom: 15px;
	color: #4f4d4d;
}

#products-new a {
	color: #4f4d4d;
}

#products-new a:hover {
	color: #d19fde;
	text-decoration: underline;
}

#products-new .left,
#products-new .right {
	width: 300px;
}

#products-new h3 {
	width: 290px;
	line-height: 1.3;
	font-size: 16px;
}

#products-new h4 {
	width: 290px;
	line-height: 1.4;
	font-weight: normal;
}

#products-new h4 span {
	color: #c00;
}

#products-new .date {
	font-weight: bold;
	font-size: 10px;
	color: #ff0f0f;
}

#products-title h3 {
	font-size: 18px;
	border-left: 6px #d19fde solid;
	padding: 0 5px 2px 12px;
}

#products-title h4 {
	font-size: 14px;
	border-left: 6px #d19fde solid;
	padding: 0 0 5px 12px;
	color: #d19fde;
}

#products-title li {
	float: right;
	list-style-type: none;
	line-height: 1;
	margin-left: 10px;
}

#products-content {
	padding-bottom: 40px;
}

#products-photo {
	width: 200px;
}

#products-photo p {
	font-size: 10px;
	padding-bottom: 20px;
	line-height: 1.3;
}

#products-photo p img {
	display: block;
	padding-bottom: 5px;
}

#products-text {
	width: 380px;
}

#products-text a {
	color: #d19fde;
}

#products-text a:hover {
	color: #d19fde;
	text-decoration: underline;
}
#products-text .text {
	line-height: 1.5;
	padding-bottom: 15px;
}

#products-text .brand h4 {
	padding: 7px 7px 7px 15px;
	background-color: #e6e6e6;
	font-weight: normal;
}

#products-text .brand p {
	padding: 15px;
	line-height: 1.5;
}

#products-spec {
	border: solid 1px #ddd;
	padding: 15px;
}

#products-spec h4 {
	font-size: 11px;
	letter-spacing: 0.05em;
}

#products-spec p {
	font-size: 11px
}

#products-spec table {
	width: 354px;
	font-size: 10px;
	letter-spacing: 0.15em;
	background: url("../products/img/common/spec_back.gif") no-repeat left bottom;
}

#products-spec table caption {
	padding-bottom: 8px;
	text-align: left;
	font-weight: bold;
}

#products-spec table th,
#products-spec table td {
	vertical-align: top;
	padding-bottom: 8px;
}

#products-spec table th {
	width: 80px;
	text-align: left;
	font-weight: normal;
}

#products-text h4 {
	padding-bottom: 12px;
	font-weight: bold;
}

#products-text .spec-contact {
	font-weight: normal;
	margin: 15px 0 10px 0;
	padding-left: 15px;
	background: url("../products/img/common/h4_back.gif") no-repeat 0 1px;
	line-height: 1.0;
}

#products-text .spec-caina {
	margin-top: 10px;
	padding: 15px 0 0 25px;
	background: url("../products/img/common/h4_caina.gif") no-repeat 0 8px;
}

#goods-recommend {
	position: relative;
	border-left: solid 6px #ddd;
	padding-left: 10px;
}

#goods-recommend.monotokoto {
	border-color: #d19fde;
}

#goods-recommend.books {
	border-color: #0c664a;
}

#goods-recommend p {
	position: absolute;
	right: 3px;
	top: 0;
}

#products-past li {
	width: 112px;
	float: left;
	margin: 9px 9px 0 0;
	list-style-type: none;
}
.products-box {
	width: 100px;
	margin: 0 auto;
	padding: 6px 0 9px 0;
	position: relative;
	font-size: 11px;
}
.products-box h4 {
	line-height: 1.3;
	font-weight: normal;
	margin: 7px 0 14px 0;
}
.products-box h4 img {
	padding-right: 5px;
}
.products-box h4 a {
	/*color: #d19fde;*/
	text-decoration: none;
}
.products-box h4 a:hover {
	text-decoration: underline;
}
.products-box p {
	text-align: center;
}
.products-box .date {
	position: absolute;
	bottom: 2px;
	right: 0;
	color: #676767;
}
.products-box .date a {
	color: #4f4d4d;
	text-decoration: none;
}
.products-box .date a:hover {
	color: #d19fde;
	text-decoration: underline;
}

#products-backnumber {
	vertical-align: middle;
	line-height: 1.0;
}

#products-backnumber a {
	color: #d19fde;
}

#products-backnumber a:hover {
	text-decoration: underline;
}

#books-title {
	width: 606px;
	padding-bottom: 15px;
}

#books-title p {
	padding-bottom: 10px;
	text-align: center;
}

#books-title p span {
	font-size: 11px;
}

#books-title h3 {
	font-size: 18px;
	border-left: 6px #0c664a solid;
	padding: 0 5px 2px 12px;
}

#books-title h4 {
	font-size: 14px;
	border-left: 6px #0c664a solid;
	padding: 0 0 5px 12px;
	color: #0c664a;
}

#books-title ul {
	padding-bottom: 10px;
}

#books-title li {
	float: right;
}

#books-title.present-add h3 {
	border-left: 6px #c00 solid;
}

#books-title.present-add h4 {
	border-left: 6px #c00 solid;
	color: #985741;
}

#books-title.present-add p span {
	display: block;
	margin-top: 8px;
	line-height: 1.3;
}

#books-content {
	width: 606px;
	padding-right: 9px;
	padding-bottom: 20px;
}

#books-spec {
	width: 200px;
	float: left;
}

#books-spec table {
	width: 198px;
	font-size: 95%;
	line-height: 1.3;
	border: 1px #ddd solid;
}

#books-spec th,
#books-spec td {
	padding: 4px;
	border: solid 1px #ddd;
}

#books-spec th {
	width: 3.6em;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}

#books-spec p {
	width: 108px;
	margin: 0 auto;
	padding-top: 15px;
}

#books-text {
	width: 386px;
	float: right;
}

#books-text a {
	color: #4f4d4d;
}

#books-text a:hover {
	color: #6399a0;
	text-decoration: underline;
}

#books-text h5 {
	font-weight: normal;
}

#books-text p {
	line-height: 1.5;
	padding-bottom: 1.5em;
}

#books-util {
	width: 132px;
	margin: 0 auto;
	cursor: pointer;
}


/* 見本市へ行こう
-------------------------------------------------------------------------------- */
#mihon-top ul li {
	margin-top: 20px;
	padding-bottom: 20px;
	border-bottom: solid 1px #dedede;
}

#mihon-top ul li:first-child {
	margin-top: 0;
}

#mihon-top ul li .left {
	width: 195px;
	text-align: center;
}

#mihon-top ul li .right {
	width: 390px;
}

#mihon-top ul li img {
	padding: 1px;
	border: solid 1px #ccc;
}

#mihon-top .date {
	/* text-align: right; */
	font-size: 10px;
	color: #717171;
}

#mihon-top .date.update {
	color: #F22267;
	font-weight: bold;
}

#mihon-top h3 {
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.3;
	/* font-weight: normal; */
	padding-left: 10px;
	border-left: solid 3px #00B7A3;
}

#mihon-top h3 span {
	display: block;
	padding-bottom: 2px;
	font-size: 10px;
}

#mihon-top p {
	margin-top: 10px;
}

#mihon-wrap {
	width: 605px;
}

#mihon-wrap .date {
	text-align: right;
	font-size: 10px;
	color: #717171;
	letter-spacing: 0.05em;
}

#mihon-list ul {
	width: 590px;
	margin: 0 auto;
	padding: 10px 0 5px 0;
}

#mihon-list li {
	float: left;
	margin-right: 5px;
	padding-bottom: 5px;
	list-style-type: none;
}

#mihon-list li img {
	display: block;
	padding: 5px;
	background-color: #fff;
	vertical-align: bottom;
}

#mihon-list {
	background-color: #ededed;
}

#mihon-list_row4 ul {
	width: 591px;
	margin: 0 auto;
	padding: 10px 0 5px 0;
}

#mihon-list_row4 li {
	float: left;
	margin-right: 5px;
	padding-bottom: 5px;
	list-style-type: none;
}

#mihon-list_row4 li img {
	display: block;
	padding: 3px;
	background-color: #fff;
	vertical-align: bottom;
}

#mihon-list_row4 {
	background-color: #ededed;
}

/* プレゼント
-------------------------------------------------------------------------------- */
#present .attention {
	font-size: 10px;
	color: #777;
}

#present-close {
	font-size: 14px;
}

#present-lead .left {
	width: 480px;
	line-height: 1.5;
}

#present-lead span {
	color: #c00;
}

#present-lead a {
	font-weight: bold;
	color: #555;
}

#present-lead a:hover {
	color: #888;
}

.present-list {
	border: solid 1px #ccc;
	padding: 4px;
}

.present-list li {
	height: 73px;
	float: left;
	line-height: 1.6;
}

.present-list.bl-hot a {
	color: #333;
}

.present-list li.pic {
	/* margin-left: 3px; */
}

.present-list li.txt {
	width: 465px;
	margin: 0 4px;
	background-color: #efefef;
}

.present-list li.txt p {
	display: block;
	padding: 0 8px;
	/* font-weight: bold; */
}

#present h3.present-timely,
#present h3.present-thanks {
	padding: 3px 0;
	text-align: center;
	color: #fff;
	font-weight: normal;
	line-height: 1.8;
}

#present h3.present-timely {
	background-color: #555;
}

#present h3.present-thanks {
	background-color: #aaa;
}

.present-list dl {
	width: 50px;
	font-size: 12px;
}

.present-list dt img {
	vertical-align: bottom;
}

.present-list dt {
	height: 14px;
	line-height: 0;
}

.present-list dd {
	height: 23px;
	line-height: 1.9;
	text-align: center;
}

.present-list .present-type {
	width: 35px;
	height: 35px;
	margin-top: 3px;
	background-color: #e6e6e6;
}

.present-list .present-end {
	/* font-weight: bold; */
}

.present-list .present-start {
	/* background-color: #aaa; */
	/* color: #000; */
}

.present-list .present-close {
	padding: 10px;
	background-color: #e6e6e6;
	font-size: 11px;
}

.present-close {
	font-size: 11px;
	line-height: 1.5;
}

.present-head {
	padding: 3px 0;
	border: solid 1px #999;
	background-color: #eee;
	text-align: center;
	font-size: 14px;
	color: #666;
}

#present-box .pic{
	text-align: center;
}

#present-box .pic img {
	border: solid 1px #999;
}

#present-box .pic span {
	display: block;
	text-align: center;
	font-size: 10px;
}

#present-box h4 {
	color: #666;
	font-size: 13px;
}

#present-box table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

#present-box table th,
#present-box table td {
	padding: 2px 8px;
	border: solid 1px #ccc;
	font-size: 11px;
}

#present-box table th {
	width: 24px;
	text-align: left;
	font-weight: normal;
}

#present-request {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

#present-request th,
#present-request td {
	border: solid 1px #999;
	font-size: 11px;
	background-color: #eee;
}

#present-request th {
	font-size: 13px;
}

#present-request td {
	width: 251px;
}

#present-forward {
	border: solid 1px #cdcdcd;
	padding: 8px;
	background-color: #efefef;
	line-height: 1.5;
}

#present-forward .left {
	width: 470px;
	font-size: 11px;
}

#present-forward span {
	color: #c00;
}

.present-time {
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}

#present .products-box h4 a {
	color: #444;
}
#present #books-text a:hover {
	color: #c00;
}
.present-subcopy {
	padding-bottom: 20px;
	line-height: 1.5;
	font-weight: normal;
	color: #985741;
}

#present #products-past .bl-hover {
	border-color: #c00;
}

/* デザインニュース
-------------------------------------------------------------------------------- */
#news .news-pagination {
	height: 28px;
}

#news .news-pagination li {
	display: inline;
	padding-right: 5px;
}

#news .news-pagination li a {
	color: #5B83B2;
}

#news .news-pagination li a:hover {
	color: #316161;
}

#news #content-left a {
	color: #3e6798;
	text-decoration: none;
	word-break: break-all;
}

#news #content-left a:hover {
	text-decoration: underline;
}

#news #content-left h3 {
	padding-bottom: 4px;
	font-size: 14px;
	color: #3e6798;
}

#news .news-img {
	width: 575px;
	padding: 15px;
	background: #f6f6f6 url("/news/img/common/bg.gif") no-repeat left top;
}

#news .news-img .left {
	width: 125px;
	padding: 3px 10px 0 0;
}

#news .news-img .left img {
	padding-bottom: 2px;
}

#news .news-img .right {
	width: 435px;
}

#news .news-txt {
	width: 575px;
	padding: 15px;
	background: #f6f6f6 url("/news/img/common/bg.gif") no-repeat left top;
}

#news .date {
	margin-top: 5px;
	text-align: right;
	font-size: 11px;
}

#news #social-btn {
	position: absolute;
	right: 0;
	top: 84px;
}

#news #social-btn li {
	float: right;
	margin-left: 20px;
	line-height: 1;
	list-style-type: none;
}

#news #social-btn li img {
	vertical-align: middle;
}

.banner-halfpage {
	width: 300px;
	float: right;
}

.rec-banner {
	background-color: #fff;
	padding-bottom: 20px;
}

.side-head {
	border-bottom: 1px dotted #aaa;
    border-top: 2px solid #d9d9d8;
    color: #5B83B2;
    font-size: 14px;
    padding: 6px 0;
}

.side-head span {
    color: #4f4f4f;
    font-size: 10px;
    font-weight: normal;
}

#content-pickup #side-event .left {
	width: 84px;
	height: 64px;
	overflow: hidden;
	text-align: center;
}

#content-pickup #side-event .left img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	width: auto;
	max-width: 80px;
	max-height: 60px;
}

.enote-rec {
	float: right;
	padding-bottom: 20px;
}

/* sns
-------------------------------------------------------------------------------- */
.sns-twitter a {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sns-twitter a span {
	display: block;
	padding: .8rem .4rem;
	border: solid 1px #e9eaed;
}

.sns-twitter a:hover {
	color: #333;
	text-decoration: none;
	opacity: .5;
}

.sns-twitter a i {
	padding-right: .4rem;
	color: #55ACEE;
	font-size: 1.6rem;
}
