@import url("https://fonts.googleapis.com/css?family=Lato");

@charset "UTF-8";

/* ====================================================
reset style -- custom
==================================================== */
/*
original:
html5doctor.com Reset Stylesheet
v1.6.1
*/
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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    /* font-weight: normal; */
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

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

a img {
    border: 0;
}

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,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    text-indent: .01px;
    text-overflow: "";
    font-size: inherit;
    color: inherit;
}

select option {
    background-color: #fff;
}

select::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}

input,
select {
    vertical-align: middle;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
    outline-offset: -2px;
}

img {
    font-size: 0;
    line-height: 0;
}

/* ====================================================
Base style
==================================================== */
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    color: #444;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 500;
    line-height: 1.7;
    box-sizing: border-box;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    /* chrome transitionのずれ対策 */
    backface-visibility: hidden;
    /* chrome transitionのずれ対策 */
}

body.ie {
    font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

_::-webkit-full-page-media,
_:future,
:root body {
    /* only safari */
    font-feature-settings: "pkna";
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* ---------------------------
Links
--------------------------- */
a {
    color: #444;
    text-decoration: none;
    transition: color .3s ease;
    outline: 0;
}

a:hover {
    color: #3e85cc;
}

.txtover {
    transition: color .3s ease;
}

.txtover:hover {
    color: #3e85cc;
}

.imgover a,
a.imgover {
    position: relative;
    display: inline-block;
}

.imgover a:after,
a.imgover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .3s ease;
}

.imgover a:hover:after,
a.imgover:hover:after {
    opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.imgover-dark a,
a.imgover-dark {
    position: relative;
    display: inline-block;
}

.imgover-dark a:after,
a.imgover-dark:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00033e;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .3s ease;
}

.imgover-dark a:hover:after,
a.imgover-dark:hover:after {
    opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.btnover {
    transition: all .3s ease;
}

.btnover:hover {
    color: #fff;
    background-color: #3e85cc;
    text-decoration: none;
}

/* ====================================================
Langage select
==================================================== */
.language_menu {}

.language_menu>li {}

.language_menu>li a {}

.language_menu>li a:hover {}

ul.menu_second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu_third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu_fourth-level {
    visibility: hidden;
    opacity: 0;
}

.language_menu>li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu_second-level li {
    border-top: 1px solid #111;
    display: block !important;
    margin-left: 0 !important;
    float: none;
}

.menu_second-level li a {
    display: block !important;
    color: #fff !important;
    padding: 10px !important;
    background: #072A24;
}


.menu_third-level li {
    border-top: 1px solid #111;
}

.menu_second-level li a:hover {
    background: #3e85cc;
}

.menu_third-level li a:hover {
    background: #2a1f1f;
}

.menu_fourth-level li a:hover {
    background: #1d0f0f;
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 8px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.language_menu:before,
.language_menu:after {
    content: " ";
    display: table;
}

.language_menu:after {
    clear: both;
}

.language_menu {
    *zoom: 1;
}

.language_menu>li.menu_single {
    position: relative;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 3px !important;
}

li.menu_single ul.menu_second-level {
    position: absolute;
    top: 20px;
    width: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    padding-top: 13px;
}

li.menu_single:hover ul.menu_second-level {
    top: 20px;
    visibility: visible;
    opacity: 1;
}

/* ---------------------------
Base Typography
--------------------------- */
small,
.small {
    font-size: 75%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

/* ---------------------------
Table
--------------------------- */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ---------------------------
List
--------------------------- */
ul,
ol {
    list-style: none;
}

ul.list,
ol.list {
    margin-left: 22px;
}

ul.list {
    list-style: square;
}

ul.list li {
    padding-bottom: .5em;
}

ol.list {
    list-style: decimal;
}

/* ---------------------------
Form
--------------------------- */
input,
textarea,
select {
    border: 1px solid #ccc;
    background: white;
    font-size: 14px;
    font-size: 1.4rem;
    display: inline-block;
    font-family: "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

select {
    padding: .5em 2em .5em 1em;
    border-radius: 3px;
    line-height: 1.2;
    background: #fff url(../img/arrow-select.png) no-repeat right 10px center;
    transition: box-shadow .3s;
}

select:hover {
    border: 1px solid #a8c8fc;
    box-shadow: 0 0 7px #a8c8fc;
}

body.ie select {
    background-size: 14px 8px;
}

body[class*="ie9"] select {
    padding: .3em;
    background-size: 0;
}

button,
input[type="submit"] {
    border: none;
    color: white;
    background: #3e85cc;
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    vertical-align: middle;
    padding: .5em 1.5em;
    border-radius: 4px;
    font-size: 16px;
    font-size: 1.6rem;
    transition: all .3s ease;
}

button:hover,
input[type="submit"]:hover {
    color: #fff;
    background-color: #4da5ff;
    text-decoration: none;
}

input[type="text"],
input[type="search"],
textarea {
    border-radius: 3px;
    padding: .5em .8em;
    transition: all .3s;
}

input[type="text"]:hover,
input[type="search"]:hover,
textarea:hover {
    border-color: #bbb;
    box-shadow: 0 0 7px #ddd;
}

input[type="text"]:focus,
input[type="search"]:focus,
textarea:focus {
    border: 1px solid #a8c8fc;
    box-shadow: 0 0 7px #a8c8fc;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    position: relative;
    display: inline-block;
    padding: 3px 3px 3px 22px;
    cursor: pointer;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: 7px;
    background: #fff;
    border: 1px solid #ccc;
    transition: all .3s;
}

input[type="checkbox"]+label:hover:before,
input[type="radio"]+label:hover:before {
    border: 1px solid #a8c8fc;
    box-shadow: 0 0 3px #a8c8fc;
}

body.ie input[type="checkbox"]+label:before,
body.ie input[type="radio"]+label:before {
    margin-top: 5px;
}

input[type="checkbox"]+label {
    padding: 3px 3px 3px 22px;
}

input[type="radio"]+label {
    padding: 3px 3px 3px 20px;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    position: absolute;
    content: "";
    top: 8px;
}

input[type="checkbox"]:checked+label:after {
    left: 3px;
    width: 13px;
    height: 5px;
    border-left: 2px solid #3e85cc;
    border-bottom: 2px solid #3e85cc;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

input[type="radio"]:checked+label:after {
    left: 3px;
    width: 8px;
    height: 8px;
    margin-top: 2px;
    background: #3e85cc;
    border-radius: 100%;
}

/* ====================================================
Icon font
==================================================== */
@font-face {
    font-family: "icomoon";
    src: url("fonts/icomoon.eot?qwyhra");
    src: url("fonts/icomoon.eot?qwyhra#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?qwyhra") format("truetype"), url("fonts/icomoon.woff?qwyhra") format("woff"), url("fonts/icomoon.svg?qwyhra#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    vertical-align: middle;
}

body.ie [class^="icon-"],
body.ie [class*=" icon-"] {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.icon-angle-right:before,
.btn-detail:before,
.p-links li a:before,
#main .content .btn-submit:before,
.p-index .p-btn:before,
#footadd ul li a:before,
#footsubnav ul li a:before {
    content: "\e900";
}

.icon-arrow-circle-right:before,
#subnav .toplink p:before,
#subnav ul p:before,
#main .arrow-left:before,
#main .index li p:before,
#footnav-nav .footnav-ul li a:before {
    content: "\e901";
}

.icon-arrow-circle-up:before,
#pagetop a:before {
    content: "\e902";
    font-size: 18px;
    font-size: 1.8rem;
    padding-right: .5em;
}

.icon-arrow-right:before {
    content: "\e903";
}

.icon-arrow-square-right:before,
#side .p-sidenav a.child-3:before,
#side .p-sidenav .child-3 li a:before {
    content: "\e904";
}

.icon-book:before,
#side .sidenav-sub li a.request:before {
    content: "\e905";
    vertical-align: middle;
}

.icon-caret-down:before,
#nav ul li a.trigger:before {
    content: "\e906";
}

.icon-caret-right:before,
#side .sidenav-child li a:before {
    content: "\e907";
}

.icon-clamp:before {
    content: "\e908";
}

.icon-download:before {
    content: "\e909";
}

.icon-file-check:before {
    content: "\e90b";
}

.icon-folder:before {
    content: "\e90c";
}

.icon-info:before,
#top-other .contact a:before,
#side .sidenav-sub li a.contact:before {
    content: "\e90d";
}

.icon-light-bulb:before {
    content: "\e90e";
}

.icon-mail:before {
    content: "\e90f";
}

.icon-minus:before {
    content: "\e910";
}

.icon-plus:before {
    content: "\e911";
}

.icon-positioning:before {
    content: "\e912";
}

.icon-precision:before {
    content: "\e913";
}

.icon-search:before {
    content: "\e914";
}

.icon-setting:before,
#side .sidenav-sub li a.parts:before {
    content: "\e916";
}

.icon-clock:before,
#main .entry-date .update:before,
#main .entrylist li .text .update:before {
    content: "\e918";
    font-weight: normal;
    padding-right: .3em;
}

.icon-support:before,
#side .sidenav-sub li a.support:before {
    content: "\e919";
}

.icon-telephone:before {
    content: "\e91a";
}

.icon-weight:before {
    content: "\e91b";
}

.icon-world:before {
    content: "\e91c";
}

.icon-youtube:before {
    content: "\e91d";
}

.icon-controller-record:before {
    content: "\e91e";
}

.icon-warning:before,
#main .content .error:before {
    content: "\ea07";
}

.icon-circle-right:before {
    content: "\ea42";
}

/* ====================================================
layout style
==================================================== */
#wrapper {
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.wrap {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

/* ------------------------
Button
------------------------ */
.btn,
.btn-detail,
.p-links li a,
#main .content .btn-submit,
#top-other .contact a {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    vertical-align: middle;
    padding: .8em 1.5em;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}

.btn-detail,
.p-links li a,
#main .content .btn-submit {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #00558c;
    background: white;
    border-radius: 3px;
    border: 2px solid #00558c;
    position: relative;
    padding: 10px 30px;
    width: 200px;
    line-height: 20px;
    transition: border-color .3s ease, color .3s ease;
}

.btn-detail:before,
.p-links li a:before,
#main .content .btn-submit:before {
    vertical-align: middle;
}

body.ie .btn-detail,
body.ie .p-links li a,
.p-links li body.ie a,
body.ie #main .content .btn-submit,
#main .content body.ie .btn-submit {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.btn-detail:before,
.p-links li a:before,
#main .content .btn-submit:before {
    position: absolute;
    right: 10px;
    font-weight: normal;
    transition: right .3s ease;
}

.btn-detail:hover,
.p-links li a:hover,
#main .content .btn-submit:hover {
    color: #227ddb;
    border-color: #469ff9;
}

.btn-detail:hover:before,
.p-links li a:hover:before,
#main .content .btn-submit:hover:before {
    right: 5px;
}

.btn-search {
    width: 140px;
    height: 50px;
    background: #3e85cc;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 20px;
    line-height: 1;
    transition: all .3s ease;
}

.btn-search:hover {
    color: #fff;
    background-color: #4da5ff;
    text-decoration: none;
}

.btn-reset {
    color: #00033e;
    background: white;
    padding: .6em 1.5em;
    border: 1px solid #00558c;
}

.btn-reset:hover {
    color: #0368bd;
    border: 1px solid #659ef9;
    box-shadow: 0 0 5px #a8c8fc;
}

/* ------------------------
Header
------------------------ */
#header-wrap {
    position: relative;
    width: 100%;
    height: 50px;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 14px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(223, 226, 223, 1) 100%);
    z-index: 100;
}

.headernav-left {
    float: left;
}

.headernav-right {
    float: right;
}

#headernav ul li {
    display: inline-block;
    margin-left: 28px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
}

#headernav ul li.bar {
    margin-left: 5px;
}

#headernav ul li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    color: #263847;
    font-weight: bold;
    line-height: 20px;
    padding-left: 28px;
    position: relative;
}

#headernav ul li a:before {
    vertical-align: middle;
}

body.ie #headernav ul li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#headernav ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    font-size: 2rem;
    line-height: 20px;
    font-weight: normal;
}

#headernav ul li a.icon-search:before {
    left: 2px;
}

#headernav ul li a.icon-info:before,
#headernav ul li #top-other .contact a:before,
#top-other .contact #headernav ul li a:before,
#headernav ul #side .sidenav-sub li a.contact:before,
#side .sidenav-sub #headernav ul li a.contact:before {
    font-weight: bold;
    top: 3px;
}

#headernav ul li a.icon-book:before,
#headernav ul #side .sidenav-sub li a.request:before,
#side .sidenav-sub #headernav ul li a.request:before {
    font-weight: bold;
    top: 1px;
}

#headernav ul li a:hover {
    color: #6ea4d9;
}

#headernav ul.headernav-left li:first-child {
    margin-left: 0;
}

body.ie #headernav ul li a {
    font-size: 15px;
}

body.ie #headernav ul li a.icon-info:before,
body.ie #headernav ul li #top-other .contact a:before,
#top-other .contact body.ie #headernav ul li a:before,
body.ie #headernav ul #side .sidenav-sub li a.contact:before,
#side .sidenav-sub body.ie #headernav ul li a.contact:before {
    top: 1px;
}

body.ie #headernav ul li a.icon-book:before,
body.ie #headernav ul #side .sidenav-sub li a.request:before,
#side .sidenav-sub body.ie #headernav ul li a.request:before {
    top: 0;
}

/* Toppage Header */
.page-on-scroll #header {
    background: none;
    background-color: white;
    background-color: rgba(255, 255, 255, .8);
}

.page-on-scroll #headernav ul li a {
    color: #000;
    transition: color .3s ease;
}

.page-on-scroll #headernav ul li.bar {
    color: #000;
}

.page-on-scroll #headernav ul li a:hover {
    color: #3e85cc;
}

/* ------------------------
Global nav
------------------------ */
#nav-wrap {
    width: 100%;
    height: 90px;
}

#nav {
    transition: all .2s ease;
    background: white;
    width: 100%;
    padding: 27px 0;
    height: 90px;
    position: absolute;
    z-index: 98;
}

#nav .logo {
    float: left;
    width: 150px;
}

#nav .logo img {
    width: 150px;
    display: inline;
}

#nav .logo img.logo-active {
    display: none;
}

#nav ul {
    float: right;
    padding-top: 5px;
}

#nav ul li {
    display: inline-block;
    text-align: right;
    margin-left: 30px;
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
}

#nav ul li a {
    display: inline-block;
    color: #444;
    font-weight: bold;
    line-height: 1;
    position: relative;
    letter-spacing: .05em;
}

#nav ul li a.trigger {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold;
    position: relative;
}

#nav ul li a.trigger:before {
    vertical-align: middle;
}

body.ie #nav ul li a.trigger {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#nav ul li a.trigger:before {
    font-size: 10px;
    font-size: 1rem;
    display: block;
    position: absolute;
    color: #ccc;
    left: 50%;
    top: 25px;
    margin-left: -5px;
    transition: all .3s ease;
}

#nav ul li a:hover {
    color: #3e85cc;
}

#nav ul li a:hover:before {
    color: #3e85cc;
    top: 30px;
}

#nav ul li.current a {
    color: #2c3090;
}

#nav ul li.current a:before {
    color: #2c3090;
}

#nav.nav-toppage {
    background: none;
    box-shadow: none;
}

#nav.nav-toppage a {
    color: white;
}

#subnav {
    display: none;
    position: relative;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    width: 100%;
    z-index: 80;
    /* search box */
}

#subnav #subnav-reset {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 3, 62, .6);
}

#subnav .subnav-close {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    padding: 5px;
    width: 50px;
    height: 50px;
    color: white;
    text-align: center;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    background: #ccc;
    z-index: 95;
    transition: background .3s ease;
}

#subnav .subnav-close:hover {
    background: #3e85cc;
}

#subnav .target {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: none;
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    padding: 38px 0 30px;
    background: white;
    box-shadow: 2px 5px 10px 0 rgba(0, 0, 0, .2);
    z-index: 99;
}

#subnav .imgtrim {
    display: block;
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 80px;
    position: relative;
    display: inline-block;
}

#subnav .imgtrim img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

#subnav .imgtrim:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .3s ease;
}

#subnav .imgtrim:hover:after {
    opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

#subnav .toplink {
    float: left;
    width: 260px;
    padding-right: 40px;
    margin-right: -1px;
    border-right: 1px solid #ccc;
}

#subnav .toplink .imgtrim {
    width: 220px;
    height: 165px;
}

#subnav ul {
    float: right;
    width: 791px;
    padding-left: 40px;
    margin-right: -50px;
    border-left: 1px solid #ccc;
}

#subnav ul li {
    float: left;
    width: 200px;
    margin-right: 50px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* 20230322無効化
#subnav #subnav-corporate ul {
  width: 1066px;
  margin-right: -66px;
  padding-left: 0;
  border-left: none;
}

#subnav #subnav-corporate ul li {
  margin-right: 66px;
}
*/

#subnav .toplink p,
#subnav ul p {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 8px;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

#subnav .toplink p:before,
#subnav ul p:before {
    vertical-align: middle;
}

body.ie #subnav .toplink p,
body.ie #subnav ul p {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#subnav .toplink p:before,
#subnav ul p:before {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    padding-right: .5em;
    vertical-align: baseline !important;
}

#subnav .searchbox {
    width: 830px;
    height: 50px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 16px;
    font-size: 1.6rem;
}

#subnav #subnav-search {
    padding-bottom: 40px;
}

/* Googleカスタム検索 */
#gsc {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#gsc td {
    border: none;
}

#gsc .gsc-control-cse,
#gsc .gsc-control-cse-ja,
#gsc .gsib_a {
    margin: 0 !important;
    padding: 0 !important;
}

/* テキスト入力フォームとボタンの位置 */
#gsc table.gsc-search-box td,
#gsc table.gsc-search-box input {
    vertical-align: top !important;
}

/* テキスト入力フォーム */
#gsc input[type="text"] {
    /*     width: 830px!important;*/
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    height: 50px !important;
    font-size: 1.6rem;
}


#gsc input[type="text"]:focus {
    border: 2px solid #b2e0eb !important;
    outline: 0;
    /*safariの自動フォーカスを切る */
}

/* テキスト入力フォームの影を消す */
#gsc #gsc-iw-id1 {
    border: none !important;
}

/* テキスト入力フォームの背景画像位置調整 */
#gsc #gs_tti0 input {
    background-position: 5px 5px !important;
}

/* ボタンの色 */
#gsc input.gsc-search-button {
    background: #3e85cc !important;
    background: -ms-linear-gradient(top, #008ee1 0%, #008ee1 100%);
    /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008ee1', endColorstr='#008ee1', GradientType=0);
    /* IE6-9 */
    border: 0 !important;
    border-radius: 4px !important;
}

/* ボタンの位置調整と角丸消し */
#gsc .gsc-search-button {
    margin: 0 0 0 -16px !important;
    border-radius: 0px;
}

/* 入力時に出る「×」ボタンの位置調整 */

/* 入力時に出る×ボタン -- Firefox位置調整 -- */
#gsc .gsib_b span {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 2px 0 0 0;
}

/* 170612 追加*/
.gsc-control-cse div {
    top: 140px;
}

.gsc-control-cse .gsc-option-menu-container {
    top: 0px;
}

.cse .gsc-search-button input.gsc-search-button-v2,
input.gsc-search-button-v2 {
    height: auto !important;
    width: auto !important;
    padding: 18px 40px !important;
}

table.gsc-search-box td.gsc-input {
    padding-right: 30px !important;
}

.gsst_a {
    display: none !important;
}

.gsib_b {
    display: none !important;
}

.gsc-results-wrapper-overlay {
    left: 15% !important;
}

/* 170614 追加*/
#___gcse_0 {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#___gcse_0 td {
    border: none;
}

#___gcse_0 #gsc-iw-id1 #___gcse_0 .gsc-control-cse,
#___gcse_0 .gsc-control-cse-ja,
#___gcse_0 .gsib_a {
    margin: 0 !important;
    padding: 0 !important;
}

#___gcse_0 table.gsc-search-box td,
#___gcse_0 table.gsc-search-box input {
    vertical-align: top !important;
}

#___gcse_0 table.gsc-search-box td,
#___gcse_0 table.gsc-search-box input {
    vertical-align: top !important;
    /* text-indent: 0px !important; */
}

#___gcse_0 input[type="text"] {
    /*     width: 830px!important;*/
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    height: 50px !important;
    font-size: 1.6rem;
}

#___gcse_0 input[type="text"]:focus {
    border: 2px solid #b2e0eb !important;
    outline: 0;
    /*safariの自動フォーカスを切る */
}

#___gcse_0 #___gcse_0-iw-id1 {
    border: none !important;
}

#___gcse_0 #gs_tti0 input {
    background-position: 5px 5px !important;
}

#___gcse_0 input.gsc-search-button {
    background: #3e85cc !important;
    background: -ms-linear-gradient(top, #008ee1 0%, #008ee1 100%);
    /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008ee1', endColorstr='#008ee1', GradientType=0);
    /* IE6-9 */
    border: 0 !important;
    border-radius: 4px !important;
}

#___gcse_0 .gsc-search-button {
    margin: 0 0 0 -16px !important;
    border-radius: 0px;
}

#___gcse_0 .gsib_b span {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 2px 0 0 0;
}

.gsc-control-cse div {
    border: none;
}

.gsc-result .gs-title {
    height: auto !important;
}

/* Toppage Global nav */
.page-on-scroll #nav {
    background: none;
    box-shadow: none;
}

.page-on-scroll #nav a {
    color: white;
}

.page-on-scroll #nav .logo img {
    width: 150px;
    display: none;
}

.page-on-scroll #nav .logo img.logo-active {
    display: inline;
}

/* Global nav fixed */
.nav-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}

/* ------------------------
Top page
------------------------ */
#loader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: 200;
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    text-align: center;
    z-index: 201;
}

.covervid-wrapper {
    position: relative;
    top: -140px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.covervid-wrapper .covervid-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.covervid-wrapper .covervid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg-stripe02.png);
    background-color: #202c44;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    z-index: 1;
}

.covervid-wrapper .covervid-arrow {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.covervid-wrapper h1 {
    position: absolute;
    font-family: "Lato", sans-serif;
    width: 100%;
    font-weight: 700;
    font-size: 70px;
    text-align: center;
    height: 120px;
    line-height: 1.2;
    top: 50%;
    margin-top: -60px;
    margin: auto;
    color: #fff;
    text-shadow: 2px 2px 10px #202c44;
    z-index: 2;
}

.covervid-wrapper h1 span {
    font-family: "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    display: block;
    font-size: 18px;
    letter-spacing: .1em;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 7px;
    padding-top: 5px;
}

#top-news {
    width: 100%;
    margin-top: -140px;
    padding: 75px 0;
    background: #f6f7f7 url(../img/bg-check-l.png) repeat left top;
}

.top-title {
    padding: 0 3px;
}

.top-title h2 {
    float: left;
    width: 80%;
}

.top-title span {
    display: block;
    width: 20%;
    float: right;
    text-align: right;
    padding-top: 14px;
    line-height: 1;
}

.top-title span a {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}

.top-title span a:before {
    padding-right: 5px;
    font-weight: normal;
}

body.ie #top-news .top-title span a:before {
    vertical-align: baseline;
}

.top-news-body {
    margin-top: 40px;
    padding: 0 0 20px;
    background: white;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2);
}

.tab-menu {
    padding: 0 30px;
    border-bottom: 1px solid #00033e;
}

.tab-menu li {
    display: inline-block;
    padding: 20px 20px 15px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
    transition: background .3s ease;
}

.tab-menu li:hover {
    color: #000;
    background: #f2f2f2;
}

.tab-menu li.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff1300;
}

.tab-box {
    margin-top: 10px;
    width: 990px;
    height: 310px;
    overflow-y: auto;
}

.tab-box::-webkit-scrollbar {
    width: 12px;
}

.tab-box::-webkit-scrollbar-track {
    background: #edeff1;
}

.tab-box::-webkit-scrollbar-thumb {
    background: #cbcccc;
}

.tab-box::-webkit-scrollbar-thumb:active {
    background: #659dd6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    padding-right: 15px;
}

.tab-content ul li {
    padding: 15px 15px 15px 30px;
    border-bottom: 1px solid #ddd;
}

.tab-content ul li:after {
    content: "";
    display: table;
    clear: both;
}

.tab-content ul li .update {
    font-family: "Lato", sans-serif;
    display: block;
    float: left;
    font-size: 16px;
    font-size: 1.6rem;
    width: 6.5em;
}

.tab-content ul li .label {
    display: block;
    float: left;
    width: 7.5em;
    padding-top: .2em;
}

.tab-content ul li .label span {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    background: #00033e;
    border-radius: 2px;
    color: white;
    width: 7em;
    padding: 4px 8px 5px;
    font-weight: bold;
}

.tab-content ul li p {
    float: left;
    width: calc(100% - 14em);
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
}

#top-product {
    width: 100%;
    background: url(../img/top-product-bg.jpg) no-repeat center center;
    background-size: cover;
}

#top-product .bg-stripe {
    padding: 75px 0;
    background: url(../img/bg-stripe.png) repeat left top;
}

#top-product .top-title .icon-circle-right {
    color: white;
}

#top-product .top-title .icon-circle-right:hover {
    color: #469ff9;
}

#top-product ul {
    margin-top: 40px;
    position: relative;
    width: 1000px;
    height: 400px;
}

#top-product ul li {
    display: block;
    position: absolute;
    width: 500px;
    overflow: hidden;
}

#top-product ul li.list {
    top: 0;
    left: 0;
    height: 400px;
}

#top-product ul li.new {
    top: 0;
    right: 0;
    height: 400px;
}

#top-product ul li.support {
    top: 200px;
    right: 0;
    height: 200px;
}

#top-product ul li.parts {
    bottom: 0;
    left: 0;
    height: 200px;
}

#top-product ul li.school {
    bottom: 0;
    right: 0;
    height: 200px;
}

#top-other {
    padding: 75px 0 0;
}

#top-other ul {
    margin-top: 40px;
    position: relative;
    width: 1000px;
    height: 200px;
}

#top-other ul li {
    display: block;
    position: absolute;
    width: 500px;
    height: 200px;
    top: 0;
    overflow: hidden;
}

#top-other ul li.recruit {
    left: 0;
}

#top-other ul li.access {
    right: 0;
}

#top-other ul li img {
    position: relative;
    transition: opacity .3s ease;
}

#top-other .contact {
    text-align: center;
}

#top-other .contact a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    width: 600px;
    padding: 0;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 60px;
    border-radius: 30px;
    background: #1e3670;
}

#top-other .contact a:before {
    vertical-align: middle;
}

body.ie #top-other .contact a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#top-other .contact a:before {
    font-size: 32px;
    font-size: 3.2rem;
    padding-right: 10px;
    line-height: 60px;
    vertical-align: middle;
    font-weight: normal;
}

#top-other .contact a:hover {
    color: #1e3670;
    background: #fff;
    box-shadow: 0 0 6px #a8c8fc;
}

/* ------------------------
Body
-------------------------- */
/* Title image
-------------------------- */
#titleimg {
    width: 100%;
    height: 200px;
    background: #eee;
    overflow: hidden;
}

#titleimg strong {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    padding-top: 78px;
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: .05em;
    font-weight: 500;
    line-height: 1.2;
}

#product #titleimg {
    background: url(../img/product-tit.jpg) no-repeat center center;
    background-size: cover;
}

#product #titleimg strong {
    color: white;
}

#about #titleimg {
    color: white;
    background: url(../img/corporate-tit.png) no-repeat center center;
    background-size: cover;
}

#corporate #titleimg {
    background: url(../img/corporate-tit.png) no-repeat center center;
    background-size: cover;
}

#corporate #titleimg strong {
    color: white;
}

#newsrelease #titleimg {
    background: url(../img/newsrelease-tit.png) no-repeat center center;
    background-size: cover;
}

#newsrelease #titleimg strong {
    color: white;
}


#school #titleimg {
    background: url(../img/school-tit.png) no-repeat center center;
    background-size: cover;
}

#school #titleimg strong {
    color: white;
}


#calendar #titleimg {
    background: url(../img/calendar-tit.png) no-repeat center center;
    background-size: cover;
}

#calendar #titleimg strong {
    color: white;
}

#privacy #titleimg {
    background: url(../img/privacy-tit.png) no-repeat center center;
    background-size: cover;
}

#privacy #titleimg strong {
    color: white;
}

#sitemap #titleimg {
    background: url(../img/sitemap-tit.png) no-repeat center center;
    background-size: cover;
}

#sitemap #titleimg strong {
    color: white;
}


#form #titleimg {
    background: url(../img/form-tit.png) no-repeat center center;
    background-size: cover;
}

#form #titleimg strong {
    color: white;
}

#support #titleimg {
    background: url(../img/support-tit.png) no-repeat center center;
    background-size: cover;
}

#support #titleimg strong {
    color: white;
}

#recruit #titleimg {
    background: url(../img/recruit-tit.png) no-repeat center center;
    background-size: cover;
}

#recruit #titleimg strong {
    color: white;
}


/* Bread list
-------------------------- */
#bread {
    font-size: 14px;
    font-size: 1.4rem;
    color: #444;
    padding: 20px 0;
    line-height: 1.4;
    letter-spacing: .05em;
}

#bread a {
    text-decoration: none;
    color: #444;
}

#bread a:hover {
    color: #3e85cc;
}

/* Main body
-------------------------- */
.column-2 {
    float: left;
    width: 660px;
}

#main .content {
    padding-bottom: 40px;
}

#main .content p {
    margin-bottom: 20px;
    letter-spacing: .1em;
}

#main .entry-date {
    text-align: right;
    font-weight: bold;
    padding-bottom: 20px;
    line-height: 1;
}

#main .entry-date span {
    display: inline-block;
    margin: 0 5px;
}

#main .entry-date .update {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
}

#main .entry-date .update:before {
    vertical-align: middle;
}

body.ie #main .entry-date .update {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#main .entry-date .update:before {
    line-height: 1;
}

/* 画像 */
#main .img660 {
    width: 660px;
}

#main .img310 {
    width: 310px;
}

#main .img-left {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
}

#main .img-right {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
}

/* 表 */
#main .tbl-style1,
#main .tbl-style2 {
    width: 100%;
    margin-bottom: 40px;
}

#main .tbl-style1 th,
#main .tbl-style1 td,
#main .tbl-style2 th,
#main .tbl-style2 td {
    padding: 15px 25px;
    text-align: left;
}

#main .tbl-style1 tr:nth-child(odd) {
    background: #f8f8f8;
}

#main .tbl-style1 tr:nth-child(even) {
    background: #ddd;
}

#main .tbl-style1 th {
    color: #00033e;
}

#main .tbl-style2 th,
#main .tbl-style2 td {
    border: 1px solid #ccc;
    text-align: center;
}

#main .tbl-style2 th {
    color: #00033e;
    background: #ddd;
}

body.ie #main .tbl-style1 th,
body.ie #main .tbl-style1 td,
body.ie #main .tbl-style2 th,
body.ie #main .tbl-style2 td {
    padding: 15px 15px;
}

/* リンクテキスト */
#main .arrow-left,
#main .index li p {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    position: relative;
    padding-left: 1.6em;
    line-height: 1.5;
}

#main .arrow-left:before,
#main .index li p:before {
    vertical-align: middle;
}

body.ie #main .arrow-left,
body.ie #main .index li p {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#main .arrow-left:before,
#main .index li p:before {
    position: absolute;
    display: block;
    top: -1px;
    left: 0;
    color: #47497a;
    font-size: 16px;
    font-size: 1.6rem;
    transition: color .3s ease;
    vertical-align: middle;
}

#main .arrow-left:hover:before,
#main .index li p:hover:before {
    color: #3e85cc;
}

body.ie #main .arrow-left:before,
body.ie #main .index li p:before {
    top: -3px;
}

/* 見出し */
#main .pagetitle {
    padding: 20px 0 30px;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.4;
    letter-spacing: .05em;
}

#main .sec-h2 {
    margin-bottom: 40px;
    background: #eee;
    color: #00033e;
    padding: 10px 15px 10px 25px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
    border-left: 10px solid #00033e;
}

#main .sec-h3 {
    margin-bottom: 40px;
    padding: 5px 10px 6px;
    color: white;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    background: url(../img/bg-h3.png) no-repeat left top;
    min-height: 35px;
}

#main .sec-h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: .05em;
}

/* 商品情報　詳細用見出し
-------------------------- */

#main .rd-sec-h2 {
    margin-bottom: 40px;
    padding: 5px 10px 6px;
    color: white;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    background: url(../img/bg-h3.png) no-repeat left top;
    min-height: 35px;
}

#main .rd-sec-h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: .05em;
}

/* Index page
-------------------------- */
#main p+.index {
    padding-top: 20px;
}

#main .index li {
    width: 314px;
    float: left;
    margin-bottom: 20px;
}

#main .index li:nth-child(odd) {
    margin-right: 32px;
}

#main .index li .img-trim {
    display: block;
    position: relative;
    overflow: hidden;
    width: 314px;
    height: 200px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

#main .index li .img-trim img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

#main .index li .img-trim:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .3s ease;
}

#main .index li .img-trim:hover:after {
    opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

#main .index li p {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    padding-left: 1.4em;
    position: relative;
}

#main .index li p:before {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    left: 0;
}

#main .index li a:hover p:before {
    color: #3e85cc;
}

#main .search-refine {
    margin-bottom: 40px;
    padding: 15px 20px;
    border-radius: 4px;
    background: #eee;
}

#main .search-refine p.sub-ttl {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: bold;
    vertical-align: middle;
    border-left: 5px solid #444;
    padding-left: 10px;
}

#main .search-refine p {
    margin-bottom: 10px;
}

#main .search-refine span {
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: bold;
    vertical-align: middle;
    margin-right: 15px;
}

#main .search-refine select {
    min-width: 160px;
    margin-right: 7px;
}

#main .entrylist li {
    padding: 0 0 40px;
}

#main .entrylist li:after {
    content: "";
    display: table;
    clear: both;
}

#main .entrylist li:first-child {
    padding-top: 0;
}

#main .entrylist li .thumb {
    display: block;
    float: left;
    margin-right: 25px;
    width: 160px;
    display: block;
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 120px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#main .entrylist li .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

#main .entrylist li .thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .3s ease;
}

#main .entrylist li .thumb:hover:after {
    opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

#main .entrylist li .text {
    padding-left: 200px;
}

#main .entrylist li .text .label {
    display: inline-block;
    text-align: center;
    line-height: 1;
    background: #00033e;
    border-radius: 2px;
    color: white;
    min-width: 7em;
    padding: 4px 8px 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

#main .entrylist li .text .update {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#main .entrylist li .text .update:before {
    vertical-align: middle;
}

body.ie #main .entrylist li .text .update {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#main .entrylist li .text .update:before {
    line-height: 1;
}

#main .entrylist li .text strong a {
    display: block;
    color: #00033e;
    margin-bottom: 10px;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4;
    transition: color .3s ease;
}

#main .entrylist li .text strong a:hover {
    color: #3e85cc;
}

#main .pager {
    margin-bottom: 20px;
    text-align: center;
}

#main .pager .num_pager {
    margin-bottom: 8px;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: .1em;
}

#main .pager .num_pager strong {
    font-size: 16px;
    font-size: 1.6rem;
}

#main .pager .link_pager li {
    font-family: "Lato", sans-serif;
    display: inline-block;
    margin: 0 2px;
    line-height: 1;
}

#main .pager .link_pager li a {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    border: 1px solid #ccc;
    padding: 3px 8px;
    border-radius: 2px;
    transition: border-color .3s ease, background .3s ease;
}

#main .pager .link_pager li.active a {
    border-color: #999;
    background: #f2f2f2;
}

#main .pager .link_pager li a:hover {
    border-color: #81b0fb;
    background: #f1f6ff;
}

body.ie #main .entrylist .update:before {
    vertical-align: baseline;
}

/* Product
-------------------------- */
/* Search box */
.product-search .product-sarchbox {
    background: #eee;
    border: 1px solid #00033e;
    padding: 15px;
    margin-bottom: 40px;
}

.product-search .product-sarchbox .searchbox {
    margin-right: 5px;
    width: 535px;
    height: 34px;
}

.product-search .product-sarchbox .icon-search {
    width: 80px;
    height: 34px;
    line-height: 1;
}

.product-search .product-sarchbox .icon-search:before {
    vertical-align: baseline;
}

.product-search .refine h2 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    padding-left: 35px;
    background: url(../img/ico-search-refine.png) no-repeat left top;
    margin-bottom: 15px;
}

.product-search .conditions {
    margin: 0 -7px 20px;
    width: 674px;
    display: table;
    border-collapse: separate;
    border-spacing: 7px 0;
    table-layout: fixed;
}

.product-search .conditions-box {
    display: table-cell;
    background: #f2f2f5;
    border-bottom: 3px solid #00033e;
}

.product-search .conditions-box:first-child {
    border-left: none;
}

.product-search .conditions-box h3 {
    padding: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 24px;
    color: white;
    text-align: center;
    background: #00033e;
    background: linear-gradient(#2e3068, #090c4e);
}

.product-search .conditions-box h3:before {
    font-size: 25px;
    font-weight: normal;
    padding-right: 6px;
    line-height: 24px;
}

.product-search .conditions-box ul {
    background: #f2f2f5;
    padding: 12px 18px;
}

.product-search .conditions-box ul li {
    padding-bottom: 3px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
}

.product-search .btn-reset {
    display: block;
    margin: 0 auto;
    width: 340px;
    cursor: pointer;
    transition: all .3s ease;
}

/* index */
/* series */
.p-index>li,
.p-series>li {
    float: left;
    display: block;
    position: relative;
    margin-bottom: 90px;
}

.p-index .p-img,
.p-series .p-img {
    display: block;
    overflow: hidden;
    background: white;
    text-align: center;
    position: relative;
    display: inline-block;
    transition: opacity .3s ease, border-color .3s ease;
}

.p-index .p-img:after,
.p-series .p-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .3s ease;
}

.p-index .p-img:hover:after,
.p-series .p-img:hover:after {
    opacity: .1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}

.p-index .p-img:hover,
.p-series .p-img:hover {
    border-color: #3e85cc;
}

.p-index h3,
.p-series h3 {
    color: #00558c;
    font-weight: bold;
    line-height: 1.3;
    border-bottom: 1px solid #00558c;
    position: relative;
}

.p-index h3 span,
.p-series h3 span {
    position: absolute;
    display: block;
    left: 0;
    height: 4px;
    background: #00558c;
    transition: width .3s ease, background .3s ease;
}

.p-index h3 a,
.p-series h3 a {
    display: block;
    color: #00558c;
}

.p-index h3 a:hover,
.p-series h3 a:hover {
    color: #3e85cc;
}

.p-index h3 a:hover span,
.p-series h3 a:hover span {
    width: 100%;
    background: #3e85cc;
}

.p-index>li {
    width: 314px;
    background: #eee url(../img/bg-check.png) repeat left top;
}

.p-index>li:nth-child(odd) {
    margin-right: 32px;
}

.p-index .p-img {
    width: 314px;
    height: 233px;
    border-top: 5px solid #7faac5;
}

.p-index .p-img img {
    width: 314px;
}

.p-index .p-txt {
    padding: 15px 15px 20px;
}

.p-index h3 {
    font-size: 30px;
    font-size: 3.0rem;
    padding-bottom: 3px;
    border-bottom: 1px solid #00558c;
}

.p-index h3 span {
    bottom: -4px;
    width: 73px;
}

.p-index .p-label {
    margin-top: 10px;
}

.p-index .p-label li {
    float: left;
}

.p-index .p-label li:nth-child(odd) {
    margin-right: 14px;
}

.p-index .p-btn {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    padding: 15px 40px;
    background: #00033e;
    text-align: center;
    line-height: 20px;
    color: white;
    font-weight: bold;
    transition: background .3s ease;
}

.p-index .p-btn:before {
    vertical-align: middle;
}

body.ie .p-index .p-btn {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.p-index .p-btn:before {
    position: absolute;
    right: 20px;
    font-weight: normal;
    transition: right .3s ease;
}

.p-index .p-btn:hover {
    background: #3e85cc;
}

.p-index .p-btn:hover:before {
    right: 15px;
}

.p-series {
    margin-right: -30px;
}

.p-series>li {
    width: 200px;
    margin-right: 30px;
}

.p-series .p-img {
    width: 196px;
    border: 2px solid #ccc;
}

.p-series .p-img img {
    width: 196px;
}

.p-series h3 {
    margin: 10px 0 20px;
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #00558c;
}

.p-series h3 span {
    bottom: -4px;
    width: 52px;
}

.p-series .btn-detail,
.p-series .p-links li a,
.p-links li .p-series a,
.p-series #main .content .btn-submit,
#main .content .p-series .btn-submit {
    display: block;
    position: absolute;
    left: 0;
    bottom: -40px;
}

/* links */
.p-links {
    margin-bottom: 40px;
    padding: 20px 5px 20px 15px;
    background: #eee;
    background: linear-gradient(#f4f4f4, #dfdfdf);
}

.p-links li {
    display: inline;
}

.p-links li a {
    margin-right: 10px;
    padding: 8px 5px;
}

.anchor a {
    margin-top: 10px;
    padding: 8px 5px;
}


.p-links li a:before {
    position: relative;
    right: auto;
    padding-right: 5px;
    font-size: 18px;
    vertical-align: middle;
}

.p-links li a.icon-download:before {
    top: -2px;
    content: "\e909";
}

.p-links li a.icon-mail:before {
    top: -1px;
    content: "\e90f";
}

.p-links li a.icon-file-check:before {
    content: "\e90b";
}

.p-links li a:hover:before {
    right: auto;
}

body.ie .p-links li a {
    padding: 10px 5px 6px;
}

body.ie .p-links li a.icon-mail:before {
    top: -2px;
}

body.ie .p-links li a.icon-file-check:before {
    top: -2px;
}

/* シリーズ商品一覧へのリンク（アンカー） */
.single-btn {
    display: block !important;
    margin-top: 5px;
}

.single-btn a {
    width: 630px !important;
    background: #00558c !important;
    color: #fff !important;
}

/* feature */
.p-feature li {
    padding: 40px 0 20px;
    border-bottom: 2px solid #00558c;
}

.p-feature li:first-child {
    padding-top: 0;
}

.p-feature li .thumb {
    display: block;
    float: left;
    margin-right: 30px;
    width: 240px;
}

.p-feature li .thumb img {
    width: 240px;
}

.p-feature li .text {
    float: left;
    width: 390px;
}

.p-feature li .text h3 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}

.p-feature li .text strong {
    display: block;
    margin-bottom: 10px;
}

/* Form
-------------------------- */
#main .content .form-lead {
    padding-bottom: 25px;
}

#main .content .form-lead p {
    margin-bottom: 15px;
}

#main .content .form-lead strong {
    font-size: 16px;
    font-weight: bold;
}

#main .content .form-lead strong .icon-telephone {
    font-weight: bold;
    display: inline-block;
    margin-left: 15px;
}

#main .content .form-lead strong .icon-telephone:before {
    padding-right: 5px;
}

#main .content .tbl-form th,
#main .content .tbl-form td {
    text-align: left;
    vertical-align: middle;
}

#main .content .tbl-form th {
    background: #eee;
    color: #282828;
}

#main .content .tbl-form th:after {
    content: "";
    display: table;
    clear: both;
}

#main .content .tbl-form th .req {
    display: block;
    float: initial;
    width: 80px;
    text-align: center;
    padding: 0 5px;
    border-radius: 2px;
    background: #f00;
    color: white;
}

#main .content .tbl-form thead th {
    background: #ddd;
    font-size: 16px;
    font-size: 1.6rem;
}

#main .content .tbl-form select {
    min-width: 200px;
}

#main .content .tbl-form input[type="text"] {
    width: 100%;
}

#main .content .tbl-form input[type="text"].short {
    width: 80px;
    margin: 0 5px;
}

#main .content .tbl-form input[type="text"].short-f {
    width: 80px;
    margin: 0 5px 0 0;
}

#main .content .tbl-form input[type="text"][name="contact-email-again"] {
    margin-top: 7px;
}

#main .content .tbl-form textarea {
    width: 100%;
}

#main .content .tbl-form select:hover {
    border-color: #bbb;
    box-shadow: 0 0 7px #ddd;
}

#main .content .tbl-form input[type="checkbox"]+label,
#main .content .tbl-form input[type="radio"]+label {
    margin-right: 15px;
    line-height: 1.5;
    padding-left: 20px;
}

#main .content .tbl-form input[type="checkbox"]+label:hover:before,
#main .content .tbl-form input[type="radio"]+label:hover:before {
    border-color: #bbb;
    box-shadow: 0 0 7px #ddd;
}

#main .content .tbl-form td span {
    display: inline-block;
    margin-top: 7px;
}

#main .content .tbl-form td span.icon-caret-down:before {
    font-size: 12px;
    font-size: 1.2rem;
    padding-right: 5px;
}

#main .content .tbl-form+.sec-h2 {
    margin-top: 60px;
}

#main .content .tbl-form+.rd-sec-h2 {
    margin-top: 60px;
}

#main .content .btn-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 1em 2em;
}

#main .content .error {
    display: none !important;
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #f00;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

#main .content .error:before {
    vertical-align: middle;
}

body.ie #main .content .error {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#main .content .error:before {
    position: absolute;
    top: 0;
    left: 0;
}

#main .content .error.appear {
    display: inline-block !important;
}

#main .content .form-lead .error {
    margin-top: 25px;
    padding: 15px 30px;
    padding-left: 48px;
    border: 3px double #f00;
}

#main .content .form-lead .error:before {
    top: 15px;
    left: 30px;
}

#main .content .form-lead .error.appear {
    display: block !important;
}

#main .content .sec-h2+.appear {
    float: left;
    margin-top: -20px;
}

#main .content .rd-sec-h2+.appear {
    float: left;
    margin-top: -20px;
}

#main .content .sec-h2+.appear:after {
    clear: right;
}

#main .content .rd-sec-h2+.appear:after {
    clear: right;
}

/* ------------------------
Side
-------------------------- */
#side {
    float: right;
    width: 280px;
}

#side .side-title a,
#side .side-ptitle a {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 31px;
    line-height: 3.1rem;
    font-weight: bold;
    display: block;
    min-height: 80px;
}

#side .side-title a {
    padding: 28px 40px 21px;
    background: #eee url(../img/side-tit-bg.png) no-repeat left top;
    transition: all .3s ease;
}

#side .side-title a:hover {
    color: #0368bd;
    background-color: #e4eefe;
    text-decoration: none;
}

#side .sidenav {
    padding: 20px 10px 20px 40px;
}

#side .sidenav li {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 8px 0;
}

#side .sidenav li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold;
    letter-spacing: .05em;
    position: relative;
    line-height: 1.4;
    display: inline-block;
}

#side .sidenav li a:before {
    vertical-align: middle;
}

body.ie #side .sidenav li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#side .sidenav>li>a {
    padding-left: 25px;
}

#side .sidenav>li>a:before,
#side .sidenav>li>a:after {
    position: absolute;
    display: block;
    font-weight: normal;
    transition: color .3s ease;
}

#side .sidenav>li>a:before {
    top: 3px;
    left: 1px;
    color: #47497a;
    font-size: 13px;
    font-size: 1.3rem;
    content: "\e91e";
}

#side .sidenav>li>a:after {
    top: 1px;
    left: 0;
    color: #ddd;
    font-size: 16px;
    font-size: 1.6rem;
    content: "\e901";
}

#side .sidenav>li>a.active:before {
    color: #fff;
}

#side .sidenav>li>a.active:after {
    color: #47497a;
}

#side .sidenav>li>a:hover:before {
    color: #fff;
}

#side .sidenav>li>a:hover:after {
    color: #3e85cc;
}

#side .sidenav-child {
    clear: both;
    padding: 11px 0 0 5px;
    margin-bottom: -8px;
}

#side .sidenav-child li {
    padding: 5px 0;
}

#side .sidenav-child li a {
    font-weight: 500;
    padding-left: 20px;
}

#side .sidenav-child li a:before {
    position: absolute;
    display: block;
    width: 15px;
    top: 5px;
    left: 0;
    color: #47497a;
    font-size: 8px;
    font-size: .8rem;
    transition: color .3s ease;
    line-height: 1.7;
}

#side .sidenav-child li a:hover:before {
    color: #3e85cc;
}

#side .sidenav-sub li {
    margin-bottom: 2px;
    font-size: 16px;
    font-size: 1.6rem;
}

#side .sidenav-sub li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    background: #eee;
    padding: 20px 20px 18px 75px;
    font-weight: bold;
    color: #00033e;
    position: relative;
    line-height: 1.4;
    transition: all .3s ease;
}

#side .sidenav-sub li a:before {
    vertical-align: middle;
}

body.ie #side .sidenav-sub li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#side .sidenav-sub li a:hover {
    color: #0368bd;
    background-color: #e4eefe;
    text-decoration: none;
}

#side .sidenav-sub li a:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 35px;
    margin-top: -13px;
    color: #00033e;
    font-size: 30px;
    font-size: 3rem;
    font-weight: normal;
    width: 30px;
    text-align: center;
    line-height: 1;
    transition: color .3s ease;
}

#side .sidenav-sub li a.contact:before {
    margin-top: -11px;
}

#side .sidenav-sub li a:hover:before {
    color: #0368bd;
}

#side .side-title+.sidenav-sub {
    margin-top: 30px;
}

/* 商品ページ */
#side .side-ptitle .icon-folder,
#side .side-ptitle a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    color: white;
}

#side .side-ptitle .icon-folder:before,
#side .side-ptitle a:before {
    vertical-align: middle;
}

body.ie #side .side-ptitle .icon-folder,
body.ie #side .side-ptitle a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#side .side-ptitle .icon-folder:before,
#side .side-ptitle a:before {
    position: absolute;
    line-height: 1;
    font-weight: normal;
}

#side .side-ptitle .icon-folder {
    display: inline-block;
}

#side .side-ptitle .icon-folder:before {
    font-size: 22px;
    font-size: 2.2rem;
    top: -10px;
    left: -32px;
    margin-top: -11px;
}

#side .side-ptitle a {
    padding: 25px 70px 24px 60px;
    background: #00033e;
    transition: background .3s ease;
}

#side .side-ptitle a:before {
    font-size: 25px;
    font-size: 2.5rem;
    content: "\e903";
    top: 50%;
    right: 20px;
    margin-top: -10px;
    transition: right .3s ease;
}

#side .side-ptitle a:hover {
    background: #3e85cc;
}

#side .side-ptitle a:hover:before {
    right: 15px;
}

#side .p-sidenav {
    margin-top: 4px;
}

#side .p-sidenav a,
#side .p-sidenav dt {
    display: block;
    font-weight: bold;
    padding: 18px 20px;
    margin-bottom: 2px;
    transition: color .3s ease, background .3s ease;
}

#side .p-sidenav dt {
    cursor: pointer;
    font-size: 18px;
    font-size: 1.6rem;
    line-height: 24px;
    color: #00033e;
    border: 4px solid #00033e;
    font-weight: bold;
    position: relative;
    padding: 14px 70px 14px 16px;
    transition: color .3s ease, border-color .3s ease;
}

#side .p-sidenav dt span {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    width: 60px;
    background: #00033e;
    transition: background .3s ease;
}

#side .p-sidenav dt span:before {
    vertical-align: middle;
}

body.ie #side .p-sidenav dt span {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#side .p-sidenav dt span:before,
#side .p-sidenav dt span:after {
    content: "\e910";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -10px;
    font-size: 20px;
    font-size: 2rem;
    color: white;
    transition: color .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, color .3s ease;
    transition: transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}

#side .p-sidenav dt span:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#side .p-sidenav dt:hover {
    color: #3e85cc;
    border-color: #3e85cc;
}

#side .p-sidenav dt:hover span {
    background: #3e85cc;
}

#side .p-sidenav dt:active span:after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

#side .p-sidenav dt.active span:after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

#side .p-sidenav a.child-1 {
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    background: #0088c6;
    transition: color .3s ease, background .3s ease;
}

#side .p-sidenav a.child-1:hover {
    color: #0368bd;
    background: #e4eefe;
}

#side .p-sidenav a.child-2 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    background: #efefef;
    border-bottom: 1px solid #00033e;
}

#side .p-sidenav a.child-2:hover {
    color: #222;
    background: #e0dddd;
}

#side .p-sidenav a.child-3,
#side .p-sidenav .child-3 li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    font-size: 1.8rem;
    background: #faf9f9;
    position: relative;
    line-height: 22px;
    font-weight: bold;
    padding: 10px 50px 13px 20px;
}

#side .p-sidenav a.child-3:before,
#side .p-sidenav .child-3 li a:before {
    vertical-align: middle;
}

body.ie #side .p-sidenav a.child-3,
body.ie #side .p-sidenav .child-3 li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#side .p-sidenav a.child-3:before,
#side .p-sidenav .child-3 li a:before {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    font-size: 16px;
    font-size: 1.6rem;
    transition: all .3s ease;
}

#side .p-sidenav a.child-3 span,
#side .p-sidenav .child-3 li a span {
    display: block;
    font-weight: 500;
    margin-top: 1px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 14px;
}

#side .p-sidenav a.child-3:hover,
#side .p-sidenav .child-3 li a:hover {
    color: #0368bd;
    background: #f1f6ff;
}

#side .p-sidenav a.child-3:hover:before,
#side .p-sidenav .child-3 li a:hover:before {
    color: #0368bd;
    right: 15px;
}

#side .p-sidenav dd {
    padding-top: 2px;
    display: none;
}

#side .p-sidenav dt.active+dd {
    display: block;
}

#side .p-sidenav .fonts a.child-3,
#side .p-sidenav .fonts li a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    padding: 18px 50px 18px 20px;
}

body.ie #side .sidenav>li>a:before {
    top: 0;
}

body.ie #side .sidenav>li>a:after {
    top: -1px;
}

body.ie #side .sidenav-sub a {
    padding: 22px 20px 16px 75px;
}

body.ie #side .side-ptitle a {
    padding: 28px 70px 21px 60px;
}

body.ie #side .p-sidenav dt {
    padding: 16px 70px 12px 16px;
}

body.ie #side .p-sidenav a.child-1,
body.ie #side .p-sidenav a.child-2 {
    padding: 20px 20px 16px;
}

/* ------------------------
Footer
-------------------------- */
#footer {
    margin-top: 5em;
    width: 100%;
    background: #1e3670;
}

/* Pagetop
-------------------------- */
#pagetop {
    width: 100%;
}

#pagetop a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 60px;
    display: block;
    color: #444;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: #f8f8f8;
}

#pagetop a:before {
    vertical-align: middle;
}

body.ie #pagetop a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#pagetop a:before {
    vertical-align: middle;
}

#pagetop a:hover {
    background: #eff1ef;
}

body.ie #pagetop a:before {
    line-height: 60px;
}

#footnav {
    width: 100%;
    background: #1e3670;
}

#footnav .wrap {
    padding: 50px 0 25px;
    color: white;
    font-size: 14px;
    font-size: 1.4rem;
}

#footnav .wrap a {
    color: white;
    transition: color .3s ease;
}

#footnav .wrap a:hover {
    color: #3e85cc;
}

#footadd {
    float: left;
    width: 330px;
}

#footadd p {
    margin-top: .8em;
    padding-left: 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: bold;
}

#footadd ul {
    margin-top: 20px;
}

#footadd ul li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    width: 264px;
    background: white;
    border-radius: 2px;
    padding: 7px 40px 8px 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    font-weight: bold;
    position: relative;
    color: #00033e !important;
    transition: background .3s ease !important;
}

#footadd ul li a:before {
    vertical-align: middle;
}

body.ie #footadd ul li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#footadd ul li a:before {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -7px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: normal;
    transition: margin-right .3s ease;
}

#footadd ul li a:hover {
    background: #b7d2fd;
}

#footadd ul li a:hover:before {
    font-weight: normal;
    margin-right: -4px;
}

#footadd ul li a span {
    position: relative;
    padding-left: 30px;
}

#footadd ul li a span:before {
    position: absolute;
    top: -2px;
    left: 0;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: normal;
    margin-right: 5px;
}

#footadd ul li a span.icon-info:before {
    top: -1px;
}

body.ie #footadd ul li a {
    padding: 9px 40px 7px 15px;
}

#footnav-nav {
    float: right;
    width: 655px;
}

#footnav-nav .footnav-ul {
    float: left;
    width: 265px;
}

#footnav-nav .footnav-ul li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    padding-bottom: 14px;
}

#footnav-nav .footnav-ul li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-weight: bold;
    position: relative;
    padding-left: 22px;
    line-height: 1.4;
}

#footnav-nav .footnav-ul li a:before {
    vertical-align: middle;
}

body.ie #footnav-nav .footnav-ul li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#footnav-nav .footnav-ul li a:before {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
}

#footnav-nav .footnav-ul li a:hover {
    color: #6ea4d9;
}

#footnav-nav .footnav-youtube {
    float: left;
}

#footnav-nav .footnav-youtube a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 30px;
    font-size: 3rem;
}

#footnav-nav .footnav-youtube a:before {
    vertical-align: middle;
}

body.ie #footnav-nav .footnav-youtube a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

body.ie #footnav-nav .footnav-ul li a:before {
    top: 4px;
}

#footsubnav {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

#footsubnav ul {
    float: left;
    width: 50%;
}

#footsubnav ul li {
    display: inline-block;
    margin-right: 44px;
}

#footsubnav ul li a {
    font-family: "icomoon", "Lato", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    padding: 5px 5px 5px 18px;
    position: relative;
    color: #fff;
}

#footsubnav ul li a:before {
    vertical-align: middle;
}

body.ie #footsubnav ul li a {
    font-family: "icomoon", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

#footsubnav ul li a:before {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    font-size: 12px;
    font-size: 1.2rem;
}

#footsubnav .copyright {
    float: right;
    width: 50%;
    letter-spacing: .1em;
    text-align: right;
    color: #fff;
}

body.ie #footsubnav ul li a:before {
    top: 6px;
}

/* ---------------------------
Clearfix
--------------------------- */
.clearfix:after,
#subnav ul:after {
    content: "";
    display: table;
    clear: both;
}

/* ---------------------------
Width
--------------------------- */
.w314 {
    width: 314px !important;
}

.w200 {
    width: 200px !important;
}

.h296 {
    height: 296px !important;
}

.h334 {
    height: 334px !important;
}

.h146 {
    height: 146px !important;
}

.w5 {
    width: 5% !important;
}

.w10 {
    width: 10% !important;
}

.w15 {
    width: 15% !important;
}

.w20 {
    width: 20% !important;
}

.w25 {
    width: 25% !important;
}

.w30 {
    width: 30% !important;
}

.w35 {
    width: 35% !important;
}

.w40 {
    width: 40% !important;
}

.w45 {
    width: 45% !important;
}

.w50 {
    width: 50% !important;
}

/* ---------------------------
Box
--------------------------- */
.box,
.box-line,
.box-wline {
    margin-bottom: 1.5em;
    padding: 2.2em 2.5em;
}

.box {
    background: #eee;
}

.box-line {
    border: 1px solid #ccc;
}

.box-wline {
    border: 3px double #ccc;
}

/* ---------------------------
Font Parts
--------------------------- */
.font12 {
    font-size: 12px !important;
    font-size: 1.2rem !important;
}

.font14 {
    font-size: 14px !important;
    font-size: 1.4rem !important;
}

.font16 {
    font-size: 16px !important;
    font-size: 1.6rem !important;
}

.font18 {
    font-size: 18px !important;
    font-size: 1.8rem !important;
}

.font20 {
    font-size: 20px !important;
    font-size: 2rem !important;
}

.font24 {
    font-size: 24px !important;
    font-size: 2.4rem !important;
}

.font30 {
    font-size: 30px !important;
    font-size: 3rem !important;
}

.space-w {
    letter-spacing: .05em !important;
}

.lh2 {
    line-height: 2 !important;
}

.lh15 {
    line-height: 1.5 !important;
}

.lh14 {
    line-height: 1.4 !important;
}

.lh1 {
    line-height: 1 !important;
}

/* ---------------------------
Layout Parts
--------------------------- */
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

.hide {
    display: none !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.f-left {
    float: left !important;
}

.f-right {
    float: right !important;
}

.mtop0 {
    margin-top: 0 !important;
}

.mtop10 {
    margin-top: 10px !important;
}

.mtop20 {
    margin-top: 20px !important;
}

.mtop30 {
    margin-top: 30px !important;
}

.mbtm0 {
    margin-bottom: 0 !important;
}

.mbtm10 {
    margin-bottom: 10px !important;
}

.mbtm15 {
    margin-bottom: 15px !important;
}

.mbtm20 {
    margin-bottom: 20px !important;
}

/* ---------------------------
50thロゴ表示用
--------------------------- */

.page-on-active #nav {
    transition: all .2s ease;
    background: white;
    width: 100%;
    padding: 20px 0;
    height: 90px;
    position: absolute;
    z-index: 98;
    box-shadow: 2px 5px 10px 0 rgb(0 0 0 / 20%);
}

.page-on-active #nav .logo {
    float: left;
    width: 280px;
}

.page-on-active #nav .logo img {
    width: 280px;
    display: inline;
}

.page-on-active #nav .logo img.logo-active {
    display: none;
}

.page-on-active #nav .nav-list {
    padding-top: 5px;
}

.nav-fixed #nav {
    transition: all .2s ease;
    background: white;
    width: 100%;
    padding: 20px 0;
    height: 90px;
    position: absolute;
    z-index: 98;
}

.nav-fixed #nav .logo {
    float: left;
    width: 280px;
}

.nav-fixed #nav .logo img {
    width: 180px;
    display: inline;
}

.nav-fixed #nav .logo img.logo-active {
    display: none;
}

.nav-fixed #nav .nav-list {
    padding-top: 5px;
}

#nav .logo img {
    width: 180px;
}


/* ---------------------------
スマホ・タブレット用　動画背景
--------------------------- */

@media screen and (max-width:1200px) {
    .covervid-wrapper {
        background: url(./files/movie/img-topbg.jpg) no-repeat center center !important;
        background-size: cover !important;
    }
}

@media print {

    /* ====================================================
  印刷用レイアウト調整
  ==================================================== */
    body {
        zoom: .8;
    }

    .wrap {
        padding: 0 20px;
    }
}