/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {}

element {
    --color-primary: #00406F;
    --color-success: #00D148;
    --color-warning: #dc3545;
}



/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol,
ul {
    list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
    quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
    vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/*ボタンスタイルのリセット*/
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}


input[type="text"]:focus {
  outline: 0;
}

body {
    line-height: 1.8;
}

/* 
    ロボスタのヘッダー部分
*/
.header {
    width: 100%;
    font-size: 62.5%;
    border-bottom: 1px solid #d6d6d6;
}
.header-main {
    height: 66px;
    width: 100%;
    background-color: #c00606;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
}
.inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    zoom: 1;
}
.inner:before {
    content: "";
    display: table;
}
.header-logo {
    height: 60px !important;
    margin: 2px 0 !important;
    float: left;
}
.header-headline-wrap {
    height: 18px;
    max-width: 432px;
    margin-top: 24px;
    margin-left: 20px;
    padding-left: 5px;
    float: left;
    border-left: 3px solid #fff;
    overflow: hidden;
}
.header-headline {
    display: block;
    font-size: 1.3em;
    line-height: 18px;
    color: #fff !important;
    letter-spacing: 0;
}
.header-search-box-wrap {
    display: none;
    float: right;
    line-height: 66px;
    position: relative;
}
.header-search-box-icon {
    width: 20px;
    position: absolute;
    bottom: 22px;
    right: 6px;
}
.sp-header-main {
    height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #c00606;
    z-index: 10;
    overflow: hidden;
}
.sp-header-main .header-logo {
    float: left;
}
.sp-appear {
    display: none;
}
.sp-header-item {
    float: left;
    border-left: 1px solid #d08686;
    text-align: center;
    padding: 0 12px;
    display: none;
}
.sp-header-item-icon {
    width: 20px;
    height: auto;
}
.sp-header-label {
    font-size: 10px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}
.sp-header-search-box {
    display: none;
    height: 56px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 16px;
    background-color: #c00606;
    z-index: 10;
}
.sp-header-search-box .header-search-box {
    width: 96%;
    margin: 0 !important;
    margin-left: 20px !important;
    margin-top: 13px !important;
    border: none;
}
.sp-header-search-close-btn {
    height: 51px;
    width: 48px;
    position: absolute;
    top: 0;
    left: 0;
    float: left;
}
.header-nav .sp-header-topics-box {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 240px;
    z-index: 1;
    background-color: #fff;
}
.sp-header-topics-box .category-list-item {
    width: 100%;
    display: block;
    font-size: 12px;
    line-height: 28px;
    border-bottom: 1px solid #d6d6d6;
    text-align: left;
}
.category-list-item:link, .category-list-item:visited {
    color: #3c3c3c;
}
.category-list-item {
    padding: 0 10px;
    line-height: 53px;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'Verdana,YuGothic,Yu Gothic,Hiragino Kaku Gothic ProN';
}
.sp-header-topics-box .close-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 240px;
}
.sp-header-topics-box .close-btn:after, .sp-header-topics-box .close-btn:before {
    content: "";
    height: 36px;
    width: 2px;
    position: absolute;
    top: 2px;
    left: 20px;
    background-color: #3c3c3c;
}
.sp-header-topics-box .close-btn:before {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sp-header-topics-box .close-btn:after {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sp-header-search-close-btn:after, .sp-header-search-close-btn:before {
    content: "";
    height: 24px;
    width: 2px;
    position: absolute;
    bottom: 10px;
    left: 16px;
    background-color: #fff;
}
.sp-header-search-close-btn:before {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sp-header-search-close-btn:after {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header-sub {
    height: 52px;
    margin-top: 66px;
}
.header-sub-nav {
    zoom: 1;
}
.header-sub-nav:after, .header-sub-nav:before {
    content: "";
    display: table;
}
.category-list:first-child {
    border-left: none;
}
.left {
    float: left;
}
.category-list {
    margin-left: -10px;
    float: left;
    overflow: hidden;
}
/* 
    / ロボスタのヘッダー部分
*/

#wrapper {
    width: 1120px;
    margin: 0 auto;
    position: relative;
}

.about {}

.whitebox {
    padding: 30px;
    background-color: white;
}

.eyecatch {
    width: 100%;
    object-fit: cover;
}

.tag {
    font-size: 12px;
    line-height: 1.8em;
    margin-right: 10px;
}

.rdb-header {
    background-color: #00406F;
    margin-top: 65px;
}

.header-DBmain {
    height: 66px;
    width: 100%;
    background-color: #00406F;
    z-index: 10000;
    margin-top: 65px;
}

.padding-reset{
        padding: .5rem .6rem;
}

.header-DBmain .inner {
    position: relative;
    width: 95%;
    max-width: 1120px;
    margin: 0 auto;
    box-sizing: border-box;
    zoom: 1;
}

.search-window {
    border: none;
    border-radius: 3px;
    font-size: 12px;
    width: 250px!important;
}

.headerInfo {
    font-size: 12px;
    left: 240px;
    top: 23px;
    color: white;
    position: absolute;
}

.HeaderRight {
    text-align: right;
    position: absolute;
    right: 0;
    top: 18px;
}

.headerSearchBox {
    font-size: 12px;
    border: 0;
    padding: 5px 15px;
    color: #000;
    width: 320px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative;

}

.searchIcon {
    content: '';
    /*何も入れない*/
    display: inline-block;
    /*忘れずに！*/
    background-repeat: no-repeat;
    background-image: url(../img/icon04.png);
    background-size: 15px;
    background-position: 290px center;
}

.headerSearchBoxHero {
            font-size: 12px;
            border: solid 3px #00406F;
            padding: 8px 15px;
            border-radius: 30px;
            color: #000;
            width: 480px;
        }

.searchIconHero {
    content: '';
    /*何も入れない*/
    display: inline-block;
    /*忘れずに！*/
    background-repeat: no-repeat;
    background-image: url(../img/icon04.png);
    background-size: 15px;
    background-position: 440px center;
}

.catch{
    font-size: 14px;
    text-align: center;
    margin: 15px 0px 30px 0px;
    font-weight: bold;
    color: #00406F;
}

.mb40{
    margin-bottom: 40px;
}

.suggestionLink {
    margin: 15px 0px 15px 0px;
    text-align: center;
}

.suggestionLink a{
    font-size: 14px;
    margin-right: 15px;
    
}


.article {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}

.media {
    float: left;
    margin-right: 15px;
}

.date {
    font-size: 10px;
    color: #666;
    position: absolute;
    right: 0;
    bottom: 0;
}

.breadcrumb {
    background-color: transparent;
    font-size: 11px;
    z-index: 1000;
    padding: 20px 0;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    color: #00406F;
    margin-bottom: 20px;
    line-height: 1.8;
}

h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #00406F;
    line-height: 1.8;
}

h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #00406F;
    
}

h5 {
    font-size: 20px;
    font-weight: bold;
    color: #00406F;
}


.lead {
    margin-bottom: 20px;
    font-size: 14px;
}

section {
    margin-bottom: 60px;
}

.white {
    background-color: white;
}

.pagenav {
    margin-bottom: 60px;
}

p {
    font-size: 14px;
    line-height: 1.8;
    margin: auto 0;
}

a {
    color: #0083FE;
}

a:hover {
    color: #0083FE;
    text-decoration: none;
}


.spectable {
    font-size: 12px;
    border-collapse: separate;
    border-spacing: 0px 15px;
    margin-top: -10px;

}

th {
    width: 20%;
    vertical-align: top;
}

td {}

tr {}

.robot {
    margin-bottom: 15px;
    width: 60px;
}

.company {
    margin-top: 30px;
}

.recommend {
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.maker {
    font-size: 12px;
    margin: auto;
}

.news p {
    font-size: 12px;
}

.overlay {
    background-color: #00406F;
    padding: 10px;
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.overlay p {
    color: white;
}

.overlay img {
    width: 70px;
    margin-right: 30px;
    float: left;

}

.overlay a {
    color: white;
    border: 3px solid #00D148;
    border-radius: 30px;
    padding: 10px 30px;
}

.overlay h4 {
    color: white;
}

.auto {
    margin: auto;
    text-align: right;
}

#carousel-example-generic {
    margin: 20px auto;
    width: 400px;
}

#carousel-custom {
    margin: 20px auto;
}


#carousel-custom img {
    height: 445px;
    object-fit: cover;
    /* この一行を追加するだけ！ */
}

#carousel-custom .carousel-indicators {
    margin: 10px 0 0;
    position: static;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

#carousel-custom .carousel-indicators li {
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    height: auto;
    margin: 0 !important;
    width: auto;
}

#carousel-custom .carousel-indicators li img {
    display: block;
    opacity: 0.5;
    height: 80px;
    width: 80px;
    object-fit: cover;
    /* この一行を追加するだけ！ */
}

#carousel-custom .carousel-indicators li.active img {
    opacity: 1;

}

#carousel-custom .carousel-indicators li:hover img {
    opacity: 0.75;
}

.play {
    position: relative;
}

.plays {
    position: absolute;
    top: 30%;
    right: 30%;
    width: 30px;
}

.article p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-width: inherit;
    margin: 0;
}

html {
    background-color: #F4F7FC;
}

.eclink {
    display: flex;
    margin-top: 15px;
}

.eclink a {
    border: solid 1px;
    width: 50%;
    text-align: center;
    margin-right: 15px;
    font-size: 12px;
    border-radius: 30px;
    padding: 8px 0px;
}



.green {
    border: solid 1px #00D148;
    color: #00D148;
}

.pricelg {
    font-size: 40px;
    font-weight: bold;
    color: #C13724;
}

.greenbtn {
    background-color: #00D148;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    border: none;
}

.custom p {
    font-size: 12px;
    color: #707070;
    line-height: 1.2
}

.mt30 {
    margin-top: 30px;
}

.gray {
    font-size: 20px;
    font-weight: normal;
}

.mt60 {
    margin-top: 60px;
}

.validation {
    border
}

.wrap {
    text-align: center;
}

.text {
    font-size: 12px;
    margin-bottom: 40px;
}

#contents {
    float: left;
    width: 790px;
    position: relative;
}


.sideMenu {
    margin-top: 30px;
    width: 300px;
    height: 90%;
    background: white;
    padding: 20px;
    float: left;
    margin-right: 30px;
}

.selectorPulldown {
    padding: 5px 10px;
    border: solid 1px #707070;
    border-radius: 3px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected {
    font-size: 12px;
    font-weight: bold;
}

.selected:empty:before {
    content: '指定なし';
}

.accordion::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 7px;
    height: 7px;
    margin: -5px 0 0 0;
    border-top: solid 2px #00406F;
    border-right: solid 2px #00406F;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


.accordion.inverted:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 7px;
    height: 7px;
    margin: -3px 0 0 0;
    border-top: solid 2px #00406F;
    border-right: solid 2px #00406F;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.searchBox {
    display: none;
}

.itemTitle {
    font-size: 11px;
    line-height: 3;
    color: #00406F;
    font-weight: bold;
}

.iconsGenre::before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    /*忘れずに！*/
    width: 15px;
    /*画像の幅*/
    height: 15px;
    /*画像の高さ*/
    background-image: url(../images/icon01.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 4px;
}

.iconsPlace::before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    /*忘れずに！*/
    width: 15px;
    /*画像の幅*/
    height: 15px;
    /*画像の高さ*/
    background-image: url(../images/icon02.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 4px;

}

.iconsMaker::before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    /*忘れずに！*/
    width: 15px;
    /*画像の幅*/
    height: 15px;
    /*画像の高さ*/
    background-image: url(../images/icon03.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 4px;
}

.submitBtn {
    font-size: 12px;
    padding: 10px;
    margin-bottom: none;
}

#headerSearchBtn {
    background-color: transparent;
    padding: 0;
    margin: 0;
    color: none;
    box-shadow: none;
}


.resetOption {
    background-color: white;
    color: black;
}

.robotList {
    background-color: white;
    padding: 30px;
    font-size: 12px;
    clear: both;
}


.robotList img {
    width: 120px;
    float: left;
    margin-right: 20px;
}

.robotInfo {
    float: left;
    width: 370px;
}

.specLayouts {
    display: -webkit-flex;
    display: flex;
    width: 370px;
    flex-flow: row wrap;
}

.specLayouts a {
    margin-left: 10px;
}

.specFunction {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.specLocation {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.specRelease {
    width: 33%;
}

.specTarget {
    width: 33%;
}

.specStates {
    width: 33%;
}

.priceInfo {
    text-align: right;
    right: 30px;
    position: absolute;
}

.box {
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
}

.priceLarge {
    color: #00406F;
    margin-left: 15px;
    line-height: 1;
    margin-right: 5px;
    font-size: 20px;
    font-weight: bold;
}

.banner { display:none; }

.priceOption {
    margin-bottom: 5px;
}

.productName {
    font-size: 24px;
    font-weight: bold;
    color: #00406F;
    line-height: 1.5;
}

.productName a {
    color: #00406F;
    margin: auto 0;
}

.companyName {
    font-size: 12px;
    font-weight: bold;
    margin: auto;
}

.countryName {
    float: left;
    margin-right: 15px;
    margin: auto 0;
}

.countryName a {
    float: left;
    margin-right: 10px;
}

.moreInfo {
    background-color: #00D148;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 200px;
}

.moreInfo a {
    display: block;
    padding: 10px 15px;
    color: white;

}

.available {
    position: absolute;
    font-size: 10px;
    color: #00D148;
    bottom: 80px;
    right: 30px;
}



.yesOrNo {
    margin-left: 10px;
    color: #00406F;
}


.headerList {
    height: 66px;
    position: relative;
    margin-bottom: 30px;
}

.headerList ul {
    position: absolute;
    right: 0px;
    bottom: 0;
}


.headerList li {
    float: left;
    margin-left: 30px;
    text-align: right;
    color: #00406F;
    font-size: 12px;
    font-weight: bold;
}

.numberOfResult {
    float: left;
    font-size: 12px;
    font-weight: bold;
    color: #00406F;
    bottom: 0;
    position: absolute;
}

.categoryLinks{
    font-size: 12px;
    background-color: white;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
    font-weight: bold;
}

.categoryLinks a{
    display: block;
    padding: 20px;
}

.categoryLinks a:hover{
    background-color: #E2EDFF;
    border-radius: 5px;
}

.categoryLinks p {
    font-size: 12px;
    color: #0083FE;

}

.categoryLinks img {
    float: left;
    width: 20px;
}

.instanceRobot{
    font-size: 10px;
    margin-top: -20px;
}

.mt40{
    margin-top: 40px;
}

.instanceRobot img{
    width: 40px;
}

.items{
    float: left;
    font-size: 10px;
    margin-right: 10px;
    text-align: center;
    color: #00406F;
    font-weight: bold;
}

.heroHeadline{
    padding: 60px 50px 10px 110px;
}

.items p{
    font-size: 10px;
}

.FunctionTxt {
    font-size: 14px;
    font-weight: bold;
    color: #0083FE;
}

.instanceBox{
    background-color: white;
        height: 110px;
    margin-bottom: 30px;
}

.instanceBox:hover{
    background-color: #E2EDFF;
    border-radius: 5px;
}

.instanceBox a {
    
}

.expand{
    display: block;
    padding: 15px;
}

.nonExpand{
    display: block;
    padding: 0;
}

.font10{
        font-size: 10px;
    line-height: 0;
    color: #00406F;
}

.hoverlinks a:hover {
  color: #fff;
  background-color: #2ecc71;
}

.tagText {
    font-size: 11px;
    width: 150px;
    color: #010101;
}

.English {
    font-size: 10px;
    color: #8bb7ff;
}

.leftCol{
    float: left;
    margin-right: 15px;
}

.stat img {
     width: 50px;
    height: 50px;
    margin-top: 15px;
    margin-left: 15px;
}

.emphasis {
    font-size: 30px;
    margin-right: 5px;
    line-height: 0;
}

.accordion {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 15px;
}

.drawerContents {
    border-top: none;
    display: none;
    max-height: 200px;
    overflow: scroll;
}

.checkbox {
    position: relative;
}

.numbers {
    float: right;
    color: #00406F;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    right: 3px;
    top: 3px;
}


.childElements {
    margin-left: 20px;
}

.checkbox-input {
    display: none;
}

.checkbox-parts {
    padding-left: 20px;
    position: relative;
    margin-right: 20px;
    font-size: 13px;

}

.checkbox-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    /*画像の幅*/
    height: 15px;
    /*画像の高さ*/
    background-image: url(../images/check.png);
    background-size: cover;
}

.checkbox-input:checked + .checkbox-parts {
    color: #009a9a;
}

.checkbox-input:checked + .checkbox-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    /*画像の幅*/
    height: 15px;
    /*画像の高さ*/
    background-image: url(../images/checked.png);
    background-size: cover;
}

.logo {
    display: block;
    position: relative;
    width: 215px;
    height: 50px;
    overflow: hidden;
}
.logo::before {
    display: block;
    position: absolute;
    top: 13px;
    left: 0;
    content: "";
    width: 215px;
    height: 50px;
    background: url(../images/robotdatabase.svg) no-repeat;
}

#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-image: url(../images/topBtn.png);
    background-size: cover;
}

#page_top a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
}

#page_top a::before {
    content: '';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}


#nav-drawer {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 90;
    background-image: url(../images/drawerBtn.png);
    background-size: cover;
}


/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 70px;
    height: 70px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    display: block;
    content: '';
    cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 90%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #fff;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
    padding: 20px;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

.switching img {
    width: 100%;
}

.items p.two-lines{
    margin-top:3px;
    line-height: 1.1;
    transform: scale(0.9);
}

p.company-name-long{
    font-size:10px;
}

/*タブレット*/
@media (max-width: 1199px) {
    
     .leftCol{
    margin-right: 10px;
}
        
        .tagText {
    font-size: 10px;
    width: 100px;
}
        
        .items {
    margin-right: 5px;
}
    
    .items-mr0{
        margin-right: 0;
    }
        
        .FunctionTxt {
    font-size: 12px;
}
    
    .searchIconHero {
    background-position: 330px center;
}
.headerSearchBoxHero {
    width: 370px;
}
    
    .instanceBox{
    background-color: white;
        height: 110px;
    margin-bottom: 15px;
}

    #contents {
        max-width: 700px;
        margin: auto;
        float: none;
    }

    .headerList li {
        margin-left: 20px;
    }

    .specLayouts {
        width: 300px;
    }

    .productName {
        width: 300px;
    }

    .specLayouts a {
        margin-right: 10px;
        margin-left: 0;
    }

/*スマートフォン最小*/
    @media (max-width: 767px) {
            .header-main {
        height: 50px;
    }
    .sp-hidden {
        display: none!important;
    }
    .header-logo {
        margin-top: 4px!important;
        height: 50px!important;
    }
    .header-headline-wrap {
        display: none;
    }
    .header-search-box-wrap {
        width: 65%;
        float: right;
        line-height: 50px;
    }
    .header-search-box-icon {
        bottom: 15px;
    }
    .header-search-box {
        width: 100%;
        border-radius: 30px;
        border: none;
        font-size: 12px;
        padding: 5px 15px;
        margin-top: 3px;
    }
    .sp-appear {
        display: block;
    }
    .sp-header-search-box {
        display: none;
        height: 56px;
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0 16px;
        background-color: #c00606;
        z-index: 10;
    }
    .sp-header-main .sp-header-item {
        display: block;
    }
    .sp-header-topics-label {
        letter-spacing: 1px;
    }
    .header-sub {
        height: 40px;
        margin-top: 50px;
    }
    .inner {
        padding: 0 10px;
        height: 56px;
    }
    .category-list {
        width: 100%;
        height: 40px;
    }
    .category-list-item {
        width: 33.3%;
        line-height: 12px;
        font-size: 10px;
        padding: 8px;
        border-left: 1px solid #d6d6d6;
        display: table-cell;
        vertical-align: middle;
    }
    .rdb-header {
        margin-top: 55px;
    }
    .HeaderRight {
        position: absolute;
        margin: 0 auto;
    }
    .headerSearchBox {
        font-size: 12px;
        border: 0;
        padding: 8px 15px;
        color: #000;
    }
    .searchIcon {
        content: '';
        display: inline-block;
        background-repeat: no-repeat;
        background-image: url(../images/icon04w.png);
        background-size: 15px;
        position: absolute;
    }
    .sp-header-DBmain {
        height: 56px;
        background-color: #00406F;
        z-index: 10;
        overflow: hidden;
        position: relative;
    }
    .sp-header-DBmain img {
        width: 220px;
        max-width: 100%;
        vertical-align: middle;
        border: 0;
    }
    .sp-header-item {
        float: right;
        border-left: 1px solid #d08686;
        text-align: center;
        padding: 0 12px;
    }
        .suggestionLink a{
    font-size: 12px;
    
}
        
        .leftCol{
    margin-right: 10px;
}
        
        .tagText {
    font-size: 12px;
    width: 150px;
}
        
        .items {
    margin-right: 10px;
}
        
        
        .FunctionTxt {
            font-size: 14px;}
        
        .heroHeadline{
            padding: 0;
            margin-top: 30px;
            margin-bottom: 0px;
            text-align: center;
}
        
        .heroHeadline img{
            width: 90%;
}
        
        .headerSearchBoxHero{
            width: 90%;
        }
        
        .searchIconHero{
                background-position: 15px center;
    padding-left: 40px;
            
        }
        
        .center{
            text-align: center;
        }
        
        .spTransition {
            text-align: center;
        }
        
        .spTransition img {
            width: 200px;
                margin-bottom: 15px;
        }
        
        .catch {
    margin: 10px 0px 5px 0px;
}

        .HeaderRight {
            position: absolute;
            margin: 0 auto;
        }

        .headerSearchBox {
            font-size: 12px;
            border: 0;
            padding: 8px 15px;
            color: #000;
        }
        
        .suggestionLink{
            margin: 15px 0px 0px 0px;
        }

        .searchIcon {
            content: '';
            display: inline-block;
            background-repeat: no-repeat;
            background-image: url(../images/icon04w.png);
            background-size: 15px;
            position: absolute;
        }

        .sp-header-DBmain {
            height: 56px;
            background-color: #00406F;
            z-index: 10;
            overflow: hidden;
            position: relative;
        }

        .header-logo {
            margin-top: 4px !important;
            height: 50px !important;
            float: left;
            margin: 2px 0 !important;
        }

        .sp-header-DBmain img {
            width: 220px;
            max-width: 100%;
            vertical-align: middle;
            border: 0;
        }

        .sp-header-item {
            float: right;
            text-align: center;
        }

        #contents {
            width: 100%;
            padding: 20px;
        }

        .robotList {
            margin-bottom: 20px;
            font-size: 10px;
        }

        .box {
            padding: 20px;
        }

        .robotList img {
            width: 90px;
            margin-right: 10px;
        }


        .productName {
            font-size: 14px;
            font-weight: bold;
            color: #00406F;
        }
        
        .companyName {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .yesOrNo {
            margin-left: 0;
        }

        .recommend {
            text-align: left;
            padding: 10px;
        }

        .recommend img {
            width: 50px;
            margin-right: 15px;
            float: left;
        }

        .robotInfo {
            float: none;
            width: 100%;
        }

        .priceInfo {
            text-align: left;
            position: static;
            margin: 10px 0px;
        }

        .specLayouts {
            width: 100%;
        }

        .specLayouts a {
            margin-right: 10px;
        }

        .specFunction {
            width: 50%;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .specLocation {
            width: 50%;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .specRelease {
            width: 33%;
            margin-bottom: 15px;
        }

        .specTarget {
            width: 33%;
            margin-bottom: 15px;
        }

        .specStates {
            width: 33%;
            margin-bottom: 15px;
        }

        .priceLarge {
            font-size: 14px;
            margin-left: 0;
            line-height: 1;
        }

        .robotList a {
            margin-left: 0;
        }

        .moreInfo {
            clear: both;
            position: static;
            width: 100%;
        }

        .available {
            position: static;
            text-align: center;
            margin-top: 5px;
        }

        .priceOption {
            margin-bottom: 0;
            float: left;
            margin-right: 20px;
        }

        .headerList {
            height: 25px;
            position: relative;
            margin-bottom: 20px;
        }

        .numberOfResult {
            float: left;
            font-size: 10px;
            font-weight: bold;
            color: #00406F;
            bottom: 0;
            position: absolute;
        }

        .emphasis {
            font-size: 20px;
            margin-right: 3px;
        }


        .currentOrder {
            text-align: right;
            font-size: 10px;
            border-radius: 3px;
            padding-right: 5px;
            color: #00406F;
        }

        .changeOrder {
            color: #00406F;
            margin-top: 5px;
        }

        .currentOrder button {
            color: #00406F !important;
        }

        .currentOrder::after {
            display: block;
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 5px;
            height: 5px;
            border-top: solid 1px #00406F;
            border-right: solid 1px #00406F;
            -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
        }

        #smallModal {
            position: absolute;
            top: 50px;
            background-color: white;
            padding: 10px;
            font-size: 10px;
            width: 110px;
            right: 20px;
            z-index: 50;
            border: solid 1px #00406F;
            border-radius: 3px;
            line-height: 2;
        }

        .js-search-box {
            background-color: #00406F;
            top: 0;
            z-index: 100;
            width: 100%;
            padding: 0px 10px 20px 10px;
        }

        .header-search-box {
            width: 100%;
            border-radius: 30px;
            border: none;
            font-size: 12px;
            padding: 5px 15px;
            margin-top: 3px;
        }

    }
    
@media screen and (max-width: 374px) {
        
        .leftCol{
    margin-right: 10px;
}
        
        .tagText {
    font-size: 10px;
    width: 115px;
}
        
        .items {
    margin-right: 5px;
}
        
        .FunctionTxt {
    font-size: 12px;
}
            
            }