@charset "UTF-8";
#tableOfContents.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(/crystal/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;
  }
}

#productIndex h1.under_title {
  font-size: 28px;
  text-align: left;
  color: #10218B;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  #productIndex h1.under_title {
    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;
  }
}

#productIndex .product_list {
  background-color: #F2F6F6;
  padding: 2em 0 4em 0;
}

#productIndex .product_list.pb0 {
  padding-bottom: 0;
}

#productIndex .product_list:nth-child(2n) {
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  #productIndex .product_list {
    padding: 4vw 4vw;
  }
}

#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;
}

#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;
}

@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;
}

@media only screen and (max-width: 767px) {
  .page_navi {
    position: absolute;
    top: 124px;
    left: 0;
    width: 100%;
    z-index: 10;
    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 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .page_navi .inner #tableOfContents ol {
    border-bottom: 1px #10218B solid;
  }
  .page_navi .inner #tableOfContents ol li {
    width: 100%;
    border: 1px #10218B solid;
    border-bottom: none;
  }
  .page_navi .inner #tableOfContents ol li a {
    text-align: left;
  }
  .page_navi .inner #tableOfContents ol li a br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #programmable_menu .toggleMenu {
    border-top: none;
  }
}

.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;
}

.mt05 {
  margin-top: 0.5em;
}

.mt1 {
  margin-top: 1em;
}

#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 {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
  #tableOfContents {
    margin: 0;
  }
}

#tableOfContents ol {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

#tableOfContents 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;
  position: relative;
}

#tableOfContents ol li:last-child {
  border-right: 1px #D9E3EC solid;
}

#tableOfContents ol li:nth-child(5n) {
  border-right: 1px #D9E3EC solid;
}

#tableOfContents 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 {
  display: block;
  width: 100%;
  padding: 0.6em 1em;
  font-weight: 600;
  color: #10218B;
  transition: none;
}

#tableOfContents ol li:hover {
  background-color: #10218B;
  color: #fff;
}

#tableOfContents ol li:hover:after {
  border-color: #fff;
}

#tableOfContents ol li:hover a {
  color: #fff;
  text-decoration: none;
}

#tableOfContents ol li:hover a:active {
  color: #fff;
}

#rtc_menu #tableOfContents ol {
  justify-content: center;
}

#rtc_menu #tableOfContents ol li {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  #rtc_menu #tableOfContents ol li {
    width: 100%;
  }
}

#rtc_menu #tableOfContents ol li a {
  padding: 1.2em 1em;
}

@media only screen and (max-width: 767px) {
  #rtc_menu #tableOfContents ol li a {
    padding: 0.6em 1em;
  }
}

#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("/crystal/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(/crystal/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);
}

#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;
  }
}