@charset "UTF-8";

/* 共通 */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-style: normal;
    font-weight: normal;
    vertical-align: bottom;
    background: 0 0;
    box-sizing: border-box;
    border-collapse: collapse;
    letter-spacing: .05em;
    font-size: 16px;
    line-height: 1.5em;
    scroll-padding-top: 90px; /* 固定ヘッダの高さ分 */
}

@media only screen and (max-width:767px) {
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,
input,
select,
textarea{
        font-size: 14px;
    }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block
}

ul,
li {
    list-style: none
}

nav li:before {
    content: ""
}

a {
    text-decoration: none;
    color: #000;
    transition: .3s;
}

a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
._word-wrap {
    word-wrap: break-word;
    word-break: break-all;
}
.txt_center{
    text-align: center;
}

.txt_left{
    text-align: left !important;
}

.txt_right{
    text-align: right !important;
}

.txt_bold{
    font-weight: bold;
}
.img_radius{
    border-radius: 10px;
}

html {
    font-size: 62.5%;
    overflow: auto
}

html.is-fixed {
    overflow: hidden
}

/* html,body{
    overflow-x: hidden;
} */

body {
    min-width: 320px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    -webkit-text-size-adjust: 100%
}

form, input, button{
    font-family: 'Noto Sans JP', sans-serif;
}

button{
    font-weight: bold;
}

*:focus {
    outline: none
}

small {
    font-size: .8em;
    vertical-align: baseline
}

img {
    max-width: 100%;
}

.en {
    font-family: 'Roboto', sans-serif !important;
}

.sp {
    display: none;
}

::placeholder {
    color: #D7D7D7
}

.white {
    color: #fff !important;
}

*{
    box-sizing: border-box;
}

.text-blue{
    color: #10218B;
}
.text-white{
    color: #fff;
}
.text-black{
    color: #000;
}
.black-circle-list{
    padding-left: 0.8em;
}
.black-circle-list >li{
    list-style-type: disc;
    margin-left: 0.8em;
}

.white-circle-list{
    padding-left: 0.8em;
}
.white-circle-list >li{
    list-style-type: circle;
    margin-left: 0.8em;
}

.numerals-list{
    padding-left: 0.8em;
}

.numerals-list >li{
    list-style-type:decimal;
    margin-left: 0.8em;
}

.roman-numerals-list{
    padding-left: 0.8em;
}

.roman-numerals-list >li{
    list-style-type:upper-roman;
    margin-left: 0.8em;
}

.square-list{
    padding-left: 0.8em;
}

.square-list >li{
    list-style-type: square;
    margin-left: 0.8em;
}

/* 行の設定 */
.row {
    display: flex;
    flex-wrap: wrap;
}

.row-reverse{
    flex-direction: row-reverse;
}

.row-align-center{
    align-items: center;
}
  
/* カラムの設定 */
.col {
    padding: 10px;
    box-sizing: border-box;
    flex: 1 0 0;
}

.col figure{
    /* margin-bottom: 1em;*/
    text-align: center;
}
  
  /* 12分割システム */
.col-1 { flex: 0 0 8.33%; max-width: 8.33%; }
.col-2 { flex: 0 0 16.66%; max-width: 16.66%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.33%; max-width: 33.33%; }
.col-5 { flex: 0 0 41.66%; max-width: 41.66%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.33%; max-width: 58.33%; }
.col-8 { flex: 0 0 66.66%; max-width: 66.66%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.33%; max-width: 83.33%; }
.col-11 { flex: 0 0 91.66%; max-width: 91.66%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* 2.4カラムの幅設定 */
.col-2-4 {
    flex: 0 0 20%;
    max-width: 20%; /* 12分割で 2.4 = 20% */
}

.table table tbody tr.even td{
    background-color: #FAFAFD;
}

/* アコーディオン */
.accodion-block .acc_tit{
    /*font-size: 20px;
    font-weight: 600;*/
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
    color: #10218B;
    position: relative;
    width: 95%;
}
.accodion-block .accordion{
    display: none;
}
.accodion-block .acc_tit:before,
.accodion-block .acc_tit:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #10218B;
    position: absolute;
    right: -30px;
    top: 12px;
    transition: 0.3s;
}
.accodion-block .acc_tit:after {
    transform: rotate(90deg);
}
.accodion-block .acc_tit.open:after {
    transform: rotate(0deg);
}

/* ボタン */
.common-button a{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #10218B;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 1.5em;
    border: 1px solid #10218B;
    border-radius: 5px;
    text-align: left;
    position: relative;
}
.common-button a:after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.common-button a:hover{
    border: 1px solid #fff;
    color: #fff;
    background: #10218B;
}

.common-button a:hover:after{
    border-color: #fff;
}

.common-button a div,
.common-button a span{
    font-weight: bold;
}

.common-button-mini{
    margin-top: 0.8em;
    max-width: 280px;
}

.common-button-mini a{
    padding: 0.8em 1.5em;
    background-color: #fff;
}

.common-button.two a{
    padding: 0.9em 0.5em;
}

.common-button a:hover .icon img {
    filter: brightness(0) invert(1);
}

hr.border{
    height: 1px;
    background-color: #D9E3EC;
    border: none;
}

.vertical-border{
    position: relative;
    &:after{
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        background-color: #D9E3EC;
        position: absolute;
        top: 0;
        right: 5px;
    }
}

@media only screen and (max-width:768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .row{
        flex-direction: column;
    }
    .col{
        padding-bottom: 0;
    }
    .col figure{
        margin-bottom: 0;
    }
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-2-4{
        width: 100%;
        flex: 0 0 100%;
        max-width: none;
    }
    .vertical-border:after{
        display: none;
    }
}


.inner{
    width: 84%;
    margin: auto;
    /* max-width: 1300px; */
}
.inner_second{
    max-width: 1200px;
    margin: auto;
}
@media only screen and (max-width:1300px) {
    .inner{
        width: 94%;
    }
    .inner_second{
        width: 100%;
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

.view_more{
    margin-top: 1em;
}

.view_more a,
.view_more > span {
    color: #10218B;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width:767px) {
    .view_more{
        margin-top: 0.5em;
    }
    .view_more a,
    .view_more > span {
        font-size: 15px;
    }
}
@media only screen and (max-width:768px) {
    .mL50 {
        margin-left: 3rem !important;
    }
}

.view_more a::after,
.view_more > span::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    margin-left: 5px;
    vertical-align: baseline;
    transform: translateY(-3px) rotate(-45deg);
}

a.disabled{
    pointer-events: none;
    opacity: 0.2;
}

/* ヘッダー */

#header {
    height: 72px;
    background: #fff;
    position: relative;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
}

#header .global_nav a {
    transition: none;
    color: #fff;
    cursor: pointer;
}

#header .inner_wrap{
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #fff;
    position: relative;
    z-index: 999;
}

#header .inner {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header .logo {
    width: 10%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#header .logo img{
    max-width: 120px;
}

#header .menu {
    width: 82.5%;
}

#header .header_links {
    display: flex;
    justify-content: flex-end;
}

#header .header_links a {
    color: #10218B;
    font-size: 1.6rem;
    margin-left: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

#header .header_links a:hover {
    color: #333;
}

#header .header_links a .icon {
    display: inline-block;
    width: 20px;
    margin-right: 6px;
}

#header .header_links a .icon img {
    vertical-align: top;
}

#header .header_links .lang{
    position: relative;
    display: block;
    padding-bottom: 2px;
}

#header .header_links .lang .language_list{
    position: absolute;
    top: 100%;
    left: 15%;
    width: 100%;
    background-color: #10218B;
    border-radius: 5px;
    display: none;
}

/* #header .header_links .lang:hover .language_list{
    display: block;
} */

#header .header_links .lang .language_list li a{
    display: block;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0.7em 0 0.5em 0;
}

#header .header_links .lang .language_list li a:hover{
    text-decoration: underline;
}

#header .global_nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

#header .global_nav > li{
    padding-bottom: 4px;
}

#header .global_nav > li.pb0{
    padding-bottom: 0;
}

#header .global_nav>li>a {
    position: relative;
    z-index: 2;
    color: #333;
    font-size: 1.6rem;
    text-decoration: none;
}

#header .global_nav>li>a:hover {
    color: #10218B;
}

#header .global_nav>li>a.sub {
    padding-right: 20px;
}

#header .global_nav>li:hover>a::before {
    content: '';
    background: #10218B;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 2px);
    top: calc(100% + 5px);
}

#header .global_nav>li:hover>a.sub::before {
    left: calc(50% - 12px);
}

/* #header .global_nav>li>a.sub::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
    transform: rotate(45deg);
} */

#header .global_nav>li>a:hover::after {
    border-right: 1px solid #10218B;
    border-bottom: 1px solid #10218B;
}

#header .sub_nav {
    visibility: hidden;
}
#header .global_nav .sub_nav_wrap .sub_nav.open {
    visibility: visible;
}

#header .global_nav .sub_nav_wrap .sub_nav.open.view_scroll{
    height: 90vh;
    overflow-y: auto;
}

body.view_scroll{
    overflow: hidden;
    height: 100vh;
}

#header .sub_nav_wrap{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #333;
    height: 0;
    transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

#header .sub_nav .sub_inner {
    /* max-width: 1300px; */
    margin: auto;
    padding: 40px 0;
    position: relative;
    width: 84%;
}

@media only screen and (max-width:1300px) {
    #header .sub_nav .sub_inner{
        width: 94%;
    }
}

#header .sub_nav .sub_inner .closeBtn{
    position: absolute;
    right: 0;
    top: 15px;
    z-index: 2;
    width: 30px;
    height: 30px;
    text-decoration: none;
    transition: opacity .2s linear;
    cursor: pointer;
    background: transparent;
    border: none;
}

#header .sub_nav .sub_inner .closeBtn::before,
#header .sub_nav .sub_inner .closeBtn::after{
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    left: 0;
}

#header .sub_nav .sub_inner .closeBtn::before{
    top: 14px;
    transform: rotate(-45deg);
}

#header .sub_nav .sub_inner .closeBtn::after{
    top :14px;
    transform: rotate(45deg);
}

#header .sub_nav .sub_inner .sub_inner_second {
    margin-top: 3em;
}

#header .sub_nav .nav_link_wrapper{
    position: relative;
}

#header .sub_nav .sub_inner::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 25px;
}

#header .sub_nav .nav_link {
    position: absolute;
    z-index: 1;
    right: 40px;
    top: 20px;
    padding-left: 20px;
}

#header .sub_nav .nav_link::before {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
    transform: rotate(-45deg);
}

#header .sub_nav .nav_link a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

#header .sub_nav .nav_ttl {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    padding: 0 18px 16px;
    border-bottom: 1px solid #666;
    margin-bottom: 10px;
}

@media only screen and (max-width:1300px) {
    #header .sub_nav .nav_ttl a{
        font-size: 2.5vw;
    }
}

@media only screen and (max-width:767px) {
    #header .sub_nav .nav_ttl a{
        font-size: 4.5vw;
        font-size: min(4.5vw, 20px);
    }
}

#header .sub_nav .nav_ttl a{
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

#header .sub_nav .nav_ttl a:before{
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
    transform: rotate(-45deg);
}

#header .sub_nav ul {
    width: 100%;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#header .sub_nav ul.products{
    justify-content: space-between;
}

#header .sub_nav ul li {
    margin-top: 20px;
    margin-right: 20px;
    position: relative;
}

#header .sub_nav ul li a{
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

#header .sub_nav ul li a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    position: absolute;
    left: 0;
    top: 8px;
    transform: rotate(-45deg);
}

#header .sub_nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

#header #videoMenuFixed{
    display: none;
}

#header .sub_nav ul.second{
    padding: 0;
}

#header .sub_nav ul.child{
    padding: 0;
    display: block;
}

#header .sub_nav ul.child li::before{
    display: none;
}

#header .sub_nav ul.child li{
    padding-left: 10px;
    padding-right: 20px;
    margin-right: 0;
    margin-top: 2px;
    font-weight: 500;
}

#header .sub_nav ul.child li a{
    font-size: 80%;
}

@media only screen and (max-width:1400px) {
    #header .inner{
        width: 90%;
    }
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    #header .inner {
        padding: 0 10px;
    }
    #header .inner{
        width: 100%;
    }
    #header .logo{
        padding-left: 10px;
    }
    #header .menu {
        width: 80%;
    }
    #header .header_links a {
        font-size: 1.5rem;
    }
    #header .global_nav a {
        font-size: 1.3vw;
    }
    #header .global_nav>li>a {
        font-size: 1.3vw;
    }
    #header .global_nav li a.sub {
        padding-right: 12px;
    }
    /* #header .global_nav li a:hover::before {
        left: calc(50% - 2px);
    } */
    #header .global_nav li a.sub:hover::before {
        left: calc(50% - 10px);
    }
    #header .global_nav li a.sub::after {
        width: 6px;
        height: 6px;
        top: calc(50% - 5px);
    }
}

.table.table-scroll{
    overflow-x: auto;
    display: block;
}
.table.table-scroll table{
    /* 2500px->2000px */
    width: 2000px;
}
.smp_slide{
    overflow:auto !important;
    -webkit-overflow-scrolling: touch;
    border:2px solid #eaeaea;
    margin-top:3px;
    border-radius:4px;
    padding: 0 0px 7px;
}
.smp_slide > table{
    width:940px !important;
    max-width:initial !important;
}

/* テーブルの左列固定 */
.table-x-fix{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-x-fix table,.table-y-fix table{
    border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.table-x-fix table th,.table-x-fix table td,.table-y-fix table th,.table-y-fix table td{
    /*white-space: nowrap;*/
}
.table-x-fix table .sticky,.table-y-fix table .sticky,.sticky-col2 {
  position: sticky;
  top: 0;
  left: 0;
}
.table-x-fix table .sticky,.sticky-col2{
    border-left: none;
  border-right: none;
}
.table-x-fix table .sticky::before/*,.sticky-col2::before*/ {  
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px #D9E3EC solid;
  border-right: 1px #D9E3EC solid;  
    z-index: -1;
}

/* テーブルの上行固定 */
.table-y-fix{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.table-y-fix table .sticky{
    border-top: none;
    border-bottom: none;
}
.table-y-fix table .sticky::before {  
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px #D9E3EC solid;
  border-bottom: 1px #D9E3EC solid;  
    z-index: -1;
}
.table-y-fix table .sticky-col2{
    border-top: none;
    border-bottom: none;
    top:45px;
}
.table-y-fix table .sticky-col2::before{  
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px #D9E3EC solid;
  border-bottom: 1px #D9E3EC solid;  
    z-index: -1;
  border-left: 1px #D9E3EC solid;
  border-right: 1px #D9E3EC solid; 
}
.table.table-height-600{
    max-height: 600px;
}

/* テーブル上下左右固定絶対位置指定 */
.sticky_cross {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  z-index: 1;
}
.sticky_cross::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px #D9E3EC solid;
  border-bottom: 1px #D9E3EC solid;
  border-left: 1px #D9E3EC solid;
  border-right: 1px #D9E3EC solid;
  z-index: -1;
}


@media only screen and (max-width:768px) {
    .table-y-fix table .sticky-col2{
        top:40px;
    }
    .tablesorter-scroller-header .table-sorter{
        margin-right: 20px;
    }
    .table{
        overflow-x: auto;
    }
    #header {
        height: 70px;
    }
    .inner{
        width: 100%;
        padding: 0 4vw;
    }
    #header .inner {
        max-width: 100%;
        height: 70px;
        position: relative;
        width: 100%;
    }
    #header .logo {
        width: 120px;
        height: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #header .sub_nav_wrap{
        position: static;
        height: auto !important;
    }
    #header .sub_nav .sub_inner::before{
        display: none;
    }
    #header .menu a.sub{
        display: none;
    }
    #header .header_links{
        display: none;
    }
    #header .global_nav{
        display: block;
        background-color: #333;
        width: 100vw;
        position: fixed;
        left: 0;
        top: 70px;
        height: calc(100% - 70px);
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: .3s;
    }
    #header .sub_nav .sub_inner{
        padding: 0;
        width: 100%;
    }
    #header .sub_nav{
        opacity: 1;
        visibility: visible;
        position: static;
    }
    #header .global_nav.open{
        opacity: 1;
        visibility: visible;
        transform: translateX(0%);
        z-index: 1000;
    }
    #header .global_nav > li{
        border-top: 1px solid #717171;
        padding-bottom: 0;
    }
    #header .global_nav > li:last-child{
        border-bottom: 1px solid #717171;
    }
    #header .global_nav{
        padding: 8vw 4vw;
    }
    #header .sub_nav .nav_link{
        display: none;
    }
    #header .sub_nav .nav_ttl{
        border-bottom: none;
        font-size: 4vw;
        line-height: 6vw;
    }
    #header .sub_nav .sub_inner .sub_inner_second{
        margin-top: 0;
        border-top: 1px solid #717171;
    }
    #header .sub_nav .sub_inner ul{
        padding: 0 4vw 4vw;
    }
    #header .sub_nav .sub_inner ul{
        display: none;
    }
    #header .sub_nav p .menu_ac {
        width: 14vw;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
    #header .sub_nav p .menu_ac::before {
        content: '';
        width: min(4vw, 18px);
        height: 2px;
        background: #fff;
        position: absolute;
        right: 4vw;
        top: calc(50% - 1px);
    }
    #header .sub_nav p .menu_ac::after {
        content: '';
        width: min(4vw, 18px);;
        height: 2px;
        background: #fff;
        position: absolute;
        right: 4vw;
        top: calc(50% - 1px);
        transform: rotate(90deg);
        transition: .3s;
    }
    #header .sub_nav p.open .menu_ac::after{
        transform: rotate(0);
    }
    #header .global_nav p.nav_ttl {
        position: relative;
        z-index: 0;
        color: #fff;
        font-size: 4.5vw;
        font-size: min(4.5vw, 20px);
        font-weight: 500;
        padding: 16px;
        display: block;
        margin-bottom: 0;
    }
    #header .sub_nav ul li{
        margin: 0;
        padding: 1vw 0 0 0;
    }
    #header .sub_nav ul li a{
        font-size: min(4vw, 18px);
        font-weight: normal;
    }
    #header .sub_nav .sp_gnavi_box{
        line-height: 2;
    }
    #header .sub_nav .sp_gnavi_box a:before{
        top: 15px;
    }
    #header #spLang{
        position: absolute;
        width: 50px;
        top: 0;
        right: 90px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    #header #spLang .language_list{
        position: absolute;
        bottom: 100%;
        background-color: #10218B;
        top: 80%;
        left: -50%;
        width: 200%;
        height: 100%;
    }
    #header #spLang .language_list a{
        color: #fff;
        padding: 0.5em 1em;
        display: block;
        background-color: #10218B;
    }
    #header #spLang a{
        font-size: 90%;
        font-weight: bold;
        position: relative;
    }
    #header #spLang a.arrow{
        padding-right: 1em;
    }
    #header #spLang a.arrow:after{
        content: '';
        display: inline-block;
        width: 1.5vw;
        height: 1.5vw;
        border-right: 1.5px solid #10218B;
        border-bottom: 1.5px solid #10218B;
        transform-origin: center;
        transform: rotate(45deg);
        position: absolute;
        right: 0;
        top: calc(50% - 1vw);
        left: auto;
    }
    #header #spLang .language_list{
        display: none;
    }
    #header #spSearch {
        position: absolute;
        top: 0;
        right: 140px;
        height: 100%;
        display: flex;
        width: 50px;
        justify-content: center;
    }
    #header #spSearch a {
        color: #10218B;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    #header #spSearch a:hover {
        color: #333;
    }
    #header #spSearch a .icon {
        display: inline-block;
        width: 20px;
        margin-right: 6px;
    }
    #header #spSearch a .icon img {
        vertical-align: top;
    }
    #header #spBtn {
        position: absolute;
        right: 0;
        top: 0;
        background: #10218B;
        width: 70px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #header #spBtn span,
    #header #spBtn span:before,
    #header #spBtn span:after {
        content: '';
        display: block;
        height: 2px;
        width: 32px;
        background-color: #ffffff;
        position: absolute;
        transition: .3s;
    }
    #header #spBtn span:before {
        bottom: 12px;
    }
    #header #spBtn span:after {
        top: 12px;
    }
    #header #spBtn.open span {
        background-color: rgba(255, 255, 255, 0);
    }
    #header #spBtn.open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #header #spBtn.open span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #header .sub_nav ul.child li a{
        font-size: 110%;
        margin-bottom: 8px;
    }
    #header #spMenu {
        position: fixed;
        z-index: 99;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100% - 70px);
        background: #333;
        transform: translateX(100%);
        transition: .3s;
        padding: 0;
        overflow: auto;
    }
    #header #spMenu.open {
        transform: translateX(0%);
    }
    #header .menu_inner {
        padding: 8vw 4vw;
    }
    #header .menu_inner .row:last-child {
        border-bottom: 1px solid #717171;
    }
    #header .menu_inner a {
        text-decoration: none;
    }
    #header .menu_inner p {
        font-size: 4vw;
        line-height: 6vw;
        border-top: 1px solid #717171;
        position: relative;
    }
    #header .menu_inner p a {
        position: relative;
        z-index: 0;
        color: #fff;
        font-size: 5.3vw;
        font-weight: 500;
        padding: 5.3vw 4vw;
        display: block;
    }
    #header .menu_inner p .menu_ac {
        width: 14vw;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
    #header .menu_inner p .menu_ac::before {
        content: '';
        width: 4vw;
        height: 2px;
        background: #fff;
        position: absolute;
        right: 4vw;
        top: calc(50% - 1px);
    }
    #header .menu_inner p .menu_ac::after {
        content: '';
        width: 4vw;
        height: 2px;
        background: #fff;
        position: absolute;
        right: 4vw;
        top: calc(50% - 1px);
        transform: rotate(90deg);
        transition: .3s;
    }
    #header .menu_inner p.open .menu_ac::after {
        transform: rotate(0);
    }
    #header .menu_inner .row ul {
        padding: 0 4vw 4vw;
        display: none;
    }
    #header .menu_inner ul li {
        margin-top: auto;
        padding: 2vw 0 2vw 5vw;
        position: relative;
    }
    #header .menu_inner ul li::before {
        content: '';
        border-right: 1.5px solid #fff;
        border-bottom: 1.5px solid #fff;
        position: absolute;
        transform: rotate(-45deg);
        width: 2vw;
        height: 2vw;
        left: 0;
        top: calc(50% - 1.2vw);
    }
    #header .menu_inner ul a {
        font-size: 4.4vw;
        color: #fff;
    }
    #header .sub_nav ul li::before{
        top: 15px;
    }
    #header .sub_nav ul.child {
        padding: 0;
        margin-top: 6px;
    }
    #header .sub_nav ul.child li{
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    #header .sub_nav ul.child li::after{
        top: 0;
    }
}


/* フッター */

#footer {
    background: #333;
    padding: 75px 0 0;
}

#footer .inner {
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 45px;
}

#footer .inner.pb0{
    padding-bottom: 0;
}

#footer .linkdIn .flex{
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
#footer .linkdIn .flex div.microdevices a div {
    font-size: 0.8em;
}

#footer .linkdIn .flex > div{
    background-color: #fff;
    width: 22%;
}

#footer a.blank_link{
    position: relative;
    padding-left: 1.3em;
}

#footer a.blank_link::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(/sensing/assets/img/common/icon_link_2_black.svg);
    transform-origin: center;
    position: absolute;
    right: 16px;
    top: calc(50% - 7px);
    left: auto;
}

#footer .linkdIn a{
    background-color: #fff;
    padding: 10px 25px 10px 15px;
    font-size: 95%;
    display: flex;
    align-items: center;
    min-height: 73px;
}

#footer .linkdIn span.icon{
    width: 30px;
    display: block;
    margin-right: 8px;
}

#footer .sensing_system span.icon{
    width: 46px;
}

#footer .semicon span.icon{
    width: 36px;
}

#footer .sensing_system a,
#footer .semicon a{
    padding-right: 35px;
}

#footer .sensing_system span.icon img,
#footer .semicon span.icon img{
    margin-right: 0;
}

#footer .logo {
    width: 13.8%;
}

#footer .contents {
    width: 100%;
}

#footer .contents a:hover {
    color: #fff;
    text-decoration: underline;
}

#footer .footer_nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

#footer .footer_nav .row {
    width: 25%;
}

#footer .footer_nav .row .row_second{
    margin-top: 1em;
}

#footer .footer_nav p a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

#footer .footer_nav ul{
    margin-top: 10px;
}

#footer .footer_nav ul li {
    margin-bottom: 6px;
    padding-left: 25px;
    position: relative;
}

#footer .footer_nav ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    position: absolute;
    left: 5px;
    top: 10px;
    transform: rotate(-45deg);
}

#footer .footer_nav ul a {
    font-size: 13px;
    color: #aaa;
}

#footer .footer_link {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

#footer ul.footer_link li{
    margin-bottom: 16px;
    padding-left: 0;
    margin-top: 0;
}

#footer .footer_link li:before{
    display: none;
}

#footer .footer_link li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

#footer .copyright {
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 10px;
    text-align: center;
}
#footer .copyright a.blank-after{
    color: #000;
}
#footer .copyright a.blank-after::after{
    background-image: url(/sensing/assets/img/common/icon_link_2_black.svg);
}


#footer .copyright .inner{
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
}

#footer .copyright .inner > div{
    width: 50%;
    text-align: left;
}

#footer .copyright .inner > div span.block{
    display: inline-block;
}

#footer .copyright .inner p,
#footer .copyright .inner a,
#footer .copyright .inner p span{
    font-size: 1.3rem;
}

.page_top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #333;
    position: fixed;
    bottom: 3%;
    right: 5%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: #fff;
    opacity: 0;
    transition: .3s;
}

.page_top.view{
    opacity: 1;
}

.page_top::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: translateY(2px) rotate(-135deg);
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    #footer .inner {
        padding: 0 10px 75px;
        margin-bottom: 2em;
    }
    #footer .footer_nav .row {
        width: 25%;
    }
    #footer .footer_nav p a {
        font-size: 14px;
    }
    #footer .footer_nav ul li {
        padding-left: 15px;
    }
    #footer .footer_nav ul a {
        font-size: 13px;
    }
    #footer .footer_nav ul li::before {
        left: 0;
    }
    #footer .footer_link li a {
        font-size: 14px;
    }
    #footer .footer_nav{
        margin-bottom: 0;
    }
    #footer .footer_nav ul li {
        margin-bottom: 0;
    }
}

@media only screen and (min-width:769px)and (max-width:1400px) {
    #footer .page_top {
        left: auto;
        right: 10px;
    }
}

@media only screen and (max-width:768px) {
    #footer {
        padding: 8vw 0 0;
    }
    #footer .inner {
        max-width: 100%;
        padding: 0 4vw;
        display: block;
    }
    #footer .logo {
        width: 28.2vw;
        margin-bottom: 10vw;
    }
    #footer .contents {
        width: 100%;
        padding-bottom: 4vw;
    }
    #footer .linkdIn{
        margin-bottom: 4vw;
    }
    #footer .footer_nav {
        display: block;
        margin-bottom: 0;
    }
    #footer .footer_nav .row {
        width: 100%;
    }
    #footer .footer_nav p {
        font-size: 4vw;
        line-height: 6vw;
        border-top: 1px solid #717171;
        position: relative;
    }
    #footer .footer_nav p .menu_ac {
        width: 63px;
        height: 63px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
    #footer .footer_nav p .menu_ac::before {
        content: '';
        width: 4vw;
        width: min(4vw, 16px);
        height: 2px;
        background: #fff;
        position: absolute;
        right: 4vw;
        top: 50%;
    }
    #footer .footer_nav p .menu_ac::after {
        content: '';
        width: min(4vw, 16px);
        height: 2px;
        background: #fff;
        position: absolute;
        right: 4vw;
        transform: rotate(90deg);
        top: 50%;
        transition: .3s;
    }
    #footer .footer_nav p.open .menu_ac::after {
        transform: rotate(0);
    }
    #footer .footer_nav p a {
        position: relative;
        z-index: 0;
        font-size: 4vw;
        font-size: min(4vw, 20px);
        padding: min(4vw, 16px);
        display: block;
    }
    #footer .footer_nav .row ul {
        padding: 0 4vw 4vw;
        display: none;
    }
    #footer .footer_nav .row ul{
        margin-top: 0;
    }
    #footer .footer_nav ul li {
        margin-top: auto;
        padding: 6px 0 0 20px;
        position: relative;
    }
    #footer .footer_nav ul li::before {
        content: '';
        width: min(2vw, 8px);
        height: min(2vw, 8px);
        left: 0;
        top: 50%;
    }
    #footer .footer_nav ul a {
        font-size: min(4vw, 16px);
    }
    #footer .footer_link {
        display: block;
        border-bottom: 1px solid #717171;
    }
    #footer .footer_link li {
        margin-right: auto;
        border-top: 1px solid #717171;
    }
    #footer .footer_link li a {
        font-size: 4vw;
        padding: 4vw;
        display: block;
    }
    #footer .copyright {
        font-size: 3.7vw;
        padding: .5em;
    }
    #footer .page_top {
        width: 12vw;
        height: 12vw;
        bottom: auto;
        left: auto;
        top: -14vw;
        right: 4vw;
    }
    #footer .page_top::after {
        width: 2.2vw;
        height: 2.2vw;
        transform: translateY(0.5vw) rotate(-135deg);
    }
    #footer .footer_nav .row .row_second{
        margin-top: 0;
    }
    #footer .copyright .inner p{
        padding: 0.5em 0;
    }
    #footer .copyright .inner{
        flex-direction: column;
    }
    #footer .copyright .inner > div{
        width: 100%;
        text-align: center;
    }
    #footer .linkdIn .flex{
        flex-direction: column;
        align-items: flex-start;
    }
    #footer .linkdIn .flex > div{
        width: 100%;
    }
    #footer .linkdIn .flex > div a{
        width: 100%;
    }

    .common-button-mini{
        max-width: none;
    }
}

/* 在庫検索ポップアップ用CSS ここから */
.js-modal {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: fixed;
    /* 画面に固定するために指定 */
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
  
  .modal {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    min-width: 1016px;
    width: calc(90vw + 16px);
    opacity: 0;
    visibility: hidden;
  }
  
  .modal__inner {
    margin-top: 20vh;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 13px;
    display: block;
    padding: 28px 8px 18px;
    height: auto;
  }
  
  .modal__content {
    height: 60vh;
    min-width: 1000px;
    width: 90vw;
  }
  
  .modal__button-wrap {
    position: absolute;
    right: 5px;
    top: 5px;
    display: inline-flex;
  }
  
  .close-button {
    position: relative;
    width: 19px;
    height: 19px;
    background: #000;
    border-radius: 50%;
    padding: 0;
    border: transparent;
    cursor: pointer;
  }
  
  .close-button span {
    width: 15px;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: absolute;
    left: calc(50% - 8px);
    top: 50%;
  }
  
  .close-button span:nth-child(1) {
    transform: rotate(45deg) translate(-1px, -1px);
  }
  
  .close-button span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
  }
  
  .layer.is-open {
    z-index: 999;
    opacity: 1;
    visibility: visible;
  }
  
  .layer.is-open .modal {
    opacity: 1;
    visibility: visible;
  }
  

/* パンくず */

.breadcrumbs {
    margin: auto auto 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 84%;
    /* max-width: 1300px; */
}

.breadcrumbs li span {
    margin-left: 10px;
}
.breadcrumbs li:first-child span{
    margin-left: 0;
}
.breadcrumbs li > span {
    position: relative;
    color: #10218B;
    /* font-size: 14px;
    color: #D7D7D7; */
}

.breadcrumbs li a {
    color: #10218B;
    position: relative;
    padding-right: 10px;
}

.breadcrumbs li a::after {
    content: '';
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    position: absolute;
    transform: rotate(-45deg);
    width: 4px;
    height: 4px;
    right: 0;
    top: calc(50% - 2px);
}

.breadcrumbs li a:first-child {
    margin-left: 0;
}

@media only screen and (max-width:768px) {
    .breadcrumbs {
        margin: auto 0 4vw;
        padding: 0 4vw;
        width: 100%;
    }
    .breadcrumbs li > span{
        font-size: 12px;
    }
    .breadcrumbs span {
        margin-left: 0;
        margin-right: 2vw;
        padding-right: 2vw;
        font-size: 3.7vw;
        margin-bottom: 1vw;
    }
    .breadcrumbs li a::after{
        top: 50%
    }
    .breadcrumbs a,
    .breadcrumbs span {
        font-size: 12px;
        margin-right: 1vw;
        padding-right: 1vw;
    }
}

#videoMenuFixed{
    display: flex;
    border-top: 1px #D9E3EC solid;
    border-bottom: 1px #D9E3EC solid;
}

#productIndexFixed{
    display: none;
}

#productIndexFixed li,
#videoMenuFixed li{
    width: 16.6666666666%;
    border-right: 1px #fff solid;
    background-color: #D9E3EC;
}

#productIndexFixed li:last-child,
#videoMenuFixed li:last-child{
    border-right: none;
}

#productIndexFixed li a,
#videoMenuFixed li a{
    color: #10218B;
    display: block;
    padding: 16px 0 16px 24px;
    position: relative;
    font-weight: bold;
}

#productIndexFixed li a:after,
#videoMenuFixed li a:after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

@media only screen and (max-width:1320px) and (min-width: 769px) {
    #productIndexFixed li a{
        font-size: 1.3vw;
        padding-left: 1vw;
    }
    #tableOfContents ol li a,
    #tableOfContents ol li a p,
    #tableOfContents02 ol li a,
    #tableOfContents02 ol li a p{
        font-size: 1.3vw;
        line-height: 1.1;
    }
    #column_two .fixed_menu #tableOfContents ol li a, #column_two .fixed_menu #tableOfContents02 ol li a{
        padding: 0.5em 1.6em 0.5em 1em;
    }
}

/* コンテンツ共通 */

body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
}

#main {
    padding-top: 72px;
}

@media only screen and (max-width:768px) {
    #main {
        padding-top: 70px;
    }
}

.gray{
    background-color: #F2F6F6;
}

.bg-blue{
    background-color: #10218B;
    color: #fff;
}

h2,h3{
    padding-top: 20px;
}

.hideImp{
    transform: translateY(-250%) !important;
}

/* 製品検索 */

#topSearch {
    margin: auto auto 80px;
    background: #F2F6F6;
    padding: 90px 50px 50px;
}

#topSearch h2 {
    color: #10218B;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: -120px;
    margin-bottom: 30px;
    padding: 0;
}

#topSearch h2 .en {
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
    display: block;
}

#topSearch h3 {
    color: #10218B;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 30px;
    padding-top: 30px;
    border: none;
}

#topSearch h3.ttl_height{
    height: 64px;
}

#topSearch .search_box h3 {
    border-top: none;
    padding-top: 0;
}

#topSearch h3:first-child {
    margin-top: auto;
}

#topSearch h3 .icon {
    vertical-align: middle;
    display: inline-block;
    width: 30px;
    margin-right: 10px;
}

#topSearch h3 .icon img {
    width: 100%;
    vertical-align: baseline;
}

#topSearch .keywordSearch {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

#topSearch .keywordSearch .search_btn {
    width: 40%;
}

#topSearch .keywordSearch .search_box {
    width: 57%;
    border-left: 1px solid #D9E3EC;
    padding-left: 3%;
}

#topSearch .search_box #search {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
}

.mf_finder_searchBox{
    width: 100%;
}

.mf_finder_searchBox_items{
    padding: 0;
}

#topSearch .search_box #search input[type="text"] {
    background-color: #fff;
    border: 1px solid #D9E3EC;
    border-radius: 5px 0 0 5px;
    font-size: 15px;
    padding: 0.7em 1em;
}

#topSearch .search_box #search button {
    width: 95px;
    border: none;
    background-color: #10218B;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 0.7em 0;
    cursor: pointer;
}

#topSearch .search_box #search button .icon {
    vertical-align: middle;
    display: inline-block;
    width: 15px;
    margin-right: 5px;
}

#topSearch .search_box #search button .icon img {
    width: 100%;
    vertical-align: baseline;
    filter: brightness(0) invert(1);
}

#topSearch .search_box .keyword {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#topSearch .search_box .keyword a {
    background-color: #fff;
    color: #10218B;
    font-size: 14px;
    line-height: 1em;
    border: 1px solid #10218B;
    border-radius: 2em;
    padding: .7em 1.8em .7em 1em;
    margin-right: 10px;
    margin-top: 10px;
    position: relative;
    text-decoration: none;
}

#topSearch .search_box .keyword a:hover {
    color: #fff;
    background: #10218B;
}

#topSearch .search_box .keyword a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 3px);
}

#topSearch .search_box .keyword a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}

.search_list {
    display: flex;
    justify-content: space-between;
}

.search_list li {
    width: 48%;
    margin-left: 1.6%;
}

.search_list li.top_btn05{
    width: 100%;
}

.search_list li:first-child {
    margin-left: 0;
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    #topSearch {
        padding: 90px 28px 50px;
    }
    #topSearch .inner .search_btn {
        width: 38%;
    }
    #topSearch .inner .search_box {
        width: 58%;
    }
    .search_list {
        display: flex;
        justify-content: flex-start;
    }
    .search_list li {
        width: 33%;
        margin-left: 1.6%;
    }
    .search_list li:first-child {
        margin-left: 0;
    }
    #topSearch h2 .en{
        font-size: 4.2vw;
    }
}

@media only screen and (max-width:768px) {
    #topSearch {
        max-width: 100%;
        margin: auto 0 6vw;
        padding: 16vw 4vw 0;
        padding-top: 18vw;
    }
    #topSearch h2 {
        font-size: 4vw;
        margin-top: -22vw;
        margin-bottom: 4vw;
    }
    #topSearch h2 .en {
        font-size: 12vw;
        font-size: min(12vw, 60px);
    }
    #topSearch h3 {
        font-size: 5.3vw;
        margin-bottom: auto;
        margin-top: auto;
        padding: min(6vw, 20px) 0;
        position: relative;
        font-size: min(5.3vw, 20px);
    }
    #topSearch .search_box h3 {
        padding: min(6vw, 20px) 0 3vw;
        border-top: 1px solid #D9E3EC;
    }
    #topSearch h3 .icon {
        width: min(7vw, 30px);
        margin-right: 2vw;
    }
    #topSearch .inner {
        display: block;
        margin-bottom: auto;
    }
    #topSearch .inner .search_btn {
        width: 100%;
        margin-bottom: 6vw;
    }
    #topSearch .inner .search_box {
        width: 100%;
        border-left: none;
        padding-left: 0;
    }
    #topSearch .inner .search_form {
        padding-bottom: 6vw;
    }
    #topSearch .search_box #search {
        margin-bottom: 3vw;
    }
    #topSearch .search_box #search input[type="text"] {
        border-radius: 1.4vw 0 0 1.4vw;
        font-size: 3.7vw;
        padding: 1em;
    }
    #topSearch .search_box #search ::placeholder {
        font-size: 2.4vw;
    }
    #topSearch .search_box #search button {
        width: 20vw;
        border-radius: 0 min(2vw, 16px) min(2vw, 16px) 0;
        font-size: min(3.7vw, 16px);
    }
    #topSearch .search_box #search button .icon {
        width: 4vw;
        margin-right: 2vw;
    }
    #topSearch .search_box .keyword a {
        font-size: 3.7vw;
        font-size: min(3.7vw, 16px);
        border-radius: 2em;
        padding: .8em 1.8em .8em 1em;
        margin-right: 2.5vw;
        margin-top: 2.5vw;
    }
    #topSearch .search_box .keyword a::after {
        /* width: 1.8vw;
        height: 1.8vw;
        top: calc(50% - 1vw); */
    }
    .search_list {
        /* display: none; */
        padding-bottom: 6vw;
        flex-direction: column;
    }
    .search_list li {
        width: 100%;
        margin-left: auto;
        margin-top: 3vw;
        margin-bottom: 0 !important;
    }
    .search_list li:first-child {
        margin-left: auto;
        margin-top: auto;
    }
    #topSearch .menu_ac {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
    #topSearch .menu_ac::before {
        content: '';
        width: min(4vw, 18px);
        height: 2px;
        background: #10218B;
        position: absolute;
        right: 0;
        top: calc(50% - 1px);
    }
    #topSearch .menu_ac::after {
        content: '';
        width: min(4vw, 18px);
        height: 2px;
        background: #10218B;
        position: absolute;
        right: 0;
        top: calc(50% - 1px);
        transform: rotate(90deg);
        transition: .3s;
    }
    #topSearch .open .menu_ac::after {
        transform: rotate(0);
    }
    #topSearch .top_btn01 a {
        padding: 1.2em 2em 1.2em 1em;
        justify-content: center;
        font-size: 4vw;
        font-size: min(4.0vw, 18px);
    }
    #topSearch .top_btn01 a .icon {
        margin-right: 4vw;
    }
    #topSearch .keywordSearch{
        flex-direction: column;
        margin-bottom: 0;
    }
    #topSearch .keywordSearch > div{
        width: 100% !important;
    }
    #topSearch .keywordSearch .search_box{
        border: none;
        padding-left: 0;
    }
}


/* 見出し */

.top_ttl01 {
    color: #10218B;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 30px;
}

.top_ttl01 .en {
    display: block;
    font-size: 60px;
    font-weight: 700;
    line-height: 1em;
}
.top_ttl01 .en:lang(zh-Hans) {
    font-size: 40px;
}

@media only screen and (max-width:1300px) {
    .top_ttl01 .en {
        font-size: 4.0vw;
    }
    .top_ttl01 .en:lang(zh-Hans) {
        font-size: 3.0vw;
    }
}

@media only screen and (max-width:768px) {
    .top_ttl01 {
        font-size: 4.0vw;
        margin-bottom: 8vw;
        font-size: min(4vw, 20px);
    }
    .top_ttl01 .en {
        font-size: 10vw;
        font-size: min(10vw, 60px);
    }
}


/* ボタン */
.top_btn01 {
    margin-bottom: 16px;
}

.top_btn01 a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #10218B;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 1.5em;
    border: 1px solid #10218B;
    border-radius: 5px;
    text-align: left;
    position: relative;
}

.top_btn01.two a {
    padding: 0.9em 0.5em;
}

.top_btn01 a span.small{
    font-size: 12px;
    display: inline-block;
    padding-top: 5px;
}

.btn_none a{
    color: #898989;
    border-color: #898989;
}

#topSearch .flex.column2 .top_btn01{
    margin-bottom: 0;
    height: 100%;
}

#topSearch .flex.column2 .top_btn01 a{
    padding: 1em 0.5em;
    height: 100%;
}

.flex.imgFifty img{
    max-width: 100% !important;
}

.top_btn01 a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.btn_none a::after{
    border-color: #898989;
}

.top_btn01 a:hover {
    border: 1px solid #fff;
    color: #fff;
    background: #10218B;
}

.top_btn01 a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}

.top_btn01 a .icon {
    display: flex;
    vertical-align: middle;
    width: 30px;
    margin-right: 10px;
}

.top_btn01 a .icon img {
    width: 100%;
    vertical-align: baseline;
}

.top_btn01 a:hover .icon img {
    filter: brightness(0) invert(1);
}

.btn_none a:hover{
    background-color: #898989;
    color: #fff;
}

.top_btn02 a {
    display: flex;
    height: 75px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #10218B;
    font-size: 16px;
    line-height: 1em;
    font-weight: 600;
    text-decoration: none;
    padding: 0 1em;
    border: 1px solid #10218B;
    border-radius: 5px;
    position: relative;
}

.top_btn02 a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.top_btn02 a:hover {
    color: #fff;
    background: #10218B;
}

.top_btn02 a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}

.top_btn02 a .icon {
    display: flex;
    vertical-align: middle;
    width: 60px;
    margin-right: 10px;
}

.top_btn02 a .icon img {
    width: 100%;
    vertical-align: baseline;
}

.top_btn03 a {
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #10218B;
    font-size: 15px;
    line-height: 2em;
    font-weight: 600;
    text-decoration: none;
    padding: 0 1em;
    border: 1px solid #10218B;
    border-radius: 5px;
    position: relative;
}

.top_btn03 a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.top_btn03 a:hover {
    color: #fff;
    background: #10218B;
}

.top_btn03 a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}

.top_btn03 a .icon {
    display: flex;
    vertical-align: baseline;
    width: 30px;
    margin-right: 10px;
}

.top_btn03 a .icon img {
    width: 100%;
    vertical-align: middle;
}

.top_btn03 a:hover .icon img {
    filter: brightness(0) invert(1);
}

.top_btn04 {
    margin: auto;
    max-width: 345px;
}

.top_btn04 a {
    display: block;
    background: #fff;
    color: #10218B;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 1em;
    border: 1px solid #10218B;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.top_btn04 a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.top_btn04 a:hover {
    color: #fff;
    background: #10218B;
}

.top_btn04 a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}
/*----------------------------------------202411追加　miyazawa　ABテスト用ボタン　ここから--------------------------------------------------------*/	
.top_btn10 {
    margin: auto;
    max-width: 100%;
}

.top_btn10 a {
    display: block;
    background: #f37a1f;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 1em;
    border: 1px solid #f37a1f;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.top_btn10 a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.top_btn10 a:hover {
    color: #fff;
    background: #f8b96d;
}

.top_btn10 a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}
.wrap {
  display:flex;
}

.top_btn06 {
    margin: auto;
    max-width: 100%;
	height:100px;
}

.top_btn06 a {
    display: block;
    /*flex-wrap: wrap;
    justify-content: center;
    align-items: center;*/
	height:80px;
    background: #3366cc;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 1em;
    border: 1px solid #3366cc;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.top_btn06 a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1em;
    top: calc(50% - 4px);
}

.top_btn06 a:hover {
    color: #fff;
    background: #3399ff;
}

.top_btn06 a:hover::after {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}
/*----------------------------------------202411追加　miyazawa　ABテスト用ボタン　ここまで--------------------------------------------------------*/	

@media only screen and (min-width:769px)and (max-width:1300px) {
    .top_btn01 a {
        font-size: 1.4vw;
        letter-spacing: normal;
    }
    .top_btn01 a .icon,
    .top_btn02 a .icon,
    .top_btn03 a .icon {
        width: 24px;
        min-width: 24px;
    }
    .top_btn02 a {
        font-size: 14px;
        padding: 0 .7em;
    }
    .top_btn02 a .icon {
        width: 24px;
        margin-right: 5px;
    }
    .top_btn03 a {
        font-size: 14px;
        line-height: 2em;
        padding: 0 .7em;
    }
    .top_btn03 a .icon {
        width: 24px;
        margin-right: 5px;
    }
/*----------------------------------------202411追加　miyazawa　ABテスト用ボタン　ここから--------------------------------------------------------*/	
    .top_btn10 a {
        font-size: 14px;
        line-height: 2em;
        padding: 0 .7em;
    }
    .top_btn10 a .icon {
        width: 24px;
        margin-right: 5px;
    }
    .top_btn06 a {
		height:80px;
        font-size: 14px;
        line-height: 1.5em;
        padding: .7em .7em;
    }
    .top_btn06 a .icon {
        width: 24px;
        margin-right: 5px;
    }
/*----------------------------------------202411追加　miyazawa　ABテスト用ボタン　　ここまで--------------------------------------------------------*/	
}

@media only screen and (max-width:768px) {
    .top_btn01 {
        margin-bottom: 3vw;
    }
    .top_btn01 a {
        font-size: 4.0vw;
        border-radius: 1.4vw;
        padding: 1.0em 2em 1.0em 1em;
        font-size: min(4.0vw, 18px);
    }
    .top_btn01 a::after {
        width: 1.0vw;
        height: 1.0vw;
        top: calc(50% - 1vw);
    }
    .top_btn01 a .icon {
        width: min(7vw, 30px);
        margin-right: 2vw;
    }
    .top_btn02 a {
        height: 18vw;
        font-size: 4vw;
        border-radius: 1.4vw;
    }
    .top_btn02 a::after {
        width: 1.0vw;
        height: 1.0vw;
        top: calc(50% - 1vw);
    }
    .top_btn02 a .icon {
        width: 16vw;
        margin-right: 3vw;
    }
    .top_btn03 a {
        /*height: 14vw;*/
        font-size: 4.0vw;
        font-size: min(4.0vw, 20px);
        border-radius: 1.4vw;
        padding: 0 1em;
    }
    .top_btn03 a::after {
        width: 1.0vw;
        height: 1.0vw;
        top: calc(50% - 1vw);
    }
    .top_btn03 a .icon {
        width: min(7vw, 30px);
        margin-right: 4vw;
    }
    .top_btn04 {
        margin: auto;
        max-width: 345px;
    }
    .top_btn04 a {
        font-size: 4vw;
        border-radius: 1.4vw;
    }
    .top_btn04 a::after {
        width: 2vw;
        height: 2vw;
        top: calc(50% - 1vw);
    }
/*----------------------------------------202411追加　miyazawa　ABテスト用ボタン　ここから--------------------------------------------------------*/	
    .top_btn10 {
        margin: auto;
        max-width: 100%;
    }
    .top_btn10 a {
        font-size: 3vw;
        border-radius: 1.4vw;
    }
    .top_btn10 a::after {
        width: 2vw;
        height: 2vw;
        top: calc(50% - 1vw);
    }
    .top_btn06 {
        margin: auto;
        max-width: 100%;
    }
    .top_btn06 a {
		height:100px;
        font-size: 2vw;
        border-radius: 1.4vw;
    }
    .top_btn06 a::after {
        width: 2vw;
        height: 1.5vw;
        top: calc(50% - 1vw);
    }
}
/*----------------------------------------202411追加　miyazawa　ABテスト用ボタン　ここまで--------------------------------------------------------*/	

/* 技術コラム */
#topColumn {
    margin: auto auto 80px;
}

#topColumn h2{
    text-align: left;
}

#topColumn .top_column_list {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 60px;
}

#topColumn .top_column_list li.col {
    width: 23.8%;
    margin-left: 1.6%;
    display: flex;
}

#topColumn .top_column_list li:first-child {
    margin-left: 0;
}

#topColumn .top_column_list li.col a {
    color: #10218B;
    display: flex;
    flex-direction: column;
}

#topColumn .top_column_list li.col a:hover {
    opacity: .7;
}

#topColumn .top_column_list li.col .date {
    margin: 1em 0 0;
    color: #666666;
    font-size: 14px;
    line-height: 1em;
}

#topColumn .top_column_list li.col .image img{
    width: 100%;
}

#topColumn .top_column_list li.col .title {
    font-size: 20px;
    font-weight: 500;
    padding-top: 10px;
}

#topColumn .top_column_list li.col .text {
    color: #333;
    font-size: 16px;
    line-height: 2em;
    margin-top: .5em;
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    #topColumn .inner {
        padding: 0 10px;
    }
}

@media only screen and (max-width:768px) {
    #topColumn {
        margin: auto auto 20vw;
    }
    #topColumn .inner {
        max-width: 100%;
        margin: auto;
    }
    #topColumn h2 {
        padding: 0 4vw;
    }
    #topColumn .top_column_list {
        display: block;
        margin-bottom: 16vw;
    }
    #topColumn .top_column_list li.col {
        width: 70vw;
        margin-left: 0;
        display: block;
    }
    #topColumn .top_column_list li.col:first-child {
        margin-left: 0;
    }
    #topColumn .top_column_list li.col a {
        display: block;
        padding: 0 0 0 4vw;
    }
    #topColumn .top_column_list li.col .image img {
        display: block;
        width: 100%;
    }
    #topColumn .top_column_list li.col .date {
        display: block;
        margin: 1em 0;
        font-size: 3.7vw;
    }
    #topColumn .top_column_list li.col .title {
        display: block;
        font-size: 4vw;
        font-size: min(4vw, 16px);
        height: auto;
    }
    #topColumn .top_column_list li.col .text {
        display: block;
        font-size: 4vw;
        margin-top: .5em;
        height: auto;
    }
    #topColumn .slick-dots {
        bottom: -6vw;
    }
    #topColumn .slick-dots li {
        width: 14vw;
        height: 2px;
        padding: 1vw 0;
        margin: 0 1vw;
    }
    #topColumn .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 14vw;
        height: 2px;
        padding: 0;
        background: #D7D7D7;
    }
    #topColumn .slick-dots li.slick-active button {
        background: #10218B;
    }
    #topColumn .slick-dots li button:before {
        display: none;
    }
}


/* サポート */

#topLinks,
#topSupport,
#productList {
    margin: auto auto 0px;
    padding: 80px 0;
    background: #10218B;
}
#topLinks,
#topSupport {
    margin: auto auto 80px;
}

@media only screen and (max-width:1300px) {
    #topLinks,
    #topSupport{
        padding: 4em 0;
    }
}

@media only screen and (max-width:767px) {
    #topLinks,
    #topSupport {
        margin-bottom: 40px;
        padding: 2em 0;
    }
}

.top_list01 {
    display: flex;
    /*justify-content: flex-start;*/
    justify-content: space-between;
    flex-wrap: wrap;
}

.top_list01 li {
    width: 32.5%;
    margin-left: 1.25%;
    margin-bottom: 0;
}

.top_list01 li:nth-child(3n+1) {
    margin-left: 0;
}

.product_list .top_list01 li {
    width: 23.5%;
    margin-left: 1.25%;
}

.product_list .top_list01 li:nth-child(4n+1) {
    margin-left: 0;
}

#topSupport .top_ttl01 {
    margin-bottom: auto;
    
}

#topSupport .top_list01{
    margin-top: 15px;
}

#topSupport .top_list01 li {
    margin-top: 15px;
}

#topLinks .top_btn01 a,
#productList .top_btn01 a{
    text-align: center;
    font-weight: bold;
    height: 100px;
}

#productList .top_btn01 a{
    font-size: 18px;
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    #topLinks,
    #topSupport {
        padding: 80px 10px;
    }
    #topLinks .top_btn01 a{
        font-size: 1.5vw;
    }
}

@media only screen and (max-width:1550px) and (min-width:769px) {
    #footer .linkdIn .flex > div{
        width: 33vw;
    }
}

@media only screen and (max-width:1000px) and (min-width:768px) {
    #footer .linkdIn .flex > div a div{
        font-size: 1.4vw;
    }
    .top_list01{
        justify-content: space-between;
    }
    #topLinks .top_list01 li:nth-child(odd){
        margin-left: 0;
    }
    #topLinks .top_list01 li{
        width: 48.5%;
    }
}

@media only screen and (max-width:1300px) and (min-width:768px) {
    #topLinks .top_btn01 a{
        padding: 0;
    }
}

@media only screen and (max-width:768px) {
    div.microdevices a div {
        font-size: 14px!important;
    }
    .product_list .top_list01 li{
        margin: 0;
    }
    #topLinks,
    #topSupport {
        margin: auto auto 10vw;
        padding: 4vw 0;
    }
    #topLinks .inner,
    #topSupport .inner {
        max-width: 100%;
        padding: 0 4vw;
    }
    /* .top_list01 {
        display: block;
    } */
    .top_list01 li {
        width: 100%;
        margin: 4vw auto auto;
    }
    .top_list01 li:nth-child(3n+1) {
        margin-left: auto;
    }
    .top_list01 li:first-child {
        margin-top: auto;
    }
    #topSupport .top_ttl01 {
        margin-bottom: 8vw;
    }
    #topSupport .top_list01 li {
        margin-top: 4vw;
    }
    #topLinks .top_btn01 a,
    #productList .top_btn01 a{
        height: 80px;
    }
    #productList .top_btn01 a{
        padding: 0;
        letter-spacing: normal;
        line-height: 1.3;
    }
    #productList ul.top_list01{
        display: flex;
        justify-content: space-between;
    }
    #productList .top_btn01.spW25{
        width: 32.5%;
    }
    #productList .top_btn01 a::after{
        right: 10px;
    }
    #productList .top_btn01 a{
        font-size: 4.0vw;
        font-size: min(4.0vw, 16px);
    }
}

@media only screen and (max-width:650px) {
    #productList .top_btn01.spW25{
        width: 48.5%;
    }
}

section .flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

section .flex.column2 > div{
    width: 48.5%;
}

section .flex.column3 > div{
    width: 32% !important;
    margin-bottom: 4em;
}

section .flex.column4 > div{
    width: 24% !important;
    margin-bottom: 4em;
}

@media only screen and (max-width:1300px) {
    section .flex.column4 > div{
        margin-bottom: 2em;
    }
}

@media only screen and (min-width:768px) {
    section .flex > div.mb0{
        margin-bottom: 0;
    }
}


@media only screen and (max-width:768px) {
    section .flex.column3 > div{
        margin-bottom: 1em;
    }
    section .flex > div figure{
        text-align: center;
    }
}

section .flex::after{
    content: "";
    width: 32%;
    display: block;
}

#topSearch .support .flex.column2 > div:nth-child(1){
    width: 100%;
}

#topSearch .support .flex.column2 > div:nth-child(2){
    width: 36%;
}

#topSearch .category{
    padding-bottom: 2em;
}

#topSearch .category h3{
    padding-top: 0;
}

#topSearch .support{
    border-top: 1px solid #D9E3EC;
    margin-top: 2em;
}

#topSearch .keywordSearch{
    border-top: 1px solid #D9E3EC;
    padding-top: 2em;
    width: 100%;
}

#topSearch .support .buy{
    padding-left: 4.5%;
    display: none;
    position: relative;
}

#topSearch .support .buy:after{
    content: "";
    display: block;
    width: 1px;
    height: 80%;
    background-color: #D9E3EC;
    position: absolute;
    left: 0;
    bottom: 0;
}

#topSearch .support .catalog{
    /* display: none; */
    display: block;
}

@media only screen and (max-width:768px) {
    section .flex{
        flex-direction: column;
    }
    section .flex.spFlexRow{
        flex-direction: row !important;
    }
    section .flex.column2 > div,
    section .flex.column3 > div{
        width: 100% !important;
    }
    #topSearch .flex.column2 .top_btn01{
        height: auto;
        margin-bottom: 3vw;
    }
    #topSearch .flex.column2 .top_btn01 a{
        padding: 1.1em 2em 1.1em 1em;
    }
    #topSearch .flex.column2 .top_btn01 a br{
        display: none;
    }
    #topSearch .support{
        margin-top: 0;
    }
    #topSearch .support h3.open{
        padding-bottom: 6vw;
    }
    #topSearch .support .flex.column2 > div:nth-child(1),
    #topSearch .support .flex.column2 > div:nth-child(2){
        width: 100%;
    }
    #topSearch h3.ttl_height{
        height: auto;
    }
    #topSearch .support .buy{
        padding-left: 0;
        border: none;
        border-top: 1px solid #D9E3EC;
    }
    #topColumn h2{
        text-align: left;
    }
    #topSearch .category{
        padding-bottom: 0;
    }
    #topSearch .category h3{
        padding: 6vw 0;
    }
    #topSearch .support .buy:after{
        display: none;
    }
    #topSearch .search_box .keyword{
        padding-bottom: 0;
    }
    section .flex.column4 > div{
        width: 100% !important;
    }
}

section .flex div.w45{
    width: 45%;
}
section .flex div.w55{
    width: 55%;
}
section .flex div.w65{
    width: 65%;
}
section .flex div.w35{
    width: 32%;
}

@media only screen and (max-width:768px) {
    section .flex div.w55,
    section .flex div.w35,
    section .flex div.w65{
        width: 100%;
        margin-bottom: 0.5em;
    }
}

.small{
    font-size:80%;
}

.big{
    font-size:120%;
}

.th_blue_tbl{
    width: 100%;
}
.th_blue_tbl th{
    background-color: #10218B;
    vertical-align: middle;
    color: #fff;
}
.th_blue_tbl td{
    background-color: #fff;
}
.th_blue_tbl th,
.th_blue_tbl td{
    border: 1px #F2F6F6 solid;
    padding: 0.8em;
}

@media only screen and (max-width:768px) {
    .th_blue_tbl{
        margin-top: 1em;
    }
    .th_blue_tbl th,
    .th_blue_tbl td{
        font-size: 95%;
    }

    .youtube{
        height: 225px;
    }
}


.icon img{
    vertical-align: bottom;
    margin-right: 8px;
}

.top_btn01 .icon img,
.top_btn02 .icon img,
.top_btn03 .icon img{
    margin-right: 0;
}

.icon_link{
    display: flex;
    align-items: center;
}
.icon_link span.icon{
    margin-left: 8px;
}
.icon_link span.icon img{
    vertical-align: 1px;
}

@media only screen and (max-width:767px) {
    .spScrollTable{
        overflow-x: auto;
    }
    .spTableSorter{
        min-width: 1200px;
    }
    .spTableSorter2{
        min-width: 600px;
    }
}

@media only screen and (max-width:1200px) and (min-width:769px) {
    #header .sub_nav ul.products{
        flex-wrap: wrap;
    }
    #header .sub_nav ul.products > li{
        width: 33%;
        margin-right: 0;
    }
    #footer .footer_nav{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    #footer .footer_nav .row {
        width: 25%;
    }
}

sub{
    font-size: 80%;
    vertical-align: sub;
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    .breadcrumbs {
        padding: 0;
        width: 94%;
    }
    .breadcrumbs li span{
        font-size: 1.4vw;
    }
    .breadcrumbs li a::after{
        top: 50%;
    }
    #topColumn .top_column_list li.col .title{
        font-size: 1.8vw;
    }
}

/* メインビジュアル */

#mv {
    text-align: center;
    margin-bottom: 0;
    background-color: #000;
}

@media only screen and (min-width:769px) {
    #mv {
        height: 300px;
    }
}
@media only screen and (max-width:768px) {
    #mv {
        height: 420px;
    }
}

#mv .slick-slide img {
    width: 100%;
}

#mv .slick-dots {
    bottom: -15px;
}

#mv .fvWrap{
    position: relative;
}

#mv .fvWrap img{
    width: 100%;
}

#mv .inner{
    position: absolute;
    top: 0;
    margin: auto;
    left: 60%;
    /* right: 0; */
    height: 100%;
}

#mv .inner .copy{
    text-align: left;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}

#mv .inner .copy .text01{
    font-size: 2.6rem;
    font-weight: 600;
    padding-bottom: 0.5em;
}

#mv .inner .copy .text02{
    font-size: 1.5rem;
    padding-bottom: 0.8em;
}

#mv .inner .copy a{
    color: #fff;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-right: 0.8em;
}

#mv .inner .copy a::after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
}

#mv .slick-dots li {
    width: 50px;
    height: 2px;
    padding: 4px 0;
    margin: 0 5px;
}

#mv .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 50px;
    height: 2px;
    padding: 0;
    background: #D7D7D7;
}

#mv .slick-dots li.slick-active button {
    background: #10218B;
}

#mv .slick-dots li button:before {
    display: none;
}

#mv .sp {
    display: none !important;
}

@media only screen and (max-width:768px) {
    #mv .inner{
        left: 0;
    }
    #mv .pc {
        display: none !important;
    }
    #mv .sp {
        display: block !important;
    }
}

@media only screen and (min-width:769px)and (max-width:1300px) {
    #mv .slick-slide {
        width: 100vw;
    }
    #mv .slick-slide img {
        width: 100%;
    }
}

@media only screen and (min-width:769px)and (max-width:1000px) {
    #mv .inner .copy .text01{
        font-size: 2.4vw;
    }
    #mv .inner .copy .text02{
        font-size: 1.4vw;
    }
    #mv .inner .copy a{
        font-size: 1.4vw;
    }
}

@media only screen and (max-width:768px) {
    #mv .slick-slide {
        margin: 0;
    }
    #mv .slick-dots {
        bottom: -4vw;
    }
    #mv .slick-dots li {
        width: 14vw;
        padding: 1vw 0;
        margin: 0 1vw;
    }
    #mv .slick-dots li button {
        width: 14vw;
    }
    #mv .inner .copy{
        align-items: flex-end;
        padding-bottom: 2em;
    }
    #mv .inner .copy .text01{
        font-size: 5vw;
    }
    #mv .inner .copy .text02{
        font-size: 3.5vw;
    }
}

@media only screen and (max-width: 1100px) and (min-width: 769px) {
    #mv .inner .copy{
      padding: 1em;
    }
    .search_list li{
      width: 50%;
    }
    #topSearch .inner{
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    #mv .inner .copy .text01{
      font-size: 2.0vw;
      padding-bottom: 0;
    }
    #mv .inner .copy .text01{
      padding: 0 !important;
    }
    #mv .inner .copy .text02{
      padding: 0 !important;
    }
    .inner{
      width: 94%;
    }
    #topSearch .inner{
        width: 100%;
    }
    #topSearch .search_box .keyword a,
    .top_btn01 a,
    .top_btn02 a,
    .top_btn03 a{
      font-size: 1.3vw;
    }
    #topSearch .flex.column2 .top_btn01 a{
      padding: 1em 1.4em 1em 0.5em;
      line-height: 1.5;
    }
    .top_btn02 a{
      padding: 0 1.4em 0 0.7em;
      line-height: 1.5;
    }
    .top_btn03 a{
      padding: 1.0em 2em 1.0em 1em;
      line-height: 1.5;
    }
    
    
    .top_btn01 a::after,
    .top_btn02 a::after,
    .top_btn03 a::after{
      right: 0.7em;
    }
  }


/* under.css */
/*
#topSearch {
    margin-top: 6em;
  }*/
  
  section a {
    color: #10218B;
  }
  
  section.blocks {
    padding: 4em 0;
  }
  
  @media only screen and (max-width: 767px) {
    section.blocks {
      padding: 2em 0;
    }
  }
  
  section.blocks.pb0 {
    padding-top: 0;
  }
  
  section.blocks h2 {
    margin-bottom: 1em;
  }
  
  section.blocks h2.mb0 {
    margin-bottom: 0;
  }
  
  section.blocks:first-child {
    padding-top: 0;
  }
  
  section .under_bg_title{
    background-color: #D9E3EC;
    padding: 0.5em;
    text-align: left;
    font-size: 20px;
    margin-top: 3em;
    margin-bottom: 1em;
    color: #10218B;
    font-weight: 600;
  }
  
  section h3.gray{
    background-color: #F2F6F6;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #333;
    border-bottom: none;
  }
  
  section h3.icon_title{
    border: none;
  }
  
  section h2 {
    text-align: left;
    border: none;
  }
  
  section h2,
  section .page_title,
  section .under_title {
    color: #10218B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  section .under_title {
    text-align: center;
    margin-bottom: 3em;
  }
  
  @media only screen and (max-width: 767px) {
    section .under_title {
      margin-bottom: 1em;
      font-size: 3.6vw;
    }
  }
  
  section h2 .en,
  section .page_title .en,
  section .under_title .en {
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
    display: block;
  }
  
  section h2 .en-s,
  section .page_title .en-s,
  section .under_title .en-s {
    font-size: 34px;
    line-height: 1.2em;
    font-weight: 700;
    display: block;
  }
  
  section h4.under_title{
    font-size: 20px;
    color: #10218B;
    font-weight: 600;
    padding-bottom: 0.6em;
    text-align: left;
    margin-bottom: 0;
  }
  
  .case .ttl{
    font-weight: 600;
    padding: 10px 0;
    color: #10218B;
    font-size: 18px;
  }
  
  .case .view_more a{
    font-size: 16px;
  }
  
  @media only screen and (max-width: 767px) {
    section h2 .en,
    section .page_title .en,
    section .under_title .en {
      font-size: 9vw;
      font-size: min(9vw, 50px);
    }
      
    section h2 .en-s,
    section .page_title .en-s,
    section .under_title .en-s {
      font-size: 7vw;
      font-size: min(7vw, 40px);
    }
  }
  
  section h2 .ja,
  section h1 .ja {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    display: block;
  }
  
  @media only screen and (max-width: 767px) {
    section h2 .ja,
    section h1 .ja {
      font-size: 7vw;
      font-size: min(7vw, 40px);
    }
  }
  
  section h2,
  section h3 {
    color: #10218B;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 0.3em;
    margin-bottom: 1em;
  }
  
  @media only screen and (max-width: 767px) {
    section h2,
    section h3 {
      font-size: 4.5vw;
      font-size: min(4.5vw, 28px);
    }
  }
  
  section h2 {
    padding-top: 0.5em;
    margin-bottom: 0.3em;
  }
  
  section h2.under_headline{
    font-size: 162%;
  }
  
  section h3.under_headline{
    border: none;
    color: #333;
    margin-bottom: 0.5em;
    font-size: 18px;
  }
  
  section.other_techinfo h3{
    padding-left: 0;
    margin-bottom: 0;
  }
  
  section.other_techinfo p{
    color: #333;
    margin: 1em 0 2em;
  }
  
  p.movie_title {
    padding-top: 6px;
  }
  
  .youtube_icon{
    position: relative;
  }
  
  .youtube_icon:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(/sensing/assets/img/common/3721679-youtube_108064.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
  }
  
  .text-blue{
    color: #10218B !important;
  }
  
  section .movie iframe{
    width: 100%;
  }
  
  section h3.number_in_headline{
    border-bottom: 1px #D9E3EC solid !important;
    padding-left: 0;
  }
  
  section h3.number_in_headline span.num{
    font-size: 100%;
    display: inline-block;
    background-color: #10218B;
    color: #fff;
    margin-right: 10px;
    padding: 0 16px;
  }
  
  section h3 {
    border-bottom: 1px #D9E3EC solid;
  }
  
  section h3.blue{
    background-color: #10218B;
    color: #fff;
    border: none;
    padding: 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  section h3.matchHeight_headline{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  @media only screen and (max-width: 767px) {
    section h3 {
      font-size: min(4.5vw, 20px);
    }
  }
  
  section .product_category {
    color: #10218B;
    font-weight: 600;
    font-size: 20px;
    border-bottom: 1px #D9E3EC solid;
    padding-top: 0.5em;
    margin-bottom: 0.3em;
    text-align: left;
    border: none;
  }
  
  @media only screen and (max-width: 767px) {
    section .product_category {
      margin-bottom: 0;
      padding-bottom: 0;
    }
  }
  
  @media only screen and (max-width: 767px) {
    section .product_category + ul {
      margin-top: 0.5em;
    }
  }
  
  section .inner {
    width: 84%;
    margin: auto;
    /* max-width: 1200px; */
  }
  
  .indexPage h2 {
    font-size: min(4.5vw, 20px);
  }
  
  #topLinks h2,
  #productList h2 {
    text-align: left;
    color: #fff;
  }
  
  #topLinks li,
  #productList li {
    margin-bottom: 16px;
  }
  
  .txt_aec {
    font-size: 71%;
    letter-spacing: normal;
    text-align: center;
  }
  
  .mainColor{
    color: #10218B;
  }
  
  .flex-in-arrow{
    position: relative;
  }
  
  .flex-in-arrow >div:nth-child(1){
    position: relative;
  }
  
  .flex-in-arrow >div{
    padding: 0 1.5em;
  }
  
  .flex-in-arrow >div:nth-child(1)::after{
    content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
      border-left: 20px solid #10218b;
      border-right: 0;
      position: absolute;
      right: -1%;
      top: 50%;
  }
  
  @media only screen and (max-width: 1200px) {
    section .inner {
      width: 100%;
      padding: 0 4vw;
    }
    .product_list .top_list01 li {
      width: 31.5%;
      /*margin-left: 0;*/
    }
      .product_list .top_list01 li:last-child {
          margin-left: 0;
      }
  }
  
  @media only screen and (max-width: 768px) {
    #topLinks li {
      margin-bottom: 0;
    }
    section {
      margin: auto 0;
    }
    section h2 .ja,
    section h2 .en {
      font-size: 44px;
    }
  }
  
  @media only screen and (max-width: 768px) and (max-width: 767px) {
    section h2 .ja,
    section h2 .en {
      font-size: 6.5vw;
      font-size: min(6.5vw, 24px);
    }
  }
  
  @media only screen and (max-width: 768px) {
    section.blocks h2 {
      margin-bottom: 0.5em;
      padding-bottom: 0;
    }
  }
  
  .agree_contents {
    margin-top: 1em;
  }
  
  .listBasicBlack {
    margin-left: 26px;
    margin-bottom: 1.5em;
  }
  
  ol.listBasic li,
  ol.listBasicBlack li {
    list-style: decimal outside none;
  }
  
  ul.listBasic li,
  ul.listBasicBlack li {
    list-style: disc outside none;
    margin-left: 20px;
  }
  
  #agree_page form {
    margin-bottom: 2em;
  }
  
  #agree_page .license_check {
    position: relative;
    padding-left: 1.5em;
  }
  
  #agree_page [type=checkbox] {
    position: absolute;
    top: 7px;
    left: 0;
  }
  
  .under {
    font-weight: 600;
    color: #10218B;
  }
  
  .decoration-under{
    text-decoration: underline;
  }
  
  section .btn_agree {
    justify-content: center;
  }
  
  section .btn_agree > div {
    padding: 0 0.5em;
  }
  
  section .btn_agree:after {
    display: none;
  }
  
  section .btn_agree .top_btn01 a {
    padding: 0.8em 4.0em;
  }
  
  @media only screen and (max-width: 768px) {
    .listBasicBlack {
      margin-left: 20px;
    }
  }
  
  .table table {
    width: 100%;
  }
  
  .table table th, .table table td {
    font-size: 15px;
    vertical-align: middle;
    border: 1px #D9E3EC solid;
    padding: 11px 8px;
  }
  
  @media only screen and (max-width: 767px) {
    .table table th, .table table td {
      font-size: 12px;
    }
  }
  
  .table table td.miniCell {
    padding: 3px 8px;
  }
  
  .table table .tablesorter-header-inner {
    font-size: 14px;
    font-weight: 500;
  }
  
  @media only screen and (max-width: 767px) {
    .table table .tablesorter-header-inner {
      font-size: 11px;
    }
    .table table .tablesorter-header-inner span, .table table .tablesorter-header-inner div {
      font-size: 11px;
    }
  }
  
  .table table th,
  .table table th.bg {
    background-color: #10218B;
    color: #fff;
    text-align: center;
  }
  
  .table table tbody th {
    background-color: transparent;
    color: #333;
    font-weight: 600;
  }
  
  .table table tbody tr.bg th {
    background-color: #FAFAFD;
  }
  
  .table table tbody td {
    background-color: #fff;
  }
  
  .table table.tableThGray th{
    background-color: #FAFAFD;
    color: #333;
  }
  
  .table table tbody td span {
    display: block;
    margin: auto;
    text-align: center;
    font-size: 12px;
  }
  
  .table table tbody td span.icon_cart {
    width: 20px;
  }
  
  .table table tbody td.bold {
    font-weight: bold;
  }
  
  .table table tbody td a p {
    font-size: 80%;
    text-align: center;
    margin-bottom: 1.0em;
  }
  
  .table table tbody td a:last-child p {
    margin-bottom: 0;
  }
  
  .table table tbody td .arrow_link {
    margin: 0;
  }
  
  .table table tbody td.bold {
    font-weight: 600;
  }
  
  .table table tbody td.icon_td {
    width: 80px;
  }
  
  .table table tbody .bg td {
    background-color: #FAFAFD;
  }
  
  .table table.f12 th, .table table.f12 td {
    font-size: 75%;
  }
  
  .table table.f12 th span, .table table.f12 td span {
    font-size: 100%;
    display: inline-block;
    margin-top: 3px;
  }
  
  .contact-link-box a{
    display: block;
    height: 100%;
    text-decoration: none;
    padding: 2.5em;
    color: #333;
    border: 1px #D9E3EC solid;
  }
  
  .contact-link-box a:hover{
    background-color: #D9E3EC;
  }
  
  .contact-link-box a span.icon{
    margin-left: 10px;
  }
  
  .contact-link-box h4{
    color: #10218B;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    margin-bottom: 8px;
  }
  
  .salesLocation .row .col > div{
    border: 1px #D9E3EC solid;
    padding: 2.5em;
    margin-bottom: 2em;
  }
  
  .salesLocation .row .col h4{
    color: #10218B;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    margin-bottom: 8px;
    padding-top: 0;
  }
  
  sup {
    font-size: 80%;
    vertical-align: super;
  }
  
  .arrow_link {
    margin: 1em 0 2em;
  }
  
  a.arrow-before,
  a.arrow-after{
    color: #10218B;
  }
  
  a.arrow-after:after{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    margin-left: 5px;
    vertical-align: baseline;
    transform: translateY(-3px) rotate(-45deg);
  }
  
  a.arrow-before:before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    margin-right: 8px;
    vertical-align: baseline;
    transform: translateY(-3px) rotate(-45deg);
  }
  
  @media only screen and (max-width: 767px) {
    .arrow_link {
      line-height: 1.8;
    }
    .flex-in-arrow >div:nth-child(1){
      padding-bottom: 2em;
    }
    .flex-in-arrow >div:nth-child(1)::after{
      right: calc(50% - 10px);
      transform: rotate(90deg);
      bottom: -10px;
      top: auto;
    }
  }
  
  .arrow_link a {
    display: inline-block;
    position: relative;
    padding-left: 1em;
  }
  
  .arrow_link a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
  }
  
  a.arrow {
    display: inline-block;
    position: relative;
    padding-left: 1em;
    line-height: 1.3;
  }
  
  a.arrow::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: calc(50% - 0.2em);
  }
  
  a.movie_link {
    display: inline-block;
    position: relative;
    padding-right: 1.5em;
    line-height: 1.8;
  }
  
  a.movie_link::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 15px;
    position: absolute;
    top: 5px;
    background-image: url(/sensing/assets/img/common/icon_youtube.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    right: 0;
  }
  
  a.blank-before,
  a.blank-after{
    display: inline-block;
    position: relative;
    color: #10218B;
  }

  a.crystal-icon-white,
  a.crystal-icon-gray{
    display: inline-block;
    position: relative;
  }
  a.crystal-icon-white::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(/sensing/assets/img/common/icon_crystal.svg);
    transform-origin: center;
    margin-left: 6px;
  }
  
  a.blank-before::before,
  a.blank-after::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(/sensing/assets/img/common/icon_link_2.svg);
    transform-origin: center;
    margin-left: 6px;
  }
  
  a.blank-before::before{
    margin-left: 0;
    margin-right: 6px;
  }
  
  .blank_link a {
    display: inline-block;
    position: relative;
    padding-left: 1.3em;
  }
  
  .blank_link a::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(/sensing/assets/img/common/icon_link_2.svg);
    transform-origin: center;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
  }
  
  a.pdf{
    color: #10218B;
  }
  
  a.pdf::after {
      content: '';
      display: inline-block;
      width: 16px;
      height: 24px;
      margin-left: 5px;
      vertical-align: bottom;
      background-image: url(/sensing/assets/img/common/icon_pdf.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
  }
  
  a.page_in_link{
    color: #10218B;
  }
  
  a.page_in_link::after{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    margin-left: 5px;
    vertical-align: baseline;
    transform: translateY(-5px) rotate(45deg);
  }
  
  @media only screen and (max-width: 767px) {
    .blank_link a::after {
      top: 4px;
    }
  }
  
 /* a.blank_link {
    position: relative;
    padding-left: 1.3em;
  }
  
  a.blank_link::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(/sensing/assets/img/common/icon_link_2.svg);
    transform-origin: center;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
  }*/
  
  @media only screen and (max-width: 767px) {
    .youtube_wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
    }
    .youtube_wrap iframe {
      width: 100%;
      height: 100%;
    }
  }


.acd {
    padding: 10px 4vw;
    color: #10218B;
    border-top: 1px solid #D9E3EC;
    border-bottom: 1px solid #D9E3EC;
    position: relative;
}
.acd p {
    font-weight: bold;
}
.acd::before,
.acd::after {
    content: "";
    position: absolute;
    display: block;
    width: 1em;
    height: 0;
    padding-bottom: 0.15%;
    background: #10218B;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%);
}
.acd::after {
    transform: rotate(90deg);
    transition: 0.5s;
}
.acd.active::after {
    transform: rotate(0);
    transition: 0.5s;
}




.box_list01 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 3em;
    margin-bottom: 40px;
}
.box_list01 li {
    width: calc(100%/3);
    border: 1px solid #D9E3EC;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box_list01 a {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    background: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: .8em 1.8em .8em .8em;
    text-align: left;
    position: relative;
    width: 100%;
}
.box_list01 a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    position: absolute;
    right: 1em;
    top: calc(50% - 6px);
    transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
    .only-sp {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .only-pc {
        display: none;
    }
    .only-sp .ja {
        margin-top: 30px;
    }
    .box_list01 {
        margin-top: 1em;
    }
    .box_list01 li {
        width: 100%;
    }
    .box_list01 li a {
        padding-left: 4vw;
    }
    .box_list01 li a::after {
        right: 2.2vw;
    }
}
@media screen and (min-width: 426px) {
    .br-sp {
        display: none;
    }
}



#white_paper, #technical_note {
    background-color: #F2F6F6;
    padding: 60px 0;
}
#technical_note {
    margin-bottom: 80px;
}
.list_box h2 {
    font-size: 28px;
    text-align: left;
}

@media only screen and (max-width:767px) {
    .list_box h2 {
        font-size: 6vw;
        font-size: min(6vw, 28px);
    }
}

.list_box .flex_wrap {
    display: flex;
    flex-wrap: nowrap;
    color: #333333;
    padding: 2rem 0;
    border-bottom: 1px solid #D9E3EC;
}
.list_box .flex_wrap:first-child{
    border-top: 1px solid #D9E3EC;
}
.list_box .flex_wrap dt {
    width: 15%;
}
.list_box .flex_wrap dd {
    width: 85%;
}
.list_box .flex_wrap dd a {
    color: #333333;
}
@media screen and (max-width: 768px) {
    #white_paper, #technical_note {
        padding: 30px 0;
        margin-bottom: 2em;
    }
    .list_box .flex_wrap {
        display: block;
    }
    .list_box .flex_wrap dt {
        width: 100%;
        padding-bottom: 10px;
    }
    .list_box .flex_wrap dd {
        width: 100%;
    }
}




#technical_inf a {
    text-decoration: none;
}
#technical_inf p {
    margin: 1em 0 2em;
    color: #000;
}
#technical_inf .flex.column3 img, #sastainability .flex.col5 img {
    width: 100%;
}
#technical_inf h3 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#technical_inf .flex.column3 h3 {
    margin-top: .5em;
}
@media screen and (max-width: 768px) {
    #technical_inf .flex.column3>div {
        width: 48.5%;
    }
    #technical_inf h3 {
        padding-top: 8px;
    }
    #technical_inf p {
        margin-top: 8px;
        margin-bottom: 0;
    }
}

/* products/products.css */
#tableOfContents.hide,
#tableOfContents02.hide{
  transform: translateY(-250%);
}

.products_wrap {
  max-width: 1200px;
  margin: auto auto 80px;
}

.product_head {
  margin-bottom: 50px;
}

.product_head .flex {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

@media only screen and (max-width: 767px) {
  .product_head .flex {
    flex-direction: row;
  }
}

.product_head .image {
  width: 130px;
  border: 1px solid #D9E3EC;
}

.product_head .inner {
  width: calc(100% - 180px);
}

.product_head .product_title {
  font-size: 28px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.product_head .product_tag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product_head .product_tag li {
  font-size: 14px;
  line-height: 1em;
  color: #666;
  background: #F2F6F6;
  border-radius: 1em;
  margin-right: 7px;
  margin-bottom: 10px;
  padding: .5em 1em;
}

.product_head .product_tag li sup {
  font-size: 60%;
  vertical-align: super;
}

.product_head .btn_links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product_head .btn_links .btn {
  width: 24%;
  margin-bottom: 10px;
}

.product_head .btn_links .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 50px;
  text-decoration: none;
  border: 1px solid #10218B;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.product_head .btn_links .btn a .icon {
  display: flex;
  width: 20px;
  margin-right: 6px;
}

.product_head .btn_links .btn a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
}

.product_head .btn_links .btn a:hover::after {
  border-color: #fff;
}

.product_head .btn_links .btn.btn_contact {
  position: relative;
}

.product_head .btn_links .btn.btn_contact a {
  transition: .3s;
}

.product_head .btn_links .btn.btn_contact a::after {
  transform: rotate(45deg);
  transition: .3s;
}

.product_head .btn_links .btn.btn_contact:hover a {
  background-color: #fff;
  color: #10218B;
}

.product_head .btn_links .btn.btn_contact:hover .icon img {
  filter: brightness(0) invert(1);
}

.product_head .btn_links .btn.btn_contact:hover a::after {
  border-color: #fff;
  transform: rotate(225deg);
}

.product_head .btn_links .btn.btn_contact:hover .hide_contact ul li a{
  background-color: #fff;
  color: #10218B;
  border-radius: 0;
  border-bottom: none;
}

.product_head .btn_links .btn.btn_contact:hover .hide_contact ul li:last-child a{
  border-bottom: 1px #10218B solid;
}

.product_head .btn_links .btn.btn_contact:hover .hide_contact ul li a::after {
  border-color: #10218B;
}

.product_head .btn_links .btn.btn_contact:hover .hide_contact ul li a:hover{
  background-color: #10218B;
  color: #fff; 
}

.product_head .btn_links .btn.btn_contact:hover .hide_contact ul li a:hover::after{
  border-color: #fff;
}


.product_head .btn_links .btn.btn_contact .hide_contact ul li:last-child a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.product_head .btn_links .btn.btn_contact .hide_contact a::after {
  transform: rotate(-45deg);
}

.product_head .btn_links .btn.btn_contact .hide_contact {
  display: none;
  transition: .3s;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 10;
}

.product_head a:hover{
  opacity: 1;
}

/* .product_head .btn_links .btn.btn_contact .hide_contact ul li a {
  border: none;
  border-radius: 0;
  border-bottom: 1px #E6E8F3 solid;
} */

.product_head .btn_links .btn.btn_contact:hover .hide_contact {
  display: block;
}

.product_head .btn_links .btn.btn_contact:hover a {
  background-color: #10218B;
  color: #fff;
}

.product_head .btn_links .btn.btn_contact:hover ul a:hover {
  background-color: #10218B;
  color: #fff;
}

.product_head .btn_links .btn.btn_contact ul a:after {
  transition: .3s;
}

.product_head .btn_links .btn01 a,
.product_head .btn_links .btn02 a {
  color: #10218B;
  background: #fff;
}

.product_head .btn_links .btn01 a:hover,
.product_head .btn_links .btn02 a:hover {
  color: #fff;
  background: #10218B;
}

.product_head .btn_links .btn02 a .icon img {
  filter: none;
}

.product_head .btn_links .btn01 a:hover .icon img {
  filter: brightness(0) invert(1);
}

.product_head .btn_links .btn02 a:hover .icon img {
  filter: brightness(0) invert(1);
}

.product_tab {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.product_tab li {
  width: 20%;
  margin: 0 5px;
  background: #E6E8F3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #10218B;
  font-size: 16px;
  font-weight: 500;
  padding: 1em;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

.product_tab li.active {
  background: #10218B;
  color: #fff;
  pointer-events: none;
}

.product_group {
  border: 1px solid #10218B;
  padding: 30px;
  border-radius: 5px;
}

.product_group .tab_content {
  display: none;
}

.product_group .tab_content h3 {
  margin-top: 1.5em;
}

.product_group .tab_content h3:nth-child(1) {
  margin-top: 0;
}

.product_group .application_edit_notice {
  margin-top: 1em;
  font-weight: 500;
}

.product_group .tab_content.active {
  display: block;
}

.product_tab_list01 li {
  list-style-type: disc;
  margin: auto auto 10px 20px;
  font-size: 16px;
}

.product_tab_list01 li:last-child {
  margin: auto auto auto 20px;
}

.product_tab_list01 li sup {
  font-size: 60%;
  vertical-align: super;
}

.product_tab_list01 li sub {
  font-size: 60%;
  vertical-align: sub;
}

.product_tab_list01 a {
  font-size: 16px;
  font-weight: 500;
  color: #10218B;
}

.product_tab_list01 h3 {
  font-weight: 500;
  padding-bottom: 8px;
  margin-top: 1.5em;
}

.product_tab_list01 h3:nth-child(1) {
  margin-top: 0;
}

span.over {
  text-decoration: overline;
  display: inline !important;
}

.product_tab_list01 a.pdf::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 24px;
  margin-left: 5px;
  vertical-align: bottom;
  background-image: url(/sensing/assets/img/common/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .products_wrap {
    padding: 0 10px;
  }
  .product_tab li {
    font-size: 15px;
    padding: 1em .5em;
  }
}

@media only screen and (max-width: 768px) {
  .products_wrap {
    max-width: 100%;
    margin: auto auto 10vw;
    padding: 0 4vw;
  }
  .product_head {
    display: block;
    margin-bottom: 4em;
  }
  .product_head .image {
    width: 30%;
    margin-bottom: 4vw;
  }
  .product_head .image img {
    width: 100%;
  }
  .product_head .inner {
    width: 70%;
  }
  .product_head .product_title {
    font-size: 7vw;
    font-size: min(7vw, 22px);
    margin-bottom: 2vw;
  }
  .product_head .product_tag {
    margin-bottom: 4vw;
  }
  .product_head .product_tag li {
    font-size: 11px;
    border-radius: 1em;
    margin-right: 1vw;
    margin-bottom: 2vw;
    padding: .2em 0.5em;
  }
  .product_head .btn_links .btn {
    width: 23.0%;
    margin-bottom: 4vw;
    margin-bottom: min(4vw, 12px);
  }
  .product_head .btn_links.sp_three_btn .btn {
    width: 31%;
  }
  .product_head .btn_links .btn a {
    border-radius: 1.4vw;
    height: auto;
    font-size: 4.2vw;
    font-size: min(4.2vw, 16px);
    padding: 1em 0;
  }
  .product_head .btn_links .btn a .text {
    position: absolute;
    text-align: center;
    top: 120%;
    line-height: 1.3;
  }
  .product_head .btn_links .btn a .icon {
    width: auto;
    justify-content: center;
    margin-right: 0;
  }
  .product_head .btn_links .btn a .icon img {
    margin-right: 0;
    width: 25px;
    height: 25px;
  }
  .product_head .btn_links .btn a::after {
    display: none;
    width: 2vw;
    height: 2vw;
    right: 4vw;
    top: calc(50% - 1vw);
  }
  .product_tab {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 1.5vw;
  }
  .product_tab li {
    width: 18%;
    margin: 0 0 0 0;
    font-size: 4.2vw;
    padding: .9em 0;
    border-radius: 1.4vw;
    font-size: min(4.2vw, 13px);
    line-height: 1.2;
    text-align: center;
  }
  .product_group {
    padding: 4vw;
    border-radius: 1.4vw;
  }
  .product_tab_list01 li {
    margin: auto auto 2vw 4vw;
    font-size: 4.2vw;
    font-size: min(4.2vw, 16px);
  }
  .product_tab_list01 li:last-child {
    margin: auto auto auto 4vw;
  }
  .product_tab_list01 a {
    font-size: 4.2vw;
    font-size: min(4.2vw, 16px);
  }
  .product_tab_list01 a.pdf::after {
    width: min(6vw, 24px);
    height: min(6vw, 24px);
    margin-left: 1vw;
    vertical-align: bottom;
  }
  .product_head .btn_links .btn.btn_contact .hide_contact {
    width: 200%;
    left: -50%;
  }
  .product_head .btn_links .btn.btn_contact .hide_contact a {
    font-size: 14px;
  }
}

#topSearch .category {
  display: none;
}

#productTop h3 {
  padding: 16px 0 8px 0;
}

#topSearch .support .buy {
  display: block;
}

#topSearch .keywordSearch {
  border-top: none;
  padding-top: 0;
}

#topSearch .support .flex.column2 > div:nth-child(1) {
  width: 50.5%;
}

@media only screen and (max-width: 768px) {
  #topSearch .support .flex.column2 > div:nth-child(1) {
    width: 100%;
  }
}

#topSearch .support .flex.column2 > div:nth-child(2) {
  width: 46%;
}

@media only screen and (max-width: 768px) {
  #topSearch .support .flex.column2 > div:nth-child(2) {
    width: 100%;
  }
}

#topSearch .support .ic_partner {
  display: none;
}

#productTop h3,
#productTop h3 a {
  color: #10218B;
  font-size: 20px;
  font-weight: bold;
  border: none;
}

#productTop .flex ul li {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0.4em;
}

#productTop .flex ul li a {
  position: relative;
  display: inline-block;
  padding-left: 1em;
}

#productTop .flex ul li a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
}

@media only screen and (max-width: 768px) {
  #productTop h3 {
    padding-bottom: 4vw;
  }
  #productTop .flex ul {
    border-bottom: 1px #D9E3EC solid;
  }
  #productTop .flex ul li {
    display: block;
    border-top: 1px #D9E3EC solid;
    margin-bottom: 0;
  }
  #productTop .flex ul li a {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}

#header #productIndexFixed ul {
  display: flex;
  flex-wrap: wrap;
}

.productIndex #main {
  padding-top: 72px;
}

@media only screen and (max-width: 768px) {
  .productIndex #main {
    padding-top: 70px;
  }
}

.productIndex #productIndexFixed {
  /* display: block; */
  transition: .3s;
}

.productIndex #productIndexFixed ul {
  display: flex;
  flex-wrap: wrap;
}

.productIndex #productIndexFixed.hide {
  transform: translateY(-250%);
}

.productIndex.noPageNavi #productIndexFixed {
  display: none;
}

@media only screen and (max-width: 768px) {
  #header #productIndexFixed {
    top: 128px;
    flex-direction: column;
    display: none;
  }
  #header #productIndexFixed ul {
    display: none;
  }
  #header #productIndexFixed li {
    width: 100%;
    border: none;
  }
  #header #productIndexFixed li a {
    background-color: #D9E3EC;
  }
  #header #productIndexFixed li a:after {
    transform: rotate(-45deg);
  }
  section {
    margin-left: 0;
    margin-right: 0;
  }
}

.heading02 {
  font-size: 28px;
  text-align: left;
  color: #10218B;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  .heading02 {
    font-size: 5.5vw;
    font-size: min(5.5vw, 32px);
  }
}

#productIndex h2 {
  font-size: 28px;
  text-align: left;
}

#productIndex h2.small {
  font-size: 140%;
}

#productIndex .inner {
  max-width: 90%;
}

@media only screen and (max-width: 1410px) {
  #productIndex .inner {
    max-width: none;
    width: 94%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  #productIndex .inner {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.bg-lightblue {
  background-color: #F2F6F6;
  padding: 2em 0 4em 0;
}

#productIndex .search {
  margin: 20px 0 16px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #productIndex .search {
    flex-direction: column;
    margin-bottom: 0;
  }
}

#productIndex .search .serachForm {
  width: 30%;
  max-width: 394px;
}

@media only screen and (max-width: 1250px) {
  #productIndex .search .serachForm {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  #productIndex .search .serachForm {
    width: 100%;
    padding-bottom: 16px;
  }
}

#productIndex .search .serachForm form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
}

#productIndex .search .serachForm form input[type=search] {
  background-color: #fff;
  width: 300px;
  border: 1px solid #D9E3EC;
  border-radius: 5px 0 0 5px;
  font-size: 15px;
  padding: 0.7em 1em;
}

@media only screen and (max-width: 767px) {
  #productIndex .search .serachForm form input[type=search] {
    width: 100%;
  }
}

#productIndex .search .serachForm form button {
  width: 120px;
  border: none;
  background-color: #10218B;
  border-radius: 0 5px 5px 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 0.7em 0;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #productIndex .search .serachForm form button {
    width: 150px;
    font-size: min(4vw, 14px);
  }
}

#productIndex .search .serachForm form button .icon {
  vertical-align: middle;
  display: inline-block;
  width: 15px;
  margin-right: 5px;
}

#productIndex .search .serachForm form button .icon img {
  width: 100%;
  vertical-align: baseline;
  filter: brightness(0) invert(1);
}

#productIndex .search .iconExample {
  display: flex;
  align-items: center;
}

#productIndex .search .iconExample > div:nth-child(1) {
  padding-right: 40px;
  position: relative;
}

#productIndex .search .iconExample > div:nth-child(1):after {
  content: "";
  display: block;
  width: 1px;
  height: 35px;
  background-color: #D9E3EC;
  position: absolute;
  right: 20px;
  top: 0;
}

#productIndex .search .iconExample span {
  display: inline-block;
  margin-right: 8px;
}

#productIndex .table table {
  width: 100%;
}

#productIndex .table table th, #productIndex .table table td {
  font-size: 14px;
  vertical-align: middle;
  border: 1px #D9E3EC solid;
}

#productIndex .table table th {
  font-size: 12px;
  padding: 11px 18px 8px 4px;
}

@media only screen and (max-width: 1450px) {
  #productIndex .table table th {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  #productIndex .table table th {
    font-size: 11px;
  }
}

#productIndex .table table th.sorter-false {
  padding: 11px 8px;
}

#productIndex .table table td {
  padding: 11px 8px;
}

#productIndex .table table td span.hide {
  display: none;
}

#productIndex .table table td.miniCell {
  padding: 3px 8px;
}

#productIndex .table table .tablesorter-header-inner {
  font-size: 13px;
  font-weight: 500;
}

@media only screen and (max-width: 1450px) {
  #productIndex .table table .tablesorter-header-inner {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  #productIndex .table table .tablesorter-header-inner {
    font-size: 11px;
  }
}

#productIndex .table table th {
  background-color: #10218B;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

#productIndex .table table tbody td {
  background-color: #fff;
  white-space: nowrap;
}

#productIndex #gyro-sensor .table table th,
#productIndex #gyro-sensor .table table tbody td {
  white-space:initial;
  font-size: 13px;
}

#productIndex .table table tbody td span {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 12px;
}

#productIndex .table table tbody td span.icon_cart {
  width: 20px;
}

#productIndex .table table tbody td.bold {
  font-weight: bold;
}

#productIndex .table table tbody td a p {
  font-size: 80%;
  text-align: center;
  margin-bottom: 1.0em;
}

#productIndex .table table tbody td a:last-child p {
  margin-bottom: 0;
}

#productIndex .table table tbody td.icon_td {
  width: 60px;/*----------------------------------------20240705--80kara60------------------------------------------------------------*/
  text-align: center;
}
/*----------------------------------------20240129tuika------------------------------------------------------------*/
#productIndex .table table tbody td p.icon_td_rtc {
  /*width: 78px;*/
  text-align: center;
  display: flex;
  flex-wrap: wrap; 	
}
/*----------------------------------------20240129tuika------------------------------------------------------------*/

#productIndex .table table tbody tr.even td {
  background-color: #FAFAFD;
}

#productIndex .table table tbody tr.filtered {
  display: none;
}

#productIndex .table table.table02 th {
  background-color: #FAFAFD;
  color: #333;
}

@media only screen and (max-width: 1300px) {
  #productIndex .table {
    overflow-x: auto;
  }
}

@media only screen and (max-width: 1450px) {
  #productIndex .table table td {
    padding: 5px;
    font-size: 12px;
  }
  #productIndex .table table tbody td span{
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  #productIndex .table table td {
    font-size: 11px;
  }
  #productIndex .table table tbody td span{
    font-size: 11px;
  }
}

.tablesorter-scroller-header {
  width: calc(100% - 15px) !important;
}

.tablesorter-scroller-header.no-scroller {
  width: 100% !important;
}

body.ios .tablesorter-scroller-header {
  width: 100% !important;
}

.tablesorter-scroller-table::-webkit-scrollbar {
  background: #D9E3EC;
  width: 15px;
  height: 5px;
}

.tablesorter-scroller-table::-webkit-scrollbar-thumb {
  background-color: #10218B;
}

.tablesorter-scroller-table::-webkit-scrollbar-thumb:hover {
  background-color: #10218B;
}

/*#catalog #catalogContents .inner p {
  margin: 48px 0;
}

#catalog #catalogContents .inner figure {
  text-align: center;
}

#catalog #catalogContents .inner .top_btn01 {
  max-width: 390px;
  margin: 24px auto;
}*/

#catalog .top_btn01 {
  max-width: 390px;
  margin: 24px auto;
}

@media only screen and (max-width: 768px) {
  #catalog #topSearch .support .flex.column2 > div:nth-child(1),
  #catalog #topSearch .support .flex.column2 > div:nth-child(2) {
    width: 100%;
  }
  #catalog #topSearch .support .buy:after {
    display: none;
  }
}

#selectionGuide h2 {
  padding-top: 0.5em;
  margin-bottom: 0.3em;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  border: none;
  margin-bottom: 0;
}

#selectionGuide #productList {
  margin-bottom: 0;
}

#selectionGuide #topLinks {
  margin-top: 0;
  padding-top: 0;
}

#selectionGuide_detail .blocks h2 {
  border-bottom: none;
  margin-bottom: 0;
  font-size: 24px;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  #selectionGuide_detail .blocks h2 {
    font-size: 5vw;
    font-size: min(5vw, 24px);
  }
}

#selectionGuide_detail .blocks h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 1em 0 0.5em;
}

#selectionGuide_detail .blocks p.ttl {
  margin-bottom: 0.5em;
}

#selectionGuide_detail .blocks .guide_image {
  position: relative;
  margin-bottom: 2em;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

#selectionGuide_detail .blocks .guide_image .flex {
  margin-top: 1em;
  justify-content: flex-start;
  gap: 1%;
}

#selectionGuide_detail .blocks .linkBtn > div {
  width: 49%;
}

@media only screen and (max-width: 767px) {
  #selectionGuide_detail .blocks .linkBtn > div {
    width: 100%;
  }
}

#selectionGuide_detail .blocks .linkBtn p {
  margin-top: 8px;
  font-size: 14px;
}

#selectionGuide_detail .blocks .top_btn01 a {
  padding: 1.2em 3em;
  text-align: center;
}

#selectionGuide_detail .blocks .top_btn01.two_line a {
  padding: 0.5em 3em;
}

#selectionGuide_detail .blocks .top_btn01.two_line.mini a {
  padding-left: 2.2em;
  padding-right: 2.2em;
}

#selectionGuide_detail .blocks .top_btn01.mini a {
  font-size: 14px;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  #selectionGuide_detail .blocks .top_btn01.mini a {
    padding: 1.2em 3em !important;
    font-size: 4.3vw;
  }
}

#selectionGuide_detail .bg {
  background-color: #F2F6F6;
}

.blueprint + #selectionGuide{
  padding-top: 3em;
}

@media only screen and (max-width: 767px) {
  #selectionGuide_detail .bg + section {
    padding-top: 2em;
  }
}

#selectionGuide_detail .blueprint h3 {
  font-size: 18px;
  margin-bottom: 0.1em;
  border: none;
  font-weight: 600;
  margin-top: 1.5em;
}

#selectionGuide_detail .blueprint .ja_name {
  font-size: 16px;
  font-weight: normal;
  color: #10218B;
}

#selectionGuide_detail .blueprint .blueprint_inner {
  margin-bottom: 1em;
}

#selectionGuide_detail .blueprint .blueprint_inner > div {
  width: 47.5%;
}

#selectionGuide_detail .blueprint .blueprint_inner > div:nth-child(1) {
  position: relative;
}

#selectionGuide_detail .blueprint .blueprint_inner > div:nth-child(1):after {
  content: "";
  display: block;
  width: 1px;
  height: 85%;
  background-color: #D9E3EC;
  position: absolute;
  right: -5%;
  top: 10%;
}

#selectionGuide_detail #selectionGuide {
  margin-top: 0;
}

#selectionGuide_detail #selectionGuide h2 {
  text-align: center;
  margin-bottom: 2em;
}

@media only screen and (max-width: 767px) {
  #selectionGuide_detail #selectionGuide h2 {
    margin-bottom: 0.6em;
  }
}

#selectionGuide_detail #selectionGuide h3 {
  border: none;
  padding-top: 0.5em;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600;
}

#support_data h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 0.6em;
}

#support_data .top_btn01 a {
  font-size: 20px;
}

#sg8000 h2, #sg8000 h3 {
  font-weight: 600;
}

#sg8000 h2 {
  color: #10218B;
  padding-left: 0;
  font-size: 24px;
  margin-bottom: 0.3em;
  border: none;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  #sg8000 h2 {
    font-size: 2.0rem;
    margin-top: 1em;
  }
}

#sg8000 .frequency {
  padding: 6.4em 0;
  text-align: center;
  line-height: 2.5;
}

@media only screen and (max-width: 768px) {
  #sg8000 .frequency {
    padding: 3em 0;
  }
}

#sg8000 .frequency .top_btn04 {
  margin-top: 2em;
}

#sg8000 .attention {
  margin-top: 3em;
}

#sg8000 .attention h4 {
  color: #10218B;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
}

#sg8000 .attention ol {
  line-height: 3;
}

#sg8000 .attention ol li {
  padding-left: 1.5em;
  word-break: break-all;
  line-height: 2;
}

#sg8000 .attention ol li:before {
  content: "1. ";
  margin-left: -1.2em;
  color: #10218B;
}

#sg8000 .attention ol li + li {
  margin-top: 24px;
}

#sg8000 .attention ol li:nth-child(1)::before {
  content: "1. ";
}

#sg8000 .attention ol li:nth-child(2)::before {
  content: "2. ";
}

#sg8000 .attention ol li:nth-child(3)::before {
  content: "3. ";
}

#sg8000 .attention ol li:nth-child(4)::before {
  content: "4. ";
}

#sg8000 .attention ol li:nth-child(5)::before {
  content: "5. ";
}

#sg8000 .attention ol li:nth-child(6)::before {
  content: "6. ";
}

#sg8000 .btnBox {
  justify-content: center;
  margin-top: 2em;
}

#sg8000 .btnBox:after {
  display: none;
}

#sg8000 .btnBox > div {
  padding: 0 1em;
}

@media only screen and (max-width: 768px) {
  #sg8000 .btnBox > div {
    padding: 0;
  }
}

#sg8000 .btnBox > div a {
  text-align: center;
  padding: 1.0em 3.5em;
}

#sg8000 #tool .flex {
  align-items: center;
}

#sg8000 #tool .flex p {
  line-height: 2;
}

#sg8000 .flex:after {
  display: none;
}

#sg8000 .flex .w45 {
  width: auto;
  flex: 1;
}

#sg8000 .flex .w55 {
  width: auto;
  flex: 2;
}

#agree_page h2 .ja {
  font-size: 34px;
  line-height: 1.3;
}

@media only screen and (max-width: 768px) {
  #agree_page h2 .ja {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  article {
    position: static;
  }
}

.page_navi {
  padding-bottom: 1em;
    /*width: 100%;
    position: fixed;
    top: 110px;
    z-index: 998;*/
}

@media only screen and (max-width: 767px) {
  .page_navi {
    position: absolute;
    top: 124px;
    left: 0;
    width: 100%;
    /* z-index: 10; ↓一時的な対応*/
    z-index: 500;
    padding-bottom: 0;
  }
  .page_navi.fixed {
    position: fixed;
    top: 70px !important;
  }
}

.page_navi .menu {
  display: flex;
  justify-content: center;
}

.page_navi .menu li {
  padding: 1em 2em;
}

.page_navi .menu li a {
  padding-left: 0;
  padding-right: 1em;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 24px;
  font-weight: 600;
  color: #10218B;
}

.page_navi .menu li a:after {
  right: 0;
  left: auto;
}

.page_navi .toggleMenu {
  border: 1px #10218b solid;
  border-left: none;
  border-right: none;
  padding: 0.7em;
  text-align: center;
  width: 100%;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  color: #10218B;
  position: relative;
  background-color: #fff;
}

.page_navi .toggleMenu:before, .page_navi .toggleMenu:after {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #10218B;
  position: absolute;
  top: 50%;
  right: 10px;
  transition: 0.3s;
}

.page_navi .toggleMenu:after {
  transform: rotate(90deg);
}

.page_navi .toggleMenu.open:after {
  transform: rotate(0deg);
}

@media only screen and (max-width: 767px) {
  .page_navi .inner {
    display: none;
    background-color: #D9E3EC;
    padding-bottom: 1em;
    padding-top: 1em;
  }
  .page_navi .inner .menu {
    flex-direction: column;
  }
  .page_navi .inner .menu li {
    width: 100%;
    padding: 1em 1em 0 1em;
  }
  .page_navi .inner #tableOfContents,
    .page_navi .inner #tableOfContents02{
    margin-top: 0;
    margin-bottom: 0;
  }
  .page_navi .inner #tableOfContents ol,
    .page_navi .inner #tableOfContents02 ol{
    border-bottom: 1px #10218B solid;
  }
  .page_navi .inner #tableOfContents ol li,
    .page_navi .inner #tableOfContents02 ol li{
    width: 100%;
    border: 1px #10218B solid;
    border-bottom: none;
  }
  .page_navi .inner #tableOfContents ol li a,
    .page_navi .inner #tableOfContents02 ol li a{
    text-align: left;
  }
  .page_navi .inner #tableOfContents ol li a br,
    .page_navi .inner #tableOfContents02 ol li a br{
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #programmable_menu .toggleMenu {
    border-top: none;
  }
  .fixed_in:has(#tableOfContents02) .contentsMenu {
    margin-top: 43px;
  }
}

.about_rtc,
#about_spxo_intro {
  padding-top: 1em;
}

#about_spxo_intro h2,
#about_spxp h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  #about_spxo_intro h2,
  #about_spxp h2 {
    font-size: 5.5vw;
  }
}

#about_spxp {
  margin-top: 1em;
}

#about_spxp .flex:after {
  display: none;
}

#about_spxp .accodion_wrap {
  margin: 0;
}

#about_spxp .accodion_wrap h2 {
  padding: 0;
  position: relative;
  margin: 0;
  padding: 15px 2em 15px 0;
  font-size: 85%;
  display: inline-block;
  cursor: pointer;
}

#about_spxp .accodion_wrap h2::before, #about_spxp .accodion_wrap h2::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #10218B;
  position: absolute;
  right: 0;
  top: 50%;
  transition: .3s;
}

#about_spxp .accodion_wrap h2::before {
  transform: rotate(90deg);
}

#about_spxp .accodion_wrap h2.open::before {
  transform: rotate(0deg);
}

#about_spxp .accodion {
  padding-bottom: 2em;
  display: none;
}

#about_spxp .accodion h3 {
  color: #10218B;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
  border: none;
  padding-top: 2em;
}

#about_spxp .accodion .nayami {
  margin-top: 1em;
}

#about_spxp .accodion .nayami .flex > div {
  width: 47%;
}

@media only screen and (max-width: 767px) {
  #about_spxp .accodion .nayami .flex > div {
    width: 100%;
  }
}

#about_spxp .accodion .nayami .flex > div h4 {
  color: #10218B;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}

#about_spxp .accodion .nayami .flex > div:nth-child(1) {
  position: relative;
}

@media only screen and (max-width: 767px) {
  #about_spxp .accodion .nayami .flex > div:nth-child(1) {
    margin-bottom: 3em;
  }
}

#about_spxp .accodion .nayami .flex > div:nth-child(1):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 20px solid #10218b;
  border-right: 0;
  position: absolute;
  right: -42px;
  top: 50%;
}

@media only screen and (max-width: 767px) {
  #about_spxp .accodion .nayami .flex > div:nth-child(1):after {
    right: calc(50% - 10px);
    transform: rotate(90deg);
    bottom: -40px;
    top: auto;
  }
}

#about_spxp .accodion .pickup .flex > div:nth-child(1) {
  width: 26%;
}

@media only screen and (max-width: 767px) {
  #about_spxp .accodion .pickup .flex > div:nth-child(1) {
    width: 100%;
  }
}

#about_spxp .accodion .pickup .flex > div:nth-child(2) {
  width: 71%;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  #about_spxp .accodion .pickup .flex > div:nth-child(2) {
    width: 100%;
  }
}

#about_spxp .accodion .pickup .flex > div:nth-child(2) .top_btn01 {
  margin-top: 1em;
  max-width: 280px;
}

@media only screen and (max-width: 767px) {
  #about_spxp .accodion .pickup .flex > div:nth-child(2) .top_btn01 {
    max-width: none;
  }
}

#about_spxp .accodion .pickup .flex > div:nth-child(2) .top_btn01 a {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

#about_spxp .accodion .items {
  margin-top: 1.5em;
}

#about_spxp .accodion .items a {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  #pspxo_82 {
    padding-top: 1em;
  }
}

#pspxo_82 h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  #pspxo_82 h2 {
    font-size: 6vw;
  }
}

#pspxo_82 p.ttl {
  font-weight: 600;
  font-size: 20px;
  color: #10218B;
}

@media only screen and (max-width: 767px) {
  #pspxo_82 p.ttl {
    font-size: 4vw;
  }
}

#pspxo_82 ul.page_navi_link {
  display: flex;
  margin-top: 1.5em;
}

@media only screen and (max-width: 767px) {
  #pspxo_82 ul.page_navi_link {
    flex-direction: column;
    border-bottom: 1px #D9E3EC solid;
  }
}

#pspxo_82 ul.page_navi_link li {
  list-style: none !important;
  text-align: center;
  width: 33.333333333333333333333%;
  border: 1px #D9E3EC solid;
  padding: 0;
  position: relative;
  background-color: #fff;
  border-right: none;
}

@media only screen and (max-width: 767px) {
  #pspxo_82 ul.page_navi_link li {
    width: 100%;
    border-left: none;
    border-bottom: none;
  }
}

#pspxo_82 ul.page_navi_link li:last-child {
  border-right: 1px #D9E3EC solid;
}

@media only screen and (max-width: 767px) {
  #pspxo_82 ul.page_navi_link li:last-child {
    border-right: none;
  }
}

#pspxo_82 ul.page_navi_link li a {
  display: block;
  width: 100%;
  padding: 1em 1em;
  font-weight: 600;
  color: #10218B;
  text-align: left;
  position: relative;
}

#pspxo_82 ul.page_navi_link li a:after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1px solid #10218B;
  border-bottom: 1px solid #10218B;
  position: absolute;
  right: 5%;
  top: calc(50% - 6px);
  transform: rotate(45deg);
}

#spxo_gaiyo h2,
#spxo_lineup h2,
#support h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  #spxo_gaiyo h2,
  #spxo_lineup h2,
  #support h2 {
    font-size: 5.6vw;
  }
}

#spxo_gaiyo h3,
#spxo_lineup h3,
#support h3 {
  border: none;
}

@media only screen and (max-width: 767px) {
  #spxo_gaiyo h3,
  #spxo_lineup h3,
  #support h3 {
    font-size: 4.5vw;
  }
}

#spxo_gaiyo h1.headline,
#spxo_lineup h1.headline,
#support h1.headline {
  font-size: 28px;
  font-weight: 600;
  color: #10218b;
}

#spxo_gaiyo h2.headline,
#spxo_lineup h2.headline,
#support h2.headline {
  font-size: 24px;
  font-weight: 600;
  margin-top: 1em;
}

@media only screen and (max-width: 768px) {
  #spxo_gaiyo h2.headline,
  #spxo_lineup h2.headline,
  #support h2.headline {
    margin-top: 0.5em;
  }
}

#spxo_gaiyo p,
#spxo_lineup p,
#support p {
  line-height: 1.8;
}

#spxo_gaiyo .items,
#spxo_lineup .items,
#support .items {
  margin-top: 3em;
}

#spxo_gaiyo .items .white_bg,
#spxo_lineup .items .white_bg,
#support .items .white_bg {
  background-color: #fff;
  padding: 1.5em;
  margin-top: 1em;
}

@media only screen and (max-width: 767px) {
  #spxo_gaiyo .items .white_bg,
  #spxo_lineup .items .white_bg,
  #support .items .white_bg {
    padding: 1em;
  }
}

#spxo_gaiyo .items h3,
#spxo_lineup .items h3,
#support .items h3 {
  margin-bottom: 0em;
}

#spxo_gaiyo .items h4,
#spxo_lineup .items h4,
#support .items h4 {
  font-weight: 600;
  color: #10218B;
  margin-bottom: 0.5em;
}

#spxo_gaiyo .items .border_none td,
#spxo_lineup .items .border_none td,
#support .items .border_none td {
  vertical-align: top;
}

#spxo_gaiyo .items .border_none td h4,
#spxo_lineup .items .border_none td h4,
#support .items .border_none td h4 {
  margin-top: 1em;
}

#spxo_gaiyo .items .border_none td .top_btn01 a,
#spxo_lineup .items .border_none td .top_btn01 a,
#support .items .border_none td .top_btn01 a {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

#spxo_gaiyo .items .border_none > tbody > tr > td,
#spxo_lineup .items .border_none > tbody > tr > td,
#support .items .border_none > tbody > tr > td {
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  #spxo_gaiyo .items .border_none > tbody > tr > td,
  #spxo_lineup .items .border_none > tbody > tr > td,
  #support .items .border_none > tbody > tr > td {
    padding: 0;
    display: block;
  }
}

#spxo_feature h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  #spxo_feature h2 {
    font-size: 6vw;
  }
}

#spxo_feature p {
  line-height: 1.8;
}

#spxo_feature .graph_box > div,
#spxo_feature .feature_box > div {
  width: 48%;
}

@media only screen and (max-width: 767px) {
  #spxo_feature .graph_box > div,
  #spxo_feature .feature_box > div {
    width: 100%;
  }
}

#spxo_feature .graph_box > div figure,
#spxo_feature .feature_box > div figure {
  padding: 1em 2em;
}

#spxo_feature .graph_box > div h3,
#spxo_feature .feature_box > div h3 {
  border: none;
  margin-bottom: 0;
}

#spxo_feature .graph_box {
  margin-top: 10px;
  margin-bottom: 2em;
}

#spxo_feature .graph_box > div figure {
  padding: 1em 0;
}

#spxo_feature .graph_box02 > div {
  width: 30%;
}

@media only screen and (max-width: 767px) {
  #spxo_feature .graph_box02 > div {
    width: 100%;
  }
}

#spxo_feature .gray {
  margin: 3em 0;
  padding: 2em;
}

#spxo_feature .gray h3 {
  border: none;
}

#spxo_feature .gray h4 {
  color: #10218B;
  font-weight: 600;
  margin-bottom: 8px;
}

#spxo_feature span.yellow {
  color: #FEFA05;
}

#spxo_feature .option h3 {
  border: none;
  font-size: 100%;
  margin-bottom: 0;
  padding-bottom: 0.6em;
}

#spxo_feature .option p.ttl {
  font-weight: 600;
}

#spxo_feature .option .option_box > div {
  width: 48%;
}

@media only screen and (max-width: 767px) {
  #spxo_feature .option .option_box > div {
    width: 100%;
    margin-bottom: 0.5em;
  }
}

#spxo_feature .option .option_box .table {
  margin-top: 0.5em;
}

#spxo_feature .option .option_box .table.trtf img {
  max-width: 120px;
}

#spxo_feature .option .option_last {
  margin-top: 1em;
}

#spxo_feature .option td.bg {
  background-color: #FAFAFD;
}

#spxo_feature .movie_wrap > div {
  width: 48%;
}

@media only screen and (max-width: 767px) {
  #spxo_feature .movie_wrap > div {
    width: 100%;
  }
  #spxo_feature .movie_wrap > div .tokucyo {
    margin-bottom: 1em;
  }
}

#spxo_feature .movie_wrap .mt1 {
  margin-top: 1em;
}

.mt0 {
  margin-top: 0px!important;
}
.mt05 {
  margin-top: 0.5em;
}
.mt1 {
  margin-top: 1em;
}
.mt30 {
    margin-top: 30px;
}
.pb6v {
    padding-bottom: 6vw;
}

#pspxo_91 #spxo_feature h3 {
  border: none;
  margin-bottom: 0;
}

#pspxo_91 #spxo_feature p.ttl {
  font-weight: 600;
}

#pspxo_91 #spxo_feature .feature_box > div figure {
  padding: 0.5em 0;
}

#pspxo_91 #spxo_feature .blocks {
  margin-top: 3em;
}

#pspxo_91 #spxo_feature h4 {
  font-weight: 600;
}

#spec h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  #spec h2 {
    font-size: 6vw;
  }
}

#spec .graph_box {
  margin-top: 10px;
  margin-bottom: 2em;
}

#spec .graph_box > div figure {
  padding: 1em 0;
}

#spec .graph_box02 > div {
  width: 30%;
}

@media only screen and (max-width: 767px) {
  #spec .graph_box02 > div {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  #spec .table {
    overflow-x: auto;
  }
}

.series h3 {
  border: none;
  font-size: 100%;
  margin-bottom: 0;
  margin-top: 2em;
}

@media only screen and (max-width: 767px) {
  .series .table {
    overflow-x: auto;
  }
}

.series table thead th {
  text-align: left;
}

.series table tbody td.blue01 {
  background-color: #D9F4FF;
}

.series table tbody td.blue02 {
  background-color: #F0FBFF;
}

#tableOfContents,
#tableOfContents02{
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
  #tableOfContents,
    #tableOfContents02 {
    margin: 0;
  }
}

#tableOfContents ol,
#tableOfContents02 ol{
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
    
}

#tableOfContents ol li,
#tableOfContents02 ol li{
  list-style: none !important;
  text-align: center;
  width: 20%;
  border: 1px #D9E3EC solid;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
    background-color: #FFFFFF;
  position: relative;
}
#tableOfContents.list4 ol li,
#tableOfContents02.list4 ol li{
  width: 25%;
}

#tableOfContents ol li:last-child,
#tableOfContents02 ol li:last-child{
  border-right: 1px #D9E3EC solid;
}

#tableOfContents ol li:nth-child(5n),
#tableOfContents02 ol li:nth-child(5n) {
  border-right: 1px #D9E3EC solid;
}

#tableOfContents ol li:after,
#tableOfContents02 ol li:after{
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1px solid #10218B;
  border-bottom: 1px solid #10218B;
  position: absolute;
  right: 5%;
  top: calc(50% - 6px);
  transform: rotate(-45deg);
}

#tableOfContents ol li a,
#tableOfContents02 ol li a{
  display: block;
  width: 100%;
  padding: 0.6em 1em;
  font-weight: 600;
  color: #10218B;
  transition: none;
}

#tableOfContents ol li:hover,
#tableOfContents02 ol li:hover{
  background-color: #10218B;
  color: #fff;
}

#tableOfContents ol li:hover:after,
#tableOfContents02 ol li:hover:after{
  border-color: #fff;
}

#tableOfContents ol li:hover a,
#tableOfContents02 ol li:hover a{
  color: #fff;
  text-decoration: none;
}

#tableOfContents ol li:hover a:active,
#tableOfContents02 ol li:hover a:active{
  color: #fff;
}

#rtc_menu #tableOfContents ol,
#rtc_menu #tableOfContents02 ol{
  justify-content: center;
}

#rtc_menu #tableOfContents ol li,
#rtc_menu #tableOfContents02 ol li{
  width: 25%;
}

@media only screen and (max-width: 767px) {
  #rtc_menu #tableOfContents ol li,
    #rtc_menu #tableOfContents02 ol li{
    width: 100%;
  }
}

#rtc_menu #tableOfContents ol li a,
#rtc_menu #tableOfContents02 ol li a{
  padding: 1.2em 1em;
}

@media only screen and (max-width: 767px) {
  #rtc_menu #tableOfContents ol li a,
    #rtc_menu #tableOfContents02 ol li a{
    padding: 0.6em 1em;
  }
}

.productIndex #main{
    padding-top: 72px;
}
@media only screen and (max-width: 768px){
    .productIndex #main {
        padding-top: 70px;
    }
    .table-sorter{
        min-width: 1200px;
    }
}
@media only screen and (min-width: 769px){
    .page_navi .menu{
        margin-top: 80px;
    }
    #column_two .fixed_menu .fixed_in #tableOfContents{
        position: absolute;
        top: 50px;
    }
    #tableOfContents{
        position: fixed;
        left: 0;
        /*top: 96px;*/
        top: 110px;
        background: #fff;
        z-index: 998;
        transition: .3s;
    }
    #tableOfContents.aidaView,
    #tableOfContents02.aidaView{
        top: 56px;
    }
}
@media only screen and (max-width: 768px){
    .productIndex #main {
        padding-top: 70px;
    }
    .table-sorter{
        min-width: 1200px;
    }
}

#support {
  padding-top: 0;
}

#support h3 {
  margin-top: 2em;
}

#support .w100 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .about_rtc.gray {
    padding-top: 4em !important;
  }
}

.about_rtc.gray h2 {
  font-size: 28px;
}

@media only screen and (max-width: 767px) {
  .about_rtc.gray h2 {
    font-size: 6vw;
  }
}

#feature h1 {
  color: #10218B;
  margin-bottom: 3em;
}

@media only screen and (max-width: 767px) {
  #feature h1 {
    margin-bottom: 1em;
  }
}

#feature h1 span {
  font-size: 28px;
}

@media only screen and (max-width: 767px) {
  #feature h1 span {
    font-size: 6.8vw;
  }
}

#feature #introduction {
  flex-wrap: nowrap;
  gap: 28px;
}

#feature #introduction:after {
  display: none;
}

#feature #introduction > div:nth-child(1) {
  flex: 1;
  width: auto;
}

#feature #introduction > div:nth-child(1) iframe {
  max-width: 100%;
}

#feature #introduction > div:nth-child(2) {
  flex: 1.7;
  width: auto;
}

.tablesorter .header,
.tablesorter .tablesorter-header {
  /* white (unsorted) double arrow */
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
  background-repeat: no-repeat;
  background-position: center right;
  padding: 4px 18px 4px 4px;
  white-space: normal;
  cursor: pointer;
}

.tablesorter .header.sorter-false,
.tablesorter .tablesorter-header.sorter-false {
  background-image: none;
  padding: 11px 8px !important;
  cursor: auto;
}

.tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc {
  /* white asc arrow */
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}

.tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc {
  /* white desc arrow */
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

/* 在庫検索ポップアップ用CSS ここから */
.js-modal {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: fixed;
  /* 画面に固定するために指定 */
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.modal {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  min-width: 1016px;
  width: calc(90vw + 16px);
  opacity: 0;
  visibility: hidden;
}

.modal__inner {
  margin-top: 20vh;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 13px;
  display: block;
  padding: 28px 8px 18px;
  height: auto;
}

.modal__content {
  height: 60vh;
  min-width: 1000px;
  width: 90vw;
}

.modal__button-wrap {
  position: absolute;
  right: 5px;
  top: 5px;
  display: inline-flex;
}

.close-button {
  position: relative;
  width: 19px;
  height: 19px;
  background: #000;
  border-radius: 50%;
  padding: 0;
  border: transparent;
  cursor: pointer;
}

.close-button span {
  width: 15px;
  height: 2px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: calc(50% - 8px);
  top: 50%;
}

.close-button span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.layer.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.layer.is-open .modal {
  opacity: 1;
  visibility: visible;
}

#stockpage {
  width: calc(100% - 4px);
  height: 100%;
  border-width: 2px;
}

.iframe-placeholder {
  background-image: url("/sensing/assets/img/loading.gif");
  background-position: center 50%;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .modal {
    width: 100%;
    min-width: auto;
  }
  .modal__inner {
    margin-top: 4px;
  }
  .modal__content {
    height: calc(98vh - 50px);
    width: calc(100% - 16px);
    min-width: auto;
  }
}

/* 在庫検索ポップアップ用CSS ここまで */
/*.youtube_icon {
  margin-right: 0;
  position: relative;
}

.youtube_icon:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(/sensing/assets/img/common/3721679-youtube_108064.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
}*/

#crystal-oscillator h2 {
  font-size: 22px;
}

@media only screen and (max-width: 768px){
  .table-sorter{
      min-width: 1200px;
  }
  #ic_partner .table-sorter{
    min-width: 500px;
  }
}

.none_programmable_menu .page_navi{
    display: none;
}

.agree_page #productIndexFixed{
  display: none;
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .product_head .inner{
    padding: 0;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 769px) {
  .btn_links .btn .text{
      font-size: 1.6vw;
  }
  .product_head .btn_links .btn a::after{
      right: 7px;
      width: 6px;
      height: 6px;
  }
  .product_tab li{
    font-size: 1.6vw;
  }
  #productTop .flex ul li a{
    font-size: 1.7vw;
  }
  #selectionGuide h2{
    font-size: 2.0vw;
  }
}

/* techinfo/techinfo.css */
h3 {
  padding: 16px 0 8px 0px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  border-bottom: none !important;
}
h3.p-top0 {
  padding: 0px 0 8px 20px;
  /*position: relative;
  font-size: 20px;
  font-weight: bold;
  border-bottom: none !important;*/
}


@media only screen and (max-width: 768px) {
  #topColumn h2 {
    text-align: center;
  }
  #topColumn .toggleMenu {
    border: 1px #10218b solid;
    border-left: none;
    border-right: none;
    padding: 0.7em;
    text-align: center;
    width: 100%;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    color: #10218B;
    position: relative;
    background-color: #fff;
  }
  #topColumn .toggleMenu:before, #topColumn .toggleMenu:after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #10218B;
    position: absolute;
    top: 50%;
    right: 10px;
    transition: 0.3s;
  }
  #topColumn .toggleMenu:after {
    transform: rotate(90deg);
  }
  #topColumn .toggleMenu.open:after {
    transform: rotate(0deg);
  }
}

#topColumn .count_none {
  display: none;
}

#topColumn h3 {
  padding-left: 0;
  margin-bottom: 0;
}

#topColumn .column_list {
  /* width: calc(100% - 25%); */
    width: 100%;
}
/*
@media only screen and (max-width: 768px) {
  #topColumn .column_list {
    width: 100%;
  }
}
*/

#topColumn .column_list li {
  border-bottom: 1px #D9E3EC solid;
  padding: 2.5em 0;
}

@media only screen and (max-width: 768px) {
  #topColumn .column_list li {
    padding: 1.5em 0;
  }
}

#topColumn .column_list li.show {
  display: block;
}

#topColumn .column_list li.hide {
  display: none;
}

#topColumn .column_list li a {
  text-decoration: none;
}

#topColumn .column_list li a:hover {
  opacity: 0.8;
}

#topColumn .column_list li a .flex .image {
  width: 300px;
}

@media only screen and (max-width: 768px) {
  #topColumn .column_list li a .flex .image {
    width: 100%;
    text-align: center;
  }
}

#topColumn .column_list li a .flex .image img {
  max-width: 95%;
}

#topColumn .column_list li a .flex .text {
  width: calc(100% - 300px);
  color: #333;
}

@media only screen and (max-width: 768px) {
  #topColumn .column_list li a .flex .text {
    width: 100%;
    padding-top: 10px;
  }
}

#topColumn .column_list li a .flex .text .date_category {
  margin-bottom: 10px;
}

#topColumn .column_list li a .flex .text .date_category .date {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

#topColumn .column_list li a .flex .text .date_category .category {
  display: inline-block;
  background: #F2F6F6;
  color: #666;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  border-radius: 16px;
  padding: 3px 15px;
  white-space: nowrap;
  margin-left: 20px;
}

#topColumn .column_list li a .flex .text h4.title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 0.5em;
}

#topColumn .column_list li a .flex .text .view_more {
  font-size: 18px;
  color: #10218B;
  display: block;
  text-align: right;
  margin-top: 1em;
  position: relative;
}

#topColumn .column_list li a .flex .text .view_more:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  margin-left: 5px;
  vertical-align: baseline;
  transform: translateY(-2px) rotate(-45deg);
}

#topColumn .fixed_menu {
  opacity: 1;
  transition: 0.3s;
  width: 22%;
}

#topColumn .fixed_menu.hide {
  opacity: 0;
}

#topColumn .fixed_menu h3 {
  margin-bottom: 0.5em;
}

#topColumn .fixed_menu ul {
  border-top: 1px #D9E3EC solid;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  #topColumn .fixed_menu {
    width: 100%;
    margin-top: 0em;
    position: fixed;
    left: 0;
    top: 70px;
  }
  #topColumn .fixed_menu .fixed {
    position: static !important;
  }
  #topColumn .fixed_menu h3.toggleMenu {
    margin: 0;
    font-size: 14px;
    border-bottom: 1px #003399 solid !important;
    border-top: 1px #003399 solid;
  }
  #topColumn .fixed_menu ul {
    display: none;
  }
}

#topColumn .fixed_menu li {
  border-left: 1px #D9E3EC solid;
  border-right: 1px #D9E3EC solid;
}

#topColumn .fixed_menu li a {
  display: block;
  border-bottom: 1px #D9E3EC solid;
  text-align: center;
  padding: 0.8em;
  position: relative;
  text-decoration: none;
  font-weight: 600;
}

#topColumn .fixed_menu li a::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  right: 1em;
  top: calc(50% - 4px);
}

#topColumn .fixed_menu li a:hover {
  background-color: #10218B;
  color: #fff;
}

#topColumn .fixed_menu li a:hover::after {
  border-color: #fff;
}

#topColumn .fixed_menu .fixed {
  position: sticky;
  top: 10%;
  left: 72%;
}

@media only screen and (max-width: 1200px) {
  #topColumn .fixed_menu .fixed {
    right: 4vw;
  }
  #topColumn .fixed_menu .fixed li {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  #topColumn .fixed_menu.fixed {
    position: fixed;
    top: 70px !important;
    right: 0;
    left: 0;
    transition: none;
  }
}

#techInfo h3 {
  padding: 16px 0 8px 20px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

#techInfo h3:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 50%;
}

.document_box,
.document_box2 {
  border: 1px #10218B solid;
  margin: 2em 0;
}

@media only screen and (max-width: 768px) {
  .document_box,
  .document_box2 {
    margin-top: 0;
  }
}

.document_box h4,
.document_box2 h4 {
  background-color: #10218B;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
}

.document_box .inbox,
.document_box2 .inbox {
  padding: 0 20px 20px;
}

.document_box .inbox .link,
.document_box2 .inbox .link {
  margin-top: 15px;
}

.document_box .inbox .link a,
.document_box2 .inbox .link a {
  position: relative;
  font-weight: 600;
}

.document_box .inbox .link a:after,
.document_box2 .inbox .link a:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  margin-left: 5px;
  vertical-align: baseline;
  transform: translateY(-3px) rotate(-45deg);
}

#columnContact .btn_contact {
  justify-content: center;
  gap: 16px;
}

#columnContact .btn_contact::after {
  display: none;
}

#columnDetail {
  padding-bottom: 5em;
  /*****************************************************************************
    Style Basic
    *****************************************************************************/
  /** [tableStyle01用 下線太] **************************************************************************/
  /* 下 */
}

#columnDetail.pb0 {
  padding-bottom: 0;
}

#columnDetail h1 {
  font-size: 24px;
  color: #10218B;
  font-weight: 600;
  border: none;
}

@media only screen and (max-width: 767px) {
  #columnDetail h1 {
    font-size: 6vw;
    font-size: min(6vw, 24px);
  }
}

#columnDetail h2 {
  background-color: #D9E3EC;
  padding: 0.5em;
  text-align: left;
  font-size: 20px;
  margin-top: 3em;
  margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
  #columnDetail h2 {
    margin-top: 1.5em;
    font-size: 5vw;
    font-size: min(5vw, 22px);
  }
}

#columnDetail h2.mb0 {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  #columnDetail h2 {
    margin-bottom: 0.5em;
  }
}

#columnDetail h3 {
  color: #333;
  font-size: 18px;
  margin-top: 2em;
  padding-top: 0;
  padding-left: 0;
  margin-bottom: 0.5em;
  padding-bottom: 0;
}

#columnDetail h3.gray {
  background-color: #F2F6F6;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

#columnDetail h3.gray.txt-left {
  text-align: left;
}

#columnDetail figure {
  text-align: center;
  margin: 2em 0;
}

@media only screen and (max-width: 768px) {
  #columnDetail figure {
    margin: 1em 0 0;
  }
}

#columnDetail figure p {
  font-size: 90%;
}

#columnDetail figure img {
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  #columnDetail figure img {
    max-width: 100%;
  }
}

#columnDetail figure.attention {
  text-align: left;
  margin: 0.5em 0 2em 0;
}

#columnDetail .mt2 {
  margin-top: 2em;
}

#columnDetail h4 {
  font-weight: bold;
  margin-bottom: 4px;
}

#columnDetail p {
  line-height: 1.8;
}

#columnDetail p.ttl {
  font-weight: 600;
}

#columnDetail .list-style {
  margin-left: 1.5em;
}

#columnDetail .list-style li {
  list-style: square;
}

#columnDetail .flex * {
  line-height: 1.8;
}

#columnDetail .flex > div:nth-child(1) {
  width: 60%;
}

@media only screen and (max-width: 768px) {
  #columnDetail .flex > div:nth-child(1) {
    width: 100%;
  }
}

#columnDetail .flex > div:nth-child(2) {
  width: 38%;
}

@media only screen and (max-width: 768px) {
  #columnDetail .flex > div:nth-child(2) {
    width: 100%;
    margin-top: 1em;
  }
}

#columnDetail .flex.btn_contact > div {
  width: 49%;
}

@media only screen and (max-width: 768px) {
  #columnDetail .flex.btn_contact > div {
    width: 100%;
    margin-top: 1em;
  }
}

#columnDetail .flex.column2 > div {
  width: 48.5%;
}

@media only screen and (max-width: 768px) {
  #columnDetail .flex.column2 > div {
    width: 100%;
  }
}

#columnDetail .imgFifty.flex > div {
  width: 48.5%;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #columnDetail .imgFifty.flex > div {
    margin-top: 0;
    margin-bottom: 1em;
    width: 100%;
  }
}

#columnDetail .top_btn01 {
  margin-top: 2em;
  margin-bottom: 2em;
}

#columnDetail .top_btn01 a {
  text-align: center;
}

#columnDetail .movie_box.flex {
  justify-content: space-between;
  margin-top: 2em;
  margin-bottom: 2em;
}

#columnDetail .movie_box.flex > div {
  width: 48.5%;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #columnDetail .movie_box.flex > div {
    width: 100%;
  }
}

#columnDetail .movie_box.flex > div iframe {
  margin: auto;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #columnDetail .movie_box.flex > div iframe {
    width: 100%;
    height: 230px;
  }
}

#columnDetail .purpose.flex > div {
  width: 49%;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #columnDetail .purpose.flex > div {
    width: 100%;
  }
}

#columnDetail .purpose.flex > div h5 {
  margin: 1em 0;
  padding: 5px;
  color: #fff;
}

#columnDetail .purpose.flex > div h5.general {
  background-color: #666;
}

#columnDetail .purpose.flex > div h5.epson {
  background-color: #10218B;
}

#columnDetail .purpose.flex.purpose_graphs p {
  font-weight: 600;
  padding-bottom: 0.5em;
}

#columnDetail ol {
  padding-left: 2em;
}

#columnDetail ol li {
  list-style: decimal;
  padding-bottom: 1em;
}

#columnDetail ol li::marker {
  font-weight: 600;
  font-size: 1.8rem;
}

#columnDetail ol li p.ttl {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 0.3em;
}

#columnDetail .product_link {
  margin-top: 0.5em;
  margin-bottom: 3em;
}

#columnDetail .product_link a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  margin-right: 1em;
}

#columnDetail .product_link a:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  vertical-align: baseline;
  transform: translateY(-2px) rotate(-45deg);
  margin-right: 8px;
}

#columnDetail h4 + .product_link {
  margin-top: 0.5em;
}

#columnDetail .product_link_one a {
  margin-left: 0;
}

#columnDetail .application {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#columnDetail .application li {
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  #columnDetail .application li {
    width: 100%;
  }
}

#columnDetail .application li i {
  display: block;
  width: 60px;
  margin-right: 10px;
}

#columnDetail .calc_text {
  font-weight: 600;
  font-size: 110%;
  color: #10218B;
}

#columnDetail .table02 {
  margin: 1em 0;
}

#columnDetail .table02 table {
  width: 100%;
}

#columnDetail table.tableStyle01, #columnDetail table.tableStyle02, #columnDetail table.tableStyle05, #columnDetail table.tableStyle06 {
  width: 100%;
}

#columnDetail table.tableStyle03 {
  width: 100%;
  margin-bottom: 1em;
}

#columnDetail table.tableStyle04 {
  width: 65%;
  margin-bottom: 1em;
}

#columnDetail table.tableStyle02, #columnDetail table.tableStyle04 {
  background: #f4f4f4;
}

#columnDetail table.tableStyle01 td, #columnDetail table.tableStyle01 th,
#columnDetail table.tableStyle02 td, #columnDetail table.tableStyle02 th,
#columnDetail table.tableStyle03 td, #columnDetail table.tableStyle03 th,
#columnDetail table.tableStyle04 td, #columnDetail table.tableStyle04 th {
  border: 1px solid #999999;
  padding: 0.5em;
  vertical-align: middle;
}

#columnDetail table.tableStyle01 td.bd-lBB, #columnDetail table.tableStyle01 th.bd-lBB {
  border-left: 3px solid #003399;
}

#columnDetail table.tableStyle01 td.bd-lBB_bk, #columnDetail table.tableStyle01 th.bd-lBB_bk {
  border-left: 5px solid #999999;
}

#columnDetail table.tableStyle01 td.bd-nn, #columnDetail table.tableStyle01 th.bd-nn {
  border: none;
}

#columnDetail table.tableStyle01 td.bd-rBB, #columnDetail table.tableStyle01 th.bd-rBB {
  border-right: 3px solid #003399;
}

#columnDetail table.tableStyle01 td.bd-bBB, #columnDetail table.tableStyle01 th.bd-bBB {
  border-bottom: 3px solid #003399;
}

#columnDetail table.tableStyle01 td.bd-tBB, #columnDetail table.tableStyle01 th.bd-tBB {
  border-top: 3px solid #003399;
}

#columnDetail table.tableStyle01 td.bk-B, #columnDetail table.tableStyle01 th.bk-B {
  background-color: #B9E6FC;
}

#columnDetail table.tableStyle01 td.bk-Bm, #columnDetail table.tableStyle01 th.bk-Bm {
  background-color: #3CBDFC;
}

#columnDetail table.tableStyle01 td.bk-Bh, #columnDetail table.tableStyle01 th.bk-Bh {
  background-color: #003399;
  color: #ffffff;
}

#columnDetail table.tableStyle05 td, #columnDetail table.tableStyle05 th {
  border: 1px solid #999999;
  padding: 0.3em 0;
  vertical-align: middle;
}

#columnDetail table.tableStyle06 td, #columnDetail table.tableStyle06 th {
  border: 1px solid #ffffff;
  padding: 0.3em 0;
  vertical-align: middle;
}

#columnDetail table.tableStyle01 th, #columnDetail table.tableStyle02 th,
#columnDetail table.tableStyle03 th, #columnDetail table.tableStyle04 th,
#columnDetail table.tableStyle05 th {
  background: #f1f3f5;
}

#columnDetail table.pad0 td, #columnDetail table.pad0 th {
  padding: 0;
}

#columnDetail table.pad1 td, #columnDetail table.pad1 th {
  padding: 1px;
}

#columnDetail table.pad3 td, #columnDetail table.pad3 th {
  padding: 3px;
}

#columnDetail table.pad5 td, #columnDetail table.pad5 th {
  padding: 5px;
}

#columnDetail .vaM {
  vertical-align: middle;
}

#columnDetail .articleBody table.tableStyle01, #columnDetail .articleBody table.tableStyle02, #columnDetail .articleBody table.tableStyle05, #columnDetail .articleBody table.tableStyle03, #columnDetail .articleBody table.tableStyle06 {
  border: none;
}

#columnDetail .articleBody table.tableStyle01 thead tr, #columnDetail .articleBody table.tableStyle02 thead tr, #columnDetail .articleBody table.tableStyle06 thead tr {
  border-bottom: none;
}

#columnDetail .articleBody table.tableStyle01 tbody tr + tr, #columnDetail .articleBody table.tableStyle02 tbody tr + tr, #columnDetail .articleBody table.tableStyle06 tbody tr + tr {
  border-top: none;
}

#columnDetail .ahover a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 0;
}

#columnDetail .ahover a:hover,
#columnDetail .ahover a:focus {
  background-color: #d3d3d3;
}

#columnDetail table.tableStyle01 .bdfBB, #columnDetail table.tableStyle01 .bdfGB {
  border-bottom: solid 2px #999999;
}

#columnDetail table.tableStyle05 .bdfBB, #columnDetail table.tableStyle05 .bdfGB {
  border-bottom: solid 2px #999999;
}

#columnDetail table.tableStyle05 .bdGB {
  border-bottom: solid 1px #999999;
}

#columnDetail p.bold {
  font-weight: 600;
}

#columnDetail table.tableStyle01 td img.mt5 {
  margin-top: 5px;
}

#columnDetail table.tableStyle01 td img.mw300 {
  max-width: 300px;
}

#columnDetail table.tableStyle01 th.w35 {
  width: 35%;
}

#columnDetail table.tableStyle01.mb0 {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  #columnDetail table.tableStyle01 th,
  #columnDetail table.tableStyle01 td {
    padding: 0.25em;
    font-size: 11px;
  }
  #columnDetail table.tableStyle01 th div, #columnDetail table.tableStyle01 th span,
  #columnDetail table.tableStyle01 td div,
  #columnDetail table.tableStyle01 td span {
    font-size: 11px;
  }
  #columnDetail table.tableStyle01 th a.arrow:after,
  #columnDetail table.tableStyle01 td a.arrow:after {
    top: 5px;
  }
}

#columnDetail #sensor_flow {
  margin-top: 2em;
}

#columnDetail #sensor_flow > div {
  position: relative;
}

#columnDetail #sensor_flow > div img {
  display: block;
  margin: auto;
}

#columnDetail #sensor_flow > div:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #d9e3ec;
  border-right: 0;
  position: absolute;
  right: 0;
  top: calc(30% - 8px);
}

@media only screen and (max-width: 768px) {
  #columnDetail #sensor_flow > div:before {
    transform: rotate(90deg);
    right: auto;
    left: calc(50% - 8px);
    top: auto;
    bottom: -30px;
  }
}

@media only screen and (max-width: 768px) {
  #columnDetail #sensor_flow > div {
    margin-bottom: 3em;
  }
}

#columnDetail #sensor_flow > div:last-child::before {
  display: none;
}

#columnDetail #sensor_flow > div:nth-child(3):before {
  display: none;
}

@media only screen and (max-width: 768px) {
  #columnDetail #sensor_flow > div:nth-child(3):before {
    display: block;
  }
}

#columnDetail #sensor_flow > div:nth-child(4):after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #d9e3ec;
  border-right: 0;
  position: absolute;
  left: 0;
  top: calc(30% - 8px);
}

@media only screen and (max-width: 768px) {
  #columnDetail #sensor_flow > div:nth-child(4):after {
    display: none;
  }
}

#columnDetail #senser_use .triangle {
  margin-top: 1em;
  position: relative;
  margin-bottom: 30px;
}

#columnDetail #senser_use .triangle:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #d9e3ec;
  border-right: 0;
  position: absolute;
  right: 50%;
  bottom: -30px;
  transform: rotate(90deg);
}

#columnDetail .appList {
  gap: 5px;
}

#columnDetail .appList li {
  width: 24%;
  margin-bottom: 1em;
  text-align: center;
}

#columnDetail .appList li img {
  width: 85%;
}

#columnDetail .appList li .products {
  background-color: #10218B;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 6px;
  line-height: 1.2;
  border-radius: 20px;
}

#columnDetail .appList li p.tech {
  text-align: center;
  font-size: 90%;
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  #columnDetail .appList {
    flex-direction: row;
  }
  #columnDetail .appList li {
    width: 48%;
    text-align: center;
    margin-bottom: 1em;
  }
}

.red {
  color: #ff0000;
  font-weight: bold;
}

#columnDetail ol.checkpoint {
  margin-top: 1em;
  padding-left: 0;
}

#columnDetail ol.checkpoint li {
  list-style: none;
  padding-bottom: 0.5em;
  color: #ff0000;
}

#columnDetail ol.checkpoint li ol.child {
  margin-top: 4px;
}

#columnDetail ol.checkpoint li.underline {
  text-decoration: underline;
}

#columnDetail .sensor_waku {
  border: 1px #10218B solid;
  padding: 10px 1em;
  display: inline-block;
  margin-top: 1em;
  color: #10218B;
}

/*  ========================
    *********  ic_partner  *********
=============================================  */
@media only screen and (max-width: 767px) {
  .box_list01 {
    width: 100%;
  }
}

.box_list01 td {
  background-color: #fff;
  text-align: left;
  border: 1px #D9E3EC solid;
  vertical-align: middle;
  width: 20%;
  padding: 8px;
}

@media only screen and (max-width: 767px) {
  .box_list01 td {
    width: 100%;
    display: block;
    border-bottom: none;
  }
  .box_list01 td.pc {
    display: none;
  }
}

.box_list01 td a {
  font-weight: 600;
  font-size: 90%;
  display: block;
  letter-spacing: normal;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0px 0px 0px 16px;
}

.box_list01 td a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: calc(50% - 0.2em);
}

.box_list02 {
  margin: 2em 0;
}

.box_list02 li {
  width: calc(100%/9);
}

.box_list02 a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 1em;
  top: calc(50% - 6px);
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .box_list02 li {
    width: calc(100%/3);
  }
}

#ic_partner .top_ttl01 {
  margin: 4em 0 0;
}

@media only screen and (max-width: 767px) {
  #ic_partner .top_ttl01 {
    margin-top: 0;
  }
  #ic_partner .top_ttl01 .ja {
    font-size: 7vw;
    font-size: min(7vw, 40px);
  }
}

#ic_partner section h2 .ja {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  display: block;
}

#ic_partner p.nml_txt01 {
  margin: 2em 0;
  line-height: 2em;
}

@media only screen and (max-width: 767px) {
  #ic_partner p.nml_txt01 {
    margin: 1em 0;
    line-height: 1.5;
  }
}

.top_txt01 {
    font-size: 16px;
    line-height: 2em;
}

@media only screen and (max-width:768px) {
    .top_txt01 {
        font-size: 4vw;
        font-size: min(4vw, 18px);
    }
}


#ic_partner .acd {
  border: 1px solid #D9E3EC;
  margin-left: -1px;
  width: calc(100% - 4px);
  text-align: center;
  font-weight: bold;
  padding: 1.6em;
  position: relative;
  color: #10218B;
  cursor: pointer;
}

#ic_partner .acd:before, #ic_partner .acd:after {
  content: '';
  position: absolute;
  display: block;
  width: 1.6%;
  height: 0;
  padding-bottom: .15%;
  background: #10218B;
  top: 50%;
  right: 40%;
  transform: translateY(-50%);
}

#ic_partner .acd:after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

#ic_partner .acd.active::after {
  transform: rotate(0);
  transition: .5s;
}

#ic_partner .note {
  font-size: 12px;
  margin: 2em 0;
  color: #333333;
}

#ic_partner .table {
  margin-bottom: 3em;
}

#ic_partner_detail {
  padding-bottom: 5em;
}

@media only screen and (max-width: 767px) {
  #ic_partner_detail {
    padding-bottom: 2em;
  }
  #ic_partner_detail #productIndex {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

#ic_partner_detail h1 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  #ic_partner_detail h1 {
    margin-top: 0;
  }
  #ic_partner_detail h1 .ja {
    font-size: 7vw;
  }
}

#ic_partner_detail p.note {
  font-size: 80%;
  margin-top: 10px;
}

#ic_partner_detail div.table {
  margin-top: 2em;
}

@media only screen and (max-width: 767px) {
  #ic_partner_detail div.table {
    overflow-x: auto;
  }
}

#ic_partner_detail a.icon_link .icon {
  margin-left: 6px;
}

/*  ========================
    *********  glossary  *********
=============================================  */
@media only screen and (max-width: 767px) {
  #glossary {
    position: relative;
    padding-top: 60px;
  }
}

#glossary h2 .ja {
  font-size: 60px;
  line-height: 1.3em;
  font-weight: 700;
  display: block;
  text-align: center;
}

#glossary .bgGray {
  background-color: #F2F6F6;
  padding: 1px 0 80px;
}

#glossary .glossaryArea {
  padding-bottom: 4em;
}

#glossary .glossaryArea ad
h3 {
  color: #10218B;
  padding-left: 0;
  padding-top: 2.5em;
  margin-top: 1em;
  border-top: 1px solid #D9E3EC;
}

@media only screen and (max-width: 767px) {
  #glossary .glossaryArea ad
h3 {
    margin-top: 0;
  }
}

#glossary .glossaryArea h3.bodno {
  border: none;
}

#glossary .glossaryArea h4 {
  font-size: 18px;
  color: #10218B;
  font-weight: 600;
  margin: 1em 0 .5em;
  padding-top: 1em;
  border-top: 1px solid #D9E3EC;
}

#glossary .glossaryArea p {
  position: relative;
}

#glossary .glossaryArea p a {
  padding-right: 1em;
}

#glossary .glossaryArea p a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  margin-left: 0;
  vertical-align: baseline;
  transform: translateY(0) rotate(-45deg);
}

#glossary table {
  background: #FFF;
  margin: 1.5em auto;
}

#glossary table td {
  padding: 1em;
  text-align: center;
}

#glossary sub {
  vertical-align: sub;
}

#glossary .flex {
  background: #FFF;
  margin: 1.5em auto;
  padding: 1em;
  text-align: center;
  justify-content: center;
  width: fit-content;
  flex-direction: column;
  align-items: center;
}

#glossary p {
  margin: 1em 0 0;
}

#glossary .bod {
  border-top: 1px solid #D9E3EC;
}

#glossary ol {
  margin-top: 1em;
    margin-left: 0.8em;
}

#glossary ol li {
  list-style: inherit;
  margin-left: 1.5em;
}

@media only screen and (max-width: 767px) {
  #glossary ol li {
    margin-left: 0;
  }
}

#glossary li.mT10 {
  margin-top: 10px;
}

#glossary .pd1 {
  padding: 1em;
  background: #FFF;
  width: fit-content;
}

#glossary table.tableStyle01 td {
  border: 1px #ccc solid;
}

@media screen and (max-width: 768px) {
  #glossary img {
    height: auto;
  }
}

#glossary .search .serachForm form {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0px;
  align-items: center;
}

#glossary .search .serachForm form input[type=search] {
  background-color: #fff;
  width: 300px;
  border: 1px solid #D9E3EC;
  border-radius: 5px 0 0 5px;
  font-size: 15px;
  padding: 0.7em 1em;
}
#glossary .search .serachForm form button {
  width: 120px;
  border: none;
  background-color: #10218B;
  border-radius: 0 5px 5px 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 0.7em 0;
  cursor: pointer;
}
#glossary .search .serachForm form button .icon {
  vertical-align: middle;
  display: inline-block;
  width: 15px;
  margin-right: 5px;
}
#glossary .search .serachForm form button .icon img {
    width: 100%;
    vertical-align: baseline;
    filter: brightness(0) invert(1);
}



/* ソリューション
#topSolution {
    border-top: 1px #D9E3EC solid;
    padding: 80px 0;
    margin: auto auto 0;
}

#topSolution .top_solution_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  #topSolution .top_solution_list {
    margin-top: 0;
  }
}

#topSolution .top_solution_list .solution_col {
  width: 48%;
  padding: 0px 24px;
  position: relative;
  margin-bottom: 3em;
}

#topSolution .top_solution_list .solution_col:nth-child(4)::before {
  bottom: 0;
}

#topSolution .top_solution_list .solution_col:nth-child(3),
#topSolution .top_solution_list .solution_col:nth-child(4) {
  border: none;
  padding-bottom: 0;
}

#topSolution .top_solution_list .img {
  margin-bottom: 20px;
}

#topSolution .top_solution_list h3 {
  font-size: 20px;
  color: #10218B;
  font-weight: 600;
  margin-bottom: 5px;
}

#topSolution .top_solution_list p.en {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

#topSolution .top_solution_list .view_more {
  margin-top: 5px;
}

#topSolution .flex::after {
  display: none;
}

#topSolution .top_solution_list .view_more span {
  color: #10218B;
  font-size: 16px;
  font-weight: 600;
}

#topSolution .top_solution_list .flex {
  align-items: center;
}

#topSolution .top_solution_list .view_more span::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  margin-left: 5px;
  vertical-align: baseline;
  transform: translateY(-1px) rotate(-45deg);
}

@media only screen and (min-width: 769px) and (max-width: 1300px) {
  #topSolution {
    padding: 80px 10px 40px;
  }
  #topSolution .top_solution_list .solution_col {
    width: 48%;
    margin-bottom: 3em;
  }
}

@media only screen and (max-width: 768px) {
  #topSolution {
    padding: 4vw 0;
    margin: auto auto 0;
  }
  #topSolution .inner {
    max-width: 100%;
    margin: auto;
  }
  #topSolution .top_solution_list {
    display: block;
  }
  #topSolution .top_solution_list h2 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #topSolution .top_solution_list .solution_col {
    width: 100%;
    padding: 2vw 0;
    margin-bottom: 1.5em;
  }
  #topSolution .top_solution_list .solution_col:nth-child(4) {
    border: none;
    padding-bottom: 0;
  }
  #topSolution .top_solution_list .solution_col:nth-child(2)::before,
  #topSolution .top_solution_list .solution_col:nth-child(4)::before {
    display: none;
  }
  #topSolution .top_solution_list .img {
    margin-bottom: 4vw;
  }
  #topSolution .top_solution_list h3 {
    font-size: 5vw;
    margin-bottom: auto;
  }
  #topSolution .top_solution_list p.en {
    font-size: 3.7vw;
  }
  #topSolution .top_solution_list .view_more {
    margin-top: 2vw;
  }
  #topSolution .top_solution_list .view_more a {
    font-size: 4vw;
  }
  #topSolution .top_solution_list .view_more a::after {
    width: 2vw;
    height: 2vw;
    margin-left: 2vw;
  }
}
*/



/* 新着情報＆イベント */

.topPageNews {
    /*margin: auto auto 80px;*/
    margin: auto auto 0px;
    border-bottom: 1px #D9E3EC solid;
}

#fvNews.topPageNews .inner{
    display: flex;
    padding-top: 13px;
    padding-bottom: 13px;
    align-items: center;
}

#fvNews.topPageNews .top_ttl01{
    margin-bottom: 0;
    padding-right: 1em;
    position: relative;
    padding-top: 0;
}

#fvNews.topPageNews .top_ttl01::after{
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background-color: #D9E3EC;
    position: absolute;
    right: 0;
    top: -6px;
}

#fvNews.topPageNews .top_ttl01 .en{
    font-size: 1.8rem;
}

#fvNews .view_more{
    margin-top: 0;
}

.topPageNews .top_news_list{
    width: 75%;
}

.topPageNews .top_news_list li {
    display: flex;
}

.topPageNews .top_news_list .date {
    width: 120px;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding-left: 1.3em;
}

.topPageNews .top_news_list .cat span {
    display: block;
    background: #F2F6F6;
    color: #666;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    border-radius: 16px;
    padding: 3px 15px;
    white-space: nowrap;
}

.topPageNews .top_news_list .content {
    width: 80%;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    display: flex;
}

.topPageNews .top_news_list .content p{
    font-size: 14px;
}

.topPageNews .top_news_list .content a {
    color: #10218B;
    font-size: 14px;
}

.topPageNews .top_news_list .content a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    margin-left: 5px;
    vertical-align: baseline;
    transform: translateY(-1px) rotate(-45deg);
}

.topPageNews .top_news_list .content a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border: none;
    margin-left: 5px;
    vertical-align: baseline;
    transform: none;
    background-image: url(../img/common/icon_link_2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.topPageNews .view_more a {
    color: #10218B;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.topPageNews .view_more a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    margin-left: 5px;
    vertical-align: baseline;
    transform: translateY(-2px) rotate(-45deg);
}

#topNews{
    border-bottom: none;
}

#topNews .headTtl{
    width: 19%;
}

#topNews .top_news_list{
    width: 80%;
    border-top: 1px #D9E3EC solid;
}

#topNews .top_news_list li{
    padding: 12px 0;
    border-bottom: 1px #D9E3EC solid;
}

#topNews .top_news_list .date{
    width: 10em; /*16%;*/
    padding-top: 4px;
    max-width: 120px;
}

#topNews .top_news_list .cat{
    min-width: 12%;
    padding-top: 4px;
    max-width: 150px;
}

#topNews.faq-area .top_news_list .cat{
    min-width: 180px;    
}

#topNews.topPageNews .top_news_list .content{
    display: block;
}

#topNews.topPageNews .top_news_list .content p,
#topNews.topPageNews .top_news_list .content a{
    font-size: 16px;
    line-height: 1.8;
}

@media only screen and (min-width:769px) and (max-width:1300px) {
    .topPageNews {
        padding: 0 10px;
    }
    .topPageNews .top_news_list .content {
        width: 75%;
        display: block;
    }
}

@media only screen and (min-width:769px) and (max-width:860px) {
    .topPageNews .top_news_list li{
        flex-wrap: wrap;
    }
    .topPageNews .top_news_list .content{
        width: 100%;
        margin-top: 6px;
    }
}

@media only screen and (max-width:768px) {
    .topPageNews {
        /*margin: auto auto 6vw;*/
        margin: auto auto 0px;
    }
    .topPageNews .inner {
        max-width: 100%;
        padding: 0 4vw;
    }
    .topPageNews .top_news_list{
        width: 100%;
    }
    .topPageNews .top_news_list li {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 0;
        align-items: center;
    }
    .topPageNews .top_news_list .date {
        width: 24%;
        padding: 0;
        font-size: min(3.5vw, 16px);
        line-height: 6vw;
    }
    .topPageNews .top_news_list .cat {
        width: auto;
        padding-top: 0vw;
    }
    .topPageNews .top_news_list .cat span {
        font-size: min(3.5vw, 16px);
        line-height: 6vw;
        padding: 0 2vw;
        border-radius: 3vw;
    }
    .topPageNews .top_news_list .content {
        width: 100%;
        padding-left: 0;
        font-size: 4vw;
        line-height: 1.5;
        margin-top: 1.5vw;
        display: block;
    }
    .topPageNews .top_news_list .content a::after {
        width: min(2vw, 8px);
        height: min(2vw, 8px);
        margin-left: 2vw;
    }
    .topPageNews .top_news_list .content a[target="_blank"]::after {
        /*width: min(2vw, 18px);
        height: min(2vw, 18px);*/
        margin-left: 2vw;
    }
    .topPageNews .view_more {
        position: static;
        text-align: right;
        margin-top: 6vw;
        width: 100%;
    }
    .topPageNews .view_more a {
        font-size: 4vw;
        font-size: min(4vw, 18px);
    }
    .topPageNews .view_more a::after {
        width: min(2vw, 8px);
        height: min(2vw, 8px);
        margin-left: 2vw;
    }
    #fvNews.topPageNews .view_more{
        display: none;
    }
    #fvNews.topPageNews .top_ttl01{
        padding-top: 0;
    }
    #fvNews.topPageNews .top_ttl01::after{
        display: none;
    }
    .topPageNews .top_news_list .date{
        width: 27%;
    }
    #topNews .headTtl,
    #topNews .top_news_list{
        width: 100%;
    }
    #topNews .top_news_list .date{
        width: 26%;
    }
    #topNews .top_news_list .cat{
        width: 100%;
        max-width: 200px;
    }
    #topNews.faq-area .top_news_list .cat{
        max-width: 300px;
    }
}



#case_study #topColumn {
  background-color: #10218B;
  margin-bottom: 0;
  padding: 80px 0;
}

#case_study #topColumn h2 {
  color: #fff;
}

#case_study #topColumn .top_column_list * {
  color: #fff;
}

#case_study_detail .introduction {
  padding-top: 01em;
}

#case_study_detail .introduction .flex {
  justify-content: space-between;
}

#case_study_detail .introduction .flex > div:nth-child(1) {
  width: 40%;
}

@media only screen and (max-width: 768px) {
  #case_study_detail .introduction .flex > div:nth-child(1) {
    width: 100%;
  }
}

#case_study_detail .introduction .flex > div:nth-child(2) {
  width: 56%;
}

@media only screen and (max-width: 768px) {
  #case_study_detail .introduction .flex > div:nth-child(2) {
    width: 100%;
  }
}

#case_study_detail .introduction .flex > div:nth-child(2) h3 {
  padding-left: 0;
  margin-bottom: 0.5em;
}

#case_study_detail .introduction .flex > div:nth-child(2) p {
  line-height: 1.7;
}

#case_study_detail .bg {
  background-color: #F2F6F6;
}

#case_study_detail .case h3 {
  padding-left: 0;
  font-size: 28px;
}

#case_study_detail .case h4 {
  font-size: 20px;
  color: #10218B;
  font-weight: 600;
  padding-bottom: 0.6em;
}

#case_study_detail .case p.ttl {
  font-weight: 600;
  padding: 10px 0;
  color: #10218B;
  font-size: 18px;
}

#case_study_detail .case .view_more a {
  font-size: 16px;
}

#case_study_detail .case .flex > div {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  #case_study_detail .case .flex > div {
    margin-bottom: 1.5em;
  }
}

#case_study_detail #topColumn {
  padding-top: 20px;
}

#case_study_detail #topSolution {
  padding-top: 80px;
}

@media only screen and (max-width: 768px) {
  #case_study_detail #topSolution {
    padding-top: 2em;
  }
}

@media only screen and (max-width: 768px) {
  #case_study_detail #topSolution .top_solution_list {
    flex-direction: row;
    display: flex;
  }
}

#case_study_detail #topSolution .top_solution_list .solution_col {
  width: 33%;
}

@media only screen and (max-width: 768px) {
  #case_study_detail #topSolution .top_solution_list .solution_col {
    width: 49%;
  }
}

#case_study_detail #topSolution .top_solution_list .solution_col h3 {
  padding: 0;
}

@media only screen and (max-width: 768px) {
  #case_study_detail #topSolution .top_solution_list .solution_col h3 {
    font-size: 5vw;
  }
}

#case_study_detail #topSolution h3 {
  padding-left: 0;
  font-size: 28px;
}

@media only screen and (max-width: 768px) {
  #case_study_detail #topSolution h3 {
    margin-bottom: 0;
  }
}

#offer .board {
  margin-top: 1em;
}

#offer .board > div {
  width: 31.5% !important;
  margin-top: 0 !important;
}

@media only screen and (max-width: 768px) {
  #offer .board {
    flex-direction: row;
  }
  #offer .board > div {
    width: 31.5%;
  }
}

#offer #columnDetail h1 {
  text-align: left;
  margin-bottom: 2em;
}

@media only screen and (max-width: 767px) {
  #offer #columnDetail h1 {
    font-size: min(6vw, 36px);
    margin-bottom: 0.5em;
    margin-top: 0.5em;
  }
}

#offer #columnDetail .flex.column_list > div {
  width: 32.5%;
}

@media only screen and (max-width: 767px) {
  #offer #columnDetail .flex.column_list > div {
    width: 100%;
  }
}

#offer #columnDetail h3 {
  padding: 8px;
}

@media only screen and (max-width: 767px) {
  #offer #columnDetail h3 {
    margin-top: 1em;
  }
}

#offer #columnDetail figure {
  margin: 1em 0;
}

#offer #columnDetail figure img {
  max-width: 100%;
}

#offer #columnDetail .top_btn01 {
  width: 48.5%;
  margin-bottom: 0;
  margin-top: 1em;
}

#offer #columnDetail .top_btn01.w100 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #offer #columnDetail .top_btn01 {
    width: 100%;
  }
}

#offer #columnDetail .top_btn01 a {
  padding: 1em;
}

#offer #columnDetail table.tableStyle01 th {
  background-color: #10218B;
}

#offer #columnDetail h3.gray {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #10218B;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  #offer #columnDetail .fixed_menu h3 {
    margin: 0;
  }
}

ul.number li {
  list-style-type: decimal;
  margin-left: 1.5em;
}

#circut_design #columnDetail h1 {
  margin-bottom: 1em;
}

#circut_design #columnDetail #tableOfContents ol,
#circut_design #columnDetail #tableOfContents02 ol{
  flex-wrap: wrap;
}

#circut_design #columnDetail span.bold {
  font-weight: 600;
}

#circut_design #columnDetail .lh1 {
  line-height: 1.3;
}

#circut_design #columnDetail .table {
  margin: 1em 0;
}

#circut_design #columnDetail .table table td span {
  text-align: left;
  font-size: 100%;
}

#circut_design #columnDetail .table table td .strong {
  font-weight: 600;
}

#circut_design #columnDetail .table table.txtC td {
  text-align: center;
}

#circut_design #columnDetail .table .tableStyle01 th {
  background-color: #f1f3f5;
  color: #333;
}

#circut_design #columnDetail h3 {
  padding-left: 0;
  margin-bottom: 10px;
  padding-bottom: 0;
}

#circut_design #columnDetail h3.gray {
  padding: 10px;
  text-align: left;
}

/*.youtube_icon {
  margin-right: 0;
  position: relative;
}

.youtube_icon:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(/sensing/assets/img/common/3721679-youtube_108064.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
}*/

#video h2 {
  font-size: 28px;
}

#video h3 {
  padding-left: 0;
  font-size: 20px;
}

@media only screen and (max-width: 768px) {
  #video .video_list .flex {
    flex-direction: row;
  }
}

#video .video_list .flex > div {
  width: 32%;
  margin-bottom: 2em;
}

@media only screen and (max-width: 768px) {
  #video .video_list .flex > div {
    width: 48.5%;
  }
}

#video .video_list .flex > div p.movie_title {
  padding-top: 6px;
}

#video .video_list .flex > div .youtube_icon {
  margin-right: 0;
  position: relative;
}

#video .video_list .flex > div .youtube_icon:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(/sensing/ja/techinfo/video/img/3721679-youtube_108064.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
}

#video .video_list .flex > div ul.model {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
}

#video .video_list .flex > div ul.model li {
  font-size: 12px;
  width: 61%;
  padding: 3px 0;
}

#video .video_list .flex > div ul.model li span {
  display: block;
  font-size: 12px;
  padding: 6px;
  line-height: 1;
}

#video .video_list .flex > div ul.model li a {
  text-decoration: none;
}

#video .video_list .flex > div ul.model li.title {
  padding: 0px;
  width: 36%;
  text-align: center;
}

#video .video_list .flex > div ul.model li.title span {
  background-color: #F2F6F6;
  color: #666;
}

#video .document_box {
  border: 1px #10218B solid;
  margin: 2em 0 0;
}

#video .document_box h4 {
  background-color: #10218B;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
}

#video .document_box .inbox {
  padding: 0 20px 20px;
}

#video .document_box .inbox .link {
  margin-top: 15px;
}

#video .document_box .inbox .link a {
  position: relative;
  font-weight: 600;
}

#video .document_box .inbox .link a:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  margin-left: 5px;
  vertical-align: baseline;
  transform: translateY(-3px) rotate(-45deg);
}

#video #topSearch {
  margin-top: 0;
}

#productIndex .table table tbody td span {
  display: inline-block;
  text-align: left;
  margin: 0;
}

#columnPage {
  position: relative;
}

@media only screen and (max-width: 767px) {
  #columnPage {
    padding-top: 0;
    position: relative;
  }
}

#column_two {
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #column_two {
    flex-direction: column;
    position: static;
  }
}

#column_two > div:nth-child(1) {
  order: 2;
}

@media only screen and (min-width: 768px) {
  #column_two > div:nth-child(1) {
    position: relative;
  }
}

@media only screen and (max-width: 767px) {
  #column_two > div:nth-child(1) {
    order: 0;
    position: fixed;
    top: 70px;
  }
  #column_two .fixed_menu.fixed{
    top: 70px !important;
  }
}

#column_two .fixed_menu {
  width: 22%;
  transition: 0.3s;
}

@media only screen and (max-width: 1200px) {
  #column_two .fixed_menu {
    width: 25%;
  }
}

@media only screen and (max-width: 768px) {
  #column_two .fixed_menu {
    width: 100%;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

#column_two .fixed_menu h3 {
  color: #10218B;
  margin-top: 0;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  #column_two .fixed_menu h3 {
    border-top: 1px #10218B solid;
    border-bottom: 1px #10218B solid !important;
    padding: 0.7em;
    text-align: center;
    background-color: #fff;
    margin-bottom: 0 !important;
    padding-bottom: 0.7em !important;
    font-size: 14px;
  }
  #column_two .fixed_menu h3:before, #column_two .fixed_menu h3:after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #10218B;
    position: absolute;
    top: 50%;
    right: 10px;
    transition: 0.3s;
  }
  #column_two .fixed_menu h3:after {
    transform: rotate(90deg);
  }
  #column_two .fixed_menu h3.open:after {
    transform: rotate(0deg);
  }
}

#column_two .fixed_menu .fixed {
  position: sticky;
  top: 10%;
}

@media only screen and (max-width: 1200px) {
  #column_two .fixed_menu .fixed {
    right: 4vw;
  }
  #column_two .fixed_menu .fixed li {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  #column_two .fixed_menu .fixed {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    transition: none;
  }
}

#column_two .fixed_menu.hide {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  #column_two .fixed_menu #tableOfContents,
    #column_two .fixed_menu #tableOfContents02{
    background-color: #fff;
    background-color: #D9E3EC;
    padding: 1em 4vw;
    display: none;
  }
}

#column_two .fixed_menu #tableOfContents ol,
#column_two .fixed_menu #tableOfContents02 ol{
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  #column_two .fixed_menu #tableOfContents ol,
    #column_two .fixed_menu #tableOfContents02 ol{
    border-bottom: 1px #10218B solid;
  }
}

#column_two .fixed_menu #tableOfContents ol li,
#column_two .fixed_menu #tableOfContents02 ol li{
  list-style: none !important;
  width: 100%;
  border: 1px #D9E3EC solid;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  font-size: 16px;
  flex-direction: column;
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  #column_two .fixed_menu #tableOfContents ol li,
    #column_two .fixed_menu #tableOfContents02 ol li{
    border-left: none;
    border-right: none;
    border: 1px #10218B solid;
    border-bottom: none;
  }
}

#column_two .fixed_menu #tableOfContents ol li:after,
#column_two .fixed_menu #tableOfContents02 ol li:after{
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1px solid #10218B;
  border-bottom: 1px solid #10218B;
  position: absolute;
  right: 5%;
  top: calc(50% - 6px);
  transform: rotate(45deg);
}

#column_two .fixed_menu #tableOfContents ol li:last-child,
#column_two .fixed_menu #tableOfContents02 ol li:last-child{
  border-bottom: 1px #D9E3EC solid;
}

#column_two .fixed_menu #tableOfContents ol li:hover,
#column_two .fixed_menu #tableOfContents02 ol li:hover{
  background-color: #10218B;
  color: #fff;
}

#column_two .fixed_menu #tableOfContents ol li:hover:after,
#column_two .fixed_menu #tableOfContents02 ol li:hover:after{
  border-color: #fff;
}

#column_two .fixed_menu #tableOfContents ol li:hover a,
#column_two .fixed_menu #tableOfContents02 ol li:hover a{
  color: #fff;
  text-decoration: none;
}

#column_two .fixed_menu #tableOfContents ol li a,
#column_two .fixed_menu #tableOfContents02 ol li a{
  display: block;
  width: 100%;
  padding: 1em 1.6em 1em 1em;
  font-weight: normal;
  text-align: left;
    font-size: 0.9em;
}
#column_two .fixed_menu #tableOfContents ol li a p,
#column_two .fixed_menu #tableOfContents02 ol li a p{
    font-size: 0.9em;
}

@media only screen and (max-width: 767px) {
  #column_two .fixed_menu #tableOfContents ol li a,
    #column_two .fixed_menu #tableOfContents02 ol li a{
    padding: 0.6em 1em;
  }
}

#column_two .fixed_menu #tableOfContents ol li.child a,
#column_two .fixed_menu #tableOfContents02 ol li.child a{
  padding: 0.6em 2.1em 0.6em 2em;
}

#column_two .news_detail {
  width: calc(100% - 25%);
}

@media only screen and (max-width: 1200px) {
  #column_two .news_detail {
    width: calc(100% - 28%);
  }
}

@media only screen and (max-width: 768px) {
  #column_two .news_detail {
    width: 100% !important;
  }
}

#column_two .fixed + .news_detail {
  width: calc(100% - 30%);
}

/* support.css */
#supprt_index .flex h3 {
  border: none;
  padding: 8px 0 0 20px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

#supprt_index .flex h3:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #10218B;
  border-bottom: 1.5px solid #10218B;
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 50%;
}

#environmental #productList {
  padding-top: 0;
  background-color: #fff;
  margin-bottom: 0;
}

#environmental h2 {
  margin-top: 3em;
  color: #10218B;
}

@media only screen and (max-width: 768px) {
  #environmental h2 {
    margin-top: 1.5em;
  }
}

#environmental .product_page_thum {
  border: 1px #999999 solid;
}

#environmental #topSearch {
  background-color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
}

#packing .blocks {
  padding-bottom: 80px;
}

#packing figure {
  text-align: center;
}

#packing figure img {
  border: 1px #999999 solid;
}

#packing .top_btn01 {
  max-width: 390px;
  margin: 24px auto;
}

#parame .blocks {
  padding-bottom: 80px;
}

#parame figure {
  text-align: center;
}

#parame figure img {
  border: 1px #999999 solid;
}

#parame .top_btn01 {
  max-width: 390px;
  margin: 24px auto;
}

#product_no figure {
  margin: 1em 0;
}

#product_no .blueprint h3 {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#product_no .blueprint .ja_name {
  font-size: 20px;
  font-weight: bold;
  color: #10218B;
}

#product_no .blueprint .blueprint_inner {
  margin-bottom: 1em;
}

#product_no .blueprint .blueprint_inner > div {
  width: 47.5%;
}

#product_no .blueprint .blueprint_inner > div:nth-child(1) {
  position: relative;
}

#product_no .blueprint .blueprint_inner > div:nth-child(1):after {
  content: "";
  display: block;
  width: 1px;
  height: 85%;
  background-color: #D9E3EC;
  position: absolute;
  right: -5%;
  top: 10%;
}

#product_no .blueprint .linkBtn > div {
  width: 49%;
}

@media only screen and (max-width: 768px) {
  #product_no .blueprint .linkBtn > div {
    width: 100%;
  }
}

#product_no .blueprint .linkBtn p {
  margin-top: 8px;
  font-size: 14px;
}

#product_no .blueprint .top_btn01 a {
  padding: 1.2em 3em;
  text-align: center;
}

#product_no .blueprint .top_btn01.two_line a {
  padding: 0.5em 3em;
}

#product_no .blueprint .top_btn01.two_line.mini a {
  padding-left: 2.2em;
  padding-right: 2.2em;
}

#product_no .blueprint .top_btn01.mini a {
  font-size: 14px;
  line-height: 1.3;
}

#product_no .document_list p {
  padding-bottom: 0.5em;
}

#product_no .document_list ul {
  margin-left: 1.5em;
}

#product_no .document_list ul li {
  list-style: circle;
  margin-bottom: 5px;
}

#product_no h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 1em 0 0.5em;
}

#pbfree .table {
  margin: 1em 0;
}

#pbfree .blocks {
  margin: 3em 0;
}

#precaution .intro {
  padding-bottom: 0;
}

#precaution h3 {
  margin-bottom: 0.5em;
  margin-top: 2em;
}

#precaution h3 span.num {
  font-size: 100%;
  display: inline-block;
  background-color: #10218B;
  color: #fff;
  margin-right: 10px;
  padding: 0 16px;
}

#precaution h4 {
  font-weight: 600;
}

#precaution h4 span {
  font-weight: 600;
}

#precaution h4.mt1 {
  margin-top: 0.5em;
}

#topSearch {
  /* margin-top: 4em; */
  padding-top: 4em;
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 768px) {
  #topSearch {
    margin-top: 0;
    padding-top: 2em;
  }
  #environmental .product_list .top_list01 li{
    width: 48.5%;
  }
  #environmental .product_list .top_list01 li a{
    font-size: 90%;
    padding: 0 10px;
  }
}

#topSearch h2 {
  margin-top: 0;
}

/*****************************************************************************
Style Basic
*****************************************************************************/
table.tableStyle01, table.tableStyle02, table.tableStyle05, table.tableStyle06 {
  width: 100%;
  margin-bottom: 1em;
}

table.tableStyle03 {
  width: 100%;
  margin-bottom: 1em;
}

table.tableStyle04 {
  width: 65%;
  margin-bottom: 1em;
}

table.tableStyle02, table.tableStyle04 {
  background: #f4f4f4;
}

table.tableStyle01 td, table.tableStyle01 th,
table.tableStyle02 td, table.tableStyle02 th,
table.tableStyle03 td, table.tableStyle03 th,
table.tableStyle04 td, table.tableStyle04 th {
  border: 1px solid #999999;
  padding: 0.5em;
  vertical-align: middle;
}

table.tableStyle01 td.bd-lBB, table.tableStyle01 th.bd-lBB {
  border-left: 3px solid #003399;
}

table.tableStyle01 td.bd-lBB_bk, table.tableStyle01 th.bd-lBB_bk {
  border-left: 5px solid #999999;
}

table.tableStyle01 td.bd-nn, table.tableStyle01 th.bd-nn {
  border: none;
}

table.tableStyle01 td.bd-rBB, table.tableStyle01 th.bd-rBB {
  border-right: 3px solid #003399;
}

table.tableStyle01 td.bd-bBB, table.tableStyle01 th.bd-bBB {
  border-bottom: 3px solid #003399;
}

table.tableStyle01 td.bd-tBB, table.tableStyle01 th.bd-tBB {
  border-top: 3px solid #003399;
}

table.tableStyle01 td.bk-B, table.tableStyle01 th.bk-B {
  background-color: #B9E6FC;
}

table.tableStyle01 td.bk-Bh, table.tableStyle01 th.bk-Bh {
  background-color: #003399;
  color: #ffffff;
}

table.tableStyle05 td, table.tableStyle05 th {
  border: 1px solid #999999;
  padding: 0.3em 0;
  vertical-align: middle;
}

table.tableStyle06 td, table.tableStyle06 th {
  border: 1px solid #ffffff;
  padding: 0.3em 0;
  vertical-align: middle;
}

table.tableStyle01 th, table.tableStyle02 th,
table.tableStyle03 th, table.tableStyle04 th,
table.tableStyle05 th {
  background: #f1f3f5;
  color: #333;
}

table.pad0 td, table.pad0 th {
  padding: 0;
}

table.pad1 td, table.pad1 th {
  padding: 1px;
}

table.pad3 td, table.pad3 th {
  padding: 3px;
}

table.pad5 td, table.pad5 th {
  padding: 5px;
}


/* 以下、早川追加分 */
/* Grid 追加 ------------------------------------------------------------------------ */

.clearfix { /*position:relative;*/ display:inline-block; }
.clearfix:after { display:block; clear:both; height:0; visibility:hidden; content:" "; }

.row {
	position: relative;
	/*margin: 0 -30px;*/
    margin: 0 -10px;
	zoom: 1;
}
.row:after {
	content: '';
	display: block;
	clear: both;
}
.df{
	display:flex;
	flex-wrap: wrap;
}
.db{
	display:block;
}
.grid2, .grid3, .grid4, .grid6, .grid8, .grid9, .grid12, .five_parts,
.sp-grid3, .sp-grid4, .sp-grid6, .sp-grid8, .sp-grid9, .sp-grid12, .sp-five_parts {
	float: left;
	padding: 0 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.grid12, .sp-grid12 { width: 100%;  }
.grid9, .sp-grid9  { width: 74.99997%;}
.grid8, .sp-grid8  { width: 66.66664%; }
.grid6, .sp-grid6  { width: 50%;}
.grid4, .sp-grid4  { width: 33.33333%; }
.grid3, .sp-grid3  { width: 25%; }
.grid2 { width: 16.66%; } /* grid2は基本のレイアウトでは使用しない */

.five_parts, .sp-five_parts { width: 20%; }

@media screen and (max-width: 999px){
        .row {
            margin: 0 -10px;
        }
		.grid2, .grid3, .grid4, .grid6, .grid8, .grid9, .grid12, .five_parts,
		.sp-grid3, .sp-grid4, .sp-grid6, .sp-grid8, .sp-grid9, .sp-grid12, .sp-five_parts {
			padding: 0 20px;
		}

    /*gridの割合変更*/
    .five_parts { width:33.33333%; }

}


@media screen and (max-width: 799px){
        .row {
            margin: 0 -10px;
        }
		.grid2, .grid3, .grid4, .grid6, .grid8, .grid9, .grid12, .five_parts,
		.sp-grid3, .sp-grid4, .sp-grid6, .sp-grid8, .sp-grid9, .sp-grid12, .sp-five_parts {
			padding: 0 15px;
		}
    
    
		/*gridの割合変更*/
		/*.grid6,*/ 
		.grid7, /*.grid8, .grid9, */.grid10, .grid11 { width: 100%; }
		.grid4 .grid6 { width: 100%; }
		.grid8 .grid3, .five_parts /*,.grid3*/ { width: 50%; }
		.grid2 { width: 33.33333%; }
		.grid1 { width: 16.66666%; }
		.tb-100{width: 100% !important;}
		.tb-50{width: 50% !important;}
}
@media screen and (max-width: 499px){
        .row {
            margin: 0 -10px;
        }
		.grid2, .grid3, .grid4, .grid6, .grid8, .grid9, .grid12, .five_parts,
		.sp-grid3, .sp-grid4, .sp-grid6, .sp-grid8, .sp-grid9, .sp-grid12, .sp-five_parts {
			padding: 0 10px;
		}
    
    
		/*gridの割合変更*/
		.grid12 { width: 100%; }
		.grid9  { width: 100%; }
		.grid8  { width: 100%; }
		.grid6  { width: 100%; }
		.grid4  { width: 100%; }
		.grid3, .five_parts  { width: 50%; }
		.grid2  { width: 33.33333%; } /* grid2は基本のレイアウトでは使用しない */
		.tb-50{width: 100% !important;}
		.sp-50{width: 50% !important;}
		.sp-100{width: 100% !important;}

}


/* Grid ここまで ------------------------------------------------------------------------ */

/*ボーダー 追加 ------------------------------------------------------------------------*/
/* 全て */    .bdG {border:solid 1px #C6C6C6;}
/* 上 */        .bdGT{border-top:solid 1px #C6C6C6;}
/* 右 */        .bdGR{border-right:solid 1px #C6C6C6;}
/* 下 */        .bdGB{border-bottom:solid 1px #C6C6C6;}
/* 左 */        .bdGL{border-left:solid 1px #C6C6C6;}
/* 上下 */    .bdGTB{border-top:solid 1px #C6C6C6;border-bottom:solid 1px #C6C6C6;}
/* 左右 */    .bdGRL{border-right:solid 1px #C6C6C6;border-left:solid 1px #C6C6C6;}
/*ボーダー ここまで ------------------------------------------------------------------------*/

.prod-title{
    border-radius: 5px 5px 0 0;
}

.prod-list {
    background-color: #fff;
    border: 1px solid #10218B;
    color: #10218B;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0 0 5px 5px;
}

.prod-list li {
    border-top: 1px solid #10218B;
}

.prod-list li a {
    display: block;
    padding: 1rem;
    color: #10218B;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
}

.prod-list li a:after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: relative;
    /*position: absolute;
    right: 1em;
    top: calc(50% - 4px);*/
}
.prod-list li a:hover:after{
    border-color: #fff;
}

.prod-list li a:hover {
    color: #fff;
    background: #10218B;
}


.vaT {
  vertical-align: top;
}
.vaM {
  vertical-align: middle;
}
.vaB {
  vertical-align: bottom;
}
.aiB{
    align-items: baseline!important;
}


/* 技術論文関連 */
.checkbox-input {
  transform: scale(1.5);
  margin-right: 9px;
}
.chekbox_area {
  height: 100%;
}
.chekbox_top , .chekbox_top ~ div {
  flex-wrap: nowrap !important;
  align-items: baseline !important;
}
.chekbox_top label {
  flex-grow: 1;
}

.hide {
	display: none;
}

.hide1 {
	display: none;
}

.hide2 {
	display: none;
}

.hide3 {
	display: none;
}

.hide4 {
	display: none;
}

.hide5 {
	display: none;
}

.buttonset {
	display:flex;
	align-items:center;
  justify-content: flex-end;
	gap:10px;
	margin-left:auto;
}
.buttonset button{
	border:1px dashed #10218b;
	background:#0000;
	cursor:pointer;
	display:flex;
	align-items: center;
	color:#10218b;
}
/* .buttonset button:disabled{
	border:1px dashed #999;
	background:#0000;
	cursor:pointer;
	display:flex;
	align-items: center;
	color:#999;
} */
.buttonset button img{
	margin-right:0.5em;
}
.buttonset button span{
	color:#10218b;
	font-size:14px;
	font-weight:bold;
}
/* .buttonset button:disabled img{
	filter:grayscale(100%);
	opacity:50%;
}
.buttonset button:disabled span{
	color:#999;
} */


/* faq関連 */
.iconQ {
	width: 45px;
  height: 100%;
  display: inline-block;
  color: #666;
  padding: 2px 6px;
  margin-right: 10px;
  margin-top: 0 !important;
}
.iconA {
  width: 215px;
  height: 100%;
  display: inline-block;
  color: #666;
  background: #F2F6F6;;
  padding: 2px 10px;
  margin-right: 10px;
  margin-top: 0 !important;
    margin-bottom: 10px;
  text-align: center;
    border-radius: 8px;
}

.iconCategory {
  height: 100%;
  display: inline-block;
  width: 160px;
  text-align: center;
  color: #666;
  background-color: #F2F6F6;
  border-radius: 16px;
    padding: 3px 15px;
    white-space: nowrap;
  margin-right: 10px;
  margin-top: 0 !important;
    margin-bottom: 10px;
}
.faq-area .iconCategory {
    width: 280px;
}
/*.cate-trouble {
  background: #D05355;
}
.cate-setup {
  background: #090;
}
.cate-feature {
  background: #4472c4;
}
*/



.sp-Nav {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom:40px;
}
.low-Nav.sp-Nav {
	border-top: none;
	margin-bottom:40px;
}
.sp-Nav ul {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}
.sp-localNav, .sp-localNavG {
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
	height: 100%;
	width: 100%;
}
.sp-localNav li {
	display: table-cell;
	height: 100%;
	background: #0059b3;
	border-top: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	vertical-align: middle;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: .2s;
}
.low-Nav .sp-localNav li {
	border-bottom: 1px solid #e5e5e5;
    border-top:none; 
}
.sp-localNav a {
	display: table;
	height: 100%;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
	text-align: center;
	line-height: 1.1;
	color: #fff;
	transition: .2s;
}
.sp-localNav a:before, .sp-localNavG a:before {
	display: table-cell;
	vertical-align: middle;
	content: '';
	width: 0;
	/*height: 40px;*/
	height: 46px;
}
.sp-localNav span, .sp-localNavG span {
	display: table-cell;
	padding: 0 3px;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.sp-localNav .current,
.sp-localNav .active,
.sp-localNav li:hover,
.sp-localNav li:focus {
	background: #fff;
}
.sp-localNav .current a,
.sp-localNav .active a,
.sp-localNav a:hover,
.sp-localNav a:focus {
	background: #fff;
	border-bottom-color: #fff;
	text-decoration: none;
	color: #000;
}
/* タブ表示 グレー */
.sp-localNavG li {
	display: table-cell;
	height: 100%;
	background: #999;
	border-top: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	vertical-align: middle;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: .2s;
}
.sp-localNavG a {
	display: table;
	height: 100%;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
	text-align: center;
	line-height: 1.1;
	color: #fff;
	transition: .2s;
}
.sp-localNavG .current,
.sp-localNavG .active,
.sp-localNavG li:hover,
.sp-localNavG li:focus {
	background: #fff;
}
.sp-localNavG .current a,
.sp-localNavG .active a,
.sp-localNavG a:hover,
.sp-localNavG a:focus {
	background: #fff;
	border-bottom-color: #fff;
	text-decoration: none;
	color: #000;
}



/* マージン・パディング系 */
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.mt1 {
  margin-top: 1px;
}

.mb1 {
  margin-bottom: 1px;
}

.ml1 {
  margin-left: 1px;
}

.mr1 {
  margin-right: 1px;
}

.mt2 {
  margin-top: 2px;
}

.mb2 {
  margin-bottom: 2px;
}

.ml2 {
  margin-left: 2px;
}

.mr2 {
  margin-right: 2px;
}

.mt3 {
  margin-top: 3px;
}

.mb3 {
  margin-bottom: 3px;
}

.ml3 {
  margin-left: 3px;
}

.mr3 {
  margin-right: 3px;
}

.mt4 {
  margin-top: 4px;
}

.mb4 {
  margin-bottom: 4px;
}

.ml4 {
  margin-left: 4px;
}

.mr4 {
  margin-right: 4px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mt6 {
  margin-top: 6px;
}

.mb6 {
  margin-bottom: 6px;
}

.ml6 {
  margin-left: 6px;
}

.mr6 {
  margin-right: 6px;
}

.mt7 {
  margin-top: 7px;
}

.mb7 {
  margin-bottom: 7px;
}

.ml7 {
  margin-left: 7px;
}

.mr7 {
  margin-right: 7px;
}

.mt8 {
  margin-top: 8px;
}

.mb8 {
  margin-bottom: 8px;
}

.ml8 {
  margin-left: 8px;
}

.mr8 {
  margin-right: 8px;
}

.mt9 {
  margin-top: 9px;
}

.mb9 {
  margin-bottom: 9px;
}

.ml9 {
  margin-left: 9px;
}

.mr9 {
  margin-right: 9px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mt11 {
  margin-top: 11px;
}

.mb11 {
  margin-bottom: 11px;
}

.ml11 {
  margin-left: 11px;
}

.mr11 {
  margin-right: 11px;
}

.mt12 {
  margin-top: 12px;
}

.mb12 {
  margin-bottom: 12px;
}

.ml12 {
  margin-left: 12px;
}

.mr12 {
  margin-right: 12px;
}

.mt13 {
  margin-top: 13px;
}

.mb13 {
  margin-bottom: 13px;
}

.ml13 {
  margin-left: 13px;
}

.mr13 {
  margin-right: 13px;
}

.mt14 {
  margin-top: 14px;
}

.mb14 {
  margin-bottom: 14px;
}

.ml14 {
  margin-left: 14px;
}

.mr14 {
  margin-right: 14px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mt16 {
  margin-top: 16px;
}

.mb16 {
  margin-bottom: 16px;
}

.ml16 {
  margin-left: 16px;
}

.mr16 {
  margin-right: 16px;
}

.mt17 {
  margin-top: 17px;
}

.mb17 {
  margin-bottom: 17px;
}

.ml17 {
  margin-left: 17px;
}

.mr17 {
  margin-right: 17px;
}

.mt18 {
  margin-top: 18px;
}

.mb18 {
  margin-bottom: 18px;
}

.ml18 {
  margin-left: 18px;
}

.mr18 {
  margin-right: 18px;
}

.mt19 {
  margin-top: 19px;
}

.mb19 {
  margin-bottom: 19px;
}

.ml19 {
  margin-left: 19px;
}

.mr19 {
  margin-right: 19px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mt21 {
  margin-top: 21px;
}

.mb21 {
  margin-bottom: 21px;
}

.ml21 {
  margin-left: 21px;
}

.mr21 {
  margin-right: 21px;
}

.mt22 {
  margin-top: 22px;
}

.mb22 {
  margin-bottom: 22px;
}

.ml22 {
  margin-left: 22px;
}

.mr22 {
  margin-right: 22px;
}

.mt23 {
  margin-top: 23px;
}

.mb23 {
  margin-bottom: 23px;
}

.ml23 {
  margin-left: 23px;
}

.mr23 {
  margin-right: 23px;
}

.mt24 {
  margin-top: 24px;
}

.mb24 {
  margin-bottom: 24px;
}

.ml24 {
  margin-left: 24px;
}

.mr24 {
  margin-right: 24px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mt26 {
  margin-top: 26px;
}

.mb26 {
  margin-bottom: 26px;
}

.ml26 {
  margin-left: 26px;
}

.mr26 {
  margin-right: 26px;
}

.mt27 {
  margin-top: 27px;
}

.mb27 {
  margin-bottom: 27px;
}

.ml27 {
  margin-left: 27px;
}

.mr27 {
  margin-right: 27px;
}

.mt28 {
  margin-top: 28px;
}

.mb28 {
  margin-bottom: 28px;
}

.ml28 {
  margin-left: 28px;
}

.mr28 {
  margin-right: 28px;
}

.mt29 {
  margin-top: 29px;
}

.mb29 {
  margin-bottom: 29px;
}

.ml29 {
  margin-left: 29px;
}

.mr29 {
  margin-right: 29px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mt31 {
  margin-top: 31px;
}

.mb31 {
  margin-bottom: 31px;
}

.ml31 {
  margin-left: 31px;
}

.mr31 {
  margin-right: 31px;
}

.mt32 {
  margin-top: 32px;
}

.mb32 {
  margin-bottom: 32px;
}

.ml32 {
  margin-left: 32px;
}

.mr32 {
  margin-right: 32px;
}

.mt33 {
  margin-top: 33px;
}

.mb33 {
  margin-bottom: 33px;
}

.ml33 {
  margin-left: 33px;
}

.mr33 {
  margin-right: 33px;
}

.mt34 {
  margin-top: 34px;
}

.mb34 {
  margin-bottom: 34px;
}

.ml34 {
  margin-left: 34px;
}

.mr34 {
  margin-right: 34px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mt36 {
  margin-top: 36px;
}

.mb36 {
  margin-bottom: 36px;
}

.ml36 {
  margin-left: 36px;
}

.mr36 {
  margin-right: 36px;
}

.mt37 {
  margin-top: 37px;
}

.mb37 {
  margin-bottom: 37px;
}

.ml37 {
  margin-left: 37px;
}

.mr37 {
  margin-right: 37px;
}

.mt38 {
  margin-top: 38px;
}

.mb38 {
  margin-bottom: 38px;
}

.ml38 {
  margin-left: 38px;
}

.mr38 {
  margin-right: 38px;
}

.mt39 {
  margin-top: 39px;
}

.mb39 {
  margin-bottom: 39px;
}

.ml39 {
  margin-left: 39px;
}

.mr39 {
  margin-right: 39px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mt41 {
  margin-top: 41px;
}

.mb41 {
  margin-bottom: 41px;
}

.ml41 {
  margin-left: 41px;
}

.mr41 {
  margin-right: 41px;
}

.mt42 {
  margin-top: 42px;
}

.mb42 {
  margin-bottom: 42px;
}

.ml42 {
  margin-left: 42px;
}

.mr42 {
  margin-right: 42px;
}

.mt43 {
  margin-top: 43px;
}

.mb43 {
  margin-bottom: 43px;
}

.ml43 {
  margin-left: 43px;
}

.mr43 {
  margin-right: 43px;
}

.mt44 {
  margin-top: 44px;
}

.mb44 {
  margin-bottom: 44px;
}

.ml44 {
  margin-left: 44px;
}

.mr44 {
  margin-right: 44px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mt46 {
  margin-top: 46px;
}

.mb46 {
  margin-bottom: 46px;
}

.ml46 {
  margin-left: 46px;
}

.mr46 {
  margin-right: 46px;
}

.mt47 {
  margin-top: 47px;
}

.mb47 {
  margin-bottom: 47px;
}

.ml47 {
  margin-left: 47px;
}

.mr47 {
  margin-right: 47px;
}

.mt48 {
  margin-top: 48px;
}

.mb48 {
  margin-bottom: 48px;
}

.ml48 {
  margin-left: 48px;
}

.mr48 {
  margin-right: 48px;
}

.mt49 {
  margin-top: 49px;
}

.mb49 {
  margin-bottom: 49px;
}

.ml49 {
  margin-left: 49px;
}

.mr49 {
  margin-right: 49px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mt51 {
  margin-top: 51px;
}

.mb51 {
  margin-bottom: 51px;
}

.ml51 {
  margin-left: 51px;
}

.mr51 {
  margin-right: 51px;
}

.mt52 {
  margin-top: 52px;
}

.mb52 {
  margin-bottom: 52px;
}

.ml52 {
  margin-left: 52px;
}

.mr52 {
  margin-right: 52px;
}

.mt53 {
  margin-top: 53px;
}

.mb53 {
  margin-bottom: 53px;
}

.ml53 {
  margin-left: 53px;
}

.mr53 {
  margin-right: 53px;
}

.mt54 {
  margin-top: 54px;
}

.mb54 {
  margin-bottom: 54px;
}

.ml54 {
  margin-left: 54px;
}

.mr54 {
  margin-right: 54px;
}

.mt55 {
  margin-top: 55px;
}

.mb55 {
  margin-bottom: 55px;
}

.ml55 {
  margin-left: 55px;
}

.mr55 {
  margin-right: 55px;
}

.mt56 {
  margin-top: 56px;
}

.mb56 {
  margin-bottom: 56px;
}

.ml56 {
  margin-left: 56px;
}

.mr56 {
  margin-right: 56px;
}

.mt57 {
  margin-top: 57px;
}

.mb57 {
  margin-bottom: 57px;
}

.ml57 {
  margin-left: 57px;
}

.mr57 {
  margin-right: 57px;
}

.mt58 {
  margin-top: 58px;
}

.mb58 {
  margin-bottom: 58px;
}

.ml58 {
  margin-left: 58px;
}

.mr58 {
  margin-right: 58px;
}

.mt59 {
  margin-top: 59px;
}

.mb59 {
  margin-bottom: 59px;
}

.ml59 {
  margin-left: 59px;
}

.mr59 {
  margin-right: 59px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.ml60 {
  margin-left: 60px;
}

.mr60 {
  margin-right: 60px;
}

.mt61 {
  margin-top: 61px;
}

.mb61 {
  margin-bottom: 61px;
}

.ml61 {
  margin-left: 61px;
}

.mr61 {
  margin-right: 61px;
}

.mt62 {
  margin-top: 62px;
}

.mb62 {
  margin-bottom: 62px;
}

.ml62 {
  margin-left: 62px;
}

.mr62 {
  margin-right: 62px;
}

.mt63 {
  margin-top: 63px;
}

.mb63 {
  margin-bottom: 63px;
}

.ml63 {
  margin-left: 63px;
}

.mr63 {
  margin-right: 63px;
}

.mt64 {
  margin-top: 64px;
}

.mb64 {
  margin-bottom: 64px;
}

.ml64 {
  margin-left: 64px;
}

.mr64 {
  margin-right: 64px;
}

.mt65 {
  margin-top: 65px;
}

.mb65 {
  margin-bottom: 65px;
}

.ml65 {
  margin-left: 65px;
}

.mr65 {
  margin-right: 65px;
}

.mt66 {
  margin-top: 66px;
}

.mb66 {
  margin-bottom: 66px;
}

.ml66 {
  margin-left: 66px;
}

.mr66 {
  margin-right: 66px;
}

.mt67 {
  margin-top: 67px;
}

.mb67 {
  margin-bottom: 67px;
}

.ml67 {
  margin-left: 67px;
}

.mr67 {
  margin-right: 67px;
}

.mt68 {
  margin-top: 68px;
}

.mb68 {
  margin-bottom: 68px;
}

.ml68 {
  margin-left: 68px;
}

.mr68 {
  margin-right: 68px;
}

.mt69 {
  margin-top: 69px;
}

.mb69 {
  margin-bottom: 69px;
}

.ml69 {
  margin-left: 69px;
}

.mr69 {
  margin-right: 69px;
}

.mt70 {
  margin-top: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.ml70 {
  margin-left: 70px;
}

.mr70 {
  margin-right: 70px;
}

.mt71 {
  margin-top: 71px;
}

.mb71 {
  margin-bottom: 71px;
}

.ml71 {
  margin-left: 71px;
}

.mr71 {
  margin-right: 71px;
}

.mt72 {
  margin-top: 72px;
}

.mb72 {
  margin-bottom: 72px;
}

.ml72 {
  margin-left: 72px;
}

.mr72 {
  margin-right: 72px;
}

.mt73 {
  margin-top: 73px;
}

.mb73 {
  margin-bottom: 73px;
}

.ml73 {
  margin-left: 73px;
}

.mr73 {
  margin-right: 73px;
}

.mt74 {
  margin-top: 74px;
}

.mb74 {
  margin-bottom: 74px;
}

.ml74 {
  margin-left: 74px;
}

.mr74 {
  margin-right: 74px;
}

.mt75 {
  margin-top: 75px;
}

.mb75 {
  margin-bottom: 75px;
}

.ml75 {
  margin-left: 75px;
}

.mr75 {
  margin-right: 75px;
}

.mt76 {
  margin-top: 76px;
}

.mb76 {
  margin-bottom: 76px;
}

.ml76 {
  margin-left: 76px;
}

.mr76 {
  margin-right: 76px;
}

.mt77 {
  margin-top: 77px;
}

.mb77 {
  margin-bottom: 77px;
}

.ml77 {
  margin-left: 77px;
}

.mr77 {
  margin-right: 77px;
}

.mt78 {
  margin-top: 78px;
}

.mb78 {
  margin-bottom: 78px;
}

.ml78 {
  margin-left: 78px;
}

.mr78 {
  margin-right: 78px;
}

.mt79 {
  margin-top: 79px;
}

.mb79 {
  margin-bottom: 79px;
}

.ml79 {
  margin-left: 79px;
}

.mr79 {
  margin-right: 79px;
}

.mt80 {
  margin-top: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.ml80 {
  margin-left: 80px;
}

.mr80 {
  margin-right: 80px;
}

.mt81 {
  margin-top: 81px;
}

.mb81 {
  margin-bottom: 81px;
}

.ml81 {
  margin-left: 81px;
}

.mr81 {
  margin-right: 81px;
}

.mt82 {
  margin-top: 82px;
}

.mb82 {
  margin-bottom: 82px;
}

.ml82 {
  margin-left: 82px;
}

.mr82 {
  margin-right: 82px;
}

.mt83 {
  margin-top: 83px;
}

.mb83 {
  margin-bottom: 83px;
}

.ml83 {
  margin-left: 83px;
}

.mr83 {
  margin-right: 83px;
}

.mt84 {
  margin-top: 84px;
}

.mb84 {
  margin-bottom: 84px;
}

.ml84 {
  margin-left: 84px;
}

.mr84 {
  margin-right: 84px;
}

.mt85 {
  margin-top: 85px;
}

.mb85 {
  margin-bottom: 85px;
}

.ml85 {
  margin-left: 85px;
}

.mr85 {
  margin-right: 85px;
}

.mt86 {
  margin-top: 86px;
}

.mb86 {
  margin-bottom: 86px;
}

.ml86 {
  margin-left: 86px;
}

.mr86 {
  margin-right: 86px;
}

.mt87 {
  margin-top: 87px;
}

.mb87 {
  margin-bottom: 87px;
}

.ml87 {
  margin-left: 87px;
}

.mr87 {
  margin-right: 87px;
}

.mt88 {
  margin-top: 88px;
}

.mb88 {
  margin-bottom: 88px;
}

.ml88 {
  margin-left: 88px;
}

.mr88 {
  margin-right: 88px;
}

.mt89 {
  margin-top: 89px;
}

.mb89 {
  margin-bottom: 89px;
}

.ml89 {
  margin-left: 89px;
}

.mr89 {
  margin-right: 89px;
}

.mt90 {
  margin-top: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.ml90 {
  margin-left: 90px;
}

.mr90 {
  margin-right: 90px;
}

.mt91 {
  margin-top: 91px;
}

.mb91 {
  margin-bottom: 91px;
}

.ml91 {
  margin-left: 91px;
}

.mr91 {
  margin-right: 91px;
}

.mt92 {
  margin-top: 92px;
}

.mb92 {
  margin-bottom: 92px;
}

.ml92 {
  margin-left: 92px;
}

.mr92 {
  margin-right: 92px;
}

.mt93 {
  margin-top: 93px;
}

.mb93 {
  margin-bottom: 93px;
}

.ml93 {
  margin-left: 93px;
}

.mr93 {
  margin-right: 93px;
}

.mt94 {
  margin-top: 94px;
}

.mb94 {
  margin-bottom: 94px;
}

.ml94 {
  margin-left: 94px;
}

.mr94 {
  margin-right: 94px;
}

.mt95 {
  margin-top: 95px;
}

.mb95 {
  margin-bottom: 95px;
}

.ml95 {
  margin-left: 95px;
}

.mr95 {
  margin-right: 95px;
}

.mt96 {
  margin-top: 96px;
}

.mb96 {
  margin-bottom: 96px;
}

.ml96 {
  margin-left: 96px;
}

.mr96 {
  margin-right: 96px;
}

.mt97 {
  margin-top: 97px;
}

.mb97 {
  margin-bottom: 97px;
}

.ml97 {
  margin-left: 97px;
}

.mr97 {
  margin-right: 97px;
}

.mt98 {
  margin-top: 98px;
}

.mb98 {
  margin-bottom: 98px;
}

.ml98 {
  margin-left: 98px;
}

.mr98 {
  margin-right: 98px;
}

.mt99 {
  margin-top: 99px;
}

.mb99 {
  margin-bottom: 99px;
}

.ml99 {
  margin-left: 99px;
}

.mr99 {
  margin-right: 99px;
}

.mt100 {
  margin-top: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml100 {
  margin-left: 100px;
}

.mr100 {
  margin-right: 100px;
}

.pt0 {
  padding-top: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.pt1 {
  padding-top: 1px;
}

.pb1 {
  padding-bottom: 1px;
}

.pl1 {
  padding-left: 1px;
}

.pr1 {
  padding-right: 1px;
}

.pt2 {
  padding-top: 2px;
}

.pb2 {
  padding-bottom: 2px;
}

.pl2 {
  padding-left: 2px;
}

.pr2 {
  padding-right: 2px;
}

.pt3 {
  padding-top: 3px;
}

.pb3 {
  padding-bottom: 3px;
}

.pl3 {
  padding-left: 3px;
}

.pr3 {
  padding-right: 3px;
}

.pt4 {
  padding-top: 4px;
}

.pb4 {
  padding-bottom: 4px;
}

.pl4 {
  padding-left: 4px;
}

.pr4 {
  padding-right: 4px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pt6 {
  padding-top: 6px;
}

.pb6 {
  padding-bottom: 6px;
}

.pl6 {
  padding-left: 6px;
}

.pr6 {
  padding-right: 6px;
}

.pt7 {
  padding-top: 7px;
}

.pb7 {
  padding-bottom: 7px;
}

.pl7 {
  padding-left: 7px;
}

.pr7 {
  padding-right: 7px;
}

.pt8 {
  padding-top: 8px;
}

.pb8 {
  padding-bottom: 8px;
}

.pl8 {
  padding-left: 8px;
}

.pr8 {
  padding-right: 8px;
}

.pt9 {
  padding-top: 9px;
}

.pb9 {
  padding-bottom: 9px;
}

.pl9 {
  padding-left: 9px;
}

.pr9 {
  padding-right: 9px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pt11 {
  padding-top: 11px;
}

.pb11 {
  padding-bottom: 11px;
}

.pl11 {
  padding-left: 11px;
}

.pr11 {
  padding-right: 11px;
}

.pt12 {
  padding-top: 12px;
}

.pb12 {
  padding-bottom: 12px;
}

.pl12 {
  padding-left: 12px;
}

.pr12 {
  padding-right: 12px;
}

.pt13 {
  padding-top: 13px;
}

.pb13 {
  padding-bottom: 13px;
}

.pl13 {
  padding-left: 13px;
}

.pr13 {
  padding-right: 13px;
}

.pt14 {
  padding-top: 14px;
}

.pb14 {
  padding-bottom: 14px;
}

.pl14 {
  padding-left: 14px;
}

.pr14 {
  padding-right: 14px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pt16 {
  padding-top: 16px;
}

.pb16 {
  padding-bottom: 16px;
}

.pl16 {
  padding-left: 16px;
}

.pr16 {
  padding-right: 16px;
}

.pt17 {
  padding-top: 17px;
}

.pb17 {
  padding-bottom: 17px;
}

.pl17 {
  padding-left: 17px;
}

.pr17 {
  padding-right: 17px;
}

.pt18 {
  padding-top: 18px;
}

.pb18 {
  padding-bottom: 18px;
}

.pl18 {
  padding-left: 18px;
}

.pr18 {
  padding-right: 18px;
}

.pt19 {
  padding-top: 19px;
}

.pb19 {
  padding-bottom: 19px;
}

.pl19 {
  padding-left: 19px;
}

.pr19 {
  padding-right: 19px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pt21 {
  padding-top: 21px;
}

.pb21 {
  padding-bottom: 21px;
}

.pl21 {
  padding-left: 21px;
}

.pr21 {
  padding-right: 21px;
}

.pt22 {
  padding-top: 22px;
}

.pb22 {
  padding-bottom: 22px;
}

.pl22 {
  padding-left: 22px;
}

.pr22 {
  padding-right: 22px;
}

.pt23 {
  padding-top: 23px;
}

.pb23 {
  padding-bottom: 23px;
}

.pl23 {
  padding-left: 23px;
}

.pr23 {
  padding-right: 23px;
}

.pt24 {
  padding-top: 24px;
}

.pb24 {
  padding-bottom: 24px;
}

.pl24 {
  padding-left: 24px;
}

.pr24 {
  padding-right: 24px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pt26 {
  padding-top: 26px;
}

.pb26 {
  padding-bottom: 26px;
}

.pl26 {
  padding-left: 26px;
}

.pr26 {
  padding-right: 26px;
}

.pt27 {
  padding-top: 27px;
}

.pb27 {
  padding-bottom: 27px;
}

.pl27 {
  padding-left: 27px;
}

.pr27 {
  padding-right: 27px;
}

.pt28 {
  padding-top: 28px;
}

.pb28 {
  padding-bottom: 28px;
}

.pl28 {
  padding-left: 28px;
}

.pr28 {
  padding-right: 28px;
}

.pt29 {
  padding-top: 29px;
}

.pb29 {
  padding-bottom: 29px;
}

.pl29 {
  padding-left: 29px;
}

.pr29 {
  padding-right: 29px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pt31 {
  padding-top: 31px;
}

.pb31 {
  padding-bottom: 31px;
}

.pl31 {
  padding-left: 31px;
}

.pr31 {
  padding-right: 31px;
}

.pt32 {
  padding-top: 32px;
}

.pb32 {
  padding-bottom: 32px;
}

.pl32 {
  padding-left: 32px;
}

.pr32 {
  padding-right: 32px;
}

.pt33 {
  padding-top: 33px;
}

.pb33 {
  padding-bottom: 33px;
}

.pl33 {
  padding-left: 33px;
}

.pr33 {
  padding-right: 33px;
}

.pt34 {
  padding-top: 34px;
}

.pb34 {
  padding-bottom: 34px;
}

.pl34 {
  padding-left: 34px;
}

.pr34 {
  padding-right: 34px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pt36 {
  padding-top: 36px;
}

.pb36 {
  padding-bottom: 36px;
}

.pl36 {
  padding-left: 36px;
}

.pr36 {
  padding-right: 36px;
}

.pt37 {
  padding-top: 37px;
}

.pb37 {
  padding-bottom: 37px;
}

.pl37 {
  padding-left: 37px;
}

.pr37 {
  padding-right: 37px;
}

.pt38 {
  padding-top: 38px;
}

.pb38 {
  padding-bottom: 38px;
}

.pl38 {
  padding-left: 38px;
}

.pr38 {
  padding-right: 38px;
}

.pt39 {
  padding-top: 39px;
}

.pb39 {
  padding-bottom: 39px;
}

.pl39 {
  padding-left: 39px;
}

.pr39 {
  padding-right: 39px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pt41 {
  padding-top: 41px;
}

.pb41 {
  padding-bottom: 41px;
}

.pl41 {
  padding-left: 41px;
}

.pr41 {
  padding-right: 41px;
}

.pt42 {
  padding-top: 42px;
}

.pb42 {
  padding-bottom: 42px;
}

.pl42 {
  padding-left: 42px;
}

.pr42 {
  padding-right: 42px;
}

.pt43 {
  padding-top: 43px;
}

.pb43 {
  padding-bottom: 43px;
}

.pl43 {
  padding-left: 43px;
}

.pr43 {
  padding-right: 43px;
}

.pt44 {
  padding-top: 44px;
}

.pb44 {
  padding-bottom: 44px;
}

.pl44 {
  padding-left: 44px;
}

.pr44 {
  padding-right: 44px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pt46 {
  padding-top: 46px;
}

.pb46 {
  padding-bottom: 46px;
}

.pl46 {
  padding-left: 46px;
}

.pr46 {
  padding-right: 46px;
}

.pt47 {
  padding-top: 47px;
}

.pb47 {
  padding-bottom: 47px;
}

.pl47 {
  padding-left: 47px;
}

.pr47 {
  padding-right: 47px;
}

.pt48 {
  padding-top: 48px;
}

.pb48 {
  padding-bottom: 48px;
}

.pl48 {
  padding-left: 48px;
}

.pr48 {
  padding-right: 48px;
}

.pt49 {
  padding-top: 49px;
}

.pb49 {
  padding-bottom: 49px;
}

.pl49 {
  padding-left: 49px;
}

.pr49 {
  padding-right: 49px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pt51 {
  padding-top: 51px;
}

.pb51 {
  padding-bottom: 51px;
}

.pl51 {
  padding-left: 51px;
}

.pr51 {
  padding-right: 51px;
}

.pt52 {
  padding-top: 52px;
}

.pb52 {
  padding-bottom: 52px;
}

.pl52 {
  padding-left: 52px;
}

.pr52 {
  padding-right: 52px;
}

.pt53 {
  padding-top: 53px;
}

.pb53 {
  padding-bottom: 53px;
}

.pl53 {
  padding-left: 53px;
}

.pr53 {
  padding-right: 53px;
}

.pt54 {
  padding-top: 54px;
}

.pb54 {
  padding-bottom: 54px;
}

.pl54 {
  padding-left: 54px;
}

.pr54 {
  padding-right: 54px;
}

.pt55 {
  padding-top: 55px;
}

.pb55 {
  padding-bottom: 55px;
}

.pl55 {
  padding-left: 55px;
}

.pr55 {
  padding-right: 55px;
}

.pt56 {
  padding-top: 56px;
}

.pb56 {
  padding-bottom: 56px;
}

.pl56 {
  padding-left: 56px;
}

.pr56 {
  padding-right: 56px;
}

.pt57 {
  padding-top: 57px;
}

.pb57 {
  padding-bottom: 57px;
}

.pl57 {
  padding-left: 57px;
}

.pr57 {
  padding-right: 57px;
}

.pt58 {
  padding-top: 58px;
}

.pb58 {
  padding-bottom: 58px;
}

.pl58 {
  padding-left: 58px;
}

.pr58 {
  padding-right: 58px;
}

.pt59 {
  padding-top: 59px;
}

.pb59 {
  padding-bottom: 59px;
}

.pl59 {
  padding-left: 59px;
}

.pr59 {
  padding-right: 59px;
}

.pt60 {
  padding-top: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pl60 {
  padding-left: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pt61 {
  padding-top: 61px;
}

.pb61 {
  padding-bottom: 61px;
}

.pl61 {
  padding-left: 61px;
}

.pr61 {
  padding-right: 61px;
}

.pt62 {
  padding-top: 62px;
}

.pb62 {
  padding-bottom: 62px;
}

.pl62 {
  padding-left: 62px;
}

.pr62 {
  padding-right: 62px;
}

.pt63 {
  padding-top: 63px;
}

.pb63 {
  padding-bottom: 63px;
}

.pl63 {
  padding-left: 63px;
}

.pr63 {
  padding-right: 63px;
}

.pt64 {
  padding-top: 64px;
}

.pb64 {
  padding-bottom: 64px;
}

.pl64 {
  padding-left: 64px;
}

.pr64 {
  padding-right: 64px;
}

.pt65 {
  padding-top: 65px;
}

.pb65 {
  padding-bottom: 65px;
}

.pl65 {
  padding-left: 65px;
}

.pr65 {
  padding-right: 65px;
}

.pt66 {
  padding-top: 66px;
}

.pb66 {
  padding-bottom: 66px;
}

.pl66 {
  padding-left: 66px;
}

.pr66 {
  padding-right: 66px;
}

.pt67 {
  padding-top: 67px;
}

.pb67 {
  padding-bottom: 67px;
}

.pl67 {
  padding-left: 67px;
}

.pr67 {
  padding-right: 67px;
}

.pt68 {
  padding-top: 68px;
}

.pb68 {
  padding-bottom: 68px;
}

.pl68 {
  padding-left: 68px;
}

.pr68 {
  padding-right: 68px;
}

.pt69 {
  padding-top: 69px;
}

.pb69 {
  padding-bottom: 69px;
}

.pl69 {
  padding-left: 69px;
}

.pr69 {
  padding-right: 69px;
}

.pt70 {
  padding-top: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.pl70 {
  padding-left: 70px;
}

.pr70 {
  padding-right: 70px;
}

.pt71 {
  padding-top: 71px;
}

.pb71 {
  padding-bottom: 71px;
}

.pl71 {
  padding-left: 71px;
}

.pr71 {
  padding-right: 71px;
}

.pt72 {
  padding-top: 72px;
}

.pb72 {
  padding-bottom: 72px;
}

.pl72 {
  padding-left: 72px;
}

.pr72 {
  padding-right: 72px;
}

.pt73 {
  padding-top: 73px;
}

.pb73 {
  padding-bottom: 73px;
}

.pl73 {
  padding-left: 73px;
}

.pr73 {
  padding-right: 73px;
}

.pt74 {
  padding-top: 74px;
}

.pb74 {
  padding-bottom: 74px;
}

.pl74 {
  padding-left: 74px;
}

.pr74 {
  padding-right: 74px;
}

.pt75 {
  padding-top: 75px;
}

.pb75 {
  padding-bottom: 75px;
}

.pl75 {
  padding-left: 75px;
}

.pr75 {
  padding-right: 75px;
}

.pt76 {
  padding-top: 76px;
}

.pb76 {
  padding-bottom: 76px;
}

.pl76 {
  padding-left: 76px;
}

.pr76 {
  padding-right: 76px;
}

.pt77 {
  padding-top: 77px;
}

.pb77 {
  padding-bottom: 77px;
}

.pl77 {
  padding-left: 77px;
}

.pr77 {
  padding-right: 77px;
}

.pt78 {
  padding-top: 78px;
}

.pb78 {
  padding-bottom: 78px;
}

.pl78 {
  padding-left: 78px;
}

.pr78 {
  padding-right: 78px;
}

.pt79 {
  padding-top: 79px;
}

.pb79 {
  padding-bottom: 79px;
}

.pl79 {
  padding-left: 79px;
}

.pr79 {
  padding-right: 79px;
}

.pt80 {
  padding-top: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.pl80 {
  padding-left: 80px;
}

.pr80 {
  padding-right: 80px;
}

.pt81 {
  padding-top: 81px;
}

.pb81 {
  padding-bottom: 81px;
}

.pl81 {
  padding-left: 81px;
}

.pr81 {
  padding-right: 81px;
}

.pt82 {
  padding-top: 82px;
}

.pb82 {
  padding-bottom: 82px;
}

.pl82 {
  padding-left: 82px;
}

.pr82 {
  padding-right: 82px;
}

.pt83 {
  padding-top: 83px;
}

.pb83 {
  padding-bottom: 83px;
}

.pl83 {
  padding-left: 83px;
}

.pr83 {
  padding-right: 83px;
}

.pt84 {
  padding-top: 84px;
}

.pb84 {
  padding-bottom: 84px;
}

.pl84 {
  padding-left: 84px;
}

.pr84 {
  padding-right: 84px;
}

.pt85 {
  padding-top: 85px;
}

.pb85 {
  padding-bottom: 85px;
}

.pl85 {
  padding-left: 85px;
}

.pr85 {
  padding-right: 85px;
}

.pt86 {
  padding-top: 86px;
}

.pb86 {
  padding-bottom: 86px;
}

.pl86 {
  padding-left: 86px;
}

.pr86 {
  padding-right: 86px;
}

.pt87 {
  padding-top: 87px;
}

.pb87 {
  padding-bottom: 87px;
}

.pl87 {
  padding-left: 87px;
}

.pr87 {
  padding-right: 87px;
}

.pt88 {
  padding-top: 88px;
}

.pb88 {
  padding-bottom: 88px;
}

.pl88 {
  padding-left: 88px;
}

.pr88 {
  padding-right: 88px;
}

.pt89 {
  padding-top: 89px;
}

.pb89 {
  padding-bottom: 89px;
}

.pl89 {
  padding-left: 89px;
}

.pr89 {
  padding-right: 89px;
}

.pt90 {
  padding-top: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.pl90 {
  padding-left: 90px;
}

.pr90 {
  padding-right: 90px;
}

.pt91 {
  padding-top: 91px;
}

.pb91 {
  padding-bottom: 91px;
}

.pl91 {
  padding-left: 91px;
}

.pr91 {
  padding-right: 91px;
}

.pt92 {
  padding-top: 92px;
}

.pb92 {
  padding-bottom: 92px;
}

.pl92 {
  padding-left: 92px;
}

.pr92 {
  padding-right: 92px;
}

.pt93 {
  padding-top: 93px;
}

.pb93 {
  padding-bottom: 93px;
}

.pl93 {
  padding-left: 93px;
}

.pr93 {
  padding-right: 93px;
}

.pt94 {
  padding-top: 94px;
}

.pb94 {
  padding-bottom: 94px;
}

.pl94 {
  padding-left: 94px;
}

.pr94 {
  padding-right: 94px;
}

.pt95 {
  padding-top: 95px;
}

.pb95 {
  padding-bottom: 95px;
}

.pl95 {
  padding-left: 95px;
}

.pr95 {
  padding-right: 95px;
}

.pt96 {
  padding-top: 96px;
}

.pb96 {
  padding-bottom: 96px;
}

.pl96 {
  padding-left: 96px;
}

.pr96 {
  padding-right: 96px;
}

.pt97 {
  padding-top: 97px;
}

.pb97 {
  padding-bottom: 97px;
}

.pl97 {
  padding-left: 97px;
}

.pr97 {
  padding-right: 97px;
}

.pt98 {
  padding-top: 98px;
}

.pb98 {
  padding-bottom: 98px;
}

.pl98 {
  padding-left: 98px;
}

.pr98 {
  padding-right: 98px;
}

.pt99 {
  padding-top: 99px;
}

.pb99 {
  padding-bottom: 99px;
}

.pl99 {
  padding-left: 99px;
}

.pr99 {
  padding-right: 99px;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.pl100 {
  padding-left: 100px;
}

.pr100 {
  padding-right: 100px;
}

/* width
 -------------------------------------------------------------------- */
 ._w1 {
  width: 1% !important;
}

._w2 {
  width: 2% !important;
}

._w3 {
  width: 3% !important;
}

._w4 {
  width: 4% !important;
}

._w5 {
  width: 5% !important;
}

._w6 {
  width: 6% !important;
}

._w7 {
  width: 7% !important;
}

._w8 {
  width: 8% !important;
}

._w9 {
  width: 9% !important;
}

._w10 {
  width: 10% !important;
}

._w11 {
  width: 11% !important;
}

._w12 {
  width: 12% !important;
}

._w13 {
  width: 13% !important;
}

._w14 {
  width: 14% !important;
}

._w15 {
  width: 15% !important;
}

._w16 {
  width: 16% !important;
}

._w17 {
  width: 17% !important;
}

._w18 {
  width: 18% !important;
}

._w19 {
  width: 19% !important;
}

._w20 {
  width: 20% !important;
}

._w21 {
  width: 21% !important;
}

._w22 {
  width: 22% !important;
}

._w23 {
  width: 23% !important;
}

._w24 {
  width: 24% !important;
}

._w25 {
  width: 25% !important;
}

._w26 {
  width: 26% !important;
}

._w27 {
  width: 27% !important;
}

._w28 {
  width: 28% !important;
}

._w29 {
  width: 29% !important;
}

._w30 {
  width: 30% !important;
}

._w31 {
  width: 31% !important;
}

._w32 {
  width: 32% !important;
}

._w33 {
  width: 33% !important;
}

._w34 {
  width: 34% !important;
}

._w35 {
  width: 35% !important;
}

._w36 {
  width: 36% !important;
}

._w37 {
  width: 37% !important;
}

._w38 {
  width: 38% !important;
}

._w39 {
  width: 39% !important;
}

._w40 {
  width: 40% !important;
}

._w41 {
  width: 41% !important;
}

._w42 {
  width: 42% !important;
}

._w43 {
  width: 43% !important;
}

._w44 {
  width: 44% !important;
}

._w45 {
  width: 45% !important;
}

._w46 {
  width: 46% !important;
}

._w47 {
  width: 47% !important;
}

._w48 {
  width: 48% !important;
}

._w49 {
  width: 49% !important;
}

._w50 {
  width: 50% !important;
}

._w51 {
  width: 51% !important;
}

._w52 {
  width: 52% !important;
}

._w53 {
  width: 53% !important;
}

._w54 {
  width: 54% !important;
}

._w55 {
  width: 55% !important;
}

._w56 {
  width: 56% !important;
}

._w57 {
  width: 57% !important;
}

._w58 {
  width: 58% !important;
}

._w59 {
  width: 59% !important;
}

._w60 {
  width: 60% !important;
}

._w61 {
  width: 61% !important;
}

._w62 {
  width: 62% !important;
}

._w63 {
  width: 63% !important;
}

._w64 {
  width: 64% !important;
}

._w65 {
  width: 65% !important;
}

._w66 {
  width: 66% !important;
}

._w67 {
  width: 67% !important;
}

._w68 {
  width: 68% !important;
}

._w69 {
  width: 69% !important;
}

._w70 {
  width: 70% !important;
}

._w71 {
  width: 71% !important;
}

._w72 {
  width: 72% !important;
}

._w73 {
  width: 73% !important;
}

._w74 {
  width: 74% !important;
}

._w75 {
  width: 75% !important;
}

._w76 {
  width: 76% !important;
}

._w77 {
  width: 77% !important;
}

._w78 {
  width: 78% !important;
}

._w79 {
  width: 79% !important;
}

._w80 {
  width: 80% !important;
}

._w81 {
  width: 81% !important;
}

._w82 {
  width: 82% !important;
}

._w83 {
  width: 83% !important;
}

._w84 {
  width: 84% !important;
}

._w85 {
  width: 85% !important;
}

._w86 {
  width: 86% !important;
}

._w87 {
  width: 87% !important;
}

._w88 {
  width: 88% !important;
}

._w89 {
  width: 89% !important;
}

._w90 {
  width: 90% !important;
}

._w91 {
  width: 91% !important;
}

._w92 {
  width: 92% !important;
}

._w93 {
  width: 93% !important;
}

._w94 {
  width: 94% !important;
}

._w95 {
  width: 95% !important;
}

._w96 {
  width: 96% !important;
}

._w97 {
  width: 97% !important;
}

._w98 {
  width: 98% !important;
}

._w99 {
  width: 99% !important;
}

._w100 {
  width: 100% !important;
}

@media all and (min-width: 500px) {
  ._pc-w1 {
    width: 1% !important;
  }
  ._pc-w2 {
    width: 2% !important;
  }
  ._pc-w3 {
    width: 3% !important;
  }
  ._pc-w4 {
    width: 4% !important;
  }
  ._pc-w5 {
    width: 5% !important;
  }
  ._pc-w6 {
    width: 6% !important;
  }
  ._pc-w7 {
    width: 7% !important;
  }
  ._pc-w8 {
    width: 8% !important;
  }
  ._pc-w9 {
    width: 9% !important;
  }
  ._pc-w10 {
    width: 10% !important;
  }
  ._pc-w11 {
    width: 11% !important;
  }
  ._pc-w12 {
    width: 12% !important;
  }
  ._pc-w13 {
    width: 13% !important;
  }
  ._pc-w14 {
    width: 14% !important;
  }
  ._pc-w15 {
    width: 15% !important;
  }
  ._pc-w16 {
    width: 16% !important;
  }
  ._pc-w17 {
    width: 17% !important;
  }
  ._pc-w18 {
    width: 18% !important;
  }
  ._pc-w19 {
    width: 19% !important;
  }
  ._pc-w20 {
    width: 20% !important;
  }
  ._pc-w21 {
    width: 21% !important;
  }
  ._pc-w22 {
    width: 22% !important;
  }
  ._pc-w23 {
    width: 23% !important;
  }
  ._pc-w24 {
    width: 24% !important;
  }
  ._pc-w25 {
    width: 25% !important;
  }
  ._pc-w26 {
    width: 26% !important;
  }
  ._pc-w27 {
    width: 27% !important;
  }
  ._pc-w28 {
    width: 28% !important;
  }
  ._pc-w29 {
    width: 29% !important;
  }
  ._pc-w30 {
    width: 30% !important;
  }
  ._pc-w31 {
    width: 31% !important;
  }
  ._pc-w32 {
    width: 32% !important;
  }
  ._pc-w33 {
    width: 33% !important;
  }
  ._pc-w34 {
    width: 34% !important;
  }
  ._pc-w35 {
    width: 35% !important;
  }
  ._pc-w36 {
    width: 36% !important;
  }
  ._pc-w37 {
    width: 37% !important;
  }
  ._pc-w38 {
    width: 38% !important;
  }
  ._pc-w39 {
    width: 39% !important;
  }
  ._pc-w40 {
    width: 40% !important;
  }
  ._pc-w41 {
    width: 41% !important;
  }
  ._pc-w42 {
    width: 42% !important;
  }
  ._pc-w43 {
    width: 43% !important;
  }
  ._pc-w44 {
    width: 44% !important;
  }
  ._pc-w45 {
    width: 45% !important;
  }
  ._pc-w46 {
    width: 46% !important;
  }
  ._pc-w47 {
    width: 47% !important;
  }
  ._pc-w48 {
    width: 48% !important;
  }
  ._pc-w49 {
    width: 49% !important;
  }
  ._pc-w50 {
    width: 50% !important;
  }
  ._pc-w51 {
    width: 51% !important;
  }
  ._pc-w52 {
    width: 52% !important;
  }
  ._pc-w53 {
    width: 53% !important;
  }
  ._pc-w54 {
    width: 54% !important;
  }
  ._pc-w55 {
    width: 55% !important;
  }
  ._pc-w56 {
    width: 56% !important;
  }
  ._pc-w57 {
    width: 57% !important;
  }
  ._pc-w58 {
    width: 58% !important;
  }
  ._pc-w59 {
    width: 59% !important;
  }
  ._pc-w60 {
    width: 60% !important;
  }
  ._pc-w61 {
    width: 61% !important;
  }
  ._pc-w62 {
    width: 62% !important;
  }
  ._pc-w63 {
    width: 63% !important;
  }
  ._pc-w64 {
    width: 64% !important;
  }
  ._pc-w65 {
    width: 65% !important;
  }
  ._pc-w66 {
    width: 66% !important;
  }
  ._pc-w67 {
    width: 67% !important;
  }
  ._pc-w68 {
    width: 68% !important;
  }
  ._pc-w69 {
    width: 69% !important;
  }
  ._pc-w70 {
    width: 70% !important;
  }
  ._pc-w71 {
    width: 71% !important;
  }
  ._pc-w72 {
    width: 72% !important;
  }
  ._pc-w73 {
    width: 73% !important;
  }
  ._pc-w74 {
    width: 74% !important;
  }
  ._pc-w75 {
    width: 75% !important;
  }
  ._pc-w76 {
    width: 76% !important;
  }
  ._pc-w77 {
    width: 77% !important;
  }
  ._pc-w78 {
    width: 78% !important;
  }
  ._pc-w79 {
    width: 79% !important;
  }
  ._pc-w80 {
    width: 80% !important;
  }
  ._pc-w81 {
    width: 81% !important;
  }
  ._pc-w82 {
    width: 82% !important;
  }
  ._pc-w83 {
    width: 83% !important;
  }
  ._pc-w84 {
    width: 84% !important;
  }
  ._pc-w85 {
    width: 85% !important;
  }
  ._pc-w86 {
    width: 86% !important;
  }
  ._pc-w87 {
    width: 87% !important;
  }
  ._pc-w88 {
    width: 88% !important;
  }
  ._pc-w89 {
    width: 89% !important;
  }
  ._pc-w90 {
    width: 90% !important;
  }
  ._pc-w91 {
    width: 91% !important;
  }
  ._pc-w92 {
    width: 92% !important;
  }
  ._pc-w93 {
    width: 93% !important;
  }
  ._pc-w94 {
    width: 94% !important;
  }
  ._pc-w95 {
    width: 95% !important;
  }
  ._pc-w96 {
    width: 96% !important;
  }
  ._pc-w97 {
    width: 97% !important;
  }
  ._pc-w98 {
    width: 98% !important;
  }
  ._pc-w99 {
    width: 99% !important;
  }
  ._pc-w100 {
    width: 100% !important;
  }
}

@media screen and (max-width: 499.9px) {
  ._sp-w1 {
    width: 1% !important;
  }
  ._sp-w2 {
    width: 2% !important;
  }
  ._sp-w3 {
    width: 3% !important;
  }
  ._sp-w4 {
    width: 4% !important;
  }
  ._sp-w5 {
    width: 5% !important;
  }
  ._sp-w6 {
    width: 6% !important;
  }
  ._sp-w7 {
    width: 7% !important;
  }
  ._sp-w8 {
    width: 8% !important;
  }
  ._sp-w9 {
    width: 9% !important;
  }
  ._sp-w10 {
    width: 10% !important;
  }
  ._sp-w11 {
    width: 11% !important;
  }
  ._sp-w12 {
    width: 12% !important;
  }
  ._sp-w13 {
    width: 13% !important;
  }
  ._sp-w14 {
    width: 14% !important;
  }
  ._sp-w15 {
    width: 15% !important;
  }
  ._sp-w16 {
    width: 16% !important;
  }
  ._sp-w17 {
    width: 17% !important;
  }
  ._sp-w18 {
    width: 18% !important;
  }
  ._sp-w19 {
    width: 19% !important;
  }
  ._sp-w20 {
    width: 20% !important;
  }
  ._sp-w21 {
    width: 21% !important;
  }
  ._sp-w22 {
    width: 22% !important;
  }
  ._sp-w23 {
    width: 23% !important;
  }
  ._sp-w24 {
    width: 24% !important;
  }
  ._sp-w25 {
    width: 25% !important;
  }
  ._sp-w26 {
    width: 26% !important;
  }
  ._sp-w27 {
    width: 27% !important;
  }
  ._sp-w28 {
    width: 28% !important;
  }
  ._sp-w29 {
    width: 29% !important;
  }
  ._sp-w30 {
    width: 30% !important;
  }
  ._sp-w31 {
    width: 31% !important;
  }
  ._sp-w32 {
    width: 32% !important;
  }
  ._sp-w33 {
    width: 33% !important;
  }
  ._sp-w34 {
    width: 34% !important;
  }
  ._sp-w35 {
    width: 35% !important;
  }
  ._sp-w36 {
    width: 36% !important;
  }
  ._sp-w37 {
    width: 37% !important;
  }
  ._sp-w38 {
    width: 38% !important;
  }
  ._sp-w39 {
    width: 39% !important;
  }
  ._sp-w40 {
    width: 40% !important;
  }
  ._sp-w41 {
    width: 41% !important;
  }
  ._sp-w42 {
    width: 42% !important;
  }
  ._sp-w43 {
    width: 43% !important;
  }
  ._sp-w44 {
    width: 44% !important;
  }
  ._sp-w45 {
    width: 45% !important;
  }
  ._sp-w46 {
    width: 46% !important;
  }
  ._sp-w47 {
    width: 47% !important;
  }
  ._sp-w48 {
    width: 48% !important;
  }
  ._sp-w49 {
    width: 49% !important;
  }
  ._sp-w50 {
    width: 50% !important;
  }
  ._sp-w51 {
    width: 51% !important;
  }
  ._sp-w52 {
    width: 52% !important;
  }
  ._sp-w53 {
    width: 53% !important;
  }
  ._sp-w54 {
    width: 54% !important;
  }
  ._sp-w55 {
    width: 55% !important;
  }
  ._sp-w56 {
    width: 56% !important;
  }
  ._sp-w57 {
    width: 57% !important;
  }
  ._sp-w58 {
    width: 58% !important;
  }
  ._sp-w59 {
    width: 59% !important;
  }
  ._sp-w60 {
    width: 60% !important;
  }
  ._sp-w61 {
    width: 61% !important;
  }
  ._sp-w62 {
    width: 62% !important;
  }
  ._sp-w63 {
    width: 63% !important;
  }
  ._sp-w64 {
    width: 64% !important;
  }
  ._sp-w65 {
    width: 65% !important;
  }
  ._sp-w66 {
    width: 66% !important;
  }
  ._sp-w67 {
    width: 67% !important;
  }
  ._sp-w68 {
    width: 68% !important;
  }
  ._sp-w69 {
    width: 69% !important;
  }
  ._sp-w70 {
    width: 70% !important;
  }
  ._sp-w71 {
    width: 71% !important;
  }
  ._sp-w72 {
    width: 72% !important;
  }
  ._sp-w73 {
    width: 73% !important;
  }
  ._sp-w74 {
    width: 74% !important;
  }
  ._sp-w75 {
    width: 75% !important;
  }
  ._sp-w76 {
    width: 76% !important;
  }
  ._sp-w77 {
    width: 77% !important;
  }
  ._sp-w78 {
    width: 78% !important;
  }
  ._sp-w79 {
    width: 79% !important;
  }
  ._sp-w80 {
    width: 80% !important;
  }
  ._sp-w81 {
    width: 81% !important;
  }
  ._sp-w82 {
    width: 82% !important;
  }
  ._sp-w83 {
    width: 83% !important;
  }
  ._sp-w84 {
    width: 84% !important;
  }
  ._sp-w85 {
    width: 85% !important;
  }
  ._sp-w86 {
    width: 86% !important;
  }
  ._sp-w87 {
    width: 87% !important;
  }
  ._sp-w88 {
    width: 88% !important;
  }
  ._sp-w89 {
    width: 89% !important;
  }
  ._sp-w90 {
    width: 90% !important;
  }
  ._sp-w91 {
    width: 91% !important;
  }
  ._sp-w92 {
    width: 92% !important;
  }
  ._sp-w93 {
    width: 93% !important;
  }
  ._sp-w94 {
    width: 94% !important;
  }
  ._sp-w95 {
    width: 95% !important;
  }
  ._sp-w96 {
    width: 96% !important;
  }
  ._sp-w97 {
    width: 97% !important;
  }
  ._sp-w98 {
    width: 98% !important;
  }
  ._sp-w99 {
    width: 99% !important;
  }
  ._sp-w100 {
    width: 100% !important;
  }
}
