@charset "UTF-8";
/* ====================================
	製品ページ共通スタイル
 ==================================== */
.type-button {
  cursor: pointer;
}
.font-small {
  font-size: 0.8em;
}
.mts {
  margin-top: 2rem;
}
/* メインタイトル */
.main-title {
  text-align: center;
}
.main-img {
  text-align: center;
}
.sub-title {
  text-align: center;
}
.btn_right {
  gap: 2rem;
  justify-content: flex-end;
}
/* 検索条件 */
#options {
  background: #F2F2F2;
}
ul.list-options {
  display: flex;
  flex-wrap: wrap;
}
ul.list-options li {
  position: relative;
  display: inline-block;
}
ul.list-options li input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  cursor: pointer;
}
ul.list-options li input[type="checkbox"] + label {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  background-color: #fff;
  background-image: url(images/check-off.png);
  background-repeat: no-repeat;
  background-position: left 6px center;
  background-size: 18px auto;
  border: solid 1px #A7A7A7;
  border-radius: 20px;
}
ul.list-options li input[type="checkbox"]:checked + label {
  background-image: url(images/check-on.png);
}
#resultInfo {
  font-weight: 500;
  text-align: center;
}
#resultInfo .count {
  display: inline-block;
  margin: 0 0.5em;
  font-size: 1.5em;
}
/* 検索結果 */
ul.list-results > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2.3rem 7%;
  border: solid 1px #D8D8D8;
  text-decoration: none;
}
/* 製品カラーアイコン */
.prod-colors {
  text-align: right;
}
ul.list-results a {
  border: solid 1px #D8D8D8;
  position: relative;
}
.prod-header {
  text-align: center;
}
.new {
  padding: 5px 10px 0 0;
  color: #E6000D;
  font-size: 1.8rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.zaiko {
  padding: 0 0.5em;
  color: #E6000D;
  /*position: absolute;*/
  margin: 0.5rem;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  font-weight: normal;
  border: solid 1px #E6000D;
  word-break:keep-all;
}
.prod-category {
  display: inline-block;
}
.prod-category {
  font-size: 1.5rem;
}
.prod-name {
  font-weight: 700;
  text-align: center;
}
.prod-photo {
  max-width: 180px;
  margin: 0 auto;
}
.text-container {
  color: #525252;
}
ul.list-icons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
ul.list-icons li {
  display: inline-block;
  padding: 0 0.4em;
  border: solid 1px #777;
  margin-right: 0.2em;
}
/* 検索ボタン */
.btn-clear {
  text-align: center;
}
/* クリアボタン */
.btn-clear a {
  display: inline-block;
  margin-top: 30px;
  padding: 0.5em 1.5em;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #A7A7A7;
  border: solid 1px #A7A7A7;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
}
/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
  .main-title {
    padding: 0.4em 0;
    font-size: 2.4rem;
    border-bottom: solid 1px #d9d9d9;
  }
  /* 検索条件 */
  .btn-search-options {
    display: block;
    margin-top: 5px;
    padding: 15px 0;
    font-size: 1.8rem;
    font-weight: 500;
    background: #F2F2F2;
  }
  .btn-search-options a {
    display: block;
    padding: 8px;
    border: solid 1px #5F5F5F;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    position: relative;
  }
  .btn-search-options a::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(images/icon-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 5% center;
    background-size: contain;
    text-align: center;
    position: absolute;
    top: 25%;
    right: 5%;
    transform: rotate(0);
    transition: .7s;
  }
  .btn-search-options a.accordion-open::before {
    transform: rotate(180deg);
  }
  [data-accordion] {
    display: none;
  }
  #options {
    padding: 10px 0 25px;
  }
  .option-title {
    font-size: 1.5rem;
  }
  .option-item {
    margin-top: 20px;
  }
  .option-item:first-of-type {
    margin-top: 0;
  }
  ul.list-options li {
    margin-top: 6px;
    margin-right: 5px;
    max-width: 150px;
    min-height: 38px;
  }
  ul.list-options li input[type="checkbox"] + label {
    padding: 4px 6px 4px 28px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  /* 検索ボタン */
  ul.list-option-submit {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
  }
  ul.list-option-submit li {
    width: 48%;
  }
  ul.list-option-submit a {
    display: block;
    width: 100%;
    padding: 1em 0.25em;
  }
  /* アローボタン・左 */
  .btn-arrow-left {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  /* 検索結果 */
  #results {
    margin-top: 10px;
    min-height: 700px;
  }
  #resultInfo {
    padding: 0.1rem 0;
    font-size: 1.5rem;
  }
  ul.list-results {
    margin-top: 1rem;
  }
  ul.list-results > li {
    margin-top: 2rem;
  }
  ul.list-results > li:first-child {
    margin-top: 0;
  }
  .prod-name {
    font-size: 3rem;
  }
  .prod-text {
    font-size: 1.5rem;
  }
  ul.list-icons {
    font-size: 1.2rem;
  }
  ul.list-icons li {
    margin-bottom: 0.5rem;
  }
  ul.img-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  ul.img-icons .icon-pci {
    width: 120px;
  }
  ul.img-icons .icon-cocoro {
    width: 86px;
    margin-left: 10px;
  }
}
/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print, screen and (min-width: 768px) {
  main[data-footer-type] {
    padding-bottom: 8rem;
  }
  .main-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    font-size: 3rem;
    border-top: solid 1px #d9d9d9;
  }
  /* メインビジュアル */
  .main-img {
    max-width: 1200px;
    margin: 0 auto;
  }
  /* 検索条件 */
  #options {
    padding: 3rem 0;
  }
  .option-title {
    display: flex;
    align-items: center;
    width: 200px;
    margin-bottom: 0.25rem;
    margin-right: 20px;
    border-right: solid 1px #A7A7A7;
    font-size: 1.7rem;
  }
  .option-item {
    display: flex;
    margin-top: 1rem;
    padding: 0 2rem;
  }
  .option-item:first-of-type {
    margin-top: 0;
  }
  ul.list-options {
    flex: 1;
    width: 100%;
    padding-top: 0.5rem;
  }
  ul.list-options li {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }
  ul.list-options li input[type="checkbox"] + label {
    padding: 8px 16px 8px 34px;
    font-size: 1.5rem;
    line-height: 1.2;
    background-position: left 8px center;
    background-size: 18px auto;
  }
  /* 検索ボタン */
  ul.list-option-submit {
    margin-top: 3rem;
  }
  /* アローボタン・左 */
  .btn-arrow-left {
    margin-top: 3rem;
  }
  /* 検索結果 */
  #results {
    min-height: 700px;
  }
  #resultInfo {
    padding: 1em 0;
  }
  ul.list-results {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 2rem 0;
  }
  ul.list-results > li {
    width: 31%;
    margin-top: 3%;
    margin-left: 3.5%;
    min-height: 2.5em;
  }
  ul.list-results > li:nth-child(-n+3) {
    margin-top: 0;
  }
  ul.list-results > li:nth-child(3n-2) {
    margin-left: 0;
  }
  .prod-name {
    font-size: 3rem;
  }
  .prod-text {
    min-height: 3em;
    font-size: 1.5rem;
  }
  ul.list-icons {
    font-size: 1.2rem;
  }
  ul.list-icons li {
    margin-bottom: 0.5rem;
  }
  ul.img-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  ul.img-icons .icon-kinou {
    width: 40px;
    margin: 1px;
  }
  ul.img-icons .icon-cocoro {
    width: 96px;
    margin-left: 10px;
  }
  /* 検索ボタン */
  ul.list-option-submit {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  ul.list-option-submit li:first-child {
    margin-right: 20px;
  }
  ul.list-option-submit a {
    padding: 0.5em 2em;
    text-align: center;
  }
  /* アニメーション設定 */
  ul.list-results > li:nth-child(3n-1) {
    transition-delay: .4s;
  }
  ul.list-results > li:nth-child(3n) {
    transition-delay: .8s;
  }
}
/* ====================================
	タブレット専用スタイル
===================================== */
@media screen and (min-width: 768px) and (max-width: 1079px) {
  /* 検索条件 */
  /*
	ul.list-options li {
		width: 32%;
		margin-top: 1.4%;
		margin-left: 2%;
	}
	ul.list-options li:nth-child(-n+3) {
		margin-top: 0;
	}
	ul.list-options li:nth-child(3n-2) {
		margin-left: 0;
	}
*/
}
/* ====================================
	PC専用スタイル
===================================== */
@media screen and (min-width: 1080px) {
  /* 検索条件 */
  /*
	ul.list-options li {
		width: 24.07%;
		margin-top: 1%;
		margin-left: 1.24%;
	}
	ul.list-options li:nth-child(-n+4) {
		margin-top: 0;
	}
	ul.list-options li:nth-child(4n-3) {
		margin-left: 0;
	}*/
}
/* ====================================
	関数電卓仕様比較
===================================== */

table.specification {
  clear: both;
  margin: 5px auto;
  width: 100%;
}
table.specification tbody {
  border: 1px solid #CCC;
}
table.specification th {
  background-color: #EEE;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-left: 1px solid #CCC;
  color: #333;
  font-size: 80%;
  font-weight: 400;
  padding: 3px;
  text-align: center;
  vertical-align: middle
}
table.specification td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  color: #333;
  font-size: 93%;
  font-weight: 400;
  padding: 2px 5px;
  text-align: center;
  vertical-align: middle;
  word-break: break-all;
}
table.specification .bg {
  background-color: #E4F0EB
}
table.specification a {
  display: block;
  margin-bottom: 5px
}
table.specification img {
  display: inline;
  margin: 5px;
  vertical-align: middle
}
table td.em3 {
  height: 3.2em
}
table td.em5 {
  height: 5em
}
table.specification .specification_cate {
  background: #fff;
  border-top: none;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  border-left: solid 1px #ccc;
  font-size: 15px;
  padding: 10px;
}
table.specification .specification_blank {
  border-bottom: solid 1px #ccc;
  background: #fff;
  border-left: none;
  border-right: none;
}
/*比較リンクボタン*/
.hikaku_btn {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
}
.hikaku_btn .btn-spec_calc {
  background: #535353;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 0.75em 0.5em 1.5em;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  width: 49%;
  height: 50px;
}
.hikaku_arrow {
  margin: 0 1rem 0 0;
}
.hikaku_btn .off {
  background: #cfcfcf;
}
.hikaku_btn .off:hover {
  background: #535353 !important;
  color: #fff;
  text-decoration: none;
}
.hikaku_btn .hover-fade_calc a, a.hover-fade_calc {
  transition: 0.5s ease 0s !important;
  -webkit-transition: 0.5s ease 0s !important;
  -moz-transition: 0.5s ease 0s !important;
  -ms-transition: 0.5s ease 0s !important;
}
.hikaku_btn .hover-fade_calc a.hovering, a.hover-fade_calc.hovering {
  opacity: 0.6 !important;
}
/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
  /*比較リンクボタン*/
  .hikaku_btn {
    flex-wrap: wrap;
    margin: 1rem 0;
  }
  .hikaku_btn .btn-spec_calc {
    width: 49%;
    margin: 1px;
    justify-content: flex-start;
    padding: 0 0.5em;
    height: 45px;
    font-size: 1.5rem;
  }
  ul.list-btn-show-list {
    margin-top: 1.5rem;
  }
  table.specification .specification_cate {
    font-size: 13px;
    padding: 5px;
  }
  /*scroll関連*/
  .wrapper_top, .wrapper_table, .wrapper_top_2, .wrapper_table_2 {
    width: 100%;
    border: none 0px RED;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .div_top, .div_top_2 {
    width: 800px;
    height: 20px;
  }
  .div_table, .div_table_2  {
    width: 800px;
    height: auto;
  }
  .wrapper_top::-webkit-scrollbar, .div_top::-webkit-scrollbar, .wrapper_table::-webkit-scrollbar, .div_table::-webkit-scrollbar {
    height: 10px;
  }
  .wrapper_top::-webkit-scrollbar-track, .div_top::-webkit-scrollbar-track, .wrapper_table::-webkit-scrollbar-track, .div_table::-webkit-scrollbar-track {
    border-radius: 5px;
  }
  .wrapper_top::-webkit-scrollbar-thumb, .div_top::-webkit-scrollbar-thumb, .wrapper_table::-webkit-scrollbar-thumb, .div_table::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #aaaaaa;
  }
  .wrapper_top_2::-webkit-scrollbar, .div_top_2::-webkit-scrollbar, .wrapper_table_2::-webkit-scrollbar, .div_table_2::-webkit-scrollbar {
    height: 10px;
  }
  .wrapper_top_2::-webkit-scrollbar-track, .div_top_2::-webkit-scrollbar-track, .wrapper_table_2::-webkit-scrollbar-track, .div_table_2::-webkit-scrollbar-track {
    border-radius: 5px;
  }
  .wrapper_top_2::-webkit-scrollbar-thumb, .div_top_2::-webkit-scrollbar-thumb, .wrapper_table_2::-webkit-scrollbar-thumb, .div_table_2::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #aaaaaa;
  }    
}